No OneTemporary

File Metadata

Created
Sat, May 4, 2:36 PM
This file is larger than 256 KB, so syntax highlighting was skipped.
Index: trunk/l10n-support/scripts/messages.summit
===================================================================
--- trunk/l10n-support/scripts/messages.summit (revision 1509807)
+++ trunk/l10n-support/scripts/messages.summit (revision 1509808)
@@ -1,261 +1,253 @@
# -*- coding: UTF-8 -*-
# kate: syntax Python;
# This file is a summit configuration for Pology's posummit script.
import os
# ----------------------------------------
# Summit and branch locations and IDs.
# Summit-over-templates mode.
S.over_templates = True
# Location of summit catalogs and templates.
S.summit = dict(
topdir=S.relpath("../%s/summit/messages" % S.lang),
topdir_templates=S.relpath("../%s/summit/messages" % S.templates_lang),
)
# Branch IDs and locations of branch catalogs and templates.
S.branches = [
dict(
id="trunk5",
topdir=S.relpath("../../l10n-kf5/%s/messages" % S.lang),
topdir_templates=S.relpath("../../l10n-kf5/%s/messages" % S.templates_lang),
),
dict(
id="stable5",
topdir=S.relpath("../../../branches/stable/l10n-kf5/%s/messages" % S.lang),
topdir_templates=S.relpath("../../../branches/stable/l10n-kf5/%s/messages" % S.templates_lang),
),
dict(
id="plasma5lts",
topdir=S.relpath("../../../branches/stable/l10n-kf5-plasma-lts/%s/messages" % S.lang),
topdir_templates=S.relpath("../../../branches/stable/l10n-kf5-plasma-lts/%s/messages" % S.templates_lang),
),
dict(
id="trunk",
topdir=S.relpath("../../l10n-kde4/%s/messages" % S.lang),
topdir_templates=S.relpath("../../l10n-kde4/%s/messages" % S.templates_lang),
),
dict(
id="stable",
topdir=S.relpath("../../../branches/stable/l10n-kde4/%s/messages" % S.lang),
topdir_templates=S.relpath("../../../branches/stable/l10n-kde4/%s/messages" % S.templates_lang),
),
]
# Set path transformations.
transform_path_summit_names = {}
transform_path_branch_names = {}
def make_split_branch_path (branch_id):
def splitf (branch_path):
branch_subdir = os.path.dirname(branch_path)
branch_filename = os.path.basename(branch_path)
branch_name = branch_filename[:branch_filename.rfind(".")]
summit_name = transform_path_summit_names.get(
(branch_id, branch_name), branch_name)
return summit_name, branch_subdir
return splitf
def make_join_branch_path (branch_id):
def joinf (summit_name, summit_subdir, by_lang):
branch_name = transform_path_branch_names.get(
(branch_id, summit_name), summit_name)
branch_filename = branch_name + ".po"
branch_path = os.path.join(summit_subdir, branch_filename)
return branch_path
return joinf
from pology.fsops import collect_catalogs
for branch in S.branches:
branch_id = branch["id"]
branch_topdir_templates = branch["topdir_templates"]
for full_branch_path in collect_catalogs(branch_topdir_templates):
branch_path = full_branch_path[len(branch_topdir_templates) + 1:]
branch_subdir = os.path.dirname(branch_path)
branch_filename = os.path.basename(branch_path)
branch_name = branch_filename[:branch_filename.rfind(".")]
summit_name = branch_name
for prefix in ("desktop", "json"):
if branch_name.startswith(prefix + "_"):
branch_name_split = branch_name.split("_", 2)
if len(branch_name_split) == 3:
summit_name = branch_name_split[2] + "." + prefix
else:
summit_name = branch_name_split[1] + "." + prefix
elif branch_name.endswith("." + prefix):
summit_name = (branch_name[:-len("." + prefix)] + "__" + prefix)
if summit_name != branch_name:
transform_path_summit_names[(branch_id, branch_name)] = summit_name
transform_path_branch_names[(branch_id, summit_name)] = branch_name
branch["transform_path"] = (make_split_branch_path(branch_id),
make_join_branch_path(branch_id))
# Set X-Qt-Contexts header on Qt catalogs.
def set_header_qt_contexts (cat):
hdr = cat.header
hdr.set_field(u"X-Qt-Contexts", u"true")
return 0
from pology.proj.kde.cattype import is_qt_cat
S.hook_on_scatter_cat.extend([
(set_header_qt_contexts, r"", is_qt_cat),
])
# ----------------------------------------
# Manual mappings from branch to summit catalogs, needed when:
# - catalog is renamed in trunk, and not in stable,
# - catalog from stable is split into two or more catalogs in trunk,
# - two or more catalogs in stable are combined into single catalog in trunk,
# - etc.
# *Not* needed when a catalog only changes the module.
S.mappings = [
# ("branch_id", "branch_catalog", "summit_catalog_1", ...),
- ("stable", "k3bsetup", "k3b"),
("stable", "solidcontrolnm09", "solidcontrol"),
("stable", "kbibtex.appdata", "org.kde.kbibtex.appdata"),
- ("stable", "muon.desktop", "muon.desktop", "discover.desktop"),
- ("stable", "libmuon", "libdiscover"),
- ("stable", "muon-discover", "plasma-discover"),
- ("stable", "muon-updater", "plasma-discover-updater"),
- ("stable", "massif-visualizer.appdata", "org.kde.massif-visualizer.appdata"),
("stable", "kwebkitpart", "webenginepart"),
- ("stable", "kgraphviewer.appdata", "org.kde.kgraphviewer.appdata"),
- ("stable", "kgraphviewer.metainfo", "org.kde.libkgraphviewer.metainfo"),
("stable", "kde-nm-connection-editor", "kde5-nm-connection-editor"),
("trunk", "kbibtex.appdata", "org.kde.kbibtex.appdata"),
("trunk", "kwebkitpart", "webenginepart"),
("plasma5lts", "kactivitymanagerd.json", "kactivities.json"),
("plasma5lts", "filetypes", "kcm5_filetypes"),
("plasma5lts", "kcmshell", "kcmshell5"),
("plasma5lts", "kdesu", "kdesu5"),
("plasma5lts", "kioclient", "kioclient5"),
("plasma5lts", "kmimetypefinder", "kmimetypefinder5"),
("plasma5lts", "kstart", "kstart5"),
("plasma5lts", "ktraderclient", "ktraderclient5"),
("plasma5lts", "drkonqi", "drkonqi5"),
("plasma5lts", "kio_applications", "kio5_applications"),
("plasma5lts", "plasma_runner_baloosearchrunner", "plasma_runner_baloosearch5"),
("plasma5lts", "phonon_kde", "phonon_kde_plugin"),
("plasma5lts", "soliduiserver", "soliduiserver5"),
("plasma5lts", "attica_kde", "attica_kde_plugin"),
("plasma5lts", "kcmcomponentchooser", "kcm5_componentchooser"),
("plasma5lts", "kcm_baloofile", "kcm5_baloofile"),
("plasma5lts", "kcm_device_automounter", "kcm5_device_automounter"),
("plasma5lts", "kcm_emoticons", "kcm5_emoticons"),
("plasma5lts", "kcmicons", "kcm5_icons"),
("plasma5lts", "kcmkded", "kcm5_kded"),
("plasma5lts", "kcmnotify", "kcm5_notify"),
("plasma5lts", "kcm_phonon", "kcm5_phonon"),
("plasma5lts", "knetattach", "knetattach5"),
("plasma5lts", "plasma_applet_binaryclock", "plasma_applet_org.kde.plasma.binaryclock"),
("plasma5lts", "plasma-sdk.json", "plasmate.json"),
("plasma5lts", "kcmmousetheme", "kcm_cursortheme"),
("plasma5lts", "kcmfonts", "kcm_fonts"),
("plasma5lts", "konsoleprofiles", "plasma_applet_org.kde.plasma.konsoleprofiles"),
("stable5", "libsendlater", "akonadi_sendlater_agent"),
("stable5", "libmuon", "libdiscover"),
("stable5", "muon-updater", "plasma-discover-updater"),
("stable5", "muon-discover", "plasma-discover"),
("stable5", "muon-exporter", "plasma-discover-exporter"),
("stable5", "muon-notifier", "plasma-discover-notifier"),
("stable5", "kactivitymanagerd.json", "kactivities.json"),
("stable5", "libpimcommon", "storageservices", "libpimcommon"),
("stable5", "libmessageviewer", "libmimetreeparser", "libmessageviewer"),
("stable5", "kdevgdb", "kdevdebuggercommon", "kdevgdb"),
("stable5", "kaddressbook", "kaddressbook", "kaddressbook_importexportplugins"),
("stable5", "umbrello_kdevphp", "kdevphp"),
("stable5", "kdevplatform", "kdevplatform", "kdevsourceformatter"),
("stable5", "akonadicontact5", "akonadiimportwizard", "kaddressbook_contacteditor"),
("stable5", "kproperty_qt", "kpropertycore_qt", "kpropertywidgets_qt"),
("stable5", "akonadi_davgroupware_resource", "akonadi_davgroupware_resource", "libkdav"),
("stable5", "kcmmousetheme", "kcm_cursortheme"),
("stable5", "kcmfonts", "kcm_fonts"),
("trunk5", "plasma_shell_org.kde.plasma.mediacenter", "plasma-mediacenter"),
("trunk5", "libsendlater", "akonadi_sendlater_agent"),
("trunk5", "kactivitymanagerd.json", "kactivities.json"),
("trunk5", "kaddressbook", "kaddressbook", "kaddressbook_importexportplugins"),
("trunk5", "kwebkitpart", "webenginepart"),
("trunk5", "umbrello_kdevphp", "kdevphp"),
("trunk5", "umbrello_kdevphp5", "kdevphp"),
("trunk5", "akonadi_davgroupware_resource", "akonadi_davgroupware_resource", "libkdav"),
]
# Manual mappings from branch to summit subdirectories, needed when
# catalogs from several branch subdirectories should reside in
# single summit subdirectory.
S.subdir_mappings = [
# ("branch_id", "branch_subdir", "summit_subdir"),
]
# Subdirectory precedence.
# Used in cases of several same-named catalogs in same branch.
subdir_list_path = S.relpath("summit_subdir_precedence")
S.subdir_precedence = [l.strip() for l in open(subdir_list_path).readlines()]
# ----------------------------------------
# Formatting.
# Wrap messages (on column)?
S.summit_wrap = False
S.branches_wrap = True
# Fine-wrap messages (on markup tags, etc.)?
S.summit_fine_wrap = True
S.branches_fine_wrap = False
# Normalize branch templates before gathering to have better
# source references and message ordering in summit templates.
if "gather" in S.opmodes and S.lang == S.templates_lang:
# General dummy extraction files for all catalogs.
dumsrcs = ("rc.cpp", "rc.py", "tips.cpp", "tips.cc")
# Special dummy extraction files per catalog (single or list of files).
dumsrcs_per_cat = {
"kcells": "xml_doc.cpp",
"kregexpeditor": "predefined-regexps.cpp",
"libmuon": "categoriesxml.cpp",
"okular_ghostview": "rc_okular_ghostview.cpp",
"okular_www": "news.cpp",
"sheets": "xml_doc.cpp",
"system-config-printer-kde": "ui.py",
}
# Starts of true source files in extracted comments.
ecsrcheads = ("i18n: file:",)
# Starts of extracted contexts in extracted comments.
ecctxheads = ("i18n: ectx:",)
# Assemble the normalization hook.
from pology.normalize import demangle_srcrefs, uniq_source
from pology.normalize import uniq_auto_comment
demangle_srcrefs_h = demangle_srcrefs(collsrcs=dumsrcs,
collsrcmap=dumsrcs_per_cat,
truesrcheads=ecsrcheads)
uniq_auto_comment_h = uniq_auto_comment(onlyheads=ecctxheads)
def normalize_template (cat):
for msg in cat:
demangle_srcrefs_h(msg, cat)
uniq_source(msg, cat)
uniq_auto_comment_h(msg, cat)
cat.sort_by_source()
S.hook_on_gather_cat_branch.extend([
(normalize_template,),
])
# ----------------------------------------
# Bookkeeping.
# Version control system for the catalogs, if any.
S.version_control = "svn"
# ----------------------------------------
# Custom settings per language
# (this should come last to allow overrides).
extras_file = S.relpath("../%s/summit/messages.extras.summit" % S.lang)
if os.path.isfile(extras_file):
S.include(extras_file)
Index: trunk/l10n-support/templates/summit/docmessages/extragear-graphics/kgraphviewer.pot
===================================================================
--- trunk/l10n-support/templates/summit/docmessages/extragear-graphics/kgraphviewer.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/docmessages/extragear-graphics/kgraphviewer.pot (revision 1509808)
@@ -1,1849 +1,1625 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-08 08:50+0100\n"
+"POT-Creation-Date: 2018-02-02 13:48+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:20
#, no-c-format
msgid "The &kgraphviewer; Handbook"
msgstr ""
#. Tag: author
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:23
#, no-c-format
msgid "<firstname>Gaël</firstname> <othername></othername> <surname>de Chalendar</surname>"
msgstr ""
#. Tag: email
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:28
#, no-c-format
msgid "kleag@free.fr"
msgstr ""
#. Tag: author
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:31
#, no-c-format
msgid "<firstname>Federico</firstname> <othername></othername> <surname>Zenith</surname>"
msgstr ""
#. Tag: email
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:36
#, no-c-format
msgid "federico.zenith@member.fsf.org"
msgstr ""
#. Tag: trans_comment
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:39
#, no-c-format
msgid "ROLES_OF_TRANSLATORS"
msgstr ""
#. Tag: holder
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:44
#, no-c-format
msgid "Gaël de Chalendar"
msgstr ""
#. Tag: date
#. +> trunk5
#: index.docbook:51
#, no-c-format
msgid "2018-01-03"
msgstr ""
#. Tag: releaseinfo
#. +> trunk5
#: index.docbook:52
#, no-c-format
msgid "&kgraphviewer; 2.42"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:55
#, no-c-format
msgid "&kgraphviewer; is a &graphviz; &dot; graph viewer. It is developed in the &kde; community. The &graphviz; programs are free-software layout engines for graphs. Graphs are commonly used in scientific domains and particularly in computer science."
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:65
-#, no-c-format
-msgid "&kgraphviewer; is a &graphviz; &dot; graph viewer for &kde;. The &graphviz; programs are free-software layout engines for graphs. Graphs are commonly used in scientific domains and particularly in computer science. Until now, there was a lack of a modern &GUI; to look at the graphs. The programs that come with &graphviz; are in my opinion out-of-date &X11; or &tcltk; applications with few features."
-msgstr ""
-
-#. Tag: para
#. +> trunk5
#: index.docbook:58
#, no-c-format
msgid "&kgraphviewer; displays the graphs in a modern, user-friendly &GUI;."
msgstr ""
-#. Tag: date
-#. +> stable
-#: index.docbook:61
-#, no-c-format
-msgid "2006-10-22"
-msgstr ""
-
-#. Tag: releaseinfo
-#. +> stable
-#: index.docbook:62
-#, no-c-format
-msgid "1.0.3"
-msgstr ""
-
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:64
#, no-c-format
msgid "<keyword>KDE</keyword>"
msgstr ""
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:65
#, no-c-format
msgid "kgraphviewer"
msgstr ""
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:66
#, no-c-format
msgid "graphviz"
msgstr ""
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:67
#, no-c-format
msgid "<keyword>dot</keyword>"
msgstr ""
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:68
#, no-c-format
msgid "neato"
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:68
-#, no-c-format
-msgid "The &kgraphviewer; project aims to replace these tools with a modern, user-friendly &GUI; with all the power of a well integrated &kde; application."
-msgstr ""
-
#. Tag: keyword
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:69
#, no-c-format
msgid "viewer"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:75
#, no-c-format
msgid "Introduction"
msgstr ""
-#. Tag: title
-#. +> stable
-#: index.docbook:796
-#, no-c-format
-msgid "Installation"
-msgstr ""
-
#. Tag: para
#. +> trunk5
#: index.docbook:77
#, no-c-format
msgid "&kgraphviewer; is a &graphviz; &dot; graph viewer. The &graphviz; programs are free-software layout engines for graphs. &kgraphviewer; displays the graphs in a modern, user-friendly &GUI;. It has the following features:"
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:87
-#, no-c-format
-msgid "&kgraphviewer; is a &graphviz; &dot; graph viewer for &kde;. The &graphviz; programs are free-software layout engines for graphs. &kgraphviewer; displays the graphs in a modern, user-friendly &GUI; with all the power of a well integrated &kde; application. It has the following features:"
-msgstr ""
-
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:80
#, no-c-format
msgid "Here is a screenshot of &kgraphviewer;"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:86
#, no-c-format
msgid "The main &kgraphviewer; window displaying one of the &graphviz; examples"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:91
#, no-c-format
msgid "Zooming;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:92
#, no-c-format
msgid "Loading of several graphs in tabs at the same time;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:93
#, no-c-format
msgid "Storage of a list of recent files;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:94
#, no-c-format
msgid "A bird's eye view of the graph;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:95
#, no-c-format
msgid "Graph panning by mouse dragging;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:96
#, no-c-format
msgid "Full-featured printing;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:97
#, no-c-format
msgid "Perfect drawing of all &graphviz; example graphs;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:98
#, no-c-format
msgid "Node and edge colors and all node shapes are supported;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:99
#, no-c-format
msgid "Automatic choice of &dot; for directed graphs and &neato; for undirected ones;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:100
#, no-c-format
msgid "Manual or automatic reloading with user confirmation of (externally) modified files (configurable);"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:101
#, no-c-format
msgid "Opening of new program instances as new tabs in an existing instance (configurable);"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:102
#, no-c-format
msgid "Help system;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:103
#, no-c-format
msgid "Internationalization."
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:107
#, no-c-format
msgid "Planned features are:"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:109
#, no-c-format
msgid "Eventual use of the &qanava; library to support internal graphs representation;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:110
#, no-c-format
msgid "Save session data about graphs (layout program used, zoom factor, &etc;)"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:111
#, no-c-format
msgid "Integration in &kate; and &konqueror; (so that a change in &kate;'s view of the graph would re-layout and reload the file in &kgraphviewer;);"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:112
#, no-c-format
msgid "Menu to open the file in &kate; <emphasis>or</emphasis> to open a katepart inside the &kgraphviewer; window;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:113
#, no-c-format
msgid "Loading of large and huge graphs (currently, there are performance problems at around 1000 nodes, and a hack to ignore nodes above a specified limit);"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:114
#, no-c-format
msgid "Progressive support of more and more &dot; attributes and values;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:115
#, no-c-format
msgid "Layout in background (with threading in order not to block the interface, with a progress bar)."
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:118
#, no-c-format
msgid "Note that this program includes code from the GPL tool &kcachegrind; by Josef Weidendorfer, with his authorization."
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:119
#, no-c-format
msgid "Note also that the printing system is from the &calligra;'s &kexi; database application."
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:133
-#, no-c-format
-msgid "Note also that the printing system is from the &koffice;'s &kexi; database application."
-msgstr ""
-
-#. Tag: para
#. +> trunk5
#: index.docbook:121
#, no-c-format
msgid "Other required software: &kgraphviewer; is a program that uses the &graphviz; tool &dot; for graph layout. Its dependencies are:"
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:122
-#, no-c-format
-msgid "Port to &kde; 4"
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:135
-#, no-c-format
-msgid "Other required software: &kgraphviewer; is a &kde; program that uses the &graphviz; tool &dot; for graph layout. Its dependencies are:"
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:812
-#, no-c-format
-msgid "&kgraphviewer; is a &kde; program that uses the &graphviz; tools for graphs layout. It requires the following programs to be installed:"
-msgstr ""
-
-#. Tag: para
#. +> trunk5
#: index.docbook:123
#, no-c-format
msgid "The &Qt; and &kf5; libraries version 5.x;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:124
#, no-c-format
msgid "The &graphviz; tools as externals programs (tested with version 2.8);"
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:816
-#, no-c-format
-msgid "The &graphviz; tools (tested with versions up to 2.8);"
-msgstr ""
-
-#. Tag: para
#. +> trunk5
#: index.docbook:125
#, no-c-format
msgid "The &boost; library version 1.36."
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:140 index.docbook:817
-#, no-c-format
-msgid "The &boost; &spirit; library (tested with version 0.32)."
-msgstr ""
-
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:131
#, no-c-format
msgid "Using &kgraphviewer;"
msgstr ""
#. Tag: title
-#. +> stable
-#: index.docbook:799
-#, no-c-format
-msgid "How to obtain &kgraphviewer;"
-msgstr ""
-
-#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:134
#, no-c-format
msgid "The Main Window"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:136
#, no-c-format
msgid "The main window displays the loaded graphs, each in its own tab. Initially, if you start &kgraphviewer; without arguments, its main window will be empty as in the screenshot below. In this case, the toolbar contains only the <guimenuitem>Open File</guimenuitem> and the (empty) <guimenuitem>Recently Opened Files</guimenuitem> items. Click on the first one to open the standard <guilabel>Open File</guilabel> dialog."
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:137
-#, no-c-format
-msgid "The &qt; library 3.x (3.3.6 and above to avoid a painting bug);"
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:138
-#, no-c-format
-msgid "&kde; libraries (kdelibs package); the program was developed and tested with version 3.5.2;"
-msgstr ""
-
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:139
#, no-c-format
msgid "<screeninfo>The initial main window when opening &kgraphviewer; for the first time</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:145
#, no-c-format
msgid "<phrase>The initial main window when opening &kgraphviewer; for the first time</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:147
#, no-c-format
msgid "<para>The initial main window when opening &kgraphviewer; for the first time</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:151
#, no-c-format
msgid "After selecting one or several &dot; files, the main window looks like the next screenshot below:"
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:154
#, no-c-format
msgid "<screeninfo>The main window of &kgraphviewer; with several files opened</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:160
#, no-c-format
msgid "<phrase>The main window of &kgraphviewer; with several files opened</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:162
#, no-c-format
msgid "<para>The main window of &kgraphviewer; with several files opened</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:166
#, no-c-format
msgid "As you can see, if the graph is larger than the available area, a bird's-eye view is shown in one corner. You can choose with the context menu whether the optimal position of this overview should be automatically computed for you, or place it where you want yourself."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:169
#, no-c-format
msgid "Moving the Graph inside the Window"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:171
#, no-c-format
msgid "To move the graph, you can:"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:173
#, no-c-format
msgid "Click and drag it;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:174
#, no-c-format
msgid "Use the scroll bars;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:175
#, no-c-format
msgid "Press the arrows keys;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:176
#, no-c-format
msgid "Click somewhere in the bird's-eye view;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:177
#, no-c-format
msgid "Use the mouse wheel (up and down with no modifier, left and right with the &Alt; key pressed);"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:178
#, no-c-format
msgid "or click and drag in the bird's-eye view."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:183
#, no-c-format
msgid "Zooming"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:185
#, no-c-format
msgid "To zoom, you can either use the <guibutton><inlinemediaobject> <imageobject> <imagedata fileref=\"kgraphviewer-but-zoomin.png\" format=\"PNG\"/> </imageobject> </inlinemediaobject> </guibutton> and <guibutton><inlinemediaobject> <imageobject> <imagedata fileref=\"kgraphviewer-but-zoomout.png\" format=\"PNG\"/> </imageobject> </inlinemediaobject> </guibutton> toolbar buttons to zoom in and out, or hold down the &Shift; key while rolling your mouse wheel. While zooming in, the red rectangle in the bird's-eye view that indicates the displayed zone gets smaller and smaller. If it were to get smaller than 10 pixels in its shorter side, it will be replaced by a filled red rectangle in order to stay visible. You can see that on the screenshot below."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:202
#, no-c-format
msgid "<screeninfo>A graph at the maximal zoom in level</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:208
#, no-c-format
msgid "<phrase>A graph at the maximal zoom in level</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:210
#, no-c-format
msgid "<para>A graph at the maximal zoom in level</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:214
#, no-c-format
msgid "Zooming is limited in both directions by a factor of 10. You can see below the maximum zoom-out factor on a graph."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:217
#, no-c-format
msgid "<screeninfo>A graph at the maximum zoom-out level</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:223
#, no-c-format
msgid "<phrase>A graph at the maximum zoom-out level</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:225
#, no-c-format
msgid "<para>A graph at the maximum zoom-out level</para>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:231
#, no-c-format
msgid "Graph Files Handling"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:234
#, no-c-format
msgid "Files Modified on Disk"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:236
#, no-c-format
msgid "If a file currently loaded in &kgraphviewer; is modified by another program, the following dialog is shown:"
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:240
#, no-c-format
msgid "<screeninfo>Dialog to reload a file modified on disk</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:246
#, no-c-format
msgid "<phrase>Dialog to reload a file modified on disk</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:248
#, no-c-format
msgid "<para>Dialog to reload a file modified on disk</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:252
#, no-c-format
msgid "You can choose to reload the graph or to ignore the change. You can also get &kgraphviewer; to remember your choice, so it will do the same thing the next time. If you later want to modify your choice, choose the <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure &kgraphviewer;</guimenuitem></menuchoice> menu item. See <xref linkend=\"kgraphviewer-configuration\"/>."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:255
#, no-c-format
msgid "Files and Windows"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:256
#, no-c-format
msgid "When you open a graph file from outside a running &kgraphviewer; instance, &eg; from a file browser or the command line, you have the choice to open a new &kgraphviewer; window or to open the graph in a new tab in the existing window. This is done with the dialog below."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:259
#, no-c-format
msgid "<screeninfo>Dialog to open a new window</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:265
#, no-c-format
msgid "<phrase>Dialog to open a new window</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:267
#, no-c-format
msgid "<para>Dialog to open a new window</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:271
#, no-c-format
msgid "As for the previous option, you can save your default choice and modify it later in the configuration dialog."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:276
#, no-c-format
msgid "Session Handling"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:278
#, no-c-format
msgid "At start-up, you can choose to reopen the graphs that you had opened the previous time. Again, you can save your choice and change it later."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:281
#, no-c-format
msgid "<screeninfo>Dialog to reload the graph of the previous session at start-up</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:287
#, no-c-format
msgid "<phrase>Dialog to reload the graph of the previous session at start-up</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:289
#, no-c-format
msgid "<para>Dialog to reload the graph of the previous session at start-up</para>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:300
#, no-c-format
msgid "Graph Printing"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:301
#, no-c-format
msgid "Try the <guilabel>Print preview</guilabel> or the <guilabel>Page setup</guilabel> buttons to explore the printing options."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:304
#, no-c-format
msgid "<screeninfo>Page setup dialog</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:310
#, no-c-format
msgid "<phrase>Page setup dialog</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:312
#, no-c-format
msgid "<para>Page setup dialog</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:316
#, no-c-format
msgid "You can setup the printing options to fit the graph on exactly one page, as below:"
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:319
#, no-c-format
msgid "<screeninfo>Page preview setup to fit on one page</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:325
#, no-c-format
msgid "<phrase>Page preview setup to fit on one page</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:327
#, no-c-format
msgid "<para>Page preview setup to fit on one page</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:331
#, no-c-format
msgid "You can also choose how to divide the graph on multiple pages. The number of horizontal and vertical pages can be chosen independently."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:334
#, no-c-format
msgid "<screeninfo>Page preview set up to fit on multiple pages and to fill them</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:340
#, no-c-format
msgid "<phrase>Page preview set up to fit on multiple pages and to fill them</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:342
#, no-c-format
msgid "<para>Page preview set up to fit on multiple pages and to fill them</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:346
#, no-c-format
msgid "Finally, when using multiple pages, you can choose to make the part of the graph on each page to fit its page like above, not keeping the aspect ratio, or to keep it. In the latter case, the pages will not be filled."
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:348
#, no-c-format
msgid "You can change the size of pages and the margins:"
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:351
#, no-c-format
msgid "<screeninfo>Page size and margins dialog</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:357
#, no-c-format
msgid "<phrase>Page size and margins dialog</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:359
#, no-c-format
msgid "<para>Page size and margins dialog</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:363
#, no-c-format
msgid "You can also change the font, headers and footers:"
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:366
#, no-c-format
msgid "Page preview setup to fit on multiple pages without header and with a different font"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:372
#, no-c-format
msgid "<phrase>Page preview setup to fit on multiple pages without header and a different font</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:374
#, no-c-format
msgid "<para>Page preview setup to fit on multiple pages without header and a different font</para>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:381
#, no-c-format
msgid "Configuring &kgraphviewer;"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:383
#, no-c-format
msgid "The <guilabel>Appearance</guilabel> page allows to change the default background color used in &kgraphviewer; if a graph does not have its own background color."
msgstr ""
#. Tag: screeninfo
#. +> trunk5
#: index.docbook:387
#, no-c-format
msgid "<screeninfo>Page to change the appearance of a graph</screeninfo>"
msgstr ""
#. Tag: phrase
#. +> trunk5
#: index.docbook:393
#, no-c-format
msgid "<phrase>Page to change the appearance of a graph</phrase>"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:395
#, no-c-format
msgid "<para>Page to change the appearance of a graph</para>"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:399
#, no-c-format
msgid "The <guilabel>Parsing</guilabel> page allows to select an external command or the internal library for parsing &graphviz; &dot; files."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:403 index.docbook:418
#, no-c-format
msgid "<screeninfo>Page to reload files modified on disk in the configuration dialog</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:409 index.docbook:424
#, no-c-format
msgid "<phrase>Page to reload files modified on disk in the configuration dialog</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:411 index.docbook:426
#, no-c-format
msgid "<para>Page to reload files modified on disk in the configuration dialog</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:415
#, no-c-format
msgid "The <guilabel>Reload</guilabel> page allows to change the behavior of &kgraphviewer; when a file is changed on disk by another application. You can choose a default action (reload automatically or ignore changes), or to be asked each time."
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:430
#, no-c-format
msgid "The <guilabel>Opening</guilabel> page allows to change the behavior of &kgraphviewer; when a graph file is opened from outside the current session. You can choose a default action (open in an existing window or in a new one), or to be asked each time."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:433
#, no-c-format
msgid "<screeninfo>Page to open new files in an existing window in the configuration dialog</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:439
#, no-c-format
msgid "<phrase>Page to open new files in an existing window in the configuration dialog</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:441
#, no-c-format
msgid "<para>Page to open new files in an existing window in the configuration dialog</para>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:445
#, no-c-format
msgid "The <guilabel>Session Management</guilabel> page allows to change the &kgraphviewer;'s start-up behavior. You can choose a default action (reopen files of the previous session or not), or to be asked each time."
msgstr ""
#. Tag: screeninfo
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:448
#, no-c-format
msgid "<screeninfo>Page to reopen files of the previous session in the configuration dialog</screeninfo>"
msgstr ""
#. Tag: phrase
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:454
#, no-c-format
msgid "<phrase>Page to reopen files of the previous session in the configuration dialog</phrase>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:456
#, no-c-format
msgid "<para>Page to reopen files of the previous session in the configuration dialog</para>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:463
#, no-c-format
msgid "Miscellaneous Functions"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:465
#, no-c-format
msgid "The context menu, usually obtained by clicking the &RMB; in the graph view, offers some other possibilities:"
msgstr ""
#. Tag: guimenu
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:468
#, no-c-format
msgid "Layout"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:469
#, no-c-format
msgid "This allows to choose between various &graphviz; layout algorithms or to choose your own one. The entries, as described on the &graphviz; homepage, are the following:"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:473
#, no-c-format
msgid "&dot;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:474
#, no-c-format
msgid "&dot; algorithm, default for directed graphs. It produces <quote>hierarchical</quote> or layered drawings of directed graphs. The layout algorithm lays edges in the same direction (top to bottom, or left to right), and then attempts to avoid edge crossings and to reduce edge length."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:478
#, no-c-format
msgid "&neato;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:479
#, no-c-format
msgid "&neato; algorithm, default for undirected graphs. It produces <quote>spring model</quote> layouts. It uses the Kamada-Kawai algorithm, which is equivalent to statistical multi-dimensional scaling."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:483
#, no-c-format
msgid "&twopi;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:484
#, no-c-format
msgid "&twopi; algorithm, for directed and undirected graphs. Radial layout, after Graham Wills 1997."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:488
#, no-c-format
msgid "&fdp;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:489
#, no-c-format
msgid "&fdp; algorithm, for undirected graphs. It produces <quote>spring model</quote> layouts. It implements the Fruchterman-Reingold heuristic including a multigrid solver that handles larger graphs and clustered undirected graphs."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:493
#, no-c-format
msgid "&circo;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:494
#, no-c-format
msgid "&circo; algorithm. It produces a circular layout, after Six and Tollis 1999, Kauffman and Wiese 2002. Suitable for certain diagrams of multiple cyclic structures."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:498
#, no-c-format
msgid "Specify layout command"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:499
#, no-c-format
msgid "Opens a dialog allowing you to specify a layout command executed by the shell. This command should accept one parameter, the graph file name, and write its layout on stdout in the xdot language. This way, you can give specific options to one of the previous commands, or apply a filter modifying your graph before running it through &dot;."
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:503
#, no-c-format
msgid "Reset layout command to defaults"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:504
#, no-c-format
msgid "Determine the graph type (directed or not) and apply the default algorithm to it, currently &dot; and &neato; respectively."
msgstr ""
#. Tag: guimenu
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:511
#, no-c-format
msgid "Export Graph"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:515
#, no-c-format
msgid "As Image..."
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:516
#, no-c-format
msgid "Allows to export the full graph to all supported image formats."
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:505
-#, no-c-format
-msgid "Allows to export the full graph to a &png; image."
-msgstr ""
-
#. Tag: guimenu
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:523
#, no-c-format
msgid "Enable Bird's-eye View"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:524 index.docbook:643
#, no-c-format
msgid "When checked, the Bird's-eye view is displayed when necessary. Otherwise, it is hidden and its positioning menu is disabled."
msgstr ""
#. Tag: guimenu
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:528
#, no-c-format
msgid "Bird's-eye View"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:529
#, no-c-format
msgid "Configure where to place the bird's-eye view in the graph view. The possible choices are:"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:532 index.docbook:651
#, no-c-format
msgid "Top Left"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:533 index.docbook:652
#, no-c-format
msgid "Places the bird's-eye view at the top left corner;"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:537 index.docbook:656
#, no-c-format
msgid "Top Right"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:538 index.docbook:657
#, no-c-format
msgid "Places the bird's-eye view at the top right corner;"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:542 index.docbook:661
#, no-c-format
msgid "Bottom Left"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:543 index.docbook:662
#, no-c-format
msgid "Places the bird's-eye view at the bottom left corner;"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:547 index.docbook:666
#, no-c-format
msgid "Bottom Right"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:548 index.docbook:667
#, no-c-format
msgid "Places the bird's-eye view at the bottom right corner;"
msgstr ""
#. Tag: guimenuitem
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:552 index.docbook:671
#, no-c-format
msgid "Automatic"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:553 index.docbook:672
#, no-c-format
msgid "Automatically choose the best position to hide as little of the graph as possible."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:566
#, no-c-format
msgid "Command Reference"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:569
#, no-c-format
msgid "The &kgraphviewer; Menus"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:572
#, no-c-format
msgid "The File Menu"
msgstr ""
#. Tag: menuchoice
#. +> trunk5
#: index.docbook:576
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>N</keycap></keycombo></shortcut><guimenu>File</guimenu><guimenuitem>New</guimenuitem>"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:577
#, no-c-format
msgid "<action>Opens</action> a new &kgraphviewer; window."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:581
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>O</keycap></keycombo></shortcut><guimenu>File</guimenu><guimenuitem>Open</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:582
#, no-c-format
msgid "<action>Displays</action> the <guilabel>Open File</guilabel> dialog."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:586
#, no-c-format
msgid "<guimenu>File</guimenu><guimenuitem>Open Recent</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:587
#, no-c-format
msgid "<action>Displays</action> the list of the ten most recently opened graph files."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:591
#, no-c-format
msgid "<guimenu>File</guimenu><guisubmenu>Export Graph</guisubmenu><guimenuitem>As Image...</guimenuitem>"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:592
#, no-c-format
msgid "Allows to <action>export</action> the full graph to all supported image formats."
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:576
-#, no-c-format
-msgid "Allows to <action>export</action> the full graph to a &png; image."
-msgstr ""
-
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:596
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>P</keycap></keycombo></shortcut><guimenu>File</guimenu><guimenuitem>Print...</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:597
#, no-c-format
msgid "<action>Prints</action> the current graph using the currently set print parameters."
msgstr ""
#. Tag: menuchoice
#. +> trunk5
#: index.docbook:601
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;&Shift;<keycap>P</keycap></keycombo></shortcut><guimenu>File</guimenu><guimenuitem>Print Preview...</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:602
#, no-c-format
msgid "<action>Opens</action> the <guilabel>Print Preview</guilabel> window for the current graph."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:606
#, no-c-format
msgid "<guimenu>File</guimenu><guimenuitem>Page Setup</guimenuitem>"
msgstr ""
-#. Tag: menuchoice
-#. +> stable
-#: index.docbook:585
-#, no-c-format
-msgid "<guimenu>File</guimenu><guimenuitem>Print Preview...</guimenuitem>"
-msgstr ""
-
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:607
#, no-c-format
msgid "<action>Opens</action> the <guilabel>Page Setup</guilabel> dialog for the current graph."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:611
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>Q</keycap></keycombo></shortcut><guimenu>File</guimenu><guimenuitem>Quit</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:612
#, no-c-format
msgid "<action>Quits</action> &kgraphviewer;."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:618
#, no-c-format
msgid "The View Menu"
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:622
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>+</keycap></keycombo></shortcut><guimenu>View</guimenu><guimenuitem>Zoom In</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:623 index.docbook:741
#, no-c-format
msgid "<action>Zoom in</action> the current graph by 10%."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:627
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>-</keycap></keycombo></shortcut><guimenu>View</guimenu><guimenuitem>Zoom Out</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:628 index.docbook:746
#, no-c-format
msgid "<action>Zoom out</action> the current graph by 10%."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:632
#, no-c-format
msgid "<guimenu>View</guimenu><guimenuitem>Redisplay</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:633
#, no-c-format
msgid "<action>Reloads</action> the current graph."
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:686
-#, no-c-format
-msgid "<action>Prints the graph</action> using current setup."
-msgstr ""
-
#. Tag: menuchoice
#. +> trunk5
#: index.docbook:637
#, no-c-format
msgid "<guimenu>View</guimenu><guimenuitem>Select Layout Algo</guimenuitem>"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:638
#, no-c-format
msgid "Opens a submenu with various &graphviz; layout algorithms for the current graph."
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:642
#, no-c-format
msgid "<shortcut><keycombo action=\"simul\">&Ctrl;<keycap>B</keycap></keycombo></shortcut><guimenu>View</guimenu><guimenuitem>Enable Bird's-eye View</guimenuitem>"
msgstr ""
#. Tag: menuchoice
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:647
#, no-c-format
msgid "<guimenu>View</guimenu><guimenuitem>Birds-eye View</guimenuitem>"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:648
#, no-c-format
msgid "Configure where to place the bird-eye view in the graph view. Choices are:"
msgstr ""
#. Tag: title
-#. +> stable
-#: index.docbook:660
-#, no-c-format
-msgid "The <guimenu>Help</guimenu> Menu"
-msgstr ""
-
-#. Tag: sect2
-#. +> stable
-#: index.docbook:660
-#, no-c-format
-msgid "&help.menu.documentation;"
-msgstr ""
-
-#. Tag: title
#. +> trunk5
#: index.docbook:681
#, no-c-format
msgid "The Settings and Help Menu"
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:683
#, no-c-format
msgid "&kgraphviewer; has the common &kde; <guimenu>Settings</guimenu> and <guimenu>Help</guimenu> menu items, for more information read the sections about the <ulink url=\"help:/fundamentals/ui.html#menus-settings\">Settings Menu</ulink> and <ulink url=\"help:/fundamentals/ui.html#menus-help\">Help Menu</ulink> of the &kde; Fundamentals."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:692
#, no-c-format
msgid "The &kgraphviewer; Toolbars"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:695
#, no-c-format
msgid "The Main Toolbar"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:700
#, no-c-format
msgid "<action>Shows</action> the <guilabel>Open File</guilabel> dialog."
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:696
-#, no-c-format
-msgid "<action>Shows</action> the <guilabel>Page Setup</guilabel> dialog."
-msgstr ""
-
-#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:705
#, no-c-format
msgid "<action>Shows</action> the list of recently opened files."
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:715
#, no-c-format
msgid "<action>Shows</action> the <guilabel>Print Preview</guilabel> dialog."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:726
#, no-c-format
msgid "The View Toolbar"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:736
#, no-c-format
msgid "<action>Edits</action> the layout command or <action>shows</action> the list of preset layout algorithms."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:753
#, no-c-format
msgid "The Help Toolbar"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:758
#, no-c-format
msgid "<action>Displays</action> the <guilabel>What's This</guilabel> mouse pointer. Click with it on a &GUI; element to obtain help using it (if there is such help available)."
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:767
#, no-c-format
msgid "Credits and License"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:770
#, no-c-format
msgid "Program"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:773
#, no-c-format
msgid "Main Authors"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:774
#, no-c-format
msgid "Program copyright 2005-2006 Gaël de Chalendar <email>kleag@free.fr</email>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:778
#, no-c-format
msgid "Contributors (to be completed)"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:780
#, no-c-format
msgid "Reimar Döffinger <email>Reimar.Doeffinger@stud.uni-karlsruhe.de</email>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:786
#, no-c-format
msgid "User Guide"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:787
#, no-c-format
msgid "Documentation copyright 2006 Gaël de Chalendar <email>kleag@free.fr</email>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:789
#, no-c-format
msgid "Contributors"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:791
#, no-c-format
msgid "Federico Zenith <email>federico.zenith@member.fsf.org</email>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:797
#, no-c-format
msgid "Other Credits"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:798
#, no-c-format
msgid "This program contains reused code from the following Free Software projects:"
msgstr ""
#. Tag: ulink
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:801
#, no-c-format
msgid "&kcachegrind;"
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:801
-#, no-c-format
-msgid "<ulink url=\"http://extragear.kde.org/apps/kgraphviewer/\">&kgraphviewer;</ulink> is part of the <ulink url=\"http://www.kde.org\">&kde;</ulink> <ulink url=\"http://extragear.kde.org/\">extragear</ulink> package. Its Subversion repository can be found on <ulink url=\"http://websvn.kde.org/trunk/extragear/graphics/kgraphviewer/\">websvn.kde.org</ulink>."
-msgstr ""
-
-#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:802
#, no-c-format
msgid "Initial graph model and view classes;"
msgstr ""
-#. Tag: para
-#. +> stable
-#: index.docbook:803
-#, no-c-format
-msgid "Independent releases of &kgraphviewer; can be found at <ulink url=\"https://gna.org/projects/kgraphviewer\">&kgraphviewer;'s home page</ulink>."
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:805
-#, no-c-format
-msgid "You can find a list of changes at <ulink url=\"http://kde-apps.org/content/show.php?content=23999\">this link</ulink> and in the <filename>ChangeLog</filename> file at the root of the distribution archive."
-msgstr ""
-
#. Tag: ulink
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:806
#, no-c-format
msgid "&kexi;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:807
#, no-c-format
msgid "Print setup and preview classes."
msgstr ""
#. Tag: title
-#. +> stable
-#: index.docbook:810
-#, no-c-format
-msgid "Dependencies"
-msgstr ""
-
-#. Tag: title
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:812
#, no-c-format
msgid "Licenses"
msgstr ""
#. Tag: trans_comment
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:813
#, no-c-format
msgid "CREDIT_FOR_TRANSLATORS"
msgstr ""
#. Tag: sect1
-#. +> trunk5 stable
+#. +> trunk5
#: index.docbook:813
#, no-c-format
msgid "&underFDL; &underGPL;"
msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:814
-#, no-c-format
-msgid "&qt; libraries 3.x (3.3.6 and above to avoid a painting bug);"
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:815
-#, no-c-format
-msgid "&kde; libraries (developed and tested with version 3.5.x);"
-msgstr ""
-
-#. Tag: title
-#. +> stable
-#: index.docbook:824
-#, no-c-format
-msgid "Compilation and Installation"
-msgstr ""
-
-#. Tag: sect1
-#. +> stable
-#: index.docbook:824
-#, no-c-format
-msgid "&install.compile.documentation;"
-msgstr ""
-
-#. Tag: title
-#. +> stable
-#: index.docbook:829
-#, no-c-format
-msgid "Configuration"
-msgstr ""
-
-#. Tag: para
-#. +> stable
-#: index.docbook:831
-#, no-c-format
-msgid "No special configuration is necessary to use &kgraphviewer;. See the <guimenu>Settings</guimenu> menu for some options."
-msgstr ""
Index: trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney.pot
===================================================================
--- trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney.pot (revision 1509808)
@@ -1,281 +1,281 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-28 10:16+0100\n"
+"POT-Creation-Date: 2018-02-02 13:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: title
#. +> trunk5 stable
#: index.docbook:131
#, no-c-format
msgid "The &kappname; Handbook"
msgstr ""
#. Tag: title
#. +> stable5
-#: index.docbook:96
+#: index.docbook:108
#, no-c-format
msgid "The &kmymoney; Handbook"
msgstr ""
#. Tag: subtitle
#. +> trunk5
#: index.docbook:132
#, no-c-format
msgid "for &kappname; version 4.7"
msgstr ""
#. Tag: subtitle
#. +> stable
#: index.docbook:132
#, no-c-format
msgid "for &kappname; version 4.8.1"
msgstr ""
#. Tag: subtitle
#. +> stable5
-#: index.docbook:97
+#: index.docbook:109
#, no-c-format
msgid "for &kmymoney; version 5.0"
msgstr ""
-#. Tag: releaseinfo
-#. +> stable5
-#: index.docbook:134
-#, no-c-format
-msgid "5.0.0"
-msgstr ""
-
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:141
#, no-c-format
msgid "&Michael.T.Edwardes; &Michael.T.Edwardes.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:142
#, no-c-format
msgid "&Thomas.Baumgart; &Thomas.Baumgart.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:143
#, no-c-format
msgid "&Ace.Jones; &Ace.Jones.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:144
#, no-c-format
msgid "&Tony.Bloomfield; &Tony.Bloomfield.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:145
#, no-c-format
msgid "&Robert.Wadley; &Robert.Wadley.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:146
#, no-c-format
msgid "&Darin.Strait; &Darin.Strait.mail;"
msgstr ""
+#. Tag: releaseinfo
+#. +> stable5
+#: index.docbook:146
+#, no-c-format
+msgid "5.0.0"
+msgstr ""
+
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:147
#, no-c-format
msgid "&Roger.Lum; &Roger.Lum.mail;"
msgstr ""
#. Tag: author
#. +> trunk5 stable5 stable
#: index.docbook:148
#, no-c-format
msgid "&Jack.H.Ostroff; &Jack.H.Ostroff.mail;"
msgstr ""
#. Tag: trans_comment
#. +> trunk5 stable5 stable
#: index.docbook:149
#, no-c-format
msgid "ROLES_OF_TRANSLATORS"
msgstr ""
#. Tag: holder
#. +> trunk5 stable
#: index.docbook:167
#, no-c-format
msgid "The &kappname; Development Team"
msgstr ""
#. Tag: holder
#. +> stable5
-#: index.docbook:119
+#: index.docbook:131
#, no-c-format
msgid "The &kmymoney; Development Team"
msgstr ""
#. Tag: date
#. +> trunk5
#: index.docbook:181
#, no-c-format
msgid "2014-08-30"
msgstr ""
#. Tag: date
#. +> stable5
-#: index.docbook:133
+#: index.docbook:145
#, no-c-format
msgid "2018-01-13"
msgstr ""
#. Tag: date
#. +> stable
#: index.docbook:168
#, no-c-format
msgid "2017-07-25"
msgstr ""
#. Tag: releaseinfo
#. +> trunk5
#: index.docbook:182
#, no-c-format
msgid "4.7.01"
msgstr ""
#. Tag: releaseinfo
#. +> stable
#: index.docbook:169
#, no-c-format
msgid "4.8.1"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: index.docbook:187
#, no-c-format
msgid "&kappname;, the personal finance manager by &kde;."
msgstr ""
#. Tag: para
#. +> stable5
-#: index.docbook:139
+#: index.docbook:151
#, no-c-format
msgid "&kmymoney;, the personal finance manager by &kde;."
msgstr ""
#. Tag: para
#. +> trunk5
#: index.docbook:191
#, no-c-format
msgid "This handbook describes &kappname; version 4.7."
msgstr ""
#. Tag: para
#. +> stable
#: index.docbook:178
#, no-c-format
msgid "This handbook describes &kappname; version 4.8.1"
msgstr ""
#. Tag: para
#. +> stable5
-#: index.docbook:143
+#: index.docbook:155
#, no-c-format
msgid "This handbook describes &kmymoney; version 5.0."
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:200
#, no-c-format
msgid "<keyword>KDE</keyword>"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:201
#, no-c-format
msgid "office"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:202
#, no-c-format
msgid "KMyMoney4"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:203
#, no-c-format
msgid "KMyMoney"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:204
#, no-c-format
msgid "kmymoney4"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:205
#, no-c-format
msgid "kmymoney"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:206
#, no-c-format
msgid "finance"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:207
#, no-c-format
msgid "accounts"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:208
#, no-c-format
msgid "accounting"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:209
#, no-c-format
msgid "financial"
msgstr ""
#. Tag: keyword
#. +> trunk5 stable5 stable
#: index.docbook:210
#, no-c-format
msgid "bookkeeping"
msgstr ""
Index: trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_credits.pot
===================================================================
--- trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_credits.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_credits.pot (revision 1509808)
@@ -1,386 +1,526 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-14 10:55+0100\n"
+"POT-Creation-Date: 2018-02-02 13:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: date
#. +> trunk5 stable5 stable
#: credits.docbook:4
#, no-c-format
msgid "2014-08-30"
msgstr ""
#. Tag: releaseinfo
#. +> trunk5 stable5 stable
#: credits.docbook:5
#, no-c-format
msgid "4.7.01"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:8
#, no-c-format
msgid "Credits"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5
+#. +> trunk5
#: credits.docbook:10
#, no-c-format
msgid "Program Copyright &copy; 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 The KMyMoney Development Team"
msgstr ""
#. Tag: para
+#. +> stable5
+#: credits.docbook:10
+#, no-c-format
+msgid "Program Copyright &copy; 2000-2018 The KMyMoney Development Team"
+msgstr ""
+
+#. Tag: para
#. +> stable
#: credits.docbook:10
#, no-c-format
msgid "Program Copyright &copy; 2000 - 2017 The KMyMoney Development Team"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5
+#. +> trunk5
#: credits.docbook:15
#, no-c-format
msgid "Documentation Copyright &copy; 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 The KMyMoney Development Team"
msgstr ""
#. Tag: para
+#. +> stable5
+#: credits.docbook:18
+#, no-c-format
+msgid "Documentation Copyright &copy; 2000-2018 The KMyMoney Development Team"
+msgstr ""
+
+#. Tag: para
#. +> stable
#: credits.docbook:14
#, no-c-format
msgid "Documentation Copyright &copy; 2000 - 2017 The KMyMoney Development Team"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:21
#, no-c-format
msgid "Original Author"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:26
#, no-c-format
msgid "Michael Edwardes &Michael.T.Edwardes.mail;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:27
#, no-c-format
msgid "Original idea, much initial source code. Project admin."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:142
+#, no-c-format
+msgid "Original author, much initial source code. Project admin."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:36
#, no-c-format
msgid "Active Developers"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:41
#, no-c-format
msgid "Thomas Baumgart &Thomas.Baumgart.mail;"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:42
#, no-c-format
msgid "Release manager and de-facto Maintainer. Core engine. Project admin."
msgstr ""
#. Tag: title
+#. +> stable5
+#: credits.docbook:42
+#, no-c-format
+msgid "Łukasz Wojniłowicz &Lukasz.Wojnilowicz.mail;"
+msgstr ""
+
+#. Tag: title
+#. +> stable5
+#: credits.docbook:49
+#, no-c-format
+msgid "Ralf Habacker &Ralf.Habacker.mail;"
+msgstr ""
+
+#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:50
#, no-c-format
msgid "Tony Bloomfield &Tony.Bloomfield.mail;"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:51
#, no-c-format
msgid "GnuCash Importer. Database support."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:57
#, no-c-format
msgid "Robert Wadley &Robert.Wadley.mail;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:58
#, no-c-format
msgid "Artist. Icons, splash screen, home view. Screenshots."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:100
+#, no-c-format
+msgid "Artist. Icons, splash screen, home view."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:64
#, no-c-format
msgid "Alvaro Soliverez &Alvaro.Soliverez.mail;"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:65
#, no-c-format
msgid "Forecast. Reports."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:71
#, no-c-format
msgid "Fernando Vilas &Fernando.Vilas.mail;"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:72
#, no-c-format
msgid "Database support."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:79
+#, no-c-format
+msgid "Documentation and user support."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:78
#, no-c-format
msgid "Cristian Oneţ &Cristian.Onet.mail;"
msgstr ""
+#. Tag: title
+#. +> stable5
+#: credits.docbook:63
+#, no-c-format
+msgid "Cristian Dávid &Christian.David.mail;"
+msgstr ""
+
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:79
#, no-c-format
msgid "Patches and Plugins"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:85
#, no-c-format
msgid "Jack H. Ostroff &Jack.H.Ostroff.mail;"
msgstr ""
+#. Tag: title
+#. +> stable5
+#: credits.docbook:78
+#, no-c-format
+msgid "Jack Ostroff &Jack.H.Ostroff.mail;"
+msgstr ""
+
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:86 credits.docbook:155 credits.docbook:162
#, no-c-format
msgid "Documentation."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:92
#, no-c-format
msgid "Migration to &kde;4/&Qt;4"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:93
#, no-c-format
msgid "This was a massive effort, and many developers contributed. Apologies to any we forgot to name explicitly."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:101
#, no-c-format
msgid "Developers of Previous Versions"
msgstr ""
#. Tag: title
+#. +> stable5
+#: credits.docbook:136
+#, no-c-format
+msgid "Inactive Developers and Contributors to Previous Versions"
+msgstr ""
+
+#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:106
#, no-c-format
msgid "Ace Jones &Ace.Jones.mail;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:107
#, no-c-format
msgid "Reports. OFX Import. Online Quotes. Documentation editor."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:158
+#, no-c-format
+msgid "Reporting logic. OFX Import. Online Quotes. Documentation editor."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:113
#, no-c-format
msgid "Kevin Tambascio <email>ktambascio@users.sourceforge.net</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:114
#, no-c-format
msgid "Initial investment support."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:120
#, no-c-format
msgid "Felix Rodriguez <email>frodriguez@users.sourceforge.net</email>"
msgstr ""
+#. Tag: title
+#. +> stable5
+#: credits.docbook:113
+#, no-c-format
+msgid "Wolfgang Rohdewald<email>woro@users.sourceforge.net</email>"
+msgstr ""
+
+#. Tag: title
+#. +> stable5
+#: credits.docbook:120
+#, no-c-format
+msgid "Marko Käning<email>mk-lists@email.de</email>"
+msgstr ""
+
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:121
#, no-c-format
msgid "Project admin."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:121
+#, no-c-format
+msgid "Patches, packaging and KF5-CI for OS-X"
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:127
#, no-c-format
msgid "John C <email>tacoturtle@users.sourceforge.net</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:128
#, no-c-format
msgid "Developer."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:64
+#, no-c-format
+msgid "Developer"
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:135
#, no-c-format
msgid "Special Thanks"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:140
#, no-c-format
msgid "Javier Campos Morales <email>javi_c@users.sourceforge.net</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:141
#, no-c-format
msgid "Developer &amp; Artist."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:147
#, no-c-format
msgid "Laurent Montel <email>montel@kde.org</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:148
#, no-c-format
msgid "Patches."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:154
#, no-c-format
msgid "Roger Lum &Roger.Lum.mail;"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:161
#, no-c-format
msgid "Darin Strait &Darin.Strait.mail;"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:168
#, no-c-format
msgid "Allan Anderson &Allan.Anderson.mail;"
msgstr ""
+#. Tag: title
+#. +> stable5
+#: credits.docbook:127
+#, no-c-format
+msgid "Allan Anderson ✝&Allan.Anderson.mail;"
+msgstr ""
+
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:169
#, no-c-format
msgid "Patches. CSV Importer Plugin."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:128
+#, no-c-format
+msgid "Patches. CSV import/export."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:175
#, no-c-format
msgid "Colin Wright &Colin.Wright.mail;"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:176
#, no-c-format
msgid "Patches and Documentation."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: credits.docbook:107
+#, no-c-format
+msgid "Patches and port to &kde;4."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:182
#, no-c-format
msgid "Bernd Gonsior <email>bernd.gonsior@googlemail.com</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:183
#, no-c-format
msgid "Reports. Migration to &kde;4/&Qt;4."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: credits.docbook:189
#, no-c-format
msgid "Ian Neal <email>iann_bugzilla@blueyonder.co.uk</email>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: credits.docbook:190
#, no-c-format
msgid "Scheduled transactions and calendars."
msgstr ""
#. Tag: trans_comment
#. +> trunk5 stable5 stable
#: credits.docbook:195
#, no-c-format
msgid "CREDIT_FOR_TRANSLATORS"
msgstr ""
#. Tag: sect1
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: credits.docbook:195
#, no-c-format
msgid "&underFDL; &underGPL;"
msgstr ""
+
+#. Tag: para
+#. +> stable5
+#: credits.docbook:14
+#, no-c-format
+msgid "&underGPL;"
+msgstr ""
+
+#. Tag: para
+#. +> stable5
+#: credits.docbook:23
+#, no-c-format
+msgid "&underFDL;"
+msgstr ""
Index: trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_firsttime.pot
===================================================================
--- trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_firsttime.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/docmessages/extragear-office/kmymoney_firsttime.pot (revision 1509808)
@@ -1,1317 +1,1471 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-28 10:17+0100\n"
+"POT-Creation-Date: 2018-02-02 13:50+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: author
#. +> trunk5 stable5 stable
#: firsttime.docbook:5
#, no-c-format
msgid "&Michael.T.Edwardes; &Michael.T.Edwardes.mail;"
msgstr ""
+#. Tag: author
+#. +> stable5
+#: firsttime.docbook:6
+#, no-c-format
+msgid "&Jack.H.Ostroff; &Jack.H.Ostroff.mail;"
+msgstr ""
+
#. Tag: date
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:7
#, no-c-format
msgid "2014-08-30"
msgstr ""
+#. Tag: date
+#. +> stable5
+#: firsttime.docbook:8
+#, no-c-format
+msgid "2018-02-01"
+msgstr ""
+
#. Tag: releaseinfo
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:8
#, no-c-format
msgid "4.7.01"
msgstr ""
+#. Tag: releaseinfo
+#. +> stable5
+#: firsttime.docbook:9
+#, no-c-format
+msgid "5.0.0"
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable
#: firsttime.docbook:11
#, no-c-format
msgid "Using &kappname; for the first time"
msgstr ""
#. Tag: title
#. +> stable5
-#: firsttime.docbook:11
+#: firsttime.docbook:12
#, no-c-format
msgid "Using &kmymoney; for the first time"
msgstr ""
#. Tag: title
#. +> trunk5 stable
#: firsttime.docbook:14
#, no-c-format
msgid "Running &kappname; for the first time"
msgstr ""
#. Tag: title
#. +> stable5
-#: firsttime.docbook:14
+#: firsttime.docbook:15
#, no-c-format
msgid "Running &kmymoney; for the first time"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:16
#, no-c-format
msgid "Once &kappname; has fully loaded two windows will be opened. The top window, 'Tip of the Day' offers one of a series of important or useful pieces of information about the application."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:16
+#: firsttime.docbook:17
#, no-c-format
msgid "Once &kmymoney; has fully loaded two windows will be opened. The top window, 'Tip of the Day' offers one of a series of important or useful pieces of information about the application."
msgstr ""
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:21
#, no-c-format
msgid "<screeninfo>Tip of the Day</screeninfo>"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:27
#, no-c-format
msgid "<phrase>Tip of the Day</phrase>"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:33
#, no-c-format
msgid "You are recommended to quickly read through these tips by pressing on the <guibutton>Previous</guibutton> and <guibutton>Next</guibutton> buttons at the bottom of the window."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:39
#, no-c-format
msgid "Once you have read the tips the window can be closed; it will re-open each time &kappname; is started. To stop this default behavior, uncheck the appropriate option on the Tip of the Day window."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:39
+#: firsttime.docbook:40
#, no-c-format
msgid "Once you have read the tips the window can be closed; it will re-open each time &kmymoney; is started. To stop this default behavior, uncheck the appropriate option on the Tip of the Day window."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:46
#, no-c-format
msgid "Tips can be read at anytime by selecting <guimenuitem>Show tip of the day</guimenuitem> from the <guimenu>Help</guimenu> menu within &kappname;."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:46
+#: firsttime.docbook:47
#, no-c-format
msgid "Tips can be read at anytime by selecting <guimenuitem>Show tip of the day</guimenuitem> from the <guimenu>Help</guimenu> menu within &kmymoney;."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:52
#, no-c-format
msgid "All tips have been extracted from the Frequently Asked Questions list (FAQ) that provides more detailed help and can be found on the project <ulink url=\"http://www.kmymoney.org/faq.php\">website</ulink> and in <link linkend=\"faq\">this manual</link>."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:59
#, no-c-format
msgid "Please click on <guibutton>Close</guibutton> to close the Tip of the Day dialog."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:66
#, no-c-format
msgid "The main window"
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:66
+#, no-c-format
+msgid "When you run &kmymoney;, it might not look exactly like the screenshots in this manual. Many details, such as fonts, colors, and icons, can be customized, either using the <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure &kmymoney;...</guimenuitem></menuchoice> dialog or the KDE System Settings application, depending on your operating system."
+msgstr ""
+
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:70
#, no-c-format
msgid "<screeninfo>The Main Window</screeninfo>"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:76
#, no-c-format
msgid "<phrase>The Main Window</phrase>"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:82
#, no-c-format
msgid "The &kappname; main window consists of four major parts"
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:82
+#: firsttime.docbook:95
#, no-c-format
msgid "The &kmymoney; main window consists of four major parts"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:87
#, no-c-format
msgid "A. The menu bar"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:88
#, no-c-format
msgid "B. The toolbar"
msgstr ""
+#. Tag: term
+#. +> stable5
+#: firsttime.docbook:588
+#, no-c-format
+msgid "Using the toolbar"
+msgstr ""
+
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:89
#, no-c-format
msgid "C. The View selector"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:90
#, no-c-format
msgid "D. The view"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:93
#, no-c-format
msgid "The menu and toolbars provide access to the features of &kappname; and allow you to <link linkend=\"firsttime.3\">Create</link> files or configure how &kappname; operates."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:93
+#: firsttime.docbook:106
#, no-c-format
msgid "The menu and toolbars provide access to the features of &kmymoney; and allow you to <link linkend=\"firsttime.3\">Create</link> files or configure how &kmymoney; operates."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:99
#, no-c-format
msgid "The view selector consists of at least eleven icons in the left side of the main window, depending upon the software provided by your system. More icons could be added by various plugins. By clicking on an icon, the view window on the right hand side is loaded with the appropriate view of your financial data. Each view provides a unique representation of your financial situation and allows you to view or edit the information shown."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:108
#, no-c-format
msgid "The view selector contains the following icons"
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:121
+#, no-c-format
+msgid "The view selector may contain the following icons"
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:114
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"home_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Home View</phrase> </textobject> </inlinemediaobject> </guiicon> Home: A configurable overview of your current financial situation (or an introduction page when no data file is open)."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:131
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"institutions_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Institutions View</phrase> </textobject> </inlinemediaobject> </guiicon> Institutions: All of your institutions and accounts displayed in a hierarchy."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:148
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"accounts_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Accounts View</phrase> </textobject> </inlinemediaobject> </guiicon> Accounts: All of your accounts displayed in a hierarchy."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:164
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"schedule_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Schedules View</phrase> </textobject> </inlinemediaobject> </guiicon> Schedules: Your recurring bills and deposits."
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:177
+#, no-c-format
+msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"schedule_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Schedules View</phrase> </textobject> </inlinemediaobject> </guiicon> Scheduled Transactionss: Your recurring bills and deposits."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:180
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"categories_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Categories View</phrase> </textobject> </inlinemediaobject> </guiicon> Categories: Special accounts that provide a means for you to group associated transactions."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:197
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"mail-tagged.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Tags View</phrase> </textobject> </inlinemediaobject> </guiicon> Tags: Special accounts that provide an additional means to Categories for you to group associated transactions."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:214
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"payees_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Payees View</phrase> </textobject> </inlinemediaobject> </guiicon> Payees: All Payees used by &kappname;."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:214
+#: firsttime.docbook:227
#, no-c-format
-msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"payees_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Payees View</phrase> </textobject> </inlinemediaobject> </guiicon> Payees: All Payees used by &kmymoney;."
+msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"payees_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Payees View</phrase> </textobject> </inlinemediaobject> </guiicon> Payees: All Payees used by &kmymoney;. These are all the people or organizations you pay money to or receive money from."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:230
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"ledgers_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Ledgers View</phrase> </textobject> </inlinemediaobject> </guiicon> Ledgers: Your account transactions."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:246
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"investments_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Investments View</phrase> </textobject> </inlinemediaobject> </guiicon> Investments: Your portfolio summary."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:262
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"reports_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Reports View</phrase> </textobject> </inlinemediaobject> </guiicon> Reports: A collection of useful reports, providing alternate views of your financial data."
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:276
+#, no-c-format
+msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"reports_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Reports View</phrase> </textobject> </inlinemediaobject> </guiicon> Reports: A collection of useful reports, providing alternate, customizable views of your financial data."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:279
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"budgets_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Budgets View</phrase> </textobject> </inlinemediaobject> </guiicon> Budgets: Your budgets"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:295
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"forecast_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Forecast View</phrase> </textobject> </inlinemediaobject> </guiicon> Forecast: This view provides a forecast of your accounts and categories"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:311
#, no-c-format
msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"outbox_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Outbox View</phrase> </textobject> </inlinemediaobject> </guiicon> Outbox: Used by the online banking module to provide feedback on running processes. This is a view provided by the KBanking plugin and may not be present on your system."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:325
+#, no-c-format
+msgid "<guiicon> <inlinemediaobject> <imageobject> <imagedata fileref=\"outbox_view.png\" format=\"PNG\"/> </imageobject> <textobject> <phrase>Outbox View</phrase> </textobject> </inlinemediaobject> </guiicon> Outbox: Used by the online banking module to provide feedback on running processes. This view is provided by the KBanking plugin and may not be present on your system."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:331
#, no-c-format
msgid "Creating a new file"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:333
#, no-c-format
msgid "&kappname; keeps all the data about your finances in a file. As was stated in <link linkend=\"makingmostof.basicaccounting.personalaccounts\">Defining the accounts (personal records)</link>, you can keep more than one set of accounts, but the data for each will be kept in a separate file, and &kappname; can only have one file open at a time. See the chapter on <link linkend=\"details.formats\">File Formats</link> for more details about &kappname;'s data files."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:333
+#: firsttime.docbook:347
#, no-c-format
msgid "&kmymoney; keeps all the data about your finances in a file. As was stated in <link linkend=\"makingmostof.basicaccounting.personalaccounts\">Defining the accounts (personal records)</link>, you can keep more than one set of accounts, but the data for each will be kept in a separate file, and &kmymoney; can only have one file open at a time. See the chapter on <link linkend=\"details.formats\">File Formats</link> for more details about &kmymoney;'s data files."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:343
#, no-c-format
msgid "To create a new file you can either select <menuchoice><guimenu>File</guimenu><guimenuitem>New</guimenuitem></menuchoice> from the menu or choose the <inlinemediaobject><imageobject><imagedata fileref=\"new.png\"/></imageobject><textobject><phrase>New</phrase></textobject></inlinemediaobject> icon from the toolbar."
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:357
+#, no-c-format
+msgid "To create a new file you can either select <menuchoice><guimenu>File</guimenu><guimenuitem>New</guimenuitem></menuchoice> from the menu or choose the <inlinemediaobject><imageobject><imagedata fileref=\"new.png\"/></imageobject><textobject><phrase>New</phrase></textobject></inlinemediaobject> icon from the toolbar. In addition, if the main welcome page is displayed, you can also select the first link: \"Get started and setup accounts.\""
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:351
#, no-c-format
msgid "&kappname; will then open the <quote>New File Setup Wizard</quote> which will guide you through the process of creating the file."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:351
+#: firsttime.docbook:366
#, no-c-format
msgid "&kmymoney; will then open the <quote>New File Setup Wizard</quote> which will guide you through the process of creating the file."
msgstr ""
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:358
#, no-c-format
msgid "<screeninfo>Personal Data Page</screeninfo>"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:364
#, no-c-format
msgid "<phrase>Personal Data Page</phrase>"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:370
#, no-c-format
msgid "Since all fields are optional, you can use &kappname; without entering any information now. Any information entered here is used only to personalize your file. In the future, it may be used in some reports and for online banking. If &kappname; requires any personal information in future releases and finds none, you will be prompted to enter the relevant data then."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:370
+#: firsttime.docbook:385
#, no-c-format
msgid "Since all fields are optional, you can use &kmymoney; without entering any information now. Any information entered here is used only to personalize your file. In the future, it may be used in some reports and for online banking. If &kmymoney; requires any personal information in future releases and finds none, you will be prompted to enter the relevant data then."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:378
#, no-c-format
msgid "Please enter your name and address or nothing and press <guibutton>Next</guibutton>."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:383
#, no-c-format
msgid "In case you have an address for yourself stored in the &kaddressbook;, the button <guibutton>Load from Addressbook</guibutton> is enabled and pressing it imports all information into &kappname;."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:383
+#: firsttime.docbook:398
#, no-c-format
msgid "In case you have an address for yourself stored in the &kaddressbook;, the button <guibutton>Load from Addressbook</guibutton> is enabled and pressing it imports all information into &kmymoney;."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:389
#, no-c-format
msgid "&kappname; supports multiple currencies. To set your base currency (the currency you use day to day and which will be used for your reports), select the appropriate entry from the list provided and press <guibutton>Next</guibutton>. A default will be selected from &kappname; based upon your locale settings."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:389
+#: firsttime.docbook:404
#, no-c-format
-msgid "&kmymoney; supports multiple currencies. To set your base currency (the currency you use day to day and which will be used for your reports), select the appropriate entry from the list provided and press <guibutton>Next</guibutton>. A default will be selected from &kmymoney; based upon your locale settings."
+msgid "&kmymoney; supports multiple currencies. To set your base currency (the currency you use day to day and which will be used for your reports), select the appropriate entry from the list provided and press <guibutton>Next</guibutton>. A default will be selected from &kmymoney; based upon your locale settings. If you don't see your currency, be sure to look through the entire list, in case it it simply not sorted as you might expect."
msgstr ""
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:399
#, no-c-format
msgid "Base currency selection Page"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:405
#, no-c-format
msgid "Base currency selection page"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:411
#, no-c-format
msgid "The following page allows you to create an initial account. For the typical &kappname; user this is a checking account."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:411
+#: firsttime.docbook:413
+#, no-c-format
+msgid "In the following example, US Dollar has been selected as the base currency."
+msgstr ""
+
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:431
#, no-c-format
msgid "The following page allows you to create an initial account. For the typical &kmymoney; user this is a checking account."
msgstr ""
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:418
#, no-c-format
msgid "Checking account creation Page"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:424
#, no-c-format
msgid "Checking account creation page"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:430
#, no-c-format
msgid "Enter the name of the account and a possible reference number assigned by the institution managing the account. Enter the opening date of the account and the opening balance of the account. For example, you want to use &kappname; to manage all your finances as of 2008-01-01, then enter the balance of the account at the beginning of this date. The number can possibly be obtained from a paper statement. Also enter the name and routing number of the institution, though this information is optional and only required for online banking purposes."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:430
+#: firsttime.docbook:450
#, no-c-format
-msgid "Enter the name of the account and a possible reference number assigned by the institution managing the account. Enter the opening date of the account and the opening balance of the account. For example, you want to use &kmymoney; to manage all your finances as of 2008-01-01, then enter the balance of the account at the beginning of this date. The number can possibly be obtained from a paper statement. Also enter the name and routing number of the institution, though this information is optional and only required for online banking purposes."
+msgid "Enter the name of the account and a possible account or reference number assigned by the institution managing the account. Enter the opening date of the account and the opening balance of the account. For example, you want to use &kmymoney; to manage all your finances as of 2008-01-01, then enter the balance of the account at the beginning of this date. The number can possibly be obtained from a paper statement. Also enter the name and routing number of the institution, though this information is optional and only required for online banking purposes."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:441
#, no-c-format
msgid "In case you don't want to setup an initial account, please uncheck the check box"
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:461
+#, no-c-format
+msgid "In case you don't want to setup an initial account, please uncheck the check box."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:445
#, no-c-format
msgid "Once finished, press <guibutton>Next</guibutton> to proceed."
msgstr ""
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:451
#, no-c-format
msgid "Account template selection Page"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:457
#, no-c-format
msgid "Account template selection page"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:464
#, no-c-format
msgid "Choose the appropriate country and account template(s). Multiple templates, even from multiple countries can be selected using a combination of &Ctrl; and &Shift; together with the left mouse button. The account hierarchy to be setup will be shown in a preview part of the wizard. In case you cannot find a template that suits your needs, don't select a template."
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:484
+#, no-c-format
+msgid "Choose the appropriate country and account template(s). Each template provides a different set of categories for organizing your finances. Multiple templates, even from different countries, can be selected using a combination of &Ctrl; and &Shift; together with the left mouse button. The account hierarchy to be setup will be shown in a preview part of the wizard. In case you cannot find a template that suits your needs, don't select a template at this time, and you can manually set up categories later."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:473
#, no-c-format
msgid "Once finished with the template selection press <guibutton>Next</guibutton> to proceed."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:478
#, no-c-format
msgid "The next page of the wizard allows you to setup user preferences. Press <guibutton>Next</guibutton> if you are done and want to proceed."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:499
+#, no-c-format
+msgid "The next page of the wizard allows you to setup user preferences. If you select the checkbox, the application settings dialog will be displayed after you have completed the account setup wizard. Press <guibutton>Next</guibutton> if you are done and want to proceed."
+msgstr ""
+
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:485
#, no-c-format
msgid "Preference Page"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:491
#, no-c-format
msgid "Preference page"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:497
#, no-c-format
msgid "The last page of the wizard allows you to select the filename that will be used to store your financial data. An initial filename will be constructed out of your HOME folder and user name. In case the file exists, a warning will be displayed which reminds you to select a name of a non-existing file."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:520
+#, no-c-format
+msgid "The last page of the wizard allows you to select the location and filename that will be used to store your financial data. Initial values will be constructed out of your HOME folder and user name. In case the file exists, a warning will be displayed which reminds you to select a name of a non-existing file."
+msgstr ""
+
#. Tag: screeninfo
#. +> trunk5 stable5 stable
#: firsttime.docbook:506
#, no-c-format
msgid "Filename selection Page"
msgstr ""
#. Tag: phrase
#. +> trunk5 stable5 stable
#: firsttime.docbook:512
#, no-c-format
msgid "Filename selection page"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:518
#, no-c-format
msgid "Now you have entered all relevant information to create the file. Press <guibutton>Finish</guibutton> and &kappname; will create the file for you and open it."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:518
+#: firsttime.docbook:542
#, no-c-format
msgid "Now you have entered all relevant information to create the file. Press <guibutton>Finish</guibutton> and &kmymoney; will create the file for you and open it."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:532
#, no-c-format
msgid "Creating accounts"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:534
#, no-c-format
msgid "You can create an account in one of two ways, both of which are described here:"
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:553
+#, no-c-format
+msgid "There are multiple ways you can create an account, which are described here:"
+msgstr ""
+
#. Tag: term
#. +> trunk5 stable5 stable
#: firsttime.docbook:540
#, no-c-format
msgid "Using the menu"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:542
#, no-c-format
msgid "To create an account using the menu select <menuchoice><guimenu>Accounts</guimenu><guimenuitem>New account</guimenuitem></menuchoice>."
msgstr ""
#. Tag: term
#. +> trunk5 stable5 stable
#: firsttime.docbook:551
#, no-c-format
msgid "Using the Accounts view"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:553
#, no-c-format
msgid "To create an account using the accounts view click on the Accounts icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"accounts_view.png\"/></imageobject></inlinemediaobject></guiicon> in the view selector and then right click on the Asset tree icon in the right hand view and select <guimenuitem>New account</guimenuitem> from the popup menu. The Asset tree holds all of your accounts that are an asset. Assets, and all the other account types, are discussed in more detail later in this manual."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:568
#, no-c-format
msgid "Note that &kappname; uses the context menus a lot throughout the whole application. If you find yourself stuck trying to figure out how to do something, try right-clicking where you would expect to see a feature."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:568
+#: firsttime.docbook:572
#, no-c-format
-msgid "Note that &kmymoney; uses the context menus a lot throughout the whole application. If you find yourself stuck trying to figure out how to do something, try right-clicking where you would expect to see a feature."
+msgid "To create an account using the accounts view click on the Accounts icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"accounts_view.png\"/></imageobject></inlinemediaobject></guiicon> in the view selector to display the Accounts View. Right click on the eitehr the Asset tree icon or the Liability tree icon in the right hand view and select <guimenuitem>New account</guimenuitem> from the popup menu. The Asset tree holds all of your accounts that are an asset, such as savings and investments. Liabilities are accounts that represent money you owe, such as loand and credit cards. These and all the other account types are discussed in more detail later in this manual."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:575
#, no-c-format
msgid "Creating a new account by either method opens the <emphasis>New Account Wizard</emphasis>. This wizard will take you step by step through the process of creating an account, gathering the required information at each step. To navigate through the pages click on the <guibutton>Back</guibutton> and <guibutton>Next</guibutton> buttons."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> stable5
+#: firsttime.docbook:607
+#, no-c-format
+msgid "Creating a new account by either method opens the <emphasis>New Account Wizard</emphasis>. This wizard will take you step by step through the process of creating an account, gathering the required information at each step. To navigate through the pages click on the <guibutton>Next</guibutton> and <guibutton>Back</guibutton> buttons."
+msgstr ""
+
+#. Tag: para
+#. +> trunk5 stable
#: firsttime.docbook:583
#, no-c-format
msgid "Create an account using either of the two previously mentioned methods to continue. A full description of creating accounts can be found in the <link linkend=\"details.accounts\">Accounts</link> section."
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:615
+#, no-c-format
+msgid "Create an account using any of the previously mentioned methods to continue. A full description of creating accounts can be found in the <link linkend=\"details.accounts\">Accounts</link> section."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:589
#, no-c-format
msgid "Now that one or more accounts exist in &kappname;, your account summary is shown in the Home view. You can create transactions manually in the <link linkend=\"details.ledgers\">Ledgers</link> view, or set up automatic transactions through the <link linkend=\"details.schedules\">Schedules</link> view."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:589
+#: firsttime.docbook:590
+#, no-c-format
+msgid "If the <guibutton>New Account...</guibutton> button is displayed on the toolbar, you can click it to create an account."
+msgstr ""
+
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:621
#, no-c-format
msgid "Now that one or more accounts exist in &kmymoney;, your account summary is shown in the Home view. You can create transactions manually in the <link linkend=\"details.ledgers\">Ledgers</link> view, or set up automatic transactions through the <link linkend=\"details.schedules\">Schedules</link> view."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:599
#, no-c-format
msgid "Schedules"
msgstr ""
#. Tag: para
+#. +> stable5
+#: firsttime.docbook:600
+#, no-c-format
+msgid "Note that &kmymoney; uses context menus a lot throughout the whole application. If you find yourself stuck trying to figure out how to do something, try right-clicking where you would expect to see a feature."
+msgstr ""
+
+#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:601
#, no-c-format
msgid "Sometimes called a recurring transaction, a <link linkend=\"details.schedules\">Schedule</link> is a transaction that occurs one or more times over a certain period of time. A typical example is your pay check that you receive every month or week. Rather than have to enter the transaction details each time you get paid, you can instruct &kappname; to create a schedule that will enter a transaction for you when you get paid."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:601
+#: firsttime.docbook:633
#, no-c-format
msgid "Sometimes called a recurring transaction, a <link linkend=\"details.schedules\">Schedule</link> is a transaction that occurs one or more times over a certain period of time. A typical example is your pay check that you receive every month or week. Rather than have to enter the transaction details each time you get paid, you can instruct &kmymoney; to create a schedule that will enter a transaction for you when you get paid."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:610
#, no-c-format
msgid "To maintain <link linkend=\"details.schedules\">schedules</link> click on the Schedules icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"schedule_view.png\"/></imageobject></inlinemediaobject></guiicon> in the view selector."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:619
#, no-c-format
msgid "Categories"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:621
#, no-c-format
msgid "To maintain <link linkend=\"details.categories\">categories</link> click on the <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"categories_view.png\"/></imageobject></inlinemediaobject></guiicon> Categories icon in the view selector."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:628
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.categories\">Categories</link> section."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:635
#, no-c-format
msgid "Tags"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:637
#, no-c-format
msgid "To maintain <link linkend=\"details.tags\">tags</link> click on the Tags icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"mail-tagged.png\"/></imageobject></inlinemediaobject></guiicon> in the view selector."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:644
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.tags\">Tags</link> section."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:651
#, no-c-format
msgid "Payees"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:653
#, no-c-format
msgid "To maintain your list of payees click on the Payees icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"payees_view.png\"/></imageobject></inlinemediaobject></guiicon> in the view selector."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:660
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.payees\">Payees</link> section."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:667
#, no-c-format
msgid "Quicken Interchange Format (QIF) Import"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:669
#, no-c-format
msgid "If you currently use a financial manager application, &kappname; can import an account's transactions as long as they are in the Quicken Interchange Format (QIF). Most financial programs can export this format and the different applications methods of exporting QIF is not discussed here for brevity."
msgstr ""
#. Tag: para
-#. +> stable5
-#: firsttime.docbook:669
-#, no-c-format
-msgid "If you currently use a financial manager application, &kmymoney; can import an account's transactions as long as they are in the Quicken Interchange Format (QIF). Most financial programs can export this format and the different applications methods of exporting QIF is not discussed here for brevity."
-msgstr ""
-
-#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:676
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.impexp.qifimp\">QIF Import</link> section."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:683
#, no-c-format
msgid "Searching for transactions"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:685
#, no-c-format
msgid "&kappname; provides a useful and powerful transaction search facility in the form of the search dialog."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:685
+#: firsttime.docbook:719
#, no-c-format
msgid "&kmymoney; provides a useful and powerful transaction search facility in the form of the search dialog."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:690
#, no-c-format
msgid "The search dialog can be opened from the toolbar using the Find icon <guiicon><inlinemediaobject><imageobject><imagedata fileref=\"transaction_find.png\"/></imageobject></inlinemediaobject></guiicon> or by selecting <guimenuitem>Find Transaction</guimenuitem> from the <guimenu>Edit</guimenu> menu."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:698
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.search\">Search</link> section."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:701
+#, no-c-format
+msgid "If you currently use another financial manager application, &kmymoney; can import an account's transactions as long as they can be exported or saved in a format &kmymoney; understands. The most common of these is the Quicken Interchange Format (QIF). Most financial programs can export this format, although the different applications' methods of exporting QIF is not discussed here for brevity."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:706
#, no-c-format
msgid "Reconciliation"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:708
#, no-c-format
msgid "At some point you will want to reconcile the transactions you have entered with the transactions listed in a statement, be it a bank statement, credit card statement, loan statement, or any other statement. Reconciliation involves matching what you have entered with what the statement lists. If any discrepancies are found then either you or the person who created the statement have made a mistake."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:717
#, no-c-format
msgid "To reconcile an account, first select the account, either from <guiicon>Accounts</guiicon> view or from <guiicon>Ledgers</guiicon> view. Then, either click on the <guiicon>Reconcile</guiicon> icon on the Toolbar, or select <guimenuitem>Reconcile</guimenuitem> from the <guimenu>Account</guimenu> menu."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:725
#, no-c-format
msgid "A full description of this topic can be found in the <link linkend=\"details.reconcile\">Reconciliation</link> section."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:732
#, no-c-format
msgid "Backing up"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:734
#, no-c-format
msgid "Now that you have created some accounts and entered transactions it's a good idea to perform a backup. Because the file used by &kappname; is a standard Unix file you can just copy the file to another location to back it up or use the dialog provided by &kappname;. Using the dialog is the preferred method because if &kappname; ever starts using other file formats, such as SQL, then it would be much harder to copy the file manually."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:734
+#: firsttime.docbook:768
#, no-c-format
msgid "Now that you have created some accounts and entered transactions it's a good idea to perform a backup. Because the file used by &kmymoney; is a standard Unix file you can just copy the file to another location to back it up or use the dialog provided by &kmymoney;. Using the dialog is the preferred method because if &kmymoney; ever starts using other file formats, such as SQL, then it would be much harder to copy the file manually."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:743
#, no-c-format
msgid "To backup your file through &kappname; Select <guimenuitem>Backup</guimenuitem> from the <guimenu>File</guimenu> menu and enter the folder where you wish the file to be copied to. If the folder needs mounting first and you have the sufficient privileges then check the tick box labeled <guilabel>Mount this directory before backing up</guilabel> and click on <guibutton>OK</guibutton>."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:743
+#: firsttime.docbook:777
#, no-c-format
-msgid "To backup your file through &kmymoney; Select <guimenuitem>Backup</guimenuitem> from the <guimenu>File</guimenu> menu and enter the folder where you wish the file to be copied to. If the folder needs mounting first and you have the sufficient privileges then check the tick box labeled <guilabel>Mount this directory before backing up</guilabel> and click on <guibutton>OK</guibutton>."
+msgid "To backup your file through &kmymoney; Select <guimenuitem>Backup</guimenuitem> from the <guimenu>File</guimenu> menu and enter the folder where you wish the file to be saved. If the folder needs mounting first and you have the sufficient privileges then check the tick box labeled <guilabel>Mount this directory before backing up</guilabel> and click on <guibutton>OK</guibutton>."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable
#: firsttime.docbook:752
#, no-c-format
msgid "The file will be copied to the folder specified with the current date appended to the filename so it is easy to see the date the file was backed up."
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:786
+#, no-c-format
+msgid "The file will be saved to the folder specified with the current date appended to the filename so it is easy to see the date the file was backed up."
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable
#: firsttime.docbook:759
#, no-c-format
msgid "Launching &kappname;"
msgstr ""
#. Tag: title
#. +> stable5
-#: firsttime.docbook:759
+#: firsttime.docbook:793
#, no-c-format
msgid "Launching &kmymoney;"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:761
#, no-c-format
msgid "Most commonly, you will launch &kappname; from an icon or a start menu of your window manager. In this case, the default behavior is that &kappname; will open the last file you had open. However, in some circumstances, you will want or need to launch &kappname; from the command line."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:761
+#: firsttime.docbook:795
#, no-c-format
msgid "Most commonly, you will launch &kmymoney; from an icon or a start menu of your window manager. In this case, the default behavior is that &kmymoney; will open the last file you had open. However, in some circumstances, you will want or need to launch &kmymoney; from the command line."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:768
#, no-c-format
msgid "For a complete description of all the available line options, see the man page for &kappname;. However, there are two special cases which we describe here."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:768
+#: firsttime.docbook:802
#, no-c-format
-msgid "For a complete description of all the available line options, see the man page for &kmymoney;. However, there are two special cases which we describe here."
+msgid "For a complete description of all the available command line options, see the man page for &kmymoney;. However, there are two special cases which we describe here."
msgstr ""
#. Tag: command
#. +> trunk5 stable5 stable
#: firsttime.docbook:773
#, no-c-format
msgid "kmymoney -n"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:774
#, no-c-format
msgid "The -n option tells &kappname; not to open the last file it had open. This can be useful if the program crashes on startup."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:774
+#: firsttime.docbook:809
#, no-c-format
msgid "The -n option tells &kmymoney; not to open the last file it had open. This can be useful if the program crashes on startup."
msgstr ""
#. Tag: command
#. +> trunk5 stable5 stable
#: firsttime.docbook:780
#, no-c-format
msgid "kmymoney &lt;path to file&gt;"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:781
#, no-c-format
msgid "Giving &kappname; a filename on the command line tells it to open that file instead of the last file it had open. You can use the name of any valid &kappname; file, as described in the chapter on <link linkend=\"details.formats\">file formats</link>. In addition, this can be used to import a <link linkend=\"details.impexp.gnucash\">GnuCash</link> file."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:781
+#: firsttime.docbook:816
#, no-c-format
msgid "Giving &kmymoney; a filename on the command line tells it to open that file instead of the last file it had open. You can use the name of any valid &kmymoney; file, as described in the chapter on <link linkend=\"details.formats\">file formats</link>. In addition, this can be used to import a <link linkend=\"details.impexp.gnucash\">GnuCash</link> file."
msgstr ""
#. Tag: title
#. +> trunk5 stable
#: firsttime.docbook:792
#, no-c-format
msgid "How to move &kappname; to a new computer"
msgstr ""
#. Tag: title
#. +> stable5
-#: firsttime.docbook:792
+#: firsttime.docbook:827
#, no-c-format
msgid "How to move &kmymoney; to a new computer"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:795
#, no-c-format
msgid "Moving your data"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:797
#, no-c-format
msgid "If you get a new computer, it's very easy to move your data. In fact, all you have to do is to copy your &kappname; data file. The name of the file is shown in the title bar when &kappname; is running, it usually ends in .kmy. The first time you run the application on the new computer you will have to tell it where you have put the data file, either by running from the command line, or from the <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice> menu. You should even be able to move between &Windows;, &MacOS;, and &Linux; systems."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:797
+#: firsttime.docbook:832
#, no-c-format
msgid "If you get a new computer, it's very easy to move your data. In fact, all you have to do is to copy your &kmymoney; data file. The name of the file is shown in the title bar when &kmymoney; is running, it usually ends in .kmy. The first time you run the application on the new computer you will have to tell it where you have put the data file, either by running from the command line, or from the <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice> menu. You should even be able to move between &Windows;, &MacOS;, and &Linux; systems."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:808
#, no-c-format
msgid "If you have encrypted your data file, be sure the appropriate software and keys have also been set up on the new computer."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:813
#, no-c-format
msgid "If your data is in an SQL database, refer to documentation for your database software for guidance on migrating your data."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:818
#, no-c-format
msgid "Note that this assumes you have installed the same version of &kappname; on the new computer as you were running on the old computer. Installing a newer version should also be safe, but you need to be aware of any issues related to that upgrade. Any such issues should be noted in the release notes for the new version."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:818
+#: firsttime.docbook:853
#, no-c-format
msgid "Note that this assumes you have installed the same version of &kmymoney; on the new computer as you were running on the old computer. Installing a newer version should also be safe, but you need to be aware of any issues related to that upgrade. Any such issues should be noted in the release notes for the new version."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:827
#, no-c-format
msgid "Moving your settings"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:829
#, no-c-format
msgid "If you only move your data file to the new machine, as described in the previous section, &kappname; will work correctly, but you will have lost any settings you changed from the default on your old machine. To maintain these settings, you also need to copy your configuration file. This file is called <quote>kmymoneyrc</quote>. This file will be in a directory with other &kde; application configuration files. On a &Linux; system, this will be in <quote>$KDEHOME/share/config</quote> where <quote>$KDEHOME</quote> is usually <quote>.kde4</quote> within your home directory."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:829
+#: firsttime.docbook:864
#, no-c-format
-msgid "If you only move your data file to the new machine, as described in the previous section, &kmymoney; will work correctly, but you will have lost any settings you changed from the default on your old machine. To maintain these settings, you also need to copy your configuration file. This file is called <quote>kmymoneyrc</quote>. This file will be in a directory with other &kde; application configuration files. On a &Linux; system, this will be in <quote>$KDEHOME/share/config</quote> where <quote>$KDEHOME</quote> is usually <quote>.kde4</quote> within your home directory."
+msgid "If you only move your data file to the new machine, as described in the previous section, &kmymoney; will work correctly, but you will have lost any settings you changed from the default on your old machine. To maintain these settings, you also need to copy your configuration file. This file is called <quote>kmymoneyrc</quote>. This file will be in a directory with other &kde; application configuration files. On a &Linux; system, this will be in <quote>$KDEHOME/share/config</quote> where <quote>$KDEHOME</quote> is usually <quote>.config</quote> within your home directory. If you are migrating from a version of &kmymoney; prior to 5.0 to 5.0 or later, the old location of<quote>$KDEHOME</quote> was <quote>.kde4</quote>."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:841
#, no-c-format
msgid "Moving plugin settings"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:843
#, no-c-format
msgid "If you have run any &kappname; plugins, such as the csv importer or exporter, it may also have created a configuration file in that same directory, such as csvimporterrc or csvexporterrc. These should also be copied to the new computer."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:843
+#: firsttime.docbook:880
#, no-c-format
-msgid "If you have run any &kmymoney; plugins, such as the csv importer or exporter, it may also have created a configuration file in that same directory, such as csvimporterrc or csvexporterrc. These should also be copied to the new computer."
+msgid "If you have run any &kmymoney; plugin, such as the csv importer or exporter, it may also have created a configuration file in that same directory, such as csvimporterrc or csvexporterrc. These should also be copied to the new computer."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:850
#, no-c-format
msgid "As with the main data file, this assumes the same version of the plugin on both computers. Upgrades are generally safe, but if the functionality of the plugin has changed greatly, it is advisable to carefully test using the old configuration file, to be sure the plugin behaves as you expect."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:858
#, no-c-format
msgid "These instructions are solely for moving your &kappname; data and settings. However, there may be important items which are stored by &kde; and not by &kappname;, such as any passwords stored in kwallet. Moving other parts of your &kde; setup is beyond the scope of this manual, although many of the relevant files are also stored under <quote>$KDEHOME</quote>."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:858
+#: firsttime.docbook:902
#, no-c-format
-msgid "These instructions are solely for moving your &kmymoney; data and settings. However, there may be important items which are stored by &kde; and not by &kmymoney;, such as any passwords stored in kwallet. Moving other parts of your &kde; setup is beyond the scope of this manual, although many of the relevant files are also stored under <quote>$KDEHOME</quote>."
+msgid "These instructions are solely for moving your &kmymoney; data and settings. However, there may be important items which are stored by &kde; and not by &kmymoney;, such as passwords stored in kwallet. Moving other parts of your &kde; setup is beyond the scope of this manual, although many of the relevant files are also stored under <quote>$KDEHOME</quote>."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:871
#, no-c-format
msgid "Contacting the Developers / Reporting Bugs"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:874
#, no-c-format
msgid "Contacting the developers"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:876
#, no-c-format
msgid "For general questions or comments about &kappname;, there is a users' mailing list &userlist;. In addition, you can contact the developers through their mailing list &devlist;."
msgstr ""
#. Tag: para
-#. +> stable5
-#: firsttime.docbook:876
-#, no-c-format
-msgid "For general questions or comments about &kmymoney;, there is a users' mailing list &userlist;. In addition, you can contact the developers through their mailing list &devlist;."
-msgstr ""
-
-#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:882
#, no-c-format
msgid "We're happy to hear about your experiences using &kappname;."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:882
+#: firsttime.docbook:931
#, no-c-format
msgid "We're happy to hear about your experiences using &kmymoney;."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:888
#, no-c-format
msgid "Reporting bugs"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:890
#, no-c-format
msgid "To report a bug please use the interface provided by &kappname; by selecting <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> and filling in the required information. However, in case you have any difficulties with that method, you can report a bug (or file a wish-list or enhancement request) directly at the <ulink url=\"http://bugs.kde.org\">&kde; bug reporting web page</ulink>. Reports should be filed against the product <quote>kmymoney4</quote>. <quote>kmymoney2</quote> was specifically for bugs in the 1.0.x versions of the application, and as those versions are no longer supported, it is closed for further bug reporting."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:890
+#: firsttime.docbook:894
+#, no-c-format
+msgid "Note that when upgrading from a previous version to version 5.0 or higher, the location of the template files used by the plugin for printing checks has changed. Please consult the release notes or the project <ulink url=\"http://www.kmymoney.org/faq.php\">website</ulink> for more details."
+msgstr ""
+
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:939
#, no-c-format
-msgid "To report a bug please use the interface provided by &kmymoney; by selecting <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> and filling in the required information. However, in case you have any difficulties with that method, you can report a bug (or file a wish-list or enhancement request) directly at the <ulink url=\"http://bugs.kde.org\">&kde; bug reporting web page</ulink>. Reports should be filed against the product <quote>kmymoney4</quote>. <quote>kmymoney2</quote> was specifically for bugs in the 1.0.x versions of the application, and as those versions are no longer supported, it is closed for further bug reporting."
+msgid "To report a bug please use the interface provided by &kmymoney; by selecting <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> and filling in the required information. However, in case you have any difficulties with that method, you can report a bug (or file a wish-list or enhancement request) directly at the <ulink url=\"http://bugs.kde.org\">&kde; bug reporting web site</ulink>. Reports should be filed against the product <quote>kmymoney</quote>."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:903
#, no-c-format
msgid "In any case, before reporting a bug, please read through the guidelines below. Following them will make it more likely that the developers will be able to quickly identify the problem without having to ask you for more information."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:910
#, no-c-format
msgid "Writing High Quality Bug Reports"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:912
#, no-c-format
msgid "We encourage users to take extra time to write high-quality bug reports when submitting them. This reduces wasted effort on all sides, as the reporter and the developer who will fix it trade emails until this information is really in place."
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:919
#, no-c-format
msgid "Eli Goldberg wrote the canonical Bug-Writing Guideline, available at <ulink url=\"http://issues.apache.org/bugwritinghelp.html\">http://issues.apache.org/bugwritinghelp.html</ulink>. Generally, you'll be well-served by following these guidelines:"
msgstr ""
+#. Tag: para
+#. +> stable5
+#: firsttime.docbook:920
+#, no-c-format
+msgid "For general questions or comments about &kmymoney;, there is a users' mailing list &userlist;. (<ulink url=\"https://mail.kde.org/mailman/listinfo/kmymoney\">more details here</ulink>.) In addition, you can contact the developers through their mailing list &devlist;. (<ulink url=\"https://mail.kde.org/mailman/listinfo/kmymoney-devel\"> more deatils here</ulink>.) Since replies are often sent only to the list, you may not get any response unless you subscribe to one of the lists before sending to it,"
+msgstr ""
+
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:925
#, no-c-format
msgid "Include your system information"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:926
#, no-c-format
msgid "The <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> menu choice will fill this in automatically, but if you would prefer not to use this interface, there are several items you need to include in the report. We will need to know what operating system you are using (&Linux;, &MacOS;, or &Windows;), the version of &kde; and the version of &kappname; you're running, and either the version of &MacOS; or &Windows; or the name and version of your &Linux; distribution and the version of your kernel."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:926
+#: firsttime.docbook:972
#, no-c-format
-msgid "The <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> menu choice will fill this in automatically, but if you would prefer not to use this interface, there are several items you need to include in the report. We will need to know what operating system you are using (&Linux;, &MacOS;, or &Windows;), the version of &kde; and the version of &kmymoney; you're running, and either the version of &MacOS; or &Windows; or the name and version of your &Linux; distribution and the version of your kernel."
+msgid "The <menuchoice><guimenu>Help</guimenu><guimenuitem>Report Bug</guimenuitem></menuchoice> menu choice will fill this in automatically, but if you would prefer not to use this interface, there are several items you need to include in the report. We will need to know what operating system you are using (&Linux;, &MacOS;, or &Windows;), the version of &kde;, and the version of &kmymoney; you're running, and either the version of &MacOS; or &Windows; or the name and version of your &Linux; distribution and the version of your kernel."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:938
#, no-c-format
msgid "Include a backtrace for crashes"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:939
#, no-c-format
msgid "The backtrace is often the single most useful piece of information in solving crashes."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:945
#, no-c-format
msgid "Try to reproduce it"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:946
#, no-c-format
msgid "Let us know if you were able to do so. It's useful to know whether the bug only happened once and you couldn't get it to happen again or happens every time or happens sometimes but not others."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:953
#, no-c-format
msgid "Include specific steps"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:954
#, no-c-format
msgid "This is a bad bug report: <quote>I entered a transaction, and &kappname; crashed.</quote> A much better bug report is: <quote>Using the transaction form, I entered a new transaction in my Credit Card account. I selected the Transfer tab, entered in an amount, then changed to the Deposit tab, and back to the Transfer tab. When I returned to the Transfer tab, &kappname; crashed. This bug is fully reproducible for me.</quote>"
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:954
+#: firsttime.docbook:1000
#, no-c-format
msgid "This is a bad bug report: <quote>I entered a transaction, and &kmymoney; crashed.</quote> A much better bug report is: <quote>Using the transaction form, I entered a new transaction in my Credit Card account. I selected the Transfer tab, entered in an amount, then changed to the Deposit tab, and back to the Transfer tab. When I returned to the Transfer tab, &kmymoney; crashed. This bug is fully reproducible for me.</quote>"
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:964
#, no-c-format
msgid "Tell us what you expected to happen"
msgstr ""
#. Tag: para
#. +> trunk5 stable5 stable
#: firsttime.docbook:965
#, no-c-format
msgid "In some cases, this is obvious, but in more subtle bugs, sometimes you'll see a bug report where it is not obvious what the reporter expected to happen. Always tell us what you think should have happened."
msgstr ""
#. Tag: title
#. +> trunk5 stable5 stable
#: firsttime.docbook:972
#, no-c-format
msgid "Consider running with debugging enabled"
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:973
#, no-c-format
msgid "By compiling a version configured with --enable-debug=full you can ensure that the best possible backtraces are generated. If you encounter a crash, run &kappname; again from within gdb, and reproduce the crash. When it crashes, type <quote>bt</quote> to generate a backtrace."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:973
+#: firsttime.docbook:1019
#, no-c-format
msgid "By compiling a version configured with --enable-debug=full you can ensure that the best possible backtraces are generated. If you encounter a crash, run &kmymoney; again from within gdb, and reproduce the crash. When it crashes, type <quote>bt</quote> to generate a backtrace."
msgstr ""
#. Tag: para
#. +> trunk5 stable
#: firsttime.docbook:981
#, no-c-format
msgid "Running this way is a bit more difficult, so we don't expect all users to do this. However, if you're interested in helping &kappname; become as stable as possible, this is the best way to do it short of finding the bug in the code and sending in a patch."
msgstr ""
#. Tag: para
#. +> stable5
-#: firsttime.docbook:981
+#: firsttime.docbook:1027
#, no-c-format
msgid "Running this way is a bit more difficult, so we don't expect all users to do this. However, if you're interested in helping &kmymoney; become as stable as possible, this is the best way to do it short of finding the bug in the code and sending in a patch."
msgstr ""
Index: trunk/l10n-support/templates/summit/docmessages/kdemultimedia/k3b.pot
===================================================================
--- trunk/l10n-support/templates/summit/docmessages/kdemultimedia/k3b.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/docmessages/kdemultimedia/k3b.pot (revision 1509808)
@@ -1,442 +1,407 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-03-23 09:25+0100\n"
+"POT-Creation-Date: 2018-02-02 13:47+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:9
#, no-c-format
msgid "The K3b Handbook"
msgstr ""
#. Tag: personname
#. +> trunk5 stable5
#: index.docbook:12
#, no-c-format
msgid "<firstname>This documentation was converted from the KDE UserBase <ulink url=\" http://userbase.kde.org/K3b\">K3b</ulink> page at 2011-01-20.</firstname> <surname></surname>"
msgstr ""
#. Tag: personname
-#. +> stable
-#: index.docbook:12
-#, no-c-format
-msgid "<firstname>This documentation was converted from the KDE UserBase <ulink url=\" http://userbase.kde.org/K3b\">K3b</ulink> page.</firstname> <surname></surname>"
-msgstr ""
-
-#. Tag: personname
#. +> trunk5 stable5
#: index.docbook:18
#, no-c-format
msgid "<firstname>Update to 2.0 by the &kde; Documentation Team</firstname> <surname></surname>"
msgstr ""
#. Tag: trans_comment
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:23
#, no-c-format
msgid "ROLES_OF_TRANSLATORS"
msgstr ""
#. Tag: date
#. +> trunk5 stable5
#: index.docbook:26
#, no-c-format
msgid "2012-01-06"
msgstr ""
-#. Tag: date
-#. +> stable
-#: index.docbook:20
-#, no-c-format
-msgid "2011-01-20"
-msgstr ""
-
#. Tag: releaseinfo
#. +> trunk5 stable5
#: index.docbook:27
#, no-c-format
msgid "2.0 (&kde; 4.8)"
msgstr ""
-#. Tag: releaseinfo
-#. +> stable
-#: index.docbook:21
-#, no-c-format
-msgid "&kde; SC 4.5"
-msgstr ""
-
#. Tag: keyword
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:32
#, no-c-format
msgid "<keyword>KDE</keyword>"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:38
#, no-c-format
msgid "Introduction"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:39
#, no-c-format
msgid "If you have used a burning program such as Nero under Windows, &k3b; will feel quite familiar."
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:39
-#, no-c-format
-msgid "When you run &k3b; for the first time, you may find &k3b; informing you that no optical writer drivers have been found, meaning you will not be able to write to any optical discs. There is no need to panic as &k3b; will open a configuration window which will help you get various tools used by &k3b; up and running. This includes viewing the user group that owns those applications. You shouldn't need to change this as &k3b; will apply the correct permissions on external programs itself. These programs are generally <command>cdrecord</command>, <command>growisofs</command> and <command>cdrdao</command>. If preferred, one can tell &k3b; to use the <guilabel>burning</guilabel> user group and point it to the optical drive. Below is an image of the configuration window where these settings are possible."
-msgstr ""
-
-#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:41
#, no-c-format
msgid "Featuring a simple, yet powerful graphical interface, &k3b; provides various options for burning a CD, DVD, or BD (Blu-ray disc). Various types of optical projects are supported including (but not limited to) audio and data, video projects for DVD and VCD, as well as multi-session and mixed-mode discs. &k3b; also has the ability to erase re-writeable media and can perform more complicated tasks such as audiovisual encoding and decoding."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:68
#, no-c-format
msgid "Pre-setup"
msgstr ""
#. Tag: para
#. +> trunk5 stable5
#: index.docbook:69
#, no-c-format
msgid "When you run &k3b; for the first time, you may find &k3b; informing you that no optical writer drivers have been found, meaning you will not be able to write to any optical discs. There is no need to panic as &k3b; will open the <guilabel>Permissions</guilabel> tab on the <guilabel>Programs</guilabel> page of the configuration dialog, where permissions can now be changed. In all modern systems optical devices belongs to a certain user group (&eg; <quote>cdrom</quote>). If the current user does not belongs to this group, he is offered to add himself to it on this tab."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:87
#, no-c-format
msgid "Configuring the User Interface"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:88
#, no-c-format
msgid "Upon starting &k3b; you are offered quick starts to the three most popular processes"
msgstr ""
#. Tag: guilabel
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:91
#, no-c-format
msgid "New Data Project"
msgstr ""
#. Tag: guilabel
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:93
#, no-c-format
msgid "New Audio CD Project"
msgstr ""
#. Tag: guilabel
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:95
#, no-c-format
msgid "Copy Medium"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:98
#, no-c-format
msgid "&k3b; can perform much more than these tasks though, and so you may find that some of the other possibilities are just as useful to you. Take a look at this list for a taste of other available functions:"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:113
#, no-c-format
msgid "Perhaps a quick start for one or more of these other tasks would be useful to you and so &k3b; can give you that, too. Simply right click on the application desktop, and here you will see a menu for adding buttons:"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:129
#, no-c-format
msgid "Configuring the internals"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:130
#, no-c-format
msgid "Most of the default settings can simply be left alone. It is however, recommended that you do take a look at the <guilabel>Advanced Settings</guilabel> page. Here you can set various important settings, if required."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:146
#, no-c-format
msgid "<guilabel>Use Burnfree</guilabel> should be set - it controls the burn, ensuring that the buffer never gets dangerously low (which reduces the quantity of bad burns)."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:148
#, no-c-format
msgid "You may wish to automatically erase re-writable disks."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:150
#, no-c-format
msgid "The option <guilabel>Do not eject medium after write process</guilabel> is invaluable if your drive is one that cannot be closed quickly enough for <guilabel>Verify</guilabel> to happen."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:154
#, no-c-format
msgid "Preparing to burn a disk"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:155
#, no-c-format
msgid "When starting a new project, you should ensure that &k3b; has detected the correct optical media, such as CD or DVD. On the status line at the bottom of the screen you should see the size of disk which is currently set. If this is not correct, or you require a different size, simply right-click on it and set the preferred size from the provided list:"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:170
#, no-c-format
msgid "Now choose what is to be burnt."
msgstr ""
#. Tag: para
#. +> trunk5 stable5
#: index.docbook:172
#, no-c-format
msgid "The top half of the screen is the <emphasis>source pane</emphasis>; it functions like a file manager. You can choose ordinary files from mounted data volumes or audio tracks from inserted audio discs. Names of audio tracks are automatically read from CD-Text data, if your CD drive supports reading it, or generated using <ulink url=\"http://libcddb.sourceforge.net/\">CDDB</ulink>; the exact format is controlled by a button in the bottom pane. If the names are incorrect or simply do not match the description of the disc, you can edit them using the toolbar button. Your changes will be cached locally and submitted to the master registry at <ulink url=\"http://www.freedb.org/\">FreeDB</ulink>."
msgstr ""
#. Tag: para
-#. +> stable
-#: index.docbook:140
-#, no-c-format
-msgid "The top half of the screen is the <emphasis>source pane</emphasis>; it functions like a file manager. You can choose ordinary files from mounted data volumes or audio tracks from inserted audio discs. Names of audio tracks are automatically read from CD-TEXT data, if your CD drive supports reading it, or generated using <ulink url=\"http://libcddb.sourceforge.net/\">CDDB</ulink>; the exact format is controlled by a button in the bottom pane. If the names are incorrect or simply do not match the description of the disc, you can edit them using the toolbar button. Your changes will be cached locally and submitted to the master registry at <ulink url=\"http://www.freedb.org/\">FreeDB</ulink>."
-msgstr ""
-
-#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:175
#, no-c-format
msgid "If the whole record is performed by the same artist, leave the track artist entries blank, fill the <guilabel>Album artist</guilabel>, save to CDDB and requery."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:178
#, no-c-format
msgid "Now that you have your sources at hand, simply drag and drop the files and directories you wish to burn onto the large pane to the right at the bottom; this is the <emphasis>model pane</emphasis>. Behold a tree of your chosen files forming to the left. Should there be some files or directories which you do not want to burn, these can be easily removed from the project by simply removing them from the panel at the bottom. Select the file to be removed (you can control-click to select multiple ones), then choose <guilabel>Remove</guilabel> from the context menu."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:181
#, no-c-format
msgid "If you need to compress audio, create a new audio CD project, add the files to be converted and press the button <guilabel>Convert Tracks</guilabel>. This will not affect the contents of the CD if you decide to burn it; however, you will be able to use the compressed files elsewhere. Make sure the original files are lossless (<emphasis>wav</emphasis> or <emphasis>FLAC</emphasis>), otherwise the result will be unsatisfactory."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:184
#, no-c-format
msgid "The top line will be the title of the disk. In many cases this will be fine, but if you would like to change this to something else, simply rename it using the context menu."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:187
#, no-c-format
msgid "Final Steps"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:188
#, no-c-format
msgid "You are now ready to hit the <guilabel>Burn</guilabel> button."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:203
#, no-c-format
msgid "You will see on my screenshot that no disk was present. When you have inserted the appropriate disk you will see a description of it on that line."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:205
#, no-c-format
msgid "There are still one or two choices to be made. I would <emphasis>recommend</emphasis> that you set <guilabel>Verify written data</guilabel>, then hit the <guilabel>Save</guilabel> icon at the bottom of the screen, ensuring that it becomes your personal default. For most modern drives it's safe to leave mode and speed to <guilabel>Auto</guilabel>. If you may wish to burn another copy of the disk at a later date, select <guilabel>Create image</guilabel>, which will save having to set up the burn again. Set the number of copies you want to burn, then, when you are satisfied, hit <guilabel>Burn</guilabel>."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:211
#, no-c-format
msgid "Burning an Audio CD"
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:212
#, no-c-format
msgid "Starting an Audio CD Project"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:213
#, no-c-format
msgid "&k3b; supports a lot of audio formats and can convert them automatically for you."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:215
#, no-c-format
msgid "Some distributions split this capability of &k3b; into a separate package, &eg; on Debian and Ubuntu distributions you need to install the package libk3b6-extracodecs, on openSUSE the name of the package is k3b-codecs. On some distributions (&eg; Mandriva) you do not need to install any additional packages."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:217
#, no-c-format
msgid "Selecting the files"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:218
#, no-c-format
msgid "There are two ways to select the audio files you want to burn onto an audio cd:"
msgstr ""
#. Tag: term
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:221
#, no-c-format
msgid "Using &k3b;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:223
#, no-c-format
msgid "At the bottom half of the &k3b; window click on <guilabel>New Audio CD Project</guilabel> and select the files you want to burn."
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:225
#, no-c-format
msgid "Alternatively navigate in the folders panel to the location of the audio files. Double click on an audio file or drag and drop selected audio files into the bottom part of &k3b;'s window automatically starts a <guilabel>New Audio CD Project</guilabel> with these files."
msgstr ""
#. Tag: term
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:231
#, no-c-format
msgid "Using the file manager"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:233
#, no-c-format
msgid "Go to the folder containing your music files in &dolphin; or &konqueror;"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:234
#, no-c-format
msgid "Choose the files to burn and select <menuchoice><guimenu>Actions</guimenu><guimenuitem>Create Audio CD with &k3b;</guimenuitem></menuchoice> from the context menu."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:241
#, no-c-format
msgid "Edit the Title Information"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:242
#, no-c-format
msgid "You can give the tracks titles or import those from <acronym>CDDB</acronym> (a online service for track names). To do so double click on the track (lower half of the window)."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:245
#, no-c-format
msgid "Burn the CD"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:246
#, no-c-format
msgid "Insert a blanc CD-R or CD-RW disc into your CD writer and click on <guilabel>Burn</guilabel>. In the upcoming dialog check if you like the presets and when done click on <guilabel>Burn</guilabel>. The CD will now be burned for you."
msgstr ""
#. Tag: title
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:254
#, no-c-format
msgid "Credits and License"
msgstr ""
#. Tag: para
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:255
#, no-c-format
msgid "Documentation Copyright see the UserBase <ulink url=\"http://userbase.kde.org/index.php?title=K3b&amp;action=history\">K3b page history</ulink>"
msgstr ""
#. Tag: trans_comment
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:258
#, no-c-format
msgid "CREDIT_FOR_TRANSLATORS"
msgstr ""
#. Tag: chapter
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: index.docbook:258
#, no-c-format
msgid "&underFDL;"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/applications/konsole.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/applications/konsole.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/applications/konsole.pot (revision 1509808)
@@ -1,3858 +1,3865 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-27 09:03+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:5
#, kde-format
msgid "File"
msgstr ""
#. i18n: ectx: Menu (edit)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:15
#, kde-format
msgid "Edit"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:18
#, kde-format
msgid "View"
msgstr ""
#. i18n: ectx: Menu (view-split)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:19
#, kde-format
msgid "Split View"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:33
#, kde-format
msgid "Settings"
msgstr ""
#. i18n: ectx: Menu (help)
#. +> trunk5 stable5
#: ../desktop/konsoleui.rc:44
#, kde-format
msgid "Help"
msgstr ""
#. i18n: ectx: Menu (history)
#. +> trunk5 stable5
#: ../desktop/partui.rc:13
#, kde-format
msgid "S&crollback"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:59
#, kde-format
msgctxt "@info:shell"
msgid "Name of profile to use for new Konsole instance"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:63
#, kde-format
msgctxt "@info:shell"
msgid "Use the internal FALLBACK profile"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:66
#, kde-format
msgctxt "@info:shell"
msgid "Set the initial working directory of the new tab or window to 'dir'"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:72
#, kde-format
msgctxt "@info:shell"
msgid "Do not close the initial session automatically when it ends."
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:76
#, kde-format
msgctxt "@info:shell"
msgid "Create a new tab in an existing window rather than creating a new window"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:80
#, kde-format
msgctxt "@info:shell"
msgid "Create tabs as specified in given tabs configuration file"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:85
#, kde-format
msgctxt "@info:shell"
msgid "Start Konsole in the background and bring to the front when Ctrl+Shift+F12 (by default) is pressed"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:90
#, kde-format
msgctxt "@info:shell"
msgid "Run in a separate process"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:93
#, kde-format
msgctxt "@info:shell"
msgid "Show the menubar, overriding the default setting"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:96
#, kde-format
msgctxt "@info:shell"
msgid "Hide the menubar, overriding the default setting"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:99
#, kde-format
msgctxt "@info:shell"
msgid "Show the tabbar, overriding the default setting"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:102
#, kde-format
msgctxt "@info:shell"
msgid "Hide the tabbar, overriding the default setting"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:104
#, kde-format
msgctxt "@info:shell"
msgid "Start Konsole in fullscreen mode"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:107
#, kde-format
msgctxt "@info:shell"
msgid "Disable transparent backgrounds, even if the system supports them."
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:110
#, kde-format
msgctxt "@info:shell"
msgid "List the available profiles"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:113
#, kde-format
msgctxt "@info:shell"
msgid "List all the profile properties names and their type (for use with -p)"
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:117
#, kde-format
msgctxt "@info:shell"
msgid "Change the value of a profile property."
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:121
#, kde-format
msgctxt "@info:shell"
msgid "Command to execute. This option will catch all following arguments, so use it as the last option."
msgstr ""
#. +> trunk5 stable5
#: Application.cpp:125
#, kde-format
msgctxt "@info:shell"
msgid "Arguments passed to command"
msgstr ""
#. +> trunk5 stable5
#: BookmarkHandler.cpp:133
#, kde-format
msgctxt "@item:inmenu The user's name and host they are connected to via ssh"
msgid "%1 on %2"
msgstr ""
#. +> trunk5 stable5
#: BookmarkHandler.cpp:135
#, kde-format
msgctxt "@item:inmenu The host the user is connected to via ssh"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:115
#, kde-format
msgctxt "@item:intable palette"
msgid "Foreground"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:116
#, kde-format
msgctxt "@item:intable palette"
msgid "Background"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:117
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 1"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:118
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 2"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:119
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 3"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:120
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 4"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:121
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 5"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:122
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 6"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:123
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 7"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:124
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 8"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:125
#, kde-format
msgctxt "@item:intable palette"
msgid "Foreground (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:126
#, kde-format
msgctxt "@item:intable palette"
msgid "Background (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:127
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 1 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:128
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 2 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:129
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 3 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:130
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 4 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:131
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 5 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:132
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 6 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:133
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 7 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:134
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 8 (Intense)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:135
#, kde-format
msgctxt "@item:intable palette"
msgid "Foreground (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:136
#, kde-format
msgctxt "@item:intable palette"
msgid "Background (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:137
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 1 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:138
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 2 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:139
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 3 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:140
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 4 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:141
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 5 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:142
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 6 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:143
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 7 (Faint)"
msgstr ""
#. +> trunk5 stable5
#: ColorScheme.cpp:144
#, kde-format
msgctxt "@item:intable palette"
msgid "Color 8 (Faint)"
msgstr ""
#. +> trunk5 stable5
-#: ColorScheme.cpp:365
+#: ColorScheme.cpp:377
#, kde-format
msgctxt "@item"
msgid "Un-named Color Scheme"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:121
+#: ColorSchemeEditor.cpp:125
#, kde-format
msgctxt "@label:listbox Column header text for color names"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:122
+#: ColorSchemeEditor.cpp:126
#, kde-format
msgctxt "@label:listbox Column header text for the actual colors"
msgid "Color"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:123
+#: ColorSchemeEditor.cpp:127
#, kde-format
msgctxt "@label:listbox Column header text for the actual intense colors"
msgid "Intense color"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:124
+#: ColorSchemeEditor.cpp:128
#, kde-format
msgctxt "@label:listbox Column header text for the actual faint colors"
msgid "Faint color"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:153
+#: ColorSchemeEditor.cpp:157
#, kde-format
msgctxt "@info:status"
msgid "The background transparency setting will not be used because your desktop does not appear to support transparent windows."
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:209
+#: ColorSchemeEditor.cpp:213
#, kde-format
msgctxt "@title:window"
msgid "Select wallpaper image file"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:212
+#: ColorSchemeEditor.cpp:216
#, kde-format
msgctxt "@label:textbox Filter in file open dialog"
msgid "Supported Images"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:265
+#: ColorSchemeEditor.cpp:274
#, kde-format
msgctxt "@title:window"
msgid "New Color Scheme"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:268
+#: ColorSchemeEditor.cpp:277
#, kde-format
msgctxt "@title:window"
msgid "Edit Color Scheme"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:301
+#: ColorSchemeEditor.cpp:313
#, kde-format
msgctxt "@info:tooltip"
msgid "Click to choose color"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:307
+#: ColorSchemeEditor.cpp:319
#, kde-format
msgctxt "@info:tooltip"
msgid "Click to choose intense color"
msgstr ""
#. +> trunk5 stable5
-#: ColorSchemeEditor.cpp:312
+#: ColorSchemeEditor.cpp:324
#, kde-format
msgctxt "@info:tooltip"
msgid "Click to choose Faint color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, discriptionLabel)
#. i18n: ectx: property (text), widget (QLabel, descriptionLabel)
#. +> trunk5 stable5
#: ColorSchemeEditor.ui:22 KeyBindingEditor.ui:22
#, kde-format
msgid "Description:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomizedBackgroundCheck)
#. +> trunk5 stable5
#: ColorSchemeEditor.ui:40
#, kde-format
msgid "Vary the background color for each tab"
msgstr ""
+#. i18n: ectx: property (text), widget (QCheckBox, blurCheckBox)
+#. +> trunk5
+#: ColorSchemeEditor.ui:47
+#, kde-format
+msgid "Blur background"
+msgstr ""
+
#. i18n: ectx: property (text), widget (QLabel, transparencyLabel)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:49
+#: ColorSchemeEditor.ui:56
#, kde-format
msgid "Background transparency:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, transparencyPercentLabel)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:69
+#: ColorSchemeEditor.ui:76
#, kde-format
msgid "Percent"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, wallpaperLabel)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:83
+#: ColorSchemeEditor.ui:90
#, kde-format
msgid "Background image:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, wallpaperPath)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:90
+#: ColorSchemeEditor.ui:97
#, kde-format
msgid "Edit the path of the background image"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, wallpaperSelectButton)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:97
+#: ColorSchemeEditor.ui:104
#, kde-format
msgid "Choose the background image"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, wallpaperSelectButton)
#. i18n: ectx: property (text), widget (QToolButton, dirSelectButton)
#. +> trunk5 stable5
-#: ColorSchemeEditor.ui:100 EditProfileDialog.ui:174
+#: ColorSchemeEditor.ui:107 EditProfileDialog.ui:174
#, kde-format
msgid "..."
msgstr ""
#. +> trunk5 stable5
#: CopyInputDialog.cpp:42
#, kde-format
msgid "Copy Input"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: CopyInputDialog.ui:19
#, kde-format
msgid "Filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, selectAllButton)
#. +> trunk5 stable5
#: CopyInputDialog.ui:46
#, kde-format
msgid "Select All"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, deselectAllButton)
#. +> trunk5 stable5
#: CopyInputDialog.ui:53
#, kde-format
msgid "Deselect All"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:76
#, kde-format
msgid "Edit Profile"
msgstr ""
#. +> trunk5
#: EditProfileDialog.cpp:185
#, kde-format
msgid ""
"<p>Konsole does not have permission to save this profile to:<br />"
" \"%1\"</p>"
"<p>To be able to save settings you can either change the permissions of the profile configuration file or change the profile name to save the settings to a new profile.</p>"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:206
#, kde-format
msgid "<p>Each profile must have a name before it can be saved into disk.</p>"
msgstr ""
#. +> trunk5
#: EditProfileDialog.cpp:214
#, kde-format
msgid "<p>A profile with this name already exists.</p>"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:248
#, kde-format
msgid "Editing profile: %2"
msgid_plural "Editing %1 profiles: %2"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:253
#, kde-format
msgid "Edit Profile \"%1\""
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:335
#, kde-format
msgid "Profile name is empty."
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:406
#, kde-format
msgid "Edit Environment"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:407
#, kde-format
msgid "One environment variable per line"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:438
#, kde-format
msgctxt "Unit of time"
msgid " second"
msgid_plural " seconds"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:515
#, kde-format
msgid "Select Initial Directory"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:741
#, kde-format
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:976
#, kde-format
msgid "This color scheme uses a transparent background which does not appear to be supported on your desktop"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:982
#, kde-format
msgid "Konsole was started before desktop effects were enabled. You need to restart Konsole to see transparent background."
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:1096 EditProfileDialog.cpp:1108
#, kde-format
msgid "New Key Binding List"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:1098
#, kde-format
msgid "Edit Key Binding List"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:1536
#, kde-format
msgid "Select Any Font"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:1539
#, kde-format
msgid "Select Fixed Width Font"
msgstr ""
#. +> trunk5 stable5
#: EditProfileDialog.cpp:1591
#, kde-format
msgid "AaZz09..."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, generalTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:42
#, kde-format
msgctxt "@title:tab Generic, common options"
msgid "General"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#. +> trunk5 stable5
#: EditProfileDialog.ui:48
#, kde-format
msgctxt "@title:group Generic, common options"
msgid "General"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, iconSelectButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:77
#, kde-format
msgid "Select the icon displayed on tabs using this profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, profileNameLabel)
#. +> trunk5 stable5
#: EditProfileDialog.ui:109
#, kde-format
msgid "Profile name:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, profileNameEdit)
#. +> trunk5 stable5
#: EditProfileDialog.ui:119
#, kde-format
msgid "A descriptive name for the profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: EditProfileDialog.ui:131
#, kde-format
msgid "Command:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, commandEdit)
#. +> trunk5 stable5
#: EditProfileDialog.ui:141
#, kde-format
msgid "The command to execute when new terminal sessions are created using this profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: EditProfileDialog.ui:151
#, kde-format
msgid "Initial directory:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, initialDirEdit)
#. +> trunk5 stable5
#: EditProfileDialog.ui:161
#, kde-format
msgid "The initial working directory for new terminal sessions using this profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, dirSelectButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:171
#, kde-format
msgid "Choose the initial directory"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, startInSameDirButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:181
#, kde-format
msgid "Start in same directory as current tab"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, environmentLabel)
#. +> trunk5 stable5
#: EditProfileDialog.ui:190
#, kde-format
msgid "Environment:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, environmentEditButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:200
#, kde-format
msgid "Edit the list of environment variables and associated values"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, environmentEditButton)
#. i18n: ectx: property (text), widget (QPushButton, editColorSchemeButton)
#. i18n: ectx: property (text), widget (QPushButton, editKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:203 EditProfileDialog.ui:493 EditProfileDialog.ui:845
#, kde-format
msgid "Edit..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_16)
#. +> trunk5 stable5
#: EditProfileDialog.ui:228
#, kde-format
msgid "Terminal Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: EditProfileDialog.ui:237
#, kde-format
msgid "Columns"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: EditProfileDialog.ui:254
#, kde-format
msgid "Rows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: EditProfileDialog.ui:284
#, kde-format
msgid "This will not alter any open windows."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: EditProfileDialog.ui:320
#, kde-format
msgid "Configure Konsole->General->Use current window size on next startup must be disabled for these entries to work."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_12)
#. +> trunk5 stable5
#: EditProfileDialog.ui:333
#, kde-format
msgid "Window"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showTerminalSizeHintButton)
#. i18n: ectx: tooltip, entry (ShowTerminalSizeHint), group (KonsoleWindow)
#. +> trunk5 stable5
#: EditProfileDialog.ui:342 settings/konsole.kcfg:30
#, kde-format
msgid "Show terminal size in columns and lines in the center of window after resizing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowTerminalSizeHint)
#. i18n: ectx: property (text), widget (QCheckBox, showTerminalSizeHintButton)
#. i18n: ectx: label, entry (ShowTerminalSizeHint), group (KonsoleWindow)
#. +> trunk5 stable5
#: EditProfileDialog.ui:345 settings/GeneralSettings.ui:53
#: settings/konsole.kcfg:29
#, kde-format
msgid "Show hint for terminal size after resizing"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabsTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:369
#, kde-format
msgid "Tabs"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_5)
#. +> trunk5 stable5
#: EditProfileDialog.ui:375
#, kde-format
msgid "Tab Titles"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_13)
#. +> trunk5 stable5
#: EditProfileDialog.ui:390
#, kde-format
msgid "Tab Monitoring"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, silenceSecondsLabel)
#. +> trunk5 stable5
#: EditProfileDialog.ui:399
#, kde-format
msgid "Threshold for continuous silence:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, silenceSecondsSpinner)
#. +> trunk5 stable5
#: EditProfileDialog.ui:409
#, kde-format
msgid "The threshold for continuous silence to be detected by Konsole"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1)
#. i18n: ectx: attribute (title), widget (QWidget, appearanceTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:452 settings/TabBarSettings.ui:17
#, kde-format
msgid "Appearance"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: EditProfileDialog.ui:464
#, kde-format
msgid "Color Scheme && Background"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, newColorSchemeButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:480
#, kde-format
msgid "Create a new color scheme based upon the selected scheme"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, newColorSchemeButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:483
#, kde-format
msgctxt "@action:button Create an alternate color scheme"
msgid "New..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editColorSchemeButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:490
#, kde-format
msgid "Edit the selected color scheme"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, removeColorSchemeButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:500
#, kde-format
msgid "Delete the selected color scheme"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, removeEntryButton)
#. i18n: ectx: property (text), widget (QPushButton, removeColorSchemeButton)
#. i18n: ectx: property (text), widget (QPushButton, removeKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:503 EditProfileDialog.ui:855 KeyBindingEditor.ui:53
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetColorSchemeButton)
#. +> trunk5
#: EditProfileDialog.ui:510
#, kde-format
msgid "Reset the selected color scheme settings to the default values"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetColorSchemeButton)
#. +> trunk5
#: EditProfileDialog.ui:513
#, kde-format
msgid "Defaults"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: EditProfileDialog.ui:539
#, kde-format
msgid "Font"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> stable5
#: EditProfileDialog.ui:125
#, kde-format
msgid "Icon:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: EditProfileDialog.ui:550
#, kde-format
msgid "Preview:"
msgstr ""
#. i18n: ectx: property (textElideMode), widget (KSqueezedTextLabel, fontPreviewLabel)
#. +> trunk5
#: EditProfileDialog.ui:566
#, kde-format
msgid "Qt::ElideRight"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: EditProfileDialog.ui:577
#, kde-format
msgid "Text size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, selectFontButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:603
#, kde-format
msgid "Select the font used in this profile"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, selectFontButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:606
#, kde-format
msgid "Select Font..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showAllFontsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:613
#, kde-format
msgid "Show all fonts instead of the monospaced fonts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, showAllFontsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:616
#, kde-format
msgid "Show All Fonts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, antialiasTextButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:638
#, kde-format
msgid "Smooth fonts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, boldIntenseButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:645
#, kde-format
msgid "Draw intense colors in bold font"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useFontLineCharactersButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:652
#, kde-format
msgid "Use the selected font for line characters instead of the builtin code"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useFontLineCharactersButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:655
#, kde-format
msgid "Use line characters contained in font"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, scrollingTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:666
#, kde-format
msgid "Scrolling"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_6)
#. +> trunk5 stable5
#: EditProfileDialog.ui:672
#, kde-format
msgid "Scrollback"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_7)
#. +> trunk5 stable5
#: EditProfileDialog.ui:687
#, kde-format
msgid "Scroll Bar"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarHiddenButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:704
#, kde-format
msgid "Hide the scroll bar"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, scrollBarHiddenButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:707
#, kde-format
msgctxt "@option:radio Hide the scroll bar"
msgid "Hide"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarLeftButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:720
#, kde-format
msgid "Show the scroll bar on the left side of the terminal window"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, scrollBarLeftButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:723
#, kde-format
msgid "Show on left side"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollBarRightButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:736
#, kde-format
msgid "Show the scroll bar on the right side of the terminal window"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, scrollBarRightButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:739
#, kde-format
msgid "Show on right side"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_15)
#. +> trunk5 stable5
#: EditProfileDialog.ui:751
#, kde-format
msgid "Scroll Page Up/Down Amount"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollHalfPage)
#. +> trunk5 stable5
#: EditProfileDialog.ui:760
#, kde-format
msgid "Scroll the page the half height of window"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, scrollHalfPage)
#. +> trunk5 stable5
#: EditProfileDialog.ui:763
#, kde-format
msgid "Half Page Height"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, scrollFullPage)
#. +> trunk5 stable5
#: EditProfileDialog.ui:770
#, kde-format
msgid "Scroll the page the full height of window"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, scrollFullPage)
#. +> trunk5 stable5
#: EditProfileDialog.ui:773
#, kde-format
msgid "Full Page Height"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, keyboardTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:797
#, kde-format
msgid "Keyboard"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, keyBindingsGroup)
#. +> trunk5 stable5
#: EditProfileDialog.ui:803
#, kde-format
msgid "Key Bindings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: EditProfileDialog.ui:812
#, kde-format
msgid "Key bindings control how combinations of keystrokes in the terminal window are converted into the stream of characters which are sent to the current terminal program."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, newKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:832
#, kde-format
msgid "Create a new key bindings list based upon the selected bindings"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, newKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:835
#, kde-format
msgctxt "@action:button Create an alternate key binding"
msgid "New..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:842
#, kde-format
msgid "Edit the selected key bindings list"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, removeKeyBindingsButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:852
#, kde-format
msgid "Delete the selected key bindings list"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, mouseTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:879
#, kde-format
msgid "Mouse"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_9)
#. +> trunk5 stable5
#: EditProfileDialog.ui:885
#, kde-format
msgid "Select Text"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: EditProfileDialog.ui:896
#, kde-format
msgid "Characters considered part of a word when double clicking:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, wordCharacterEdit)
#. +> trunk5 stable5
#: EditProfileDialog.ui:909
#, kde-format
msgid "Characters which are considered part of a word when double-clicking to select whole words in the terminal"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5 stable5
#: EditProfileDialog.ui:920
#, kde-format
msgid "Triple-click select:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, tripleClickModeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:927
#, kde-format
msgid "Which part of current line should be selected with triple click ."
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, tripleClickModeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:931
#, kde-format
msgid "The whole current line"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, tripleClickModeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:936
#, kde-format
msgid "From mouse position to the end of line"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_14)
#. +> trunk5 stable5
#: EditProfileDialog.ui:949
#, kde-format
msgid "Copy && Paste"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, copyTextToClipboardButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:960
#, kde-format
msgid "Automatically copy selected text into clipboard"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, copyTextToClipboardButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:963
#, kde-format
msgid "Copy on select"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, trimLeadingSpacesButton)
#. +> trunk5
#: EditProfileDialog.ui:970
#, kde-format
msgid "Trim leading spaces in selected text, useful in some instances"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, trimLeadingSpacesButton)
#. +> trunk5
#: EditProfileDialog.ui:973
#, kde-format
msgid "Trim leading spaces"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, trimTrailingSpacesButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:980
#, kde-format
msgid "Trim trailing spaces in selected text, useful in some instances"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, trimTrailingSpacesButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:983
#, kde-format
msgid "Trim trailing spaces"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: EditProfileDialog.ui:994
#, kde-format
msgid "Mouse middle button:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, pasteFromClipboardButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1001
#, kde-format
msgid "Paste from clipboard"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, pasteFromX11SelectionButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1008
#, kde-format
msgid "Paste from selection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1020
#, kde-format
msgid "Miscellaneous"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, underlineLinksButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1029
#, kde-format
msgid "Text recognized as a link or an email address will be underlined when hovered by the mouse pointer."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, underlineLinksButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1032
#, kde-format
msgid "Underline links"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, underlineFilesButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1039
#, kde-format
msgid "Text recognized as a file will be underlined when hovered by the mouse pointer."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, underlineFilesButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1042
#, kde-format
msgid "Underline files"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, openLinksByDirectClickButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1070
#, kde-format
msgid "Text recognized as a file, link or an email address can be opened by direct mouse click."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, openLinksByDirectClickButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1073
#, kde-format
msgid "Open files and links by direct click"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, ctrlRequiredForDragButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1082
#, kde-format
msgid "Selected text will require control key plus click to drag."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ctrlRequiredForDragButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1085
#, kde-format
msgid "Require Ctrl key for drag and drop"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, dropUrlsAsText)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1092
#, kde-format
msgid "Always paste dropped URLs as text without offering move, copy and link actions."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, dropUrlsAsText)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1095
#, kde-format
msgid "Disable drag and drop menu for URLs and files"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enableMouseWheelZoomButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1102
#, kde-format
msgid "Pressing Ctrl+scrollwheel will increase/decrease the text size."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableMouseWheelZoomButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1105
#, kde-format
msgid "Allow Ctrl+scrollwheel to zoom text size"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, advancedTab)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1129
#, kde-format
msgctxt "@title:tab Complex options"
msgid "Advanced"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1135
#, kde-format
msgid "Terminal Features"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, urlHintsLabel)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1144
#, kde-format
msgid "Show URL hints when these keys are pressed:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, urlHintsModifierShift)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1169
#, kde-format
msgid "Shift"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, urlHintsModifierCtrl)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1176
#, kde-format
msgid "Control"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, urlHintsModifierAlt)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1183
#, kde-format
msgid "Alt"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, urlHintsModifierMeta)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1190
#, kde-format
msgid "Meta"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingTextButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1205
#, kde-format
msgid "Allow terminal programs to create blinking sections of text"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingTextButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1208
#, kde-format
msgid "Allow blinking text"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enableFlowControlButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1221
#, kde-format
msgid "Allow the output to be suspended by pressing Ctrl+S"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableFlowControlButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1224
#, kde-format
msgid "Enable flow control using Ctrl+S, Ctrl+Q"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBidiRenderingButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1237
#, kde-format
msgid "Enable Bi-Directional display on terminals (valid for Arabic, Farsi or Hebrew only)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableBidiRenderingButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1240
#, kde-format
msgid "Enable Bi-Directional text rendering"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lineSpacingLabel)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1249
#, kde-format
msgid "Line Spacing:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, lineSpacingSpinner)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1256
#, kde-format
msgid "The number of pixels between two lines"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_8)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1287
#, kde-format
msgid "Cursor"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enableBlinkingCursorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1302
#, kde-format
msgid "Make the cursor blink regularly"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableBlinkingCursorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1305
#, kde-format
msgid "Blinking cursor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1314
#, kde-format
msgid "Cursor shape:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, cursorShapeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1321
#, kde-format
msgid "Change the shape of the cursor"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, cursorShapeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1325
#, kde-format
msgctxt "The shape of the cursor"
msgid "Block"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, cursorShapeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1330
#, kde-format
msgctxt "The shape of the cursor, similar to a capital I"
msgid "I-Beam"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, cursorShapeCombo)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1335
#, kde-format
msgctxt "The shape of the cursor"
msgid "Underline"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, autoCursorColorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1366
#, kde-format
msgid "Set the cursor to match the color of the character underneath it."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, autoCursorColorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1369
#, kde-format
msgid "Set cursor color to match current character"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, customCursorColorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1384
#, kde-format
msgid "Use a custom, fixed color for the cursor"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, customCursorColorButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1387
#, kde-format
msgid "Custom cursor color:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KColorButton, customColorSelectButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1400
#, kde-format
msgid "Select the color used to draw the cursor"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_11)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1430
#, kde-format
msgid "Encoding"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1439
#, kde-format
msgid "Default character encoding:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, selectEncodingButton)
#. +> trunk5 stable5
#: EditProfileDialog.ui:1459
#, kde-format
msgctxt "@action:button Pick an encoding"
msgid "Select"
msgstr ""
#. +> trunk5 stable5
#: Filter.cpp:495
#, kde-format
msgid "Open Link"
msgstr ""
#. +> trunk5 stable5
#: Filter.cpp:496
#, kde-format
msgid "Copy Link Address"
msgstr ""
#. +> trunk5 stable5
#: Filter.cpp:498
#, kde-format
msgid "Send Email To..."
msgstr ""
#. +> trunk5 stable5
#: Filter.cpp:499
#, kde-format
msgid "Copy Email Address"
msgstr ""
#. +> trunk5 stable5
#: Filter.cpp:637
#, kde-format
msgid "Open File"
msgstr ""
#. +> trunk5 stable5
#: HistorySizeDialog.cpp:38
#, kde-format
msgctxt "@title:window"
msgid "Adjust Scrollback"
msgstr ""
#. +> trunk5 stable5
#: HistorySizeDialog.cpp:61
#, kde-format
msgctxt "@info:status"
msgid "Any adjustments are only temporary to this session."
msgstr ""
#. +> trunk5 stable5
#: HistorySizeWidget.cpp:46
#, kde-format
msgctxt "@info:status"
msgid "When using this option, the scrollback data will be saved to RAM. If you choose a huge value, your system may run out of free RAM and cause serious issues with your system."
msgstr ""
#. +> trunk5 stable5
#: HistorySizeWidget.cpp:55
#, kde-format
msgctxt "@info:status"
msgid ""
"When using this option, the scrollback data will be written unencrypted to temporary files. Those temporary files will be deleted automatically when Konsole is closed in a normal manner.\n"
"Use Settings->Configure Konsole->File Location to select the location of the temporary files."
msgstr ""
#. +> trunk5 stable5
#: HistorySizeWidget.cpp:75
#, kde-format
msgctxt "@label:textbox Unit of scrollback"
msgid " line"
msgid_plural " lines"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, noHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:29
#, kde-format
msgid "Do not remember previous output"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, noHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:32
#, kde-format
msgid "No scrollback"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, fixedSizeHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:50
#, kde-format
msgid "Limit the remembered output to a fixed number of lines"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, fixedSizeHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:53
#, kde-format
msgid "Fixed size scrollback:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KPluralHandlingSpinBox, historyLineSpinner)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:60
#, kde-format
msgid "Number of lines of output to remember"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, unlimitedHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:104
#, kde-format
msgid "Remember all output produced by the terminal"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, unlimitedHistoryButton)
#. +> trunk5 stable5
#: HistorySizeWidget.ui:107
#, kde-format
msgid "Unlimited scrollback"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:54
#, kde-format
msgctxt "@info:tooltip"
msgid "Close the search bar"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:59
#, kde-format
msgctxt "@label:textbox"
msgid "Find:"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:64
#, kde-format
msgctxt "@info:tooltip"
msgid "Enter the text to search for here"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:84
#, kde-format
msgctxt "@action:button Go to the next phrase"
msgid "Next"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:87
#, kde-format
msgctxt "@info:tooltip"
msgid "Find the next match for the current search phrase"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:93
#, kde-format
msgctxt "@action:button Go to the previous phrase"
msgid "Previous"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:96
#, kde-format
msgctxt "@info:tooltip"
msgid "Find the previous match for the current search phrase"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:107
#, kde-format
msgctxt "@action:button Display options menu"
msgid "Options"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:112
#, kde-format
msgctxt "@info:tooltip"
msgid "Display the options menu"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:126
#, kde-format
msgctxt "@item:inmenu"
msgid "Case sensitive"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:128
#, kde-format
msgctxt "@info:tooltip"
msgid "Sets whether the search is case sensitive"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:132
#, kde-format
msgctxt "@item:inmenu"
msgid "Match regular expression"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:137
#, kde-format
msgctxt "@item:inmenu"
msgid "Highlight all matches"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:140
#, kde-format
msgctxt "@info:tooltip"
msgid "Sets whether matching text should be highlighted"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:144
#, kde-format
msgctxt "@item:inmenu"
msgid "Search backwards"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:147
#, kde-format
msgctxt "@info:tooltip"
msgid "Sets whether search should start from the bottom"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:169
#, kde-format
msgctxt "@action:button Search from bottom"
msgid "From bottom"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:171
#, kde-format
msgctxt "@info:tooltip"
msgid "Search for the current search phrase from the bottom"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:175
#, kde-format
msgctxt "@action:button Search from top"
msgid "From top"
msgstr ""
#. +> trunk5 stable5
#: IncrementalSearchBar.cpp:177
#, kde-format
msgctxt "@info:tooltip"
msgid "Search for the current search phrase from the top"
msgstr ""
#. +> trunk5 stable5
#: KeyBindingEditor.cpp:51
#, kde-format
msgid "Key Combination"
msgstr ""
#. +> trunk5 stable5
#: KeyBindingEditor.cpp:51
#, kde-format
msgid "Output"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addEntryButton)
#. +> trunk5 stable5
#: KeyBindingEditor.ui:46
#, kde-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: KeyBindingEditor.ui:75
#, kde-format
msgctxt "Title of the area where you test your keys are properly configured"
msgid "Test Area"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: KeyBindingEditor.ui:84
#, kde-format
msgid "Input:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: KeyBindingEditor.ui:97
#, kde-format
msgid "Output:"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:97
#, kde-format
msgctxt "@title"
msgid "Konsole"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:99
#, kde-format
msgctxt "@title"
msgid "Terminal emulator"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:101
#, kde-format
msgctxt "@info:credit"
msgid "(c) 1997-2017, The Konsole Developers"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:274
#, kde-format
msgctxt "@info:credit"
msgid "Kurt Hindenburg"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:275
#, kde-format
msgctxt "@info:credit"
msgid "General maintainer, bug fixes and general improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:278
#, kde-format
msgctxt "@info:credit"
msgid "Robert Knight"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:279
#, kde-format
msgctxt "@info:credit"
msgid "Previous maintainer, ported to KDE4"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:281
#, kde-format
msgctxt "@info:credit"
msgid "Lars Doelle"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:282
#, kde-format
msgctxt "@info:credit"
msgid "Original author"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:284
#, kde-format
msgctxt "@info:credit"
msgid "Jekyll Wu"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:285 main.cpp:288 main.cpp:291
#, kde-format
msgctxt "@info:credit"
msgid "Bug fixes and general improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:287
#, kde-format
msgctxt "@info:credit"
msgid "Waldo Bastian"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:290
#, kde-format
msgctxt "@info:credit"
msgid "Stephan Binner"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:293
#, kde-format
msgctxt "@info:credit"
msgid "Thomas Dreibholz"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:294
#, kde-format
msgctxt "@info:credit"
msgid "General improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:296
#, kde-format
msgctxt "@info:credit"
msgid "Chris Machemer"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:297 main.cpp:300 main.cpp:336 main.cpp:339 main.cpp:342
#: main.cpp:345
#, kde-format
msgctxt "@info:credit"
msgid "Bug fixes"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:299
#, kde-format
msgctxt "@info:credit"
msgid "Francesco Cecconi"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:302
#, kde-format
msgctxt "@info:credit"
msgid "Stephan Kulow"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:303
#, kde-format
msgctxt "@info:credit"
msgid "Solaris support and history"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:305
#, kde-format
msgctxt "@info:credit"
msgid "Alexander Neundorf"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:306
#, kde-format
msgctxt "@info:credit"
msgid "Bug fixes and improved startup performance"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:308
#, kde-format
msgctxt "@info:credit"
msgid "Peter Silva"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:309
#, kde-format
msgctxt "@info:credit"
msgid "Marking improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:311
#, kde-format
msgctxt "@info:credit"
msgid "Lotzi Boloni"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:312
#, kde-format
msgctxt "@info:credit"
msgid ""
"Embedded Konsole\n"
"Toolbar and session names"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:315
#, kde-format
msgctxt "@info:credit"
msgid "David Faure"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:316
#, kde-format
msgctxt "@info:credit"
msgid ""
"Embedded Konsole\n"
"General improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:319
#, kde-format
msgctxt "@info:credit"
msgid "Antonio Larrosa"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:320
#, kde-format
msgctxt "@info:credit"
msgid "Visual effects"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:322
#, kde-format
msgctxt "@info:credit"
msgid "Matthias Ettrich"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:323
#, kde-format
msgctxt "@info:credit"
msgid ""
"Code from the kvt project\n"
"General improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:326
#, kde-format
msgctxt "@info:credit"
msgid "Warwick Allison"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:327
#, kde-format
msgctxt "@info:credit"
msgid "Schema and text selection improvements"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:329
#, kde-format
msgctxt "@info:credit"
msgid "Dan Pilone"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:330
#, kde-format
msgctxt "@info:credit"
msgid "SGI port"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:332
#, kde-format
msgctxt "@info:credit"
msgid "Kevin Street"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:333
#, kde-format
msgctxt "@info:credit"
msgid "FreeBSD port"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:335
#, kde-format
msgctxt "@info:credit"
msgid "Sven Fischer"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:338
#, kde-format
msgctxt "@info:credit"
msgid "Dale M. Flaven"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:341
#, kde-format
msgctxt "@info:credit"
msgid "Martin Jones"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:344
#, kde-format
msgctxt "@info:credit"
msgid "Lars Knoll"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:347
#, kde-format
msgctxt "@info:credit"
msgid "Thanks to many others.\n"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:312
+#: MainWindow.cpp:317
#, kde-format
msgctxt "@action:inmenu"
msgid "&New Tab"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:322
+#: MainWindow.cpp:327
#, kde-format
msgctxt "@action:inmenu"
msgid "&Clone Tab"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:329
+#: MainWindow.cpp:334
#, kde-format
msgctxt "@action:inmenu"
msgid "New &Window"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:336
+#: MainWindow.cpp:341
#, kde-format
msgctxt "@action:inmenu"
msgid "Close Window"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:341
+#: MainWindow.cpp:346
#, kde-format
msgctxt "@title:menu"
msgid "&Bookmarks"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:360
+#: MainWindow.cpp:365
#, kde-format
msgctxt "@action:inmenu"
msgid "Manage Profiles..."
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:366
+#: MainWindow.cpp:371
#, kde-format
msgctxt "@item"
msgid "Activate Menu"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:605
+#: MainWindow.cpp:610
#, kde-format
msgctxt "@info"
msgid "There is a process running in this window. Do you still want to quit?"
msgid_plural "There are %1 processes running in this window. Do you still want to quit?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
-#: MainWindow.cpp:611 MainWindow.cpp:626
+#: MainWindow.cpp:616 MainWindow.cpp:631
#, kde-format
msgctxt "@title"
msgid "Confirm Close"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:613 MainWindow.cpp:627
+#: MainWindow.cpp:618 MainWindow.cpp:632
#, kde-format
msgctxt "@action:button"
msgid "Close &Window"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:616 MainWindow.cpp:630
+#: MainWindow.cpp:621 MainWindow.cpp:635
#, kde-format
msgctxt "@action:button"
msgid "Close Current &Tab"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:623
+#: MainWindow.cpp:628
#, kde-format
msgctxt "@info"
msgid "There are %1 open tabs in this window. Do you still want to quit?"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:733
+#: MainWindow.cpp:738
#, kde-format
msgctxt "@title Preferences page name"
msgid "General"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:739 Part.cpp:290
+#: MainWindow.cpp:744 Part.cpp:290
#, kde-format
msgctxt "@title Preferences page name"
msgid "Profiles"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:744
+#: MainWindow.cpp:749
#, kde-format
msgctxt "@title Preferences page name"
msgid "TabBar"
msgstr ""
#. +> trunk5 stable5
-#: MainWindow.cpp:749
+#: MainWindow.cpp:754
#, kde-format
msgctxt "@title Preferences page name"
msgid "File Location"
msgstr ""
#. +> trunk5 stable5
#: Part.cpp:296
#, kde-format
msgctxt "@title Preferences page name"
msgid "Part Info"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptions)
#. i18n: ectx: property (title), widget (QGroupBox, OutputOptions)
#. +> trunk5 stable5
#: PrintOptions.ui:14 PrintOptions.ui:20
#, kde-format
msgid "Output Options"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, printerFriendly)
#. i18n: ectx: label, entry (PrinterFriendly), group (PrintOptions)
#. +> trunk5 stable5
#: PrintOptions.ui:39 settings/konsole.kcfg:114
#, kde-format
msgid "Printer &friendly mode (black text, no background)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, scaleOutput)
#. i18n: ectx: label, entry (ScaleOutput), group (PrintOptions)
#. +> trunk5 stable5
#: PrintOptions.ui:46 settings/konsole.kcfg:118
#, kde-format
msgid "&Scale output"
msgstr ""
#. +> trunk5 stable5
#: Profile.cpp:153
#, kde-format
msgctxt "Name of the default/builtin profile"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: ProfileList.cpp:48
#, kde-format
msgid "Default profile"
msgstr ""
#. +> trunk5 stable5
#: ProfileManager.cpp:349
#, kde-format
msgid "Konsole does not have permission to save this profile to %1"
msgstr ""
#. +> trunk5 stable5
#: ProfileManager.cpp:387
#, kde-format
msgctxt "The default name of a profile"
msgid "Profile #%1"
msgstr ""
#. +> trunk5 stable5
#: RenameTabDialog.cpp:37
#, kde-format
msgid "Rename Tab"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: RenameTabWidget.ui:26
#, kde-format
msgid "Tab title format:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, tabTitleEdit)
#. +> trunk5 stable5
#: RenameTabWidget.ui:36
#, kde-format
msgid "Normal tab title format"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: RenameTabWidget.ui:46
#, kde-format
msgid "Remote tab title format:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, remoteTabTitleEdit)
#. +> trunk5 stable5
#: RenameTabWidget.ui:56
#, kde-format
msgid "Tab title format used when a remote command (e.g. connection to another computer via SSH) is being executed"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:1
#, kde-format
msgid "Black on Light Yellow"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:2
#, kde-format
msgid "Black on Random Light"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:3
#, kde-format
msgid "Black on White"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:4
#, kde-format
msgid "Blue on Black"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:5
#, kde-format
msgid "Breeze"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:6
#, kde-format
msgid "Dark Pastels"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:7
#, kde-format
msgid "Green on Black"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:8
#, kde-format
msgid "Linux Colors"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:9
#, kde-format
msgid "Red on Black"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:10
#, kde-format
msgid "Solarized"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:11
#, kde-format
msgid "Solarized Light"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:12
#, kde-format
msgid "White on Black"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:13
#, kde-format
msgid "Default (XFree 4)"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:14
#, kde-format
msgid "Linux console"
msgstr ""
#. +> trunk5 stable5
#: schemas.cpp:15
#, kde-format
msgid "Solaris console"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:350
#, kde-format
msgid "Could not find binary: "
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:359
#, kde-format
msgctxt "@info:shell Alert the user with red color text"
msgid "Warning: "
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:417
#, kde-format
msgid "Could not find '%1', starting '%2' instead. Please check your profile settings."
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:420
#, kde-format
msgid "Could not find an interactive shell to start."
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:458
#, kde-format
msgid "Could not start program '%1' with arguments '%2'."
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:590
#, kde-format
msgid "Silence in session '%1'"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:639
#, kde-format
msgid "Bell in session '%1'"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:652
#, kde-format
msgid "Activity in session '%1'"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:851
#, kde-format
msgid ""
"The D-Bus methods sendText/runCommand were just used. There are security concerns about allowing these methods to be public. If desired, these methods can be changed to internal use only by re-compiling Konsole. "
"<p>This warning will only show once for this Konsole instance.</p>"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:878
#, kde-format
msgctxt "@info:shell This session is done"
msgid "Finished"
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:892 Session.cpp:905
#, kde-format
msgid "Program '%1' crashed."
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:894
#, kde-format
msgid "Program '%1' exited with status %2."
msgstr ""
#. +> trunk5 stable5
#: Session.cpp:1301
#, kde-format
msgid "ZModem Progress"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:127
#, kde-format
msgid "Konsole"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:341
#, kde-format
msgid "Konsole does not know how to open the bookmark: "
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:401
#, kde-format
msgid "Search for '%1' with"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:415
#, kde-format
msgid "Configure Web Shortcuts..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:533
#, kde-format
msgid "&Close Session"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:535
#, kde-format
msgid "&Close Tab"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:543
#, kde-format
msgid "Open File Manager"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:570
#, kde-format
msgid "Paste Selection"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:577
#, kde-format
msgid "Web Search"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:584
#, kde-format
msgid "&Select All"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:588
#, kde-format
msgid "Select &Line"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:591
#, kde-format
msgid "Save Output &As..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:597
#, kde-format
msgid "&Print Screen..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:601
#, kde-format
msgid "Adjust Scrollback..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:605
#, kde-format
msgid "Clear Scrollback"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:609
#, kde-format
msgid "Clear Scrollback and Reset"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:615
#, kde-format
msgid "Edit Current Profile..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:618
#, kde-format
msgid "Switch Profile"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:635
#, kde-format
msgid "Set &Encoding"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:648
#, kde-format
msgid "&Rename Tab..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:654
#, kde-format
msgid "&All Tabs in Current Window"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:661
#, kde-format
msgid "&Select Tabs..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:667
#, kde-format
msgctxt "@action:inmenu Do not select any tabs"
msgid "&None"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:675
#, kde-format
msgid "Copy Input To"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:682
#, kde-format
msgid "&ZModem Upload..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:687
#, kde-format
msgid "Monitor for &Activity"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:692
#, kde-format
msgid "Monitor for &Silence"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:699
#, kde-format
msgid "Enlarge Font"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:707
#, kde-format
msgid "Shrink Font"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:714
#, kde-format
msgid "Send Signal"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:718
#, kde-format
msgid "&Suspend Task"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:723
#, kde-format
msgid "&Continue Task"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:728
#, kde-format
msgid "&Hangup"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:733
#, kde-format
msgid "&Interrupt Task"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:738
#, kde-format
msgid "&Terminate Task"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:743
#, kde-format
msgid "&Kill Task"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:748
#, kde-format
msgid "User Signal &1"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:753
#, kde-format
msgid "User Signal &2"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:867
#, kde-format
msgid "A program is currently running in this session. Are you sure you want to close it?"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:870
#, kde-format
msgid "The program '%1' is currently running in this session. Are you sure you want to close it?"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:874 SessionController.cpp:901
#, kde-format
msgid "Confirm Close"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:894
#, kde-format
msgid "A program in this session would not die. Are you sure you want to kill it by force?"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:897
#, kde-format
msgid "The program '%1' is in this session would not die. Are you sure you want to kill it by force?"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1436
#, kde-format
msgid "Print Shell"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1642
#, kde-format
msgid "Save ZModem Download to..."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1652
#, kde-format
msgid ""
"<p>A ZModem file transfer attempt has been detected, but no suitable ZModem software was found on this system.</p>"
"<p>You may wish to install the 'rzsz' or 'lrzsz' package.</p>"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1664
#, kde-format
msgid "<p>The current session already has a ZModem file transfer in progress.</p>"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1673
#, kde-format
msgid ""
"<p>No suitable ZModem software was found on this system.</p>"
"<p>You may wish to install the 'rzsz' or 'lrzsz' package.</p>"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1679
#, kde-format
msgid "Select Files for ZModem Upload"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1740
#, kde-format
msgid "Save Output From %1"
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1752
#, kde-format
msgid "%1 is an invalid URL, the output could not be saved."
msgstr ""
#. +> trunk5 stable5
#: SessionController.cpp:1828
#, kde-format
msgid ""
"A problem occurred when saving the output.\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: SessionListModel.cpp:103
#, kde-format
msgctxt "@item:intable The session index"
msgid "Number"
msgstr ""
#. +> trunk5 stable5
#: SessionListModel.cpp:105
#, kde-format
msgctxt "@item:intable The session title"
msgid "Title"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, ButtonGroup1)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:23
#, kde-format
msgid ""
"<b>Scrollback File Location</b>"
"<p>Use this groupbox to determine where Konsole will store the scrollback files.</p>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, ButtonGroup1)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:26
#, kde-format
msgid "Scrollback File Location"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:32
#, kde-format
msgid "These settings only apply when Profile->Scrolling->Unlimited scrollback is selected."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSystemLocation)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:42
#, kde-format
msgid "Use system &location"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseCacheLocation)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:85
#, kde-format
msgid "Use user specific location"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_scrollbackUseSpecifiedLocation)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:125
#, kde-format
msgid "Use specified loca&tion"
msgstr ""
#. i18n: ectx: property (filter), widget (KUrlRequester, kcfg_scrollbackUseSpecifiedLocationDirectory)
#. i18n: ectx: property (filter), widget (KUrlRequester, kcfg_TabBarUserStyleSheetFile)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:156 settings/TabBarSettings.ui:81
#, kde-format
msgid "text/css"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:187
#, kde-format
msgid "For the 'Use user specific location', any application using KonsolePart will have the app name instead of konsole."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: settings/FileLocationSettings.ui:211
#, kde-format
msgid "For any changes to take effect, quit Konsole and restart."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_1)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:28
#, kde-format
msgid "Konsole Window"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowMenuBarByDefault)
#. i18n: ectx: label, entry (ShowMenuBarByDefault), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:40 settings/konsole.kcfg:9
#, kde-format
msgid "Show menubar by default"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SaveGeometryOnExit)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:66
#, kde-format
msgid "If enabled, profile settings will be ignored"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SaveGeometryOnExit)
#. i18n: ectx: label, entry (SaveGeometryOnExit), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:69 settings/konsole.kcfg:34
#, kde-format
msgid "Use current window size on next startup"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_UseSingleInstance)
#. i18n: ectx: tooltip, entry (UseSingleInstance), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:82 settings/konsole.kcfg:40
#, kde-format
msgid "When launching Konsole re-use existing process if possible"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseSingleInstance)
#. i18n: ectx: label, entry (UseSingleInstance), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:85 settings/konsole.kcfg:39
#, kde-format
msgid "Run all Konsole windows in a single process"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AllowMenuAccelerators)
#. i18n: ectx: label, entry (AllowMenuAccelerators), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:98 settings/konsole.kcfg:24
#, kde-format
msgid "Enable menu accelerators"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowWindowTitleOnTitleBar)
#. i18n: ectx: label, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:111 settings/konsole.kcfg:14
#, kde-format
msgid "Show window title on the titlebar"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowAppNameOnTitleBar)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:124
#, kde-format
msgid "Show application name on the titlebar"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:141
#, kde-format
msgid "Default Search Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchCaseSensitive)
#. i18n: ectx: label, entry (SearchCaseSensitive), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:153 settings/konsole.kcfg:46
#, kde-format
msgid "Search is case sensitive"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchCaseSensitive)
#. i18n: ectx: tooltip, entry (SearchCaseSensitive), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:156 settings/konsole.kcfg:47
#, kde-format
msgid "Sets whether the search is case sensitive"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchRegExpression)
#. i18n: ectx: label, entry (SearchRegExpression), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:169 settings/konsole.kcfg:51
#, kde-format
msgid "Match using regular expressions"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchHighlightMatches)
#. i18n: ectx: label, entry (SearchHighlightMatches), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:182 settings/konsole.kcfg:55
#, kde-format
msgid "Highlight all search matches"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SearchReverseSearch)
#. i18n: ectx: label, entry (SearchReverseSearch), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:195 settings/konsole.kcfg:60
#, kde-format
msgid "Search backwards"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SearchReverseSearch)
#. i18n: ectx: tooltip, entry (SearchReverseSearch), group (SearchSettings)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:198 settings/konsole.kcfg:61
#, kde-format
msgid "Sets whether search should start from the bottom"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:216
#, kde-format
msgid "Notifications"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, enableAllMessagesButton)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:241
#, kde-format
msgid "All dialogs will be shown again"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, enableAllMessagesButton)
#. +> trunk5 stable5
#: settings/GeneralSettings.ui:244
#, kde-format
msgid "Enable all \"Don't Ask Again\" messages"
msgstr ""
#. i18n: ectx: tooltip, entry (ShowMenuBarByDefault), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/konsole.kcfg:10
#, kde-format
msgid "Show menubar by default in each Konsole window"
msgstr ""
#. i18n: ectx: tooltip, entry (ShowWindowTitleOnTitleBar), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/konsole.kcfg:15
#, kde-format
msgid "Show window title set by escape sequence on the titlebar"
msgstr ""
#. i18n: ectx: label, entry (ShowAppNameOnTitleBar), group (KonsoleWindow)
#. i18n: ectx: tooltip, entry (ShowAppNameOnTitleBar), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/konsole.kcfg:19 settings/konsole.kcfg:20
#, kde-format
msgid "Show \"- Konsole\" on the titlebar"
msgstr ""
#. i18n: ectx: tooltip, entry (AllowMenuAccelerators), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/konsole.kcfg:25
#, kde-format
msgid "Allow users to access top menu through Alt+Key combination"
msgstr ""
#. i18n: ectx: tooltip, entry (SaveGeometryOnExit), group (KonsoleWindow)
#. +> trunk5 stable5
#: settings/konsole.kcfg:35
#, kde-format
msgid "The window size will be saved upon exiting Konsole"
msgstr ""
#. i18n: ectx: tooltip, entry (SearchHighlightMatches), group (SearchSettings)
#. +> trunk5 stable5
#: settings/konsole.kcfg:56
#, kde-format
msgid "Sets whether matching text should be highlighted"
msgstr ""
#. i18n: ectx: label, entry (TabBarVisibility), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:67
#, kde-format
msgid "Control the visibility of the whole tab bar"
msgstr ""
#. i18n: ectx: label, entry (TabBarPosition), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:76
#, kde-format
msgid "Control the position of the tab bar"
msgstr ""
#. i18n: ectx: label, entry (TabBarStyleSheet), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:84
#, kde-format
msgid "Control the visual style of the tab bar"
msgstr ""
#. i18n: ectx: label, entry (TabBarUseUserStyleSheet), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:88
#, kde-format
msgid "Use a user-defined .css file for the tab bar"
msgstr ""
#. i18n: ectx: label, entry (TabBarUserStyleSheetFile), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:92
#, kde-format
msgid "The .css file to use for the tab bar style"
msgstr ""
#. i18n: ectx: label, entry (ShowQuickButtons), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:96
#, kde-format
msgid "Control the visibility of quick buttons on the tab bar"
msgstr ""
#. i18n: ectx: label, entry (NewTabBehavior), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:100
#, kde-format
msgid "Control where to put the new tab"
msgstr ""
#. i18n: ectx: label, entry (ExpandTabWidth), group (TabBar)
#. +> trunk5 stable5
#: settings/konsole.kcfg:108
#, kde-format
msgid "Expand the tab widths (Qt5.9+ uses the full window width)"
msgstr ""
#. i18n: ectx: label, entry (scrollbackUseSystemLocation), group (FileLocation)
#. +> trunk5 stable5
#: settings/konsole.kcfg:124
#, kde-format
msgid "For scrollback files, use system-wide folder location"
msgstr ""
#. i18n: ectx: label, entry (scrollbackUseCacheLocation), group (FileLocation)
#. +> trunk5 stable5
#: settings/konsole.kcfg:128
#, kde-format
msgid "For scrollback files, use user's specific folder location"
msgstr ""
#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocation), group (FileLocation)
#. +> trunk5 stable5
#: settings/konsole.kcfg:132
#, kde-format
msgid "For scrollback files, use specified folder location"
msgstr ""
#. i18n: ectx: label, entry (scrollbackUseSpecifiedLocationDirectory), group (FileLocation)
#. +> trunk5 stable5
#: settings/konsole.kcfg:136
#, kde-format
msgid "For scrollback files, use this folder"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: settings/PartInfo.ui:29
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Applications that use KonsolePart share profiles.</p>"
"<p>They do not share with Konsole or other applications:"
"<ul>"
"<li>default profile</li>"
"<li>show in menu</li>"
"<li>shortcuts</li>"
"</ul>"
"</p>"
"<p>Feel free to open a Konsole <a href=\"https://bugs.kde.org/enter_bug.cgi?format=guided&product=konsole&component=kpart\">bug report</a> if you desire a change to how these are handled.</body></html>"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:153
#, kde-format
msgctxt "@info:tooltip"
msgid "Click to toggle status"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:159
#, kde-format
msgctxt "@info:tooltip"
msgid "Double click to change shortcut"
msgstr ""
#. +> stable5
#: settings/ProfileSettings.cpp:147
#, kde-format
msgctxt "@info:tooltip"
msgid "Click to rename profile"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:193
#, kde-format
msgctxt "@title:column Profile label"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:194
#, kde-format
msgctxt "@title:column Display profile in file menu"
msgid "Show"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:195
#, kde-format
msgctxt "@title:column Profile shortcut text"
msgid "Shortcut"
msgstr ""
#. +> trunk5 stable5
#: settings/ProfileSettings.cpp:310
#, kde-format
msgctxt "@item This will be used as part of the file name"
msgid "New Profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, newProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:20
#, kde-format
msgid "Create a new profile based upon the selected profile"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, newProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:23
#, kde-format
msgid "&New Profile..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:33
#, kde-format
msgid "Edit the selected profile(s)"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, editProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:36
#, kde-format
msgid "&Edit Profile..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:46
#, kde-format
msgid "Delete the selected profile(s)"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, deleteProfileButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:49
#, kde-format
msgid "&Delete Profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, setAsDefaultButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:59
#, kde-format
msgid "Set the selected profile as the default for new terminal sessions"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, setAsDefaultButton)
#. +> trunk5 stable5
#: settings/ProfileSettings.ui:62
#, kde-format
msgid "&Set as Default"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:23
#, kde-format
msgid "Tab bar position:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_TabBarVisibility)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:40
#, kde-format
msgid "Always Show Tab Bar"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_TabBarVisibility)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:45
#, kde-format
msgid "Show Tab Bar When Needed"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_TabBarVisibility)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:50
#, kde-format
msgid "Always Hide Tab Bar"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_1)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:58
#, kde-format
msgid "Tab bar visibility:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpandTabWidth)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:68
#, kde-format
msgid "Expand Individual Tab Widths to Full Window"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowQuickButtons)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:88
#, kde-format
msgid "Show 'New Tab' and 'Close Tab' buttons"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarUseUserStyleSheet)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:95
#, kde-format
msgid "Use user-defined stylesheet"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_TabBarPosition)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:109
#, kde-format
msgid "Above Terminal Area"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_TabBarPosition)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:114
#, kde-format
msgid "Below Terminal Area"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Qt59label)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:128
#, kde-format
msgid "Starting with Qt 5.9, the next two options will have different affects."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:144
#, kde-format
msgid "Behavior"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:150
#, kde-format
msgid "New tab behavior:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_NewTabBehavior)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:167
#, kde-format
msgid "Put New Tab At The End"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_NewTabBehavior)
#. +> trunk5 stable5
#: settings/TabBarSettings.ui:172
#, kde-format
msgid "Put New Tab After Current Tab"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:33
#, kde-format
msgid "Program Name: %n"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:34
#, kde-format
msgid "Current Directory (Short): %d"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:35
#, kde-format
msgid "Current Directory (Long): %D"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:36 TabTitleFormatButton.cpp:50
#, kde-format
msgid "Window Title Set by Shell: %w"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:37 TabTitleFormatButton.cpp:51
#, kde-format
msgid "Session Number: %#"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:38 TabTitleFormatButton.cpp:45
#, kde-format
msgid "User Name: %u"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:39
#, kde-format
msgid "Local Host: %h"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:46
#, kde-format
msgid "User Name@ (if given): %U"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:47
#, kde-format
msgid "Remote Host (Short): %h"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:48
#, kde-format
msgid "Remote Host (Long): %H"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:49
#, kde-format
msgid "Command and arguments: %c"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:60
#, kde-format
msgid "Insert"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:85
#, kde-format
msgctxt "@info:tooltip"
msgid "Insert title format"
msgstr ""
#. +> trunk5 stable5
#: TabTitleFormatButton.cpp:89
#, kde-format
msgctxt "@info:tooltip"
msgid "Insert remote title format"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:1313 TerminalDisplay.cpp:1314
#, kde-format
msgid "Size: XXX x XXX"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:1325
#, kde-format
msgid "Size: %1 x %2"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:3078
#, kde-format
msgid "Are you sure you want to paste %1 character?"
msgid_plural "Are you sure you want to paste %1 characters?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:3081
#, kde-format
msgid "Confirm Paste"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:3279
#, kde-format
msgid "<qt>Output has been <a href=\"http://en.wikipedia.org/wiki/Software_flow_control\">suspended</a> by pressing Ctrl+S. Press <b>Ctrl+Q</b> to resume. Click <a href=\"#close\">here</a> to dismiss this message.</qt>"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:3586
#, kde-format
msgid "&Paste Location"
msgstr ""
#. +> trunk5 stable5
#: TerminalDisplay.cpp:3603
#, kde-format
msgid "Change &Directory To"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:306
#, kde-format
msgctxt "@action:inmenu"
msgid "&Detach Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:311
#, kde-format
msgctxt "@action:inmenu"
msgid "&Rename Tab..."
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:317
#, kde-format
msgctxt "@action:inmenu"
msgid "&Close Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:324
#, kde-format
msgctxt "@info:tooltip"
msgid "Create new tab"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:326
#, kde-format
msgctxt "@info:whatsthis"
msgid "Create a new tab. Press and hold to select profile from menu"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:340
#, kde-format
msgctxt "@info:tooltip"
msgid "Close tab"
msgstr ""
#. +> trunk5 stable5
#: ViewContainer.cpp:341
#, kde-format
msgctxt "@info:whatsthis"
msgid "Close the active tab"
msgstr ""
#. +> trunk5 stable5
#: ViewContainerTabBar.cpp:60
#, kde-kuit-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Tab Bar</title>"
"<para>The tab bar allows you to switch and move tabs. You can double-click a tab to change its name.</para>"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:132
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Next Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:133
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Previous Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:135
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Switch to Last Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:137
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Next View Container"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:139
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Move Tab Left"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:141
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Move Tab Right"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:149
#, kde-format
msgctxt "@action:inmenu"
msgid "Split View Left/Right"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:157
#, kde-format
msgctxt "@action:inmenu"
msgid "Split View Top/Bottom"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:162
#, kde-format
msgctxt "@action:inmenu Close Active View"
msgid "Close Active"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:173
#, kde-format
msgctxt "@action:inmenu Close Other Views"
msgid "Close Others"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:183
#, kde-format
msgctxt "@action:inmenu"
msgid "Expand View"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:193
#, kde-format
msgctxt "@action:inmenu"
msgid "Shrink View"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:206
#, kde-format
msgctxt "@action:inmenu"
msgid "D&etach Current Tab"
msgstr ""
#. +> trunk5 stable5
#: ViewManager.cpp:227
#, kde-format
msgctxt "@action Shortcut entry"
msgid "Switch to Tab %1"
msgstr ""
#. +> trunk5 stable5
#: Vt102Emulation.cpp:1134
#, kde-format
msgid "No keyboard translator available. The information needed to convert key presses into characters to send to the terminal is missing."
msgstr ""
#. +> trunk5 stable5
#: ZModemDialog.cpp:47
#, kde-format
msgid "&Stop"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/calligra/kexi.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/calligra/kexi.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/calligra/kexi.pot (revision 1509808)
@@ -1,9765 +1,9765 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-31 09:15+0100\n"
+"POT-Creation-Date: 2018-02-02 13:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#: core/kexi.cpp:141
#, kde-kuit-format
msgid "&No View"
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:143
#, kde-kuit-format
msgid "&Data View"
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:145
#, kde-kuit-format
msgid "D&esign View"
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:147
#, kde-kuit-format
msgid "&Text View"
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:149
#, kde-kuit-format
msgid "&Unknown"
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:342
#, kde-kuit-format
msgid "This function is not available for version %1 of %2 application."
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:347
#, kde-kuit-format
msgctxt "@info"
msgid "<resource>%1</resource> function is not available for version %2 of %3 application."
msgstr ""
#. +> trunk5 stable5
#: core/kexi.cpp:400
#, kde-kuit-format
msgctxt "@info"
msgid "<application>%1</application> could have been incorrectly installed or started. The application will be closed."
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:28
#, kde-format
msgid "Visual database applications creator"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:37
#, kde-kuit-format
msgid "© 2002-%1, The Kexi Team"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:38
#, kde-kuit-format
msgid "This software is developed by Kexi Team - an international group of independent developers. They form a part of the Calligra Project."
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:48
#, kde-kuit-format
msgid "Jarosław Staniek"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:48
#, kde-kuit-format
msgid "Project maintainer & developer, overall design"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:50
#, kde-kuit-format
msgid "OpenOffice Polska LLC"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:50
#, kde-kuit-format
msgid "Sponsoring and support (employer of Jarosław Staniek in 2003-2007)"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:52
#, kde-kuit-format
msgid "Adam Pigg"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:52
#, kde-kuit-format
msgid "PostgreSQL database driver, Migration and Reporting modules, numerous bug fixes"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:54
#, kde-kuit-format
msgid "Map elements for forms and reports, map flake shape"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:54
#, kde-kuit-format
msgid "Radosław Wicik"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:56 core/kexiaboutdata.cpp:58
#, kde-kuit-format
msgid "Features and bug fixes"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:56
#, kde-kuit-format
msgid "Wojciech Kosowicz"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:58
#, kde-kuit-format
msgid "Roman Shtemberko"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:60
#, kde-kuit-format
msgid "Dimitrios T. Tanis"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:60
#, kde-kuit-format
msgid "Users Manual for Kexi 2, main window improvements, numerous bug reports"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:62
#, kde-kuit-format
msgid "Oleg Kukharchuk"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:62
#, kde-kuit-format
msgid "Several form widgets, porting to Qt 4, stabilization"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:64
#, kde-kuit-format
msgid "Shreya Pandit"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:64
#, kde-kuit-format
msgid "Web elements for forms and reports"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:66
#, kde-kuit-format
msgid "Scripting module (KROSS), Python language bindings, design"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:66
#, kde-kuit-format
msgid "Sebastian Sauer"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:68
#, kde-kuit-format
msgid "Lorenzo Villani"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:68
#, kde-kuit-format
msgid "Web Forms module"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:70
#, kde-kuit-format
msgid "Sharan Rao"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:70
#, kde-kuit-format
msgid "Sybase/MS SQL Server/ODBC database drivers, xBase migration plugin, improvements for KexiDB"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:72
#, kde-kuit-format
msgid "Cédric Pasteur"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:72
#, kde-kuit-format
msgid "First version of Property Editor and Form Designer"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:74
#, kde-kuit-format
msgid "Contributions for MySQL and KexiDB, fixes, Migration module, MS Access file format support"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:74
#, kde-kuit-format
msgid "Martin Ellis"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:76
#, kde-kuit-format
msgid "Julia Sanchez-Simon"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:76
#, kde-kuit-format
msgid "Oracle database driver"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:78
#, kde-kuit-format
msgid "Christian Nitschkowski"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:78
#, kde-kuit-format
msgid "Graphics effects, helper dialogs"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:80
#, kde-kuit-format
msgid "Matt Rogers"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:80
#, kde-kuit-format
msgid "ODBC database driver"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:82
#, kde-kuit-format
msgid "Former project maintainer & developer"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:82
#, kde-kuit-format
msgid "Lucijan Busch"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:84
#, kde-kuit-format
msgid "Former developer"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:84
#, kde-kuit-format
msgid "Peter Simonsson"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:86
#, kde-kuit-format
msgid "Joseph Wenninger"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:86
#, kde-kuit-format
msgid "Original Form Designer, original user interface & much more"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:88
#, kde-kuit-format
msgid "CQL++, SQL assistance"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:88
#, kde-kuit-format
msgid "Seth Kurzenberg"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:90
#, kde-kuit-format
msgid "Laurent Montel"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:90
#, kde-kuit-format
msgid "Original code cleanings"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:92
#, kde-kuit-format
msgid "Bugfixes, original Table Widget"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:92
#, kde-kuit-format
msgid "Till Busch"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:95
#, kde-kuit-format
msgid "Ian Whitfield"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:95 core/kexiaboutdata.cpp:101
#, kde-kuit-format
msgid "Numerous bug reports and tests"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:97
#, kde-kuit-format
msgid "AppImage packages for Linux"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:97
#, kde-kuit-format
msgid "Scarlett Gately Clark"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:99
#, kde-kuit-format
msgid "Ian Balchin"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:99
#, kde-kuit-format
msgid "Numerous bug reports and tests, handbook improvements"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:101
#, kde-kuit-format
msgid "Robert Leleu"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:103
#, kde-kuit-format
msgid "Bug fixes, build system improvements, code cleanups"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:103
#, kde-kuit-format
msgid "Friedrich W. H. Kossebau"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:105
#, kde-kuit-format
msgid "Boudewijn Rempt"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:105 core/kexiaboutdata.cpp:107
#, kde-kuit-format
msgid "Code cleanups"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:107
#, kde-kuit-format
msgid "David Faure"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:109
#, kde-kuit-format
msgid "Daniel Molkentin"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:109
#, kde-kuit-format
msgid "Initial design improvements"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:111
#, kde-kuit-format
msgid "Icons and user interface research"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:111
#, kde-kuit-format
msgid "Kristof Borrey"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:113
#, kde-kuit-format
msgid "Coffee sponsoring"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:113
#, kde-kuit-format
msgid "Tomas Krassnig"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:115
#, kde-kuit-format
msgid "Numerous bug reports, usability tests, technical support"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:115
#, kde-kuit-format
msgid "Paweł Wirecki / OpenOffice Polska"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:118
#, kde-format, kde-kuit-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: core/kexiaboutdata.cpp:118
#, kde-format, kde-kuit-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:38
#, kde-kuit-format
msgctxt "'createdb' command line option"
msgid "Create a new, blank project using specified database driver and database name and exit immediately. You will be asked for confirmation if overwriting is needed."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:43
#, kde-kuit-format
msgctxt "'create-opendb' command line option"
msgid "Like --createdb, but also open newly created database."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:46
#, kde-kuit-format
msgctxt "'dropdb' command line option"
msgid "Drop (remove) a project using specified database driver and database name. You will be asked for confirmation."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:50
#, kde-kuit-format
msgctxt "'dbdriver' command line option"
msgid "Name of a database driver to be used when connecting to a database project (\"sqlite\" by default). Ignored if a shortcut filename is provided. Complete KDb-specific globally unique identifier can be used, e.g. \"org.kde.kdb.sqlite\" to specify exact vendor of the driver."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:57
#, kde-kuit-format
msgctxt "'type' command line option"
msgid ""
"Specify the type of file provided as an argument. This option is only useful if the filename does not have a valid extension set and its type cannot be determined unambiguously by examining its contents. This option is ignored if no file is specified as an argument.\n"
"Available file types are:\n"
"- \"project\" for a project file (the default)\n"
"- \"shortcut\" for a shortcut file pointing to a\n"
" project.\n"
"- \"connection\" for database connection data."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:69
#, kde-kuit-format
msgctxt "'connection' command line option"
msgid ""
"Specify a database connection shortcut .kexic file containing connection data. Can be used with --createdb or --create-opendb for convenience instead of using options such as --user, --host or --port.\n"
"Note: Options like --user, --host have precedence over settings defined in the shortcut file."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:77
#, kde-kuit-format
msgctxt "'readonly' command line option"
msgid "Specify that any database connections will be performed without write support. This option is ignored when \"createdb\" option is present, otherwise the database could not be created."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:82
#, kde-kuit-format
msgctxt "'user-mode' command line option"
msgid "Start project in User Mode, regardless of the project settings."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:85
#, kde-kuit-format
msgctxt "'design-mode' command line option"
msgid "Start project in Design Mode, regardless of the project settings."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:88
#, kde-kuit-format
msgctxt "'show-navigator' command line option"
msgid "Show the Project Navigator side pane even if Kexi runs in User Mode."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:91
#, kde-kuit-format
msgctxt "'hide-menu' command line option"
msgid "Hide the main menu (the tabbed toolbar) completely. A number of commands from the main menu is still visible. This option is useful in User Mode."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:97
#, kde-kuit-format
msgctxt "'open' command line option"
msgid ""
"Open object of type 'object_type' and name 'object_name' from specified project on application start. 'object_type' is optional, if omitted - %1 type is assumed. Other object types can be %2, %3, %4, %5. There may by more or less types available depending on Kexi plugins installed.\n"
"Use \"\" characters to specify names containing spaces.\n"
"Examples: --open MyTable, --open %2:\"My very big query\""
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:108
#, kde-kuit-format
msgctxt "'design' command line option"
msgid "Like --open, but the object will be opened in Design Mode, if one is available."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:112
#, kde-kuit-format
msgctxt "'edittext' command line option"
msgid "Like --open, but the object will be opened in Text Mode, if one is available."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:116
#, kde-kuit-format
msgctxt "'execute' command line option"
msgid ""
"Start execution of object of type 'object_type' and name 'object_name' on application start. 'object_type' is optional, if omitted - %1 type is assumed. Object type can be also %2. There may by more or less types available depending on Kexi plugins installed.\n"
"Use \"\" characters to specify names containing spaces."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:125
#, kde-kuit-format
msgctxt "'new' command line option"
msgid "Start design of a new object of type 'object_type'."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:129
#, kde-kuit-format
msgctxt "'print' command line option"
msgid "Open the Print dialog window for an object of type 'object_type' and name 'object_name' in the specified project when the application starts for quick printing of the object's data. 'object_type' is optional; if omitted, %1 type is assumed. Object type can also be %2."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:137
#, kde-kuit-format
msgctxt "'print-preview' command line option"
msgid "Open the Print Preview window for an object of type 'object_type' and name 'object_name' in the specified project when the application starts to see preview of the object's data printout. 'object_type' is optional; if omitted, %1 type is assumed. Object type can also be %2."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:147
#, kde-kuit-format
msgctxt "'user' command line option"
msgid "Database server's user name when connecting to a project. Ignored if the project is opened using a shortcut file. Default user name is the same as the current login (<resource>%1</resource>)."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:154
#, kde-kuit-format
msgctxt "'host' command line option"
msgid "Network server's (host) name to be used when connecting to a database project. Ignored if the project is opened using a shortcut file. Default host is the local computer."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:160
#, kde-kuit-format
msgctxt "'port' command line option"
msgid "Network server's port number to be used when connecting to a database project. Ignored if the project is opened using a shortcut file. Defaults depend on the used server type (e.g. %1, %2)."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:167
#, kde-kuit-format
msgctxt "'local-socket' command line option"
msgid "Local computer's socket filename to be used when connecting to a database project. Ignored if the project is opened using a shortcut file. Defaults depend on the used server type (e.g. %1, %2)."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:176
#, kde-kuit-format
msgctxt "'skip-conn-dialog' command line option"
msgid "Skip displaying connection dialog window and connect directly. Available when opening .kexic or .kexis shortcut files."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:180
#, kde-kuit-format
msgctxt "'fullscreen' command line option"
msgid "Start Kexi in full screen mode to occupy the whole screen area by hiding window decorations such as title bars."
msgstr ""
#. +> trunk5 stable5
#: core/KexiCommandLineOptions.cpp:188
#, kde-kuit-format
msgctxt "'list-plugins' command line option"
msgid "Displays list of plugins available for Kexi with their name, description, version and filenames."
msgstr ""
#. +> trunk5 stable5
#: core/kexidbconnectionset.cpp:76
#, kde-kuit-format
msgid "Could not find location to save connection data file."
msgstr ""
#. +> trunk5 stable5
#: core/kexidbconnectionset.cpp:88
#, kde-kuit-format
msgid "Could not create folder <filename>%1</filename> for connection data file."
msgstr ""
#. +> trunk5 stable5
#: core/kexidbconnectionset.cpp:157
#, kde-kuit-format
msgid "Could not remove connection file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: core/KexiFileFilters.cpp:240 widget/KexiStartupFileHandler.cpp:282
#, kde-kuit-format
msgid "All Supported Files"
msgstr ""
#. +> trunk5 stable5
#: core/KexiGroupButton.cpp:143
#, kde-format
msgctxt "@info:tooltip of custom triple button"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: core/kexiguimsghandler.cpp:175 core/kexitextmsghandler.cpp:92
#: migration/importtablewizard.cpp:417
#, kde-kuit-format
msgid "Unknown error"
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:70
#, kde-kuit-format
msgid "Details:"
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:74
#, kde-kuit-format
msgctxt "@info"
msgid "Object <resource>%1</resource> could not be opened in Design View."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:75
#, kde-kuit-format
msgid "Object could not be opened in Data View."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:76
#, kde-kuit-format
msgid "Do you want to open it in Text View?"
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:115
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "object"
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:252
#, kde-kuit-format
msgid "Could not create object's window."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:252
#, kde-kuit-format
msgid "The plugin or object definition may be corrupted."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:274
#, kde-kuit-format
msgid "Could not load object's definition."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:274
#, kde-kuit-format
msgid "Object design may be corrupted."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:277
#, kde-kuit-format
msgctxt "@info"
msgid "You can delete <resource>%1</resource> object and create it again."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:360
#, kde-kuit-format
msgid "Could not load object's data."
msgstr ""
#. +> trunk5 stable5
#: core/kexipart.cpp:362
#, kde-kuit-format
msgctxt "@info"
msgid "Data identifier: <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: core/kexipartinfo.cpp:109
#, kde-kuit-format
msgctxt "@info"
msgid "Create new object of type <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: core/kexipartinfo.cpp:112
#, kde-kuit-format
msgctxt "@info"
msgid "Creates new object of type <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: core/kexipartmanager.cpp:112
#, kde-kuit-format
msgctxt "@info"
msgid "Could not load Kexi plugin file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: core/kexipartmanager.cpp:125
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open Kexi plugin <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: core/kexipartmanager.cpp:275
#, kde-kuit-format
msgctxt "@info"
msgid "No plugin for ID <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:130 main/KexiMainWindow.cpp:3512
#, kde-kuit-format
msgid "Could not set empty name for this object."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:136
#, kde-kuit-format
msgctxt "@info"
msgid "Could not use this name. Object <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:148
#, kde-kuit-format
msgctxt "@info"
msgid "Could not rename object <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:300
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open project <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:306
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open project. The project file <filename>%1</filename> does not exist."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:309 core/kexiproject.cpp:1487
#: main/startup/KexiStartup.cpp:812 main/startup/KexiStartup.cpp:821
#: main/startup/KexiStartup.cpp:832
#, kde-kuit-format
msgctxt "@title:window"
msgid "Could Not Open File"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:345
#, kde-kuit-format
msgctxt "@info (don't add tags around %1, it's done already)"
msgid "Database project %1 does not appear to have been created using Kexi and cannot be opened. It is an SQLite file created using other tools."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:372
#, kde-kuit-format
msgctxt "@info"
msgid "Could not create project <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:416 core/kexiproject.cpp:487
#, kde-kuit-format
msgid "Project major version"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:418 core/kexiproject.cpp:489
#, kde-kuit-format
msgid "Project minor version"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:420
#, kde-kuit-format
msgid "Project caption"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:422
#, kde-kuit-format
msgid "Project description"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:971
#, kde-kuit-format
msgctxt "@info"
msgid ""
"Opening object <resource>%1</resource> failed.\n"
"%2 %3"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:992
#, kde-kuit-format
msgid "This project is opened as read only."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1024
#, kde-kuit-format
msgid "Could not delete object's user data."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1152
#, kde-format
msgctxt "warning"
msgid "Entire project's data and design will be deleted."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1168
#, kde-kuit-format
msgctxt "@info (don't add tags around %1, it's done already)"
msgid ""
"<para>The project %1 already exists.</para>"
"<para>Do you want to replace it with a new, blank one?</para>"
"<para><warning>%2</warning></para>"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1173
#, kde-kuit-format
msgctxt "@action:button"
msgid "Replace"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1198
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Do you want to delete the project <resource>%1</resource>?</para>"
"<para><warning>%2</warning></para>"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1202
#, kde-kuit-format
msgctxt "@action:button"
msgid "Delete Project"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1216
#, kde-kuit-format
msgid "Could not delete this project. Database connection for this project has been opened as read only."
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1481
#, kde-kuit-format
msgid "Open As Read Only"
msgstr ""
#. +> trunk5 stable5
#: core/kexiproject.cpp:1484
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not open file <filename>%1</filename> for reading and writing.</para>"
"<para>Do you want to open the file as read only?</para>"
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:172
#, kde-kuit-format
msgctxt "@info database connection"
msgid "<resource>%1</resource> (connection <resource>%2</resource>)"
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:177
#, kde-kuit-format
msgctxt "@info database name"
msgid "<resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:212
#, kde-kuit-format
msgid "File <filename>%1</filename> contains no connection information."
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:220
#, kde-kuit-format
msgid "File <filename>%1</filename> does not contain group <resource>%2</resource>."
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:236
#, kde-kuit-format
msgid "Invalid value <resource>%1</resource> type specified in group <resource>%2</resource> of file <filename>%3</filename>."
msgstr ""
#. +> trunk5 stable5
#: core/kexiprojectdata.cpp:244
#, kde-kuit-format
msgid "No valid \"engine\" field specified in group <resource>%1</resource> of file <filename>%2</filename>."
msgstr ""
#. +> trunk5 stable5
#: core/KexiRecentProjects.cpp:81
#, kde-kuit-format
msgid "Could not create folder <filename>%1</filename> for storing recent projects information."
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:47
#, kde-format
msgid "&Ascending"
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:48
#, kde-format
msgid "Sort data in ascending order"
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:49
#, kde-format
msgid "Sorts data in ascending order (from A to Z and from 0 to 9). Data from selected column is used for sorting."
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:51
#, kde-format
msgid "&Descending"
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:52
#, kde-format
msgid "Sort data in descending order"
msgstr ""
#. +> trunk5 stable5
#: core/KexiStandardAction.cpp:53
#, kde-format
msgid "Sorts data in descending (from Z to A and from 9 to 0). Data from selected column is used for sorting."
msgstr ""
#. +> trunk5 stable5
#: core/kexistartupdata.cpp:232
#, kde-kuit-format
msgctxt "<file> argument description for the command line"
msgid "Kexi database project filename, Kexi shortcut filename, or name of a Kexi database project on a server to open."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:61
#, kde-kuit-format
msgid "Switch to data view"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:62
#, kde-kuit-format
msgid "Switches to data view."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:65
#, kde-kuit-format
msgid "Switch to design view"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:66
#, kde-kuit-format
msgid "Switches to design view."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:69
#, kde-kuit-format
msgid "Switch to text view"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:70
#, kde-kuit-format
msgid "Switches to text view."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:124
#, kde-kuit-format
msgid "Menu for the current window"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:125
#, kde-kuit-format
msgid "Shows menu for the current window."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:267 kexiutils/utils.cpp:319
#, kde-format, kde-kuit-format
msgid "Save"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:268
#, kde-kuit-format
msgid "Save current design"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:269
#, kde-kuit-format
msgid "Saves changes made to the current design."
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:653 main/KexiMainWindow_p.cpp:726
#, kde-kuit-format
msgid "Data"
msgstr ""
#. +> trunk5 stable5
#: core/KexiView.cpp:657
#, kde-kuit-format
msgid "Design"
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:90
#, kde-kuit-format
msgid "Could not create new object."
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:446
#, kde-kuit-format
msgid "Save Changes"
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:449
#, kde-kuit-format
msgid "Do Not Switch"
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:452
#, kde-kuit-format
msgid ""
"<para>There are unsaved changes in object <resource>%1</resource>.</para>"
"<para>Do you want to save these changes before switching to other view?</para>"
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:455
#, kde-kuit-format
msgid "Confirm Saving Changes"
msgstr ""
#. +> trunk5 stable5
#: core/KexiWindow.cpp:481
#, kde-kuit-format
msgid "Design has been changed. You must save it before switching to other view."
msgstr ""
#. +> trunk5 stable5
-#: core/KexiWindow.cpp:561 main/KexiMainWindow.cpp:2728
+#: core/KexiWindow.cpp:563 main/KexiMainWindow.cpp:2728
#, kde-kuit-format
msgid "Switching to other view failed (%1)."
msgstr ""
#. +> trunk5 stable5
-#: core/KexiWindow.cpp:686
+#: core/KexiWindow.cpp:688
#, kde-kuit-format
msgctxt "@title:window with dirty indicator"
msgid "%1*"
msgstr ""
#. +> trunk5 stable5
-#: core/KexiWindow.cpp:719 core/KexiWindow.cpp:806
+#: core/KexiWindow.cpp:721 core/KexiWindow.cpp:808
#, kde-kuit-format
msgid "Saving object's definition failed."
msgstr ""
#. +> trunk5 stable5
-#: core/KexiWindow.cpp:747
+#: core/KexiWindow.cpp:749
#, kde-kuit-format
msgid "Saving object's data failed."
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:157
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change <resource>%1</resource> property for multiple widgets"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:161
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change <resource>%1</resource> property for widget <resource>%2</resource>"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:334
msgctxt "(qtundo-format)"
msgid "Move multiple widgets"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:437
msgctxt "(qtundo-format)"
msgid "Align Widgets to Grid"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:440
msgctxt "(qtundo-format)"
msgid "Align Widgets to Left"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:443
msgctxt "(qtundo-format)"
msgid "Align Widgets to Right"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:446
msgctxt "(qtundo-format)"
msgid "Align Widgets to Top"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:449
msgctxt "(qtundo-format)"
msgid "Align Widgets to Bottom"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:612
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Grid"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:615
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Fit Contents"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:618
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Narrowest"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:621
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Widest"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:624
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Shortest"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:627
msgctxt "(qtundo-format)"
msgid "Resize Widgets to Tallest"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:903
#, kde-format
msgctxt "(qtundo-format)"
msgid "Insert widget <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:906
msgctxt "(qtundo-format)"
msgid "Insert widget"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:952
#, kde-kuit-format
msgctxt "@info"
msgid "Could not insert widget of type <resource>%1</resource>. A problem with widget's creation encountered."
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1121
msgctxt "(qtundo-format)"
msgid "Paste"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1407
msgctxt "(qtundo-format)"
msgid "Delete widget"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1515
msgctxt "(qtundo-format)"
msgid "Duplicate widget"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1574
msgctxt "(qtundo-format)"
msgid "Cut"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1807
msgctxt "(qtundo-format)"
msgid "Add Page"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1854 formeditor/WidgetTreeWidget.cpp:117
#, kde-kuit-format
msgid "Page %1"
msgstr ""
#. +> trunk5 stable5
#: formeditor/commands.cpp:1962
msgctxt "(qtundo-format)"
msgid "Delete Page"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:75
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Form Connections"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:117
#, kde-kuit-format
msgid "&New Connection"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:121
#, kde-kuit-format
msgid "&Delete Connection"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:141
#, kde-kuit-format
msgid "OK?"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:144
#, kde-kuit-format
msgid "Connection correctness"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:147
#, kde-kuit-format
msgid "Sender"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:152
#, kde-kuit-format
msgid "Signal"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:157
#, kde-kuit-format
msgid "Receiver"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:161
#, kde-kuit-format
msgid "Slot"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:249
#, kde-kuit-format
msgid "The connection is OK."
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:268
#, kde-kuit-format
msgid "The connection is invalid."
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:359
#, kde-kuit-format
msgid "You have not selected item: <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:372
#, kde-kuit-format
msgid "The signal/slot arguments are not compatible."
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:432
#, kde-kuit-format
msgid "Do you want to delete this connection?"
msgstr ""
#. +> trunk5 stable5
#: formeditor/connectiondialog.cpp:434
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Delete Connection"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:47
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Listview Contents"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:50
#, kde-kuit-format
msgid "Columns"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:57 formeditor/editlistviewdialog.cpp:133
#, kde-kuit-format
msgid "&Add Item"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:64
#, kde-kuit-format
msgid "New &Subitem"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:71 formeditor/editlistviewdialog.cpp:140
#, kde-kuit-format
msgid "&Delete Item"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:78 formeditor/editlistviewdialog.cpp:147
#, kde-kuit-format
msgid "Move Item &Up"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:85 formeditor/editlistviewdialog.cpp:154
#, kde-kuit-format
msgid "Move Item &Down"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:108
#, kde-kuit-format
msgid "Contents"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:116 formeditor/form_p.cpp:256
#: plugins/queries/kexiquerydesignerguieditor.cpp:1855
#: plugins/tables/kexitabledesignerview.cpp:358
#, kde-kuit-format
msgid "Caption"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:118
#, kde-kuit-format
msgid "Width"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:120
#, kde-kuit-format
msgid "Clickable"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:122
#, kde-kuit-format
msgid "Resizable"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:124
#, kde-kuit-format
msgid "Full Width"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:276 formeditor/editlistviewdialog.cpp:277
#, kde-kuit-format
msgid "New Column"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:417
#, kde-kuit-format
msgid "New Item"
msgstr ""
#. +> trunk5 stable5
#: formeditor/editlistviewdialog.cpp:430
#, kde-kuit-format
msgid "Sub Item"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:282
#, kde-kuit-format
msgid "Form"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:762
#, kde-kuit-format
msgctxt "@info"
msgid "Renaming widget <resource>%1</resource> to <resource>%2</resource> failed."
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:1318
#, kde-kuit-format
msgctxt "@info"
msgid "Could not rename widget <resource>%1</resource> to <resource>%2</resource> because <resource>%3</resource> is not a valid name (identifier) for a widget."
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:1331
#, kde-kuit-format
msgctxt "@info"
msgid "Could not rename widget <resource>%1</resource> to <resource>%2</resource> because a widget with the name <resource>%3</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:1441 formeditor/form.cpp:1708
#, kde-kuit-format
msgid "Multiple Widgets (%1)"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:1698
#, kde-kuit-format
msgid "%1 : Form"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:1757
#, kde-kuit-format
msgid "No Buddy"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:2169
#, kde-kuit-format
msgctxt "Translators: please keep this string short (less than 20 chars)"
msgid "Hor. Alignment"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:2170
#, kde-kuit-format
msgid "Horizontal Alignment"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:2200
#, kde-kuit-format
msgctxt "Translators: please keep this string short (less than 20 chars)"
msgid "Ver. Alignment"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form.cpp:2201
#, kde-kuit-format
msgid "Vertical Alignment"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: formeditor/form_p.cpp:254 formeditor/form_p.cpp:255
#: plugins/tables/kexitabledesignerview.cpp:323
#: widget/KexiConnectionSelector.ui:94
#, kde-format, kde-kuit-format
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:257
#, kde-kuit-format
msgid "Window title"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:258
#, kde-kuit-format
msgid "Text"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:259
#, kde-kuit-format
msgid "Background Pixmap"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:260
#, kde-kuit-format
msgctxt "Property: enabled widget"
msgid "Enabled"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:261
#, kde-kuit-format
msgid "Geometry"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:262
#, kde-kuit-format
msgid "Size Policy"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:263
#, kde-kuit-format
msgid "Minimum Size"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:264
#, kde-kuit-format
msgid "Maximum Size"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:265
#, kde-kuit-format
msgid "Font"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:266
#, kde-kuit-format
msgid "Cursor"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:267
#, kde-kuit-format
msgid "Foreground Color"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:268
#, kde-kuit-format
msgid "Background Color"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:269
#, kde-kuit-format
msgid "Fill Background"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:270
#, kde-kuit-format
msgid "Focus Policy"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:271
#, kde-kuit-format
msgid "Margin"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:272 plugins/forms/kexidbfactorybase.cpp:54
#, kde-kuit-format
msgid "Read Only"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:273
#, kde-kuit-format
msgid "Style Sheet"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:274
#, kde-kuit-format
msgctxt "Widget's Tooltip"
msgid "Tooltip"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:275
#, kde-kuit-format
msgctxt "Widget's Whats This"
msgid "What's This"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:276
#, kde-kuit-format
msgid "Icon Size"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:279
#, kde-kuit-format
msgid "Frame"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:280
#, kde-kuit-format
msgid "Frame Width"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:281
#, kde-kuit-format
msgid "Mid Frame Width"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:282
#, kde-kuit-format
msgid "Frame Shape"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:283
#, kde-kuit-format
msgid "Frame Shadow"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:285
#, kde-kuit-format
msgid "Vertical Scrollbar"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:286
#, kde-kuit-format
msgid "Horizontal Scrollbar"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:288
#, kde-kuit-format
msgid "No Background"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:289
#, kde-kuit-format
msgid "Palette Foreground"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:290
#, kde-kuit-format
msgctxt "Auto (HINT: for AutoText)"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:292
#, kde-kuit-format
msgctxt "Auto (HINT: for Align)"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:293
#, kde-kuit-format
msgctxt "Baseline (HINT: for Align)"
msgid "Baseline"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:294 formeditor/form_p.cpp:295
#, kde-kuit-format
msgctxt "Left (HINT: for Align)"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:296 formeditor/form_p.cpp:297
#, kde-kuit-format
msgctxt "Right (HINT: for Align)"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:298 formeditor/form_p.cpp:300
#, kde-kuit-format
msgctxt "Center (HINT: for Align)"
msgid "Center"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:299
#, kde-kuit-format
msgctxt "Justify (HINT: for Align)"
msgid "Justify"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:301
#, kde-kuit-format
msgctxt "Top (HINT: for Align)"
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:302
#, kde-kuit-format
msgctxt "Bottom (HINT: for Align)"
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:304
#, kde-kuit-format
msgctxt "No Frame (HINT: for Frame Shape)"
msgid "No Frame"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:305
#, kde-kuit-format
msgctxt "Box (HINT: for Frame Shape)"
msgid "Box"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:306
#, kde-kuit-format
msgctxt "Panel (HINT: for Frame Shape)"
msgid "Panel"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:307
#, kde-kuit-format
msgctxt "Windows Panel (HINT: for Frame Shape)"
msgid "Windows Panel"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:308
#, kde-kuit-format
msgctxt "Horiz. Line (HINT: for Frame Shape)"
msgid "Horiz. Line"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:309
#, kde-kuit-format
msgctxt "Vertical Line (HINT: for Frame Shape)"
msgid "Vertical Line"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:310
#, kde-kuit-format
msgctxt "Styled (HINT: for Frame Shape)"
msgid "Styled"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:311
#, kde-kuit-format
msgctxt "Popup (HINT: for Frame Shape)"
msgid "Popup"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:312
#, kde-kuit-format
msgctxt "Menu Bar (HINT: for Frame Shape)"
msgid "Menu Bar"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:313
#, kde-kuit-format
msgctxt "Toolbar (HINT: for Frame Shape)"
msgid "Toolbar"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:314
#, kde-kuit-format
msgctxt "Text Box (HINT: for Frame Shape)"
msgid "Text Box"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:315
#, kde-kuit-format
msgctxt "Tab Widget (HINT: for Frame Shape)"
msgid "Tab Widget"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:316
#, kde-kuit-format
msgctxt "Group Box (HINT: for Frame Shape)"
msgid "Group Box"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:318
#, kde-kuit-format
msgctxt "Plain (HINT: for Frame Shadow)"
msgid "Plain"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:319
#, kde-kuit-format
msgctxt "Raised (HINT: for Frame Shadow)"
msgid "Raised"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:320
#, kde-kuit-format
msgctxt "Sunken (HINT: for Frame Shadow)"
msgid "Sunken"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:321
#, kde-kuit-format
msgctxt "for Frame Shadow"
msgid "Internal"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:323
#, kde-kuit-format
msgctxt "No Focus (HINT: for Focus)"
msgid "No Focus"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:324
#, kde-kuit-format
msgctxt "Tab (HINT: for Focus)"
msgid "Tab"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:325
#, kde-kuit-format
msgctxt "Click (HINT: for Focus)"
msgid "Click"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:326
#, kde-kuit-format
msgctxt "Tab/Click (HINT: for Focus)"
msgid "Tab/Click"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:327
#, kde-kuit-format
msgctxt "Tab/Click/MouseWheel (HINT: for Focus)"
msgid "Tab/Click/Mouse Wheel"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:329
#, kde-kuit-format
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:330
#, kde-kuit-format
msgid "Always Off"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:331
#, kde-kuit-format
msgid "Always On"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:334
#, kde-kuit-format
msgid "Horizontal"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:335
#, kde-kuit-format
msgid "Vertical"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:338
#, kde-kuit-format
msgid "Left to Right"
msgstr ""
#. +> trunk5 stable5
#: formeditor/form_p.cpp:339
#, kde-kuit-format
msgid "Right to Left"
msgstr ""
#. +> trunk5 stable5
#: formeditor/formIO.cpp:124 formeditor/formIO.cpp:301
#, kde-kuit-format
msgid "Qt Designer UI Files"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:215
#, kde-kuit-format
msgid "No action"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:221
#, kde-kuit-format
msgid "Application actions"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:242
#: formeditor/kexiactionselectiondialog.cpp:244
#, kde-kuit-format
msgctxt "Current form's actions"
msgid "Current"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:285
#, kde-kuit-format
msgid "Open in Data View"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:290
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:132
#: widget/navigator/KexiProjectNavigator.cpp:201
#, kde-kuit-format
msgid "Execute"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:313
#, kde-kuit-format
msgctxt "Note: use multiple rows if needed"
msgid ""
"Export to File\n"
"As Data Table"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:319
#, kde-kuit-format
msgctxt "Note: use multiple rows if needed"
msgid ""
"Copy to Clipboard\n"
"As Data Table"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:324
#, kde-kuit-format
msgid "Create New Object (%1)"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:329
#, kde-kuit-format
msgid "Open in Design View"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:334
#, kde-kuit-format
msgid "Open in Text View"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:339
#, kde-kuit-format
msgid "Close View"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:372
#, kde-kuit-format
msgid "&Select action to be executed after clicking <resource>%1</resource> button:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:376
#, kde-kuit-format
msgid "&Select macro to be executed after clicking <resource>%1</resource> button:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:379
#, kde-kuit-format
msgid "&Select script to be executed after clicking <resource>%1</resource> button:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:382
#, kde-kuit-format
msgid "&Select object to be opened after clicking <resource>%1</resource> button:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:436
#, kde-kuit-format
msgctxt "@title:window"
msgid "Assigning Action to Button"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:472
#, kde-kuit-format
msgid "Action category:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:522
#, kde-kuit-format
msgid "Action to execute:"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:533
#, kde-kuit-format
msgctxt "Assign action"
msgid "&Assign"
msgstr ""
#. +> trunk5 stable5
#: formeditor/kexiactionselectiondialog.cpp:535
#, kde-kuit-format
msgid "Assign action"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:73
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Rich Text"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:92
#, kde-kuit-format
msgid "Bold"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:94
#, kde-kuit-format
msgid "Italic"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:96
#, kde-kuit-format
msgid "Underline"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:100
#, kde-kuit-format
msgid "Superscript"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:102
#, kde-kuit-format
msgid "Subscript"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:107
#, kde-kuit-format
msgid "Left Align"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:110
#, kde-kuit-format
msgid "Centered"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:113
#, kde-kuit-format
msgid "Right Align"
msgstr ""
#. +> trunk5 stable5
#: formeditor/richtextdialog.cpp:116
#, kde-kuit-format
msgid "Justified"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:67
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Tab Order"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:90
#, kde-kuit-format
msgid "Move Up"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:91
#, kde-kuit-format
msgid "Move widget up"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:95
#, kde-kuit-format
msgid "Move Down"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:96
#, kde-kuit-format
msgid "Move widget down"
msgstr ""
#. +> trunk5 stable5
#: formeditor/tabstopdialog.cpp:101
#, kde-kuit-format
msgid "Handle tab order automatically"
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetfactory.cpp:157
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Contents of %1"
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:193
#, kde-format
msgid "Could not find any form widget plugins."
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:251
#, kde-kuit-format
msgctxt "@info"
msgid "Could not load Kexi Form Widgets plugin file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:261
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open Kexi Form Widgets plugin <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:739
#, kde-kuit-format
msgctxt "Insert Horizontal Widget"
msgid "Insert Horizontal"
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:745
#, kde-kuit-format
msgctxt "Insert Vertical Widget"
msgid "Insert Vertical"
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:749
#, kde-kuit-format
msgid "Insert Widget: %1"
msgstr ""
#. +> trunk5 stable5
#: formeditor/widgetlibrary.cpp:753
#, kde-kuit-format
msgid "Cancel"
msgstr ""
#. +> trunk5 stable5
#: formeditor/WidgetTreeWidget.cpp:125
#, kde-kuit-format
msgctxt "Tab widget's page"
msgid "Tab Page"
msgstr ""
#. +> trunk5 stable5
#: formeditor/WidgetTreeWidget.cpp:223
#, kde-kuit-format
msgctxt "Widget's type"
msgid "Type"
msgstr ""
#. +> trunk5 stable5
#: formeditor/WidgetTreeWidget.cpp:223
#, kde-kuit-format
msgid "Widget name"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/KexiAssistantPage.cpp:69
#, kde-kuit-format
msgctxt "Back button arrow: back button in assistant (wizard)"
msgid "‹ %L"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/KexiAssistantPage.cpp:74
#, kde-kuit-format
msgctxt "Button text: Next page in assistant (wizard)"
msgid "Next"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/KexiAssistantPage.cpp:76
#, kde-kuit-format
msgctxt "Next button arrow: next button in assistant (wizard)"
msgid "%L ›"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:305 main/startup/KexiOpenProjectAssistant.cpp:154
#, kde-format, kde-kuit-format
msgid "Open"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:358
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>The file <filename>%1</filename> already exists.</para>"
"<para>Do you want to overwrite it?</para>"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:749
#, kde-kuit-format
msgctxt "@info"
msgid "The file or directory <filename>%1</filename> does not exist."
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:755
#, kde-kuit-format
msgctxt "@info"
msgid "Invalid hyperlink <link>%1</link>."
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:764
#, kde-kuit-format
msgctxt "@info"
msgid "Executable <link>%1</link> not allowed."
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:770
#, kde-kuit-format
msgctxt "@info"
msgid "Remote hyperlink <link>%1</link> not allowed."
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:777
#, kde-kuit-format
msgctxt "@info"
msgid "Do you want to run this file?<warning>Running executables can be dangerous.</warning>"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:780
#, kde-kuit-format
msgctxt "@action:button Run script file"
msgid "Run"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:841
#, kde-kuit-format
msgctxt "'Dirty (modified) object' flag"
msgid "%1*"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:1129
#, kde-kuit-format
msgid "modified"
msgstr ""
#. +> trunk5 stable5
#: kexiutils/utils.cpp:1140
#, kde-kuit-format
msgctxt "Document/application separator in titlebar"
msgid " – "
msgstr ""
#. +> trunk5 stable5
#: main/KexiBugReportDialog.cpp:51
#, kde-kuit-format
msgctxt "@title:window"
msgid "Report a Bug or Wish"
msgstr ""
#. +> trunk5 stable5
#: main/KexiBugReportDialog.cpp:73
#, kde-kuit-format
msgid "Operating system & platform:"
msgstr ""
#. +> trunk5 stable5
#: main/KexiBugReportDialog.cpp:80
#, kde-kuit-format
msgctxt "Other operating system"
msgid "Other"
msgstr ""
#. +> trunk5 stable5
#: main/KexiBugReportDialog.cpp:83
#, kde-kuit-format
msgctxt "Other platform"
msgid "Other"
msgstr ""
#. +> trunk5 stable5
#: main/KexiBugReportDialog.cpp:85
#, kde-kuit-format
msgctxt "<operating system>, <platform>"
msgid "%1, %2"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:189
#, kde-kuit-format
msgid "(All fields)"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:190
#, kde-kuit-format
msgid "(Current field)"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:242
#, kde-kuit-format
msgctxt "@title:window"
msgid "Replace"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:244
#, kde-kuit-format
msgctxt "@title:window"
msgid "Replace in <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:247
#, kde-kuit-format
msgctxt "@title:window"
msgid "Find"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:249
#, kde-kuit-format
msgctxt "@title:window"
msgid "Find in <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: main/kexifinddialog.cpp:272
#, kde-kuit-format
msgid "The search item was not found"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:20
#, kde-format
msgctxt "Look in field:"
msgid "&Look in:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2_2)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:36
#, kde-format
msgid "&Search:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_wholeWords)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:55
#, kde-format
msgctxt "Match: Whole words only"
msgid "&Whole words only"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:62
#, kde-format
msgid "Fi&nd:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_replaceLbl)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:110
#, kde-format
msgctxt "Replace all occurrences with"
msgid "Re&place with:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_promptOnReplace)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:129
#, kde-format
msgid "Prompt on replace"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2_3)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:152
#, kde-format
msgid "&Match:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_caseSensitive)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:171
#, kde-format
msgctxt "Match: Case sensitive"
msgid "C&ase sensitive"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_match)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:182
#, kde-format
msgctxt "Match: Any Part of Field"
msgid "Any Part of Field"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_match)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:187
#, kde-format
msgctxt "Match: Whole Field"
msgid "Whole Field"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_match)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:192
#, kde-format
msgctxt "Match: Start of Field"
msgid "Start of Field"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_search)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:204
#, kde-format
msgctxt "Search Up"
msgid "Up"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_search)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:209
#, kde-format
msgctxt "Search Down"
msgid "Down"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_search)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:214
#, kde-format
msgctxt "Look In All Rows"
msgid "All Rows"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_btnReplace)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:264 widget/KexiNameDialog.cpp:182
#, kde-format, kde-kuit-format
msgid "&Replace"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_btnReplaceAll)
#. +> trunk5 stable5
#: main/kexifinddialog.ui:277
#, kde-format
msgctxt "Replace All Occurrences"
msgid "Replace All"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:192
#, kde-kuit-format
msgid "&Close Tab"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:193
#, kde-kuit-format
msgid "Close the current tab"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:194
#, kde-kuit-format
msgid "Closes the current tab."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:195
#, kde-kuit-format
msgid "Cl&ose All Tabs"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:196
#, kde-kuit-format
msgid "Close all tabs"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:197
#, kde-kuit-format
msgid "Closes all tabs."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:538
#, kde-kuit-format
msgctxt "Action name with three dots..."
msgid "%1..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:570
#, kde-kuit-format
msgid "Create a new project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:572
#, kde-kuit-format
msgid "Creates a new project. Currently opened project is not affected."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:578
#, kde-kuit-format
msgid "Open an existing project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:580
#, kde-kuit-format
msgid "Opens an existing project. Currently opened project is not affected."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:587
#, kde-kuit-format
msgid "Welcome"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:591
#, kde-kuit-format
msgid "Show Welcome page"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:593
#, kde-kuit-format
msgid "Shows Welcome page with list of recently opened projects and other information. "
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:598
#, kde-kuit-format
msgid "Save object changes"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:599
#, kde-kuit-format
msgid "Saves object changes from currently selected window."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:603
#, kde-kuit-format
msgid "Save &As..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:604
#, kde-kuit-format
msgid "Save object as"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:606
#, kde-kuit-format
msgid "Saves object from currently selected window under a new name (within the same project)."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:622
#, kde-kuit-format
msgid "&Import, Export or Send..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:623
#, kde-kuit-format
msgid "Import, export or send project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:625
#, kde-kuit-format
msgid "Imports, exports or sends project."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:631
#, kde-kuit-format
msgctxt "Close Project"
msgid "&Close"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:632
#, kde-kuit-format
msgid "Close the current project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:633
#, kde-kuit-format
msgid "Closes the current project."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:640
#, kde-kuit-format
msgid "Quits Kexi application."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:655
#, kde-kuit-format
msgid "&Import Database..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:656
#, kde-kuit-format
msgid "Import entire database as a Kexi project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:658
#, kde-kuit-format
msgid "Imports entire database as a Kexi project."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:663
#, kde-kuit-format
msgid "Import Tables..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:664
#, kde-kuit-format
msgid "Import data from an external source into this project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:665
#, kde-kuit-format
msgid "Imports data from an external source into this project."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:671
#, kde-kuit-format
msgid "&Compact Database..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:672
#, kde-kuit-format
msgid "Compact the current database project"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:674
#, kde-kuit-format
msgid "Compacts the current database project, so it will take less space and work faster."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:684
#, kde-kuit-format
msgctxt "Import->Table Data From File..."
msgid "Import Data From &File..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:685
#, kde-kuit-format
msgid "Import table data from a file"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:686
#, kde-kuit-format
msgid "Imports table data from a file."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:694
#, kde-kuit-format
msgctxt "Export->Table or Query Data to File..."
msgid "Export Data to &File..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:696
#, kde-kuit-format
msgid "Export data from the active table or query to a file"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:698
#, kde-kuit-format
msgid "Exports data from the active table or query to a file."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:741
#, kde-kuit-format
msgctxt "Paste Special->As Data &Table..."
msgid "Paste Special..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:743
#, kde-kuit-format
msgid "Paste clipboard data as a table"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:745
#, kde-kuit-format
msgid "Pastes clipboard data as a table."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:752
#, kde-kuit-format
msgctxt "Copy Special->Table or Query Data..."
msgid "Copy Special..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:754
#, kde-kuit-format
msgid "Copy selected table or query data to clipboard"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:756
#, kde-kuit-format
msgid "Copies selected table or query data to clipboard."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:761
#, kde-kuit-format
msgid "Reverts the most recent editing action."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:763
#, kde-kuit-format
msgid "Reverts the most recent undo action."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:768
#, kde-kuit-format
msgid "Find text"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:769
#, kde-kuit-format
msgid "Looks up the first occurrence of a piece of text."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:785
#, kde-kuit-format
msgid "&Delete"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:787
#, kde-kuit-format
msgid "Delete selected object"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:788
#, kde-kuit-format
msgid "Deletes currently selected object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:790
#, kde-kuit-format
msgid "Delete Record"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:792
#, kde-kuit-format
msgid "Delete the current record"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:793
#, kde-kuit-format
msgid "Deletes the current record."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:795
#, kde-kuit-format
msgid "Clear Table Contents..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:797
#, kde-kuit-format
msgid "Clear table contents"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:798
#, kde-kuit-format
msgid "Clears table contents."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:801
#, kde-kuit-format
msgid "Edit Item"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:804
#, kde-kuit-format
msgid "Edit currently selected item"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:805
#, kde-kuit-format
msgid "Edits currently selected item."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:807
#, kde-kuit-format
msgid "&Insert Empty Row"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:811
#, kde-kuit-format
msgid "Insert one empty row above"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:813
#, kde-kuit-format
msgid "Inserts one empty row above currently selected table row."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:870
#, kde-kuit-format
msgid "Show Project Navigator"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:872
#, kde-kuit-format
msgid "Show the Project Navigator pane"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:873
#, kde-kuit-format
msgid "Shows the Project Navigator pane."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:883
#, kde-kuit-format
msgid "Activate Project Navigator"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:885
#, kde-kuit-format
msgid "Activate the Project Navigator pane"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:886
#, kde-kuit-format
msgid "Activates the Project Navigator pane. If it is hidden, shows it first."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:894
#, kde-kuit-format
msgid "Activate main area"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:898
#, kde-kuit-format
msgid "Activate the main area"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:899
#, kde-kuit-format
msgid "Activates the main area."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:906
#, kde-kuit-format
msgid "Show Property Editor"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:907
#, kde-kuit-format
msgid "Show the Property Editor pane"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:908
#, kde-kuit-format
msgid "Shows the Property Editor pane."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:917
#, kde-kuit-format
msgid "Activate Property Editor"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:918
#, kde-kuit-format
msgid "Activate the Property Editor pane"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:919
#, kde-kuit-format
msgid "Activates the Property Editor pane. If it is hidden, shows it first."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:927
#, kde-kuit-format
msgid "Switch to Global Search"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:928
#, kde-kuit-format
msgid "Switch to Global Search box"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:929
#, kde-kuit-format
msgid "Switches to Global Search box."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:933
#, kde-kuit-format
msgid "&Save Record"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:935
#, kde-kuit-format
msgid "Save changes made to the current record"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:936
#, kde-kuit-format
msgid "Saves changes made to the current record."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:939
#, kde-kuit-format
msgid "&Cancel Record Changes"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:942
#, kde-kuit-format
msgid "Cancel changes made to the current record"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:944
#, kde-kuit-format
msgid "Cancels changes made to the current record."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:948
#, kde-kuit-format
msgid "&Execute"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:967
#, kde-kuit-format
msgid "&Font..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:969
#, kde-kuit-format
msgid "Change font for selected object"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:970
#, kde-kuit-format
msgid "Changes font for selected object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:977
#, kde-kuit-format
msgid "&Next Window"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:984
#, kde-kuit-format
msgid "Next window"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:985
#, kde-kuit-format
msgid "Switches to the next window."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:990
#, kde-kuit-format
msgid "&Previous Window"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:997
#, kde-kuit-format
msgid "Previous window"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:998
#, kde-kuit-format
msgid "Switches to the previous window."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1051
#, kde-kuit-format
msgid "This shows useful tips on the use of this application."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1055
#, kde-kuit-format
msgctxt "Help Menu"
msgid "Help"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1056
#, kde-kuit-format
msgid "Show Help menu"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1057
#, kde-kuit-format
msgid "Shows Help menu."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1377
#, kde-kuit-format
msgid ""
"<br/>"
"(reason: <i>%1</i>)"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1403
#, kde-kuit-format
msgctxt "@info (don't add tags around %1, it's done already)"
msgid ""
"Database project %1 does not appear to have been created using Kexi.<nl/>"
"Do you want to import it as a new Kexi project?"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1406
#, kde-kuit-format
msgctxt "@action:button Import Database"
msgid "&Import..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1472
#, kde-kuit-format
msgctxt "@window:title"
msgid "Select New Project's Location"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1551
#, kde-kuit-format
msgid "cannot create object - unknown object type \"%1\""
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1554
#, kde-kuit-format
msgid "unknown object type \"%1\""
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1564
#, kde-kuit-format
msgid "cannot create object of type \"%1\""
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1576
#, kde-kuit-format
msgctxt "\"executing object\" action"
msgid "executing"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1584
#, kde-kuit-format
msgid "opening"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1589
#, kde-kuit-format
msgid "table not found"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1591
#, kde-kuit-format
msgid "query not found"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1593
#, kde-kuit-format
msgid "macro not found"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1595
#, kde-kuit-format
msgid "script not found"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1597
#, kde-kuit-format
msgid "object not found"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1607
#, kde-kuit-format
msgid "cannot execute object"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1648
#, kde-kuit-format
msgid "cannot open object"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1662
#, kde-kuit-format
msgid "You have requested selected objects to be automatically opened or processed on startup. Several objects cannot be opened or processed."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:1997
#, kde-kuit-format
msgid "Property Editor"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2023 widget/utils/kexicontextmenuutils.cpp:85
#, kde-kuit-format
msgid "Properties"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2063
#, kde-kuit-format
msgctxt "<project-name> (read only)"
msgid "%1 (read only)"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2649
#, kde-kuit-format
msgid "From File..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2654
#, kde-kuit-format
msgid "From Server..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2715
#, kde-kuit-format
msgctxt "@info"
msgid "Selected view is not supported for <resource>%1</resource> object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2718
#, kde-kuit-format
msgctxt "@info"
msgid "Selected view (%1) is not supported by this object type (%2)."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2790
#, kde-kuit-format
msgctxt "Could not save object under the original name."
msgid "Could not save under the original name."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2811
#, kde-kuit-format
msgctxt "@action:button Save object"
msgid "Save"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2817
#, kde-kuit-format
msgctxt "@title:window"
msgid "Save Object As"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2867
#, kde-kuit-format
msgctxt "@info Saving object failed"
msgid "Saving <resource>%1</resource> object failed."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2985
#, kde-kuit-format
msgid "Save changes"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2987
#, kde-kuit-format
msgctxt "@info"
msgid "Saves all recent changes made in <resource>%1</resource> object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:2991
#, kde-kuit-format
msgctxt "@info"
msgid "Discards all recent changes made in <resource>%1</resource> object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3013
#, kde-kuit-format
msgid "Do you want to save changes?"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3206
#, kde-kuit-format
msgctxt "opening is not allowed in \"data view/design view/text view\" mode"
msgid "opening is not allowed in \"%1\" mode"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3261
#, kde-kuit-format
msgctxt "@info"
msgid "Tab for <resource>%1</resource> (%2)."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3266
#, kde-kuit-format
msgctxt "@info"
msgid "Tab for <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3438
#, kde-kuit-format
msgctxt "@info Delete <objecttype> <objectname>?"
msgid ""
"<para>Do you want to permanently delete the following object?<nl/>"
"<nl/>"
"%1 <resource>%2</resource></para>"
"<para><note>If you click <interface>Delete</interface>, you will not be able to undo the deletion.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3444
#, kde-kuit-format
msgctxt "@title:window Delete Object %1."
msgid "Delete <resource>%1</resource>?"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3497
#, kde-kuit-format
msgid "Could not delete object."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3520
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Before renaming object <resource>%1</resource> it should be closed.</para>"
"<para>Do you want to close it?</para>"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3524
#, kde-kuit-format
msgid "Close Window and Rename"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3541
#, kde-kuit-format
msgctxt "@info"
msgid "Renaming object <resource>%1</resource> failed."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3562
#, kde-kuit-format
msgctxt "@info"
msgid "Setting caption for object <resource>%1</resource> failed."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3734
#, kde-kuit-format
msgid "Compacting database file <filename>%1</filename> is not supported."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3747
#, kde-kuit-format
msgctxt "@action:button Compact database"
msgid "Compact"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3749
#, kde-kuit-format
msgid ""
"The current project has to be closed before compacting the database. It will be open again after compacting.\n"
"\n"
"Do you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3884
#, kde-kuit-format
msgctxt "@info"
msgid "Design of query <resource>%1</resource> that you want to export data from is changed and has not yet been saved. Do you want to use data from the changed query for exporting or from its original (saved) version?"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3889
#, kde-kuit-format
msgctxt "@action:button Export query data"
msgid "Use the Changed Query"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow.cpp:3890
#, kde-kuit-format
msgctxt "@action:button Export query data"
msgid "Use the Original Query"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:635
#, kde-kuit-format
msgid "Task-oriented toolbar. Groups commands using tabs."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:664
#, kde-kuit-format
msgctxt "Report a bug or wish for Kexi application"
msgid "Report a &Bug or Wish..."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:666
#, kde-kuit-format
msgid "Files a bug or wish for Kexi application."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:669
#, kde-kuit-format
msgid "Activates a \"What's This?\" tool."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:672 migration/importwizard.cpp:1106
#: migration/importwizard.cpp:1109 migration/importwizard.cpp:1111
#: migration/importwizard.cpp:1113 migration/importwizard.cpp:1115
#: migration/importwizard.cpp:1117
#, kde-kuit-format
msgid "Help"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:673
#, kde-kuit-format
msgid "Shows Kexi Handbook."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:676
#, kde-kuit-format
msgid "Shows information about Kexi application."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:679
#, kde-kuit-format
msgid "Shows information about KDE."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:723 main/startup/KexiNewProjectAssistant.cpp:378
#, kde-kuit-format
msgid "Create"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:734
#, kde-kuit-format
msgid "External Data"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:740
#, kde-kuit-format
msgid "Tools"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:744
#, kde-kuit-format
msgid "Form Design"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:747
#, kde-kuit-format
msgid "Report Design"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:1352
#, kde-kuit-format
msgctxt "@info"
msgid "Could not start <application>%1</application> application."
msgstr ""
#. +> trunk5 stable5
#: main/KexiMainWindow_p.cpp:1355
#, kde-kuit-format
msgctxt "@info"
msgid "Command <command>%1</command> failed."
msgstr ""
#. +> trunk5
#: main/KexiMenuWidget.cpp:476
#, kde-kuit-format
msgid "Join us on:"
msgstr ""
#. +> trunk5
#: main/KexiMenuWidget.cpp:486
#, kde-kuit-format
msgid "Visit KEXI Facebook page at %1"
msgstr ""
#. +> trunk5
#: main/KexiMenuWidget.cpp:495
#, kde-kuit-format
msgid "Visit KEXI Twitter page at %1"
msgstr ""
#. +> trunk5 stable5
#: main/KexiMenuWidget.cpp:2219
#, kde-kuit-format
msgid "Visit Calligra home page at %1"
msgstr ""
#. +> trunk5 stable5
#: main/KexiRegisterResource_p.h:145
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not open icon resource file <filename>%1</filename>.</para>"
"<para><application>Kexi</application> will not start. Please check if <application>Kexi</application> is properly installed.</para>"
msgstr ""
#. +> trunk5 stable5
#: main/KexiRegisterResource_p.h:150
#, kde-kuit-format
msgctxt "@info Tried to find files in <dir list>"
msgid "Tried to find in %1."
msgstr ""
#. +> trunk5 stable5
#: main/KexiSearchLineEdit.cpp:402
#, kde-kuit-format
msgid "Search"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiAssistantMessageHandler.cpp:73
#, kde-kuit-format
msgid "Try Again"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:74
#, kde-kuit-format
msgctxt "@title:window"
msgid "New Project"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:75
#, kde-kuit-format
msgctxt "@info"
msgid "Kexi will create a new database project. Select blank database."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:93
#, kde-kuit-format
msgid "Blank Projects"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:97
#, kde-kuit-format
msgid "Blank database"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:98
#, kde-kuit-format
msgid "Database project without any objects"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:110
#, kde-kuit-format
msgid "Contacts"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:117
#, kde-kuit-format
msgid "Movie catalog"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:146
#, kde-kuit-format
msgid "Templates"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:152
#, kde-kuit-format
msgctxt "@title:window"
msgid "Storage Method"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:153
#, kde-kuit-format
msgctxt "@info"
msgid "Select a storage method which will be used to store the new project."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:186
#, kde-kuit-format
msgid "New database"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:190
#, kde-kuit-format
msgctxt "@title:window"
msgid "Project Caption & Filename"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:191
#, kde-kuit-format
msgctxt "@info"
msgid "Enter caption for the new project. Filename will be created automatically based on the caption. You can change the filename too."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:249
#: main/startup/KexiNewProjectAssistant.cpp:474
#, kde-kuit-format
msgid "Enter project caption."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:258
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para><filename>%1</filename> is a relative path.</para>"
"<para><note>Enter absolute path of a file to be created.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:266
#, kde-kuit-format
msgid "Enter a valid project filename. The file should be located on this computer."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:272
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para><filename>%1</filename> is a directory name.</para>"
"<para><note>Enter name of a file to be created.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:284
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not create database file <filename>%1</filename>.</para>"
"<para><note>There is no permission to create this file. Pick another directory or change permissions so the file can be created.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:297
#, kde-kuit-format
msgctxt "@title:window"
msgid "Creating Project"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:298
#, kde-kuit-format
msgctxt "@info"
msgid "Please wait while the project is created."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:320
#, kde-kuit-format
msgctxt "@title:window"
msgid "Database Connection"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:322
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Select database server's connection you wish to use to create a new Kexi project.</para>"
"<para>Here you may also add, edit or delete connections from the list.</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:365
#, kde-kuit-format
msgctxt "@title:window"
msgid "Project Caption & Database Name"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:366
#, kde-kuit-format
msgctxt "@info"
msgid "Enter caption for the new project. Database name will be created automatically based on the caption. You can change the database name too."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:435
#, kde-kuit-format
msgctxt "@info"
msgid "Existing project databases on <resource>%1 (%2)</resource> database server:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:482
#, kde-kuit-format
msgid "Enter database name."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:493
#, kde-kuit-format
msgid "Database with this name already exists. Do you want to delete it and create a new one?"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiNewProjectAssistant.cpp:496
#, kde-kuit-format
msgid "Delete and Create New"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbl)
#. +> trunk5 stable5
#: main/startup/KexiOpenExistingFile.ui:31
#, kde-format
msgid "<b>Select existing Kexi project file to open:</b>\n"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btn_advanced)
#. +> trunk5 stable5
#: main/startup/KexiOpenExistingFile.ui:89
#, kde-format
msgid "&Advanced "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: main/startup/KexiOpenExistingFile.ui:104
#, kde-format
msgid "Click \"Advanced\" button if you want to find an existing project on a server rather than a file."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:41
#: widget/KexiProjectSelectorWidget.cpp:304
#, kde-kuit-format
msgctxt "@title:window"
msgid "Open Project"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:42
#, kde-kuit-format
msgctxt "@info"
msgid "Select project to open. You can choose project stored in file or on database server."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:57
#, kde-kuit-format
msgctxt "@title:tab"
msgid "Projects Stored in File"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:71
#, kde-kuit-format
msgctxt "@title:tab"
msgid "Projects Stored on Database Server"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:107
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Select database server's connection with project you wish to open.</para>"
"<para>Here you may also add, edit or delete connections from the list.</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:148
#, kde-kuit-format
msgctxt "@title:window"
msgid "Open Project on Database Server"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiOpenProjectAssistant.cpp:190
#, kde-kuit-format
msgctxt "@info"
msgid "Select project on database server <resource>%1 (%2)</resource> to open."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiPasswordPage.cpp:44
#, kde-kuit-format
msgctxt "@title:window"
msgid "Database Password"
msgstr ""
#. i18n: ectx: property (text), widget (KexiCommandLinkButton, btn_file)
#. +> trunk5 stable5
#: main/startup/KexiProjectStorageTypeSelectionPage.ui:22
#, kde-format
msgctxt "New Project Stored in File"
msgid "File"
msgstr ""
#. i18n: ectx: property (description), widget (KexiCommandLinkButton, btn_file)
#. +> trunk5 stable5
#: main/startup/KexiProjectStorageTypeSelectionPage.ui:25
#, kde-format
msgid "New Project Stored in File"
msgstr ""
#. i18n: ectx: property (text), widget (KexiCommandLinkButton, btn_server)
#. +> trunk5 stable5
#: main/startup/KexiProjectStorageTypeSelectionPage.ui:35
#, kde-format
msgctxt "New Project Stored on Database Server"
msgid "Server"
msgstr ""
#. i18n: ectx: property (description), widget (KexiCommandLinkButton, btn_server)
#. +> trunk5 stable5
#: main/startup/KexiProjectStorageTypeSelectionPage.ui:38
#, kde-format
msgid "New Project Stored on Database Server"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:72
#, kde-kuit-format
msgid "Opened less than minute ago"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:74
#, kde-kuit-format
msgid "Opened 1 minute ago"
msgid_plural "Opened %1 minutes ago"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:76
#, kde-kuit-format
msgid "Opened 1 hour ago"
msgid_plural "Opened %1 hours ago"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:79
#, kde-kuit-format
msgid "Opened yesterday"
msgid_plural "Opened %1 days ago"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:82
#, kde-kuit-format
msgid "Opened over a month ago"
msgid_plural "Opened %1 months ago"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:84
#, kde-kuit-format
msgid "Opened one year ago"
msgid_plural "Opened %1 years ago"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:116
#, kde-kuit-format
msgid "on local server"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:119
#, kde-kuit-format
msgctxt "@info"
msgid "on <resource>%1</resource> server"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:127
#, kde-kuit-format
msgctxt "@info File database <file>"
msgid "File database <filename>%1</filename>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:134
#, kde-kuit-format
msgid "database"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiRecentProjectsModel.cpp:136
#, kde-kuit-format
msgctxt "<type> database, e.g. PostgreSQL database, MySQL database"
msgid "%1 database"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: main/startup/KexiServerDBNamePage.ui:22
#, kde-format
msgid "Project caption:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: main/startup/KexiServerDBNamePage.ui:51
#, kde-format
msgid "Project's database name:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:250
#, kde-format
msgctxt "Plugin name"
msgid "Name:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:251
#, kde-format
msgctxt "Plugin description"
msgid "Description:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:252
#, kde-format
msgctxt "Plugin version"
msgid "Version:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:253
#, kde-format
msgctxt "Plugin fileName"
msgid "File:"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:261
#, kde-format
msgid "No Kexi plugins found."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:264
#, kde-format
msgid "Kexi plugins (%1):"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:273
#, kde-format
msgid "No KDb database driver plugins found."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:276
#, kde-format
msgid "KDb database driver plugins (%1):"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:328
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not read connection information from connection shortcut file <filename>%1</filename>.</para>"
"<para><note>Check whether the file has valid contents.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:353
#, kde-kuit-format
msgctxt "Please don't translate the \"type\" word, it's constant."
msgid "<icode>%1</icode> is not valid value for <icode>--type</icode> command-line option. Possible value can be <icode>%2</icode>, <icode>%3</icode> or <icode>%4</icode>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:398
#, kde-kuit-format
msgid "Invalid port number <icode>%1</icode> specified."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:403
#, kde-kuit-format
msgid "Could not open database. No database driver specified."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:416
#, kde-kuit-format
msgid "Could not start Kexi application this way."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:421
#, kde-kuit-format
msgctxt "Please don't translate the \"createdb\" and \"dropdb\" words, these are constants."
msgid "Both <icode>createdb</icode> and <icode>dropdb</icode> used in startup options."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:427
#, kde-kuit-format
msgid "No project name specified."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:466
#, kde-kuit-format
msgctxt "Please don't translate the <icode>user-mode</icode> and <icode>design-mode</icode> words, these are constants."
msgid "Both <icode>user-mode</icode> and <icode>design-mode</icode> used in startup options."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:489
#, kde-kuit-format
msgctxt "@info"
msgid "Could not delete project. The file <filename>%1</filename> does not exist."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:540
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open shortcut file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:572
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open connection data file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:663
#, kde-kuit-format
msgid ""
"You have specified a few database objects to be opened automatically, using startup options.\n"
"These options will be ignored because they are not available while creating or dropping projects."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:680
#, kde-kuit-format
msgctxt "@info"
msgid "Project <resource>%1</resource> created successfully."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:689
#, kde-kuit-format
msgctxt "@info"
msgid "Project <resource>%1</resource> dropped successfully."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:811
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open file. Missing filename."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:818
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open file. The file <filename>%1</filename> does not exist."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:828
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not open file <filename>%1</filename> for reading.</para>"
"<para><note>Check the file's permissions and whether it is already opened and locked by another application.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:871
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not open project.</para>"
"<para>The file <filename>%1</filename> is not readable. Check the file's permissions and whether it is already opened and locked by another application.</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:895
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para><filename>%1</filename> is an external file of type <resource>%2</resource>.</para>"
"<para>Do you want to import the file as a Kexi project?</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:898
#, kde-kuit-format
msgid "Open External File"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:899
#, kde-kuit-format
msgctxt "@action:button Import File"
msgid "Import..."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:931
#, kde-kuit-format
msgctxt "@info"
msgid ""
"The project file <filename>%1</filename> is recognized as compatible with <resource>%2</resource> database driver, while you have asked for <resource>%3</resource> database driver to be used.\n"
"Do you want to use <resource>%4</resource> database driver?"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:952
#, kde-kuit-format
msgid "Possible problems: %1"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:958
#, kde-kuit-format
msgctxt "@info"
msgid "The file <filename>%1</filename> is not recognized as being supported by Kexi."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:962
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not find plugin supporting for this file type.</para>"
"<para>Detected MIME type is <resource>%1</resource>%2.</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:966
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Could not find plugin supporting for this file type.</para>"
"<para>Detected MIME type is <resource>%1</resource>%2.</para>"
"<para>%3</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:998
#, kde-kuit-format
msgid "Could not load list of available projects for <resource>%1</resource> database server."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiStartup.cpp:1039
#, kde-kuit-format
msgid "Failed saving connection data to <filename>%1</filename> file."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeAssistant.cpp:47
#, kde-kuit-format
msgctxt "@title:window"
msgid "Welcome to Kexi"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeAssistant.cpp:48
#, kde-kuit-format
msgctxt "@info"
msgid "Select one of the recently used projects to open."
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:904
#, kde-kuit-format
msgid "Share"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:936
#, kde-kuit-format
msgctxt "@info donate to the project"
msgid ""
"<title>Kexi may be totally free, but its development is costly.</title>"
"<para>Power, hardware, office space, internet access, traveling for meetings - everything costs.</para>"
"<para>Direct donation is the easiest and fastest way to efficiently support the Kexi Project. Everyone, regardless of any degree of involvement can do so.</para>"
"<para>What do you receive for your donation? Kexi will become more feature-full and stable as contributors will be able to devote more time to Kexi. Not only you can expect new features, but you can also have an influence on what features are added!</para>"
"<para>Currently we are accepting donations through <emphasis>BountySource</emphasis> (a funding platform for open-source software) using secure PayPal, Bitcoin and Google Wallet transfers.</para>"
"<para>Contact us at <link url='https://community.kde.org/Kexi/Contact'>https://community.kde.org/Kexi/Contact</link> for more information.</para>"
"<para>Thanks for your support!</para>"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:948
#, kde-kuit-format
msgid "Donate to the Project"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:949
#, kde-kuit-format
msgctxt "@action:button Go to Donation"
msgid "Proceed to the Donation Web Page"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:950
#, kde-kuit-format
msgctxt "Do not donate now"
msgid "Not Now"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:1131
#, kde-kuit-format
msgctxt "Donation today"
msgid "today"
msgstr ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:1134
#, kde-kuit-format
msgctxt "Recent donation date (xx days)"
msgid "%1 (1 day)"
msgid_plural "%1 (%2 days)"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: main/startup/KexiWelcomeStatusBar.cpp:1146
#, kde-kuit-format
msgctxt "donations count"
msgid "%1 (thanks!)"
msgstr ""
#. +> trunk5 stable5
#: migration/AlterSchemaWidget.cpp:51 migration/AlterSchemaWidget.cpp:112
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1344
#, kde-kuit-format
msgid "Column %1"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: migration/AlterSchemaWidget.cpp:52
#: plugins/tables/kexitabledesignerview.cpp:326
#: widget/KexiConnectionSelector.ui:99 widget/KexiProjectSelector.ui:96
#, kde-format, kde-kuit-format
msgid "Type"
msgstr ""
#. +> trunk5 stable5
#: migration/AlterSchemaWidget.cpp:53
#: plugins/tables/kexitabledesignerview.cpp:173
#: plugins/tables/kexitabledesignerview.cpp:398
#, kde-kuit-format
msgid "Primary Key"
msgstr ""
#. +> trunk5 stable5
#: migration/importoptionsdlg.cpp:46
#, kde-kuit-format
msgctxt "@title:window"
msgid "Advanced Import Options"
msgstr ""
#. +> trunk5 stable5
#: migration/importoptionsdlg.cpp:60
#, kde-kuit-format
msgid ""
"<title>Text encoding for Microsoft Access database</title>"
"\n"
"<para>Database file <filename>%1</filename> appears to be created by a version of Microsoft Access older than 2000.</para>"
"<para>In order to properly import national characters, you may need to choose a proper text encoding if the database was created on a computer with a different character set.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importoptionsdlg.cpp:71
#: plugins/importexport/csv/kexicsvexportwizard.cpp:207
#, kde-kuit-format
msgid "Text encoding:"
msgstr ""
#. +> trunk5 stable5
#: migration/importoptionsdlg.cpp:76
#, kde-kuit-format
msgid "Always use this encoding in similar situations"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:119
#, kde-kuit-format
msgctxt "@info"
msgid "<resource>%1</resource> name is already used by an existing table. Enter different table name to continue."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:122
#, kde-kuit-format
msgid "Name Already Used"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:162
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Table Importing Assistant allows you to import a table from an existing database into the current Kexi project.</para>"
"<para>Click <interface>Next</interface> button to continue or <interface>Cancel</interface> button to exit this assistant.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:169
#, kde-kuit-format
msgid "Welcome to the Table Importing Assistant"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:194 migration/importwizard.cpp:301
#, kde-kuit-format
msgid "Select Location for Source Database"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:204 migration/importwizard.cpp:312
#, kde-kuit-format
msgid "Select Source Database"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:221
#, kde-kuit-format
msgid "Select the Table to Import"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:249 migration/importwizard.cpp:470
#, kde-kuit-format
msgid "Advanced Options"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:256 migration/importwizard.cpp:482
#, kde-kuit-format
msgid "Importing"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:272
#, kde-kuit-format
msgid "Alter the Detected Table Design"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:298
#, kde-kuit-format
msgid "Processing Import"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:313
#, kde-kuit-format
msgid "Open imported table"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:320 migration/importtablewizard.cpp:562
#: migration/importwizard.cpp:507 migration/importwizard.cpp:905
#, kde-kuit-format
msgid "Success"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:374 migration/importwizard.cpp:568
#, kde-kuit-format
msgid "Select source database you wish to import:"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:454 migration/importtablewizard.cpp:468
#, kde-kuit-format
msgctxt "@info"
msgid "Could not import table <resource>%1</resource>. Select different table or cancel importing."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:486
#, kde-kuit-format
msgctxt "@info"
msgid "No data has been found in table <resource>%1</resource>. Select different table or cancel importing."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:510
#, kde-kuit-format
msgctxt "@info Table import wizard, final message"
msgid ""
"<para>All required information has now been gathered. Click <interface>Next</interface> button to start importing table <resource>%1</resource>.</para>"
"<para><note>Depending on size of the table this may take some time.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:541
#, kde-kuit-format
msgctxt "@info"
msgid "Please wait while the table is imported."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:564
#, kde-kuit-format
msgctxt "@info"
msgid "Table <resource>%1</resource> has been imported."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:567 migration/importwizard.cpp:919
#, kde-kuit-format
msgid "Failure"
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:568
#, kde-kuit-format
msgid "An error occurred."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:589 migration/importwizard.cpp:782
#, kde-kuit-format
msgid "No appropriate migration driver found."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:685
#: plugins/importexport/csv/kexicsvimportdialog.cpp:422
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1823
#, kde-kuit-format
msgid "No project available."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:697
#, kde-kuit-format
msgid "No table was selected to import."
msgstr ""
#. +> trunk5 stable5
#: migration/importtablewizard.cpp:714
#, kde-kuit-format
msgctxt "@info"
msgid "Unable to create table <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:141
#, kde-kuit-format
msgctxt "@title:window"
msgid "Import Database"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:242
#, kde-kuit-format
msgctxt "@info"
msgid "Database Importing Assistant is about to import <resource>%1</resource> database (connection <resource>%2</resource>) into a Kexi project."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:254
#, kde-kuit-format
msgctxt "@info"
msgid "Database Importing Assistant is about to import <filename>%1</filename> file of type <resource>%2</resource> into a Kexi project."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:260
#, kde-kuit-format
msgctxt "@info"
msgid "Database Importing Assistant allows you to import an existing database into a Kexi project."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:265
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>%1</para>"
"<para>Click <interface>Next</interface> button to continue or <interface>Cancel</interface> button to exit this assistant.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:272
#, kde-kuit-format
msgid "Welcome to the Database Importing Assistant"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:327
#, kde-kuit-format
msgid "Destination database type:"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:334
#, kde-kuit-format
msgid "Database project stored in a file"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:335
#, kde-kuit-format
msgid "Database project stored on a server"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:339
#, kde-kuit-format
msgid "Select Destination Database Type"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:347
#, kde-kuit-format
msgid "Destination project's caption:"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:359
#, kde-kuit-format
msgid "Destination project's name:"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:368
#, kde-kuit-format
msgid "Enter Destination Database Project's Caption"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:404
#, kde-kuit-format
msgid "Select Location for Destination Database Project"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:422
#, kde-kuit-format
msgctxt "Scope of import"
msgid "Structure and data"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:427
#, kde-kuit-format
msgctxt "Scope of import"
msgid "Structure only"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:433
#, kde-kuit-format
msgid "Select Scope of Import"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:500
#, kde-kuit-format
msgid "Open imported project"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:518
#, kde-kuit-format
msgctxt "@info"
msgid "<para>No new database name was entered.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:525
#, kde-kuit-format
msgctxt "@info"
msgid ""
"%1"
"<para>Source database is the same as destination.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:532
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Following issues were found with the data you entered:</para>"
"%1"
"<para>Please click <interface>Back</interface> button and correct these issues.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:628
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>All required information has now been gathered. Click <interface>Next</interface> button to start importing.</para>"
"<para><note>Depending on size of the database this may take some time.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:876
#, kde-kuit-format
msgctxt "@info (don't add tags around %1, it's done already)"
msgid ""
"<para>Database %1 already exists.</para>"
"<para>Do you want to replace it with a new one?</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:880
#, kde-kuit-format
msgctxt "@action:button Replace Database"
msgid "&Replace"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:923
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Import failed.</para>"
"<para>%1</para>"
"<para>%2</para>"
"<para>You can click <interface>Back</interface> button and try again.</para>"
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:946
#, kde-kuit-format
msgid "Select source database filename."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:952
#, kde-kuit-format
msgid "Select source database."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:966
#, kde-kuit-format
msgid "Could not import database. This type is not supported."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:968
#, kde-kuit-format
msgctxt "@info"
msgid "Could not import database <resource>%1</resource>. This type is not supported."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1027
#, kde-kuit-format
msgid "Importing in progress..."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1032
#, kde-kuit-format
msgctxt "@info"
msgid "Database has been imported into Kexi project <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1106 migration/importwizard.cpp:1117
#, kde-kuit-format
msgid "No help is available for this page."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1109
#, kde-kuit-format
msgid "Here you can choose the location to import data from."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1111
#, kde-kuit-format
msgid "Here you can choose the actual database to import data from."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1113
#, kde-kuit-format
msgid "Here you can choose the location to save the data."
msgstr ""
#. +> trunk5 stable5
#: migration/importwizard.cpp:1115
#, kde-kuit-format
msgid "Here you can choose the location to save the data in and the new database name."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:58
#, kde-kuit-format
msgctxt "@info"
msgid "Could not create database <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:217
#, kde-kuit-format
msgid "Could not connect to database %1."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:393
#, kde-kuit-format
msgid "Could not get a list of table names for database %1."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:403
#, kde-kuit-format
msgid "No tables have been found in database %1."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:463
#, kde-kuit-format
msgctxt "@info"
msgid "Could not import project from database %1. Error reading table <resource>%2</resource>."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:513
#, kde-kuit-format
msgctxt "@info"
msgid "Could not import table <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:556
#, kde-kuit-format
msgid "Could not import project from data source %1."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:605
#, kde-kuit-format
msgctxt "@info"
msgid "Could not copy table <resource>%1</resource> to destination database."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:626
#, kde-kuit-format
msgid "Could not import data from data source %1."
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:704
#, kde-kuit-format
msgctxt "@title:window"
msgid "Field Type"
msgstr ""
#. +> trunk5 stable5
#: migration/keximigrate.cpp:706
#, kde-kuit-format
msgctxt "@info"
msgid "The data type for field <resource>%1</resource> could not be determined. Please select one of the following data types."
msgstr ""
#. +> trunk5 stable5
#: migration/migratemanager.cpp:132
#, kde-kuit-format
msgid "Could not find any migration database drivers."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:47
#, kde-kuit-format
msgid "No data source could be assigned for this widget."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:49
#, kde-kuit-format
msgid "No data source could be assigned for multiple widgets."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:72
#, kde-kuit-format
msgctxt "Table Field or Query Field"
msgid "Widget's data source:"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:104
#, kde-kuit-format
msgid "Form's data source:"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:112
#, kde-kuit-format
msgid "Go to selected form's data source"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidatasourcepage.cpp:113
#, kde-kuit-format
msgid "Goes to selected form's data source"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidbfactorybase.cpp:49 plugins/forms/kexiformpart.cpp:366
#: plugins/reports/kexireportpart.cpp:211
#, kde-kuit-format
msgid "Data Source"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexidbfactorybase.cpp:52
#, kde-kuit-format
msgid "Frame Color"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:166
#, kde-kuit-format
msgid "Pointer"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:174
#, kde-kuit-format
msgid "Snap to Grid"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:181
#, kde-kuit-format
msgid "Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:200
#, kde-kuit-format
msgid "Set the current view style."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:209
#, kde-kuit-format
msgid "Show Form UI Code"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:394
#, kde-kuit-format
msgid "Set form's data source to <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:478
#, kde-kuit-format
msgctxt "@title:window"
msgid "Form's UI Code"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:481
#, kde-kuit-format
msgid "Current"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformmanager.cpp:488
#, kde-kuit-format
msgid "Original"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:74
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "form"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:75
#, kde-kuit-format
msgctxt "tooltip"
msgid "Create new form"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:76
#, kde-kuit-format
msgctxt "what's this"
msgid "Creates new form."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:100
#, kde-kuit-format
msgid "Clear Widget Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:102
#, kde-kuit-format
msgid "Edit Tab Order..."
msgstr ""
#. i18n("Edit Pixmap Collection"), koIconName("icons"), 0, "formpart_pixmap_collection");
#. i18n("Edit Form Connections"), koIconName("connections"), 0, "formpart_connections");
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:107
#, kde-kuit-format
msgid "Bring Widget to Front"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:109
#, kde-kuit-format
msgid "Send Widget to Back"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:117
#, kde-kuit-format
msgid "Align Widgets Position"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:120
#, kde-kuit-format
msgid "To Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:122
#, kde-kuit-format
msgid "To Right"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:124
#, kde-kuit-format
msgid "To Top"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:126
#, kde-kuit-format
msgid "To Bottom"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:128 plugins/forms/kexiformpart.cpp:136
#, kde-kuit-format
msgid "To Grid"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:131
#, kde-kuit-format
msgid "Adjust Widgets Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:134
#, kde-kuit-format
msgid "To Fit"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:138
#, kde-kuit-format
msgid "To Shortest"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:140
#, kde-kuit-format
msgid "To Tallest"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:142
#, kde-kuit-format
msgid "To Narrowest"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:144
#, kde-kuit-format
msgid "To Widest"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:320
#, kde-format
msgctxt "@info"
msgid "Design of form <resource>%1</resource> has been modified."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:322
#, kde-format
msgctxt "@info"
msgid "Form <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:377
#, kde-kuit-format
msgid "Widgets"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformpart.cpp:446
#, kde-kuit-format
msgctxt "@info"
msgid "Form <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/kexiformview.cpp:246
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:86
#, kde-kuit-format
msgctxt "A prefix for identifiers of forms. Based on that, identifiers such as form1, form2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "form"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/kexidbimagebox.cpp:511
#, kde-kuit-format
msgid "Click to show actions for this image box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/kexidbimagebox.cpp:523
#, kde-kuit-format
msgid "Click to show actions for <interface>%1</interface> image box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/kexidbimagebox.cpp:649
#, kde-kuit-format
msgctxt "Unbound Image Box"
msgid "%1 (unbound)"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/kexidbimagebox.cpp:651
#, kde-kuit-format
msgctxt "Unbound Image Box"
msgid ""
"%1\n"
"(unbound)"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:77
#, kde-kuit-format
msgctxt "Form widget"
msgid "Form"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:87
#, kde-kuit-format
msgid "A form widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:107
#, kde-kuit-format
msgctxt "Text Box widget"
msgid "Text Box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:116
#, kde-kuit-format
msgctxt "A prefix for identifiers of text box widgets. Based on that, identifiers such as textBox1, textBox2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "textBox"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:117
#, kde-kuit-format
msgid "A widget for entering and displaying line of text text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:128
#, kde-kuit-format
msgctxt "Text Editor widget"
msgid "Text Editor"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:137
#, kde-kuit-format
msgctxt "A prefix for identifiers of text editor widgets. Based on that, identifiers such as textEditor1, textEditor2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "textEditor"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:138
#, kde-kuit-format
msgid "A multiline text editor"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:149
#, kde-kuit-format
msgctxt "Text Label widget"
msgid "Label"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:158
#, kde-kuit-format
msgctxt "A prefix for identifiers of label widgets. Based on that, identifiers such as label1, label2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "label"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:159
#, kde-kuit-format
msgid "A widget for displaying text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:170
#, kde-kuit-format
msgctxt "Image Box widget"
msgid "Image Box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:179
#, kde-kuit-format
msgctxt "A prefix for identifiers of image box widgets. Based on that, identifiers such as image1, image2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "image"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:180
#, kde-kuit-format
msgid "A widget for displaying images"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:196
#, kde-kuit-format
msgctxt "Combo Box widget"
msgid "Combo Box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:205
#, kde-kuit-format
msgctxt "A prefix for identifiers of combo box widgets. Based on that, identifiers such as comboBox1, comboBox2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "comboBox"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:206
#, kde-kuit-format
msgid "A combo box widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:214
#, kde-kuit-format
msgctxt "Check Box widget"
msgid "Check Box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:223
#, kde-kuit-format
msgctxt "A prefix for identifiers of combo box widgets. Based on that, identifiers such as checkBox1, checkBox2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "checkBox"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:224
#, kde-kuit-format
msgid "A check box with text label"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:250
#, kde-kuit-format
msgctxt "Button widget"
msgid "Button"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:259
#, kde-kuit-format
msgctxt "A prefix for identifiers of button widgets. Based on that, identifiers such as button1, button2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "button"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:260
#, kde-kuit-format
msgid "A button for executing actions"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:267
#, kde-kuit-format
msgctxt "Link Button widget"
msgid "Link Button"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:276
#, kde-kuit-format
msgctxt "A prefix for identifiers of link button widgets. Based on that, identifiers such as linkButton1, linkButton2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "linkButton"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:277
#, kde-kuit-format
msgid "A Link button for executing actions"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:307
#, kde-kuit-format
msgctxt "Slider widget"
msgid "Slider"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:316
#, kde-kuit-format
msgctxt "A prefix for identifiers of slider widgets. Based on that, identifiers such as slider1, slider2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "slider"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:317
#, kde-kuit-format
msgid "A Slider widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:325
#, kde-kuit-format
msgctxt "Progress Bar widget"
msgid "Progress Bar"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:334
#, kde-kuit-format
msgctxt "A prefix for identifiers of progress bar widgets. Based on that, identifiers such as progressBar1, progressBar2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "progressBar"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:335
#, kde-kuit-format
msgid "A Progress Bar widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:343
#, kde-kuit-format
msgid "Line"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:352
#, kde-kuit-format
msgctxt "A prefix for identifiers of line widgets. Based on that, identifiers such as line1, line2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "line"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:353
#, kde-kuit-format
msgid "A line to be used as a separator"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:358
#, kde-kuit-format
msgid "Insert &Horizontal Line"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:359
#, kde-kuit-format
msgid "Insert &Vertical Line"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:368
#, kde-kuit-format
msgctxt "Date Picker widget"
msgid "Date Picker"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:377
#, kde-kuit-format
msgctxt "A prefix for identifiers of date picker widgets. Based on that, identifiers such as datePicker1, datePicker2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "datePicker"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:378
#, kde-kuit-format
msgid "A Date Picker widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:411
#, kde-kuit-format
msgctxt "Property: Echo mode for Line Edit widget eg. Normal, NoEcho, Password"
msgid "Echo Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:412
#, kde-kuit-format
msgid "Indent"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:414
#, kde-kuit-format
msgid "Inverted"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:415
#, kde-kuit-format
msgid "Minimum"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:416
#, kde-kuit-format
msgid "Maximum"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:417
#, kde-kuit-format
msgid "Format"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:418
#, kde-kuit-format
msgid "Orientation"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:419
#, kde-kuit-format
msgid "Text Direction"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:420
#, kde-kuit-format
msgid "Text Visible"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:421
#, kde-kuit-format
msgid "Value"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:422
#, kde-kuit-format
msgid "Date"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:423
#, kde-kuit-format
msgid "Arrow Visible"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, descGroupBox)
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:424
#: widget/KexiConnectionSelector.ui:118
#, kde-format, kde-kuit-format
msgid "Description"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:425
#, kde-kuit-format
msgctxt "Property of slider widgets"
msgid "Page Step"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:426
#, kde-kuit-format
msgctxt "Property of slider widgets"
msgid "Single Step"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:427
#, kde-kuit-format
msgctxt "Property of slider widgets"
msgid "Tick Interval"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:428
#, kde-kuit-format
msgctxt "Property of slider widgets"
msgid "Tick Position"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:429
#, kde-kuit-format
msgid "Show Editor"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:430
#, kde-kuit-format
msgid "Form Name"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:431
#, kde-kuit-format
msgid "On Click"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:432
#, kde-kuit-format
msgid "On Click Option"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:433
#, kde-kuit-format
msgid "Auto Tab Order"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:434
#, kde-kuit-format
msgid "Spell Checking"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:435
#, kde-kuit-format
msgctxt "Widget Property"
msgid "HTML"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:436
#, kde-kuit-format
msgid "Line Wrap At"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:437
#, kde-kuit-format
msgid "Line Wrap Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:438
#, kde-kuit-format
msgid "Spell Checking Language"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:440
#, kde-kuit-format
msgid "Editor Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:451
#, kde-kuit-format
msgctxt "AutoField editor's type"
msgid "Multiline Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:452
#, kde-kuit-format
msgctxt "AutoField editor's type"
msgid "Drop-Down List"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:453
#, kde-kuit-format
msgctxt "AutoField editor's type"
msgid "Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:456
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "No Ticks"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:457
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "Above"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:458
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:459
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "Below"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:460
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:461
#, kde-kuit-format
msgctxt "Possible value of slider widget's \"Tick position\" property"
msgid "Both Sides"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:474
#, kde-kuit-format
msgid "Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:475
#: widget/utils/kexicontextmenuutils.cpp:221
#, kde-kuit-format
msgid "Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:476
#, kde-kuit-format
msgid "Scaled Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:477
#, kde-kuit-format
msgctxt "Property: Smoothing when contents are scaled"
msgid "Smoothing"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:478
#, kde-kuit-format
msgctxt "Property: Keep Aspect Ratio (keep short)"
msgid "Keep Ratio"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:483
#, kde-kuit-format
msgctxt "Drop-Down Button for Image Box Visible (a property name, keep the text narrow!)"
msgid ""
"Drop-Down\n"
"Button Visible"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:486
#, kde-kuit-format
msgctxt "Property: Checked checkbox"
msgid "Checked"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:487
#, kde-kuit-format
msgctxt "Property: Tristate checkbox"
msgid "Tristate"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:488
#, kde-kuit-format
msgctxt "Value of \"Tristate\" property in checkbox: default"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:489
#, kde-kuit-format
msgctxt "Value of \"Tristate\" property in checkbox: yes"
msgid "Yes"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:490
#, kde-kuit-format
msgctxt "Value of \"Tristate\" property in checkbox: no"
msgid "No"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:493
#, kde-kuit-format
msgctxt "Editable combobox"
msgid "Editable"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:496
#, kde-kuit-format
msgctxt "Property: Button is checkable"
msgid "On/Off"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:497
#, kde-kuit-format
msgctxt "Property: Button"
msgid "Auto Repeat"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:498
#, kde-kuit-format
msgctxt "Property: Auto Repeat Button's Delay"
msgid "Auto Rep. Delay"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:499
#, kde-kuit-format
msgctxt "Property: Auto Repeat Button's Interval"
msgid "Auto Rep. Interval"
msgstr ""
#. i18n("Auto Default"));
#. unused (too advanced) setPropertyDescription("default", xi18nc("Property: Button is default", "Default"));
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:502
#, kde-kuit-format
msgctxt "Property: Button is flat"
msgid "Flat"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:503
#, kde-kuit-format
msgctxt "Hyperlink address"
msgid "Hyperlink"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:504
#, kde-kuit-format
msgctxt "Type of hyperlink"
msgid "Hyperlink Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:505
#, kde-kuit-format
msgctxt "Tool used for opening a hyperlink"
msgid "Hyperlink Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:506
#, kde-kuit-format
msgctxt "Allow to open remote hyperlinks"
msgid "Remote Hyperlink"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:507
#, kde-kuit-format
msgctxt "Allow to open executables"
msgid "Executable Hyperlink"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:509
#, kde-kuit-format
msgctxt "Hyperlink type, NoHyperlink"
msgid "No Hyperlink"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:510
#, kde-kuit-format
msgctxt "Hyperlink type, StaticHyperlink"
msgid "Static"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:511
#, kde-kuit-format
msgctxt "Hyperlink type, DynamicHyperlink"
msgid "Dynamic"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:513
#, kde-kuit-format
msgctxt "Hyperlink tool, DefaultTool"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:514
#, kde-kuit-format
msgctxt "Hyperlink tool, BrowserTool"
msgid "Browser"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:515
#, kde-kuit-format
msgctxt "Hyperlink tool, MailerTool"
msgid "Mailer"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:518
#, kde-kuit-format
msgid "Text Format"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:519
#, kde-kuit-format
msgctxt "For Text Format"
msgid "Plain"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:520
#, kde-kuit-format
msgctxt "For Text Format"
msgid "Hypertext"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:521
#, kde-kuit-format
msgctxt "For Text Format"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:522
#, kde-kuit-format
msgctxt "For Text Format"
msgid "Log"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:523
#, kde-kuit-format
msgctxt "property: Can open external links in label"
msgid "Open Ext. Links"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:526
#, kde-kuit-format
msgctxt "Property: line edit's placeholder text"
msgid "Placeholder Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:527
#, kde-kuit-format
msgctxt "Property: Clear Button Enabled"
msgid "Clear Button"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:529
#, kde-kuit-format
msgctxt "Property: Password Mode for line edit"
msgid "Password Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:530
#, kde-kuit-format
msgctxt "Property: Squeezed Text Mode for line edit"
msgid "Squeezed Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:533
#, kde-kuit-format
msgid "Tab Stop Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:534
#, kde-kuit-format
msgid "Tab Changes Focus"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:535
#, kde-kuit-format
msgid "Word Wrap Policy"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:536
#, kde-kuit-format
msgctxt "Property: For Word Wrap Policy"
msgid "At Word Boundary"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:537
#, kde-kuit-format
msgctxt "Property: For Word Wrap Policy"
msgid "Anywhere"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:538
#, kde-kuit-format
msgctxt "Property: For Word Wrap Policy"
msgid "At Word Boundary If Possible"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:539
#, kde-kuit-format
msgid "Word Wrapping"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:540
#, kde-kuit-format
msgid "Word Wrap Position"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:541
#, kde-kuit-format
msgctxt "Property: For Word Wrap Position"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:542
#, kde-kuit-format
msgctxt "Property: For Word Wrap Position"
msgid "Widget's Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:543
#, kde-kuit-format
msgctxt "Property: For Word Wrap Position"
msgid "In Pixels"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:544
#, kde-kuit-format
msgctxt "Property: For Word Wrap Position"
msgid "In Columns"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:545
#, kde-kuit-format
msgid "Links Underlined"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:546
#, kde-kuit-format
msgid "Horizontal Scroll Bar"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:547
#, kde-kuit-format
msgid "Vertical Scroll Bar"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:549
#, kde-kuit-format
msgctxt "Property: Show Scroll Bar As Needed"
msgid "As Needed"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:550
#, kde-kuit-format
msgctxt "Property: Scroll Bar Always Off"
msgid "Always Off"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:551
#, kde-kuit-format
msgctxt "Property: Scroll Bar Always On"
msgid "Always On"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:552
#, kde-kuit-format
msgctxt "Property: Text Edit accepts rich text"
msgid "Rich Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:553
#, kde-kuit-format
msgctxt "Property: HTML value of text edit"
msgid "HTML"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:563
#, kde-kuit-format
msgid "Tab Widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:572
#, kde-kuit-format
msgctxt "A prefix for identifiers of tab widgets. Based on that, identifiers such as tab1, tab2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "tabWidget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:573
#, kde-kuit-format
msgid "A widget to display multiple pages using tabs"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:592
#, kde-kuit-format
msgctxt "Frame widget"
msgid "Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:601
#, kde-kuit-format
msgctxt "A prefix for identifiers of frame widgets. Based on that, identifiers such as frame1, frame2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:602
#, kde-kuit-format
msgid "A frame widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:610
#, kde-kuit-format
msgid "Group Box"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:619
#, kde-kuit-format
msgctxt "A prefix for identifiers of group box widgets. Based on that, identifiers such as groupBox1, groupBox2 are generated. This string can be used to refer the widget object as variables in programming languages or macros so it must _not_ contain white spaces and non latin1 characters, should start with lower case letter and if there are subsequent words, these should start with upper case letter. Example: smallCamelCase. Moreover, try to make this prefix as short as possible."
msgid "groupBox"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:620
#, kde-kuit-format
msgid "A container to group some widgets"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:625
#, kde-kuit-format
msgctxt "'Title' property for group box"
msgid "Title"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:626
#, kde-kuit-format
msgctxt "'Flat' property for group box"
msgid "Flat"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:629
#, kde-kuit-format
msgid "Auto-hide Tabs"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:630
#, kde-kuit-format
msgid "Tab Position"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:631
#, kde-kuit-format
msgctxt "'Current page' property for tab widget"
msgid "Current Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:632
#, kde-kuit-format
msgid "Tab Shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:633
#, kde-kuit-format
msgctxt "Tab Widget's Elide Mode property"
msgid "Elide Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:635
#, kde-kuit-format
msgctxt "Tab Widget's property: true if can use scroll buttons"
msgid "Scroll Buttons"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:637
#, kde-kuit-format
msgid "Closable Tabs"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:638
#, kde-kuit-format
msgid "Movable Tabs"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:639
#, kde-kuit-format
msgid "Document Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:641
#, kde-kuit-format
msgctxt "Property value for Tab Shape"
msgid "Rounded"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:642
#, kde-kuit-format
msgctxt "Property value for Tab Shape"
msgid "Triangular"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:774
#, kde-kuit-format
msgid "&Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:821
#, kde-kuit-format
msgid "&Assign Action..."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiMainFormWidgetsFactory.cpp:1386
#, kde-kuit-format
msgctxt "default indent value"
msgid "default"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:242
#, kde-kuit-format
msgctxt "Add page to tab widget"
msgid "Add Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:266
#, kde-kuit-format
msgctxt "Delete tab widget's page"
msgid "Delete Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:287
#, kde-kuit-format
msgctxt "Rename tab widget's page"
msgid "Rename Page..."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:301
#, kde-kuit-format
msgctxt "@window:title"
msgid "New Page Title"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:302
#, kde-kuit-format
msgid "Enter a new title for the current page:"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:311
#, kde-kuit-format
msgctxt "Add page to a stacked widget"
msgid "Add Page..."
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:338
#, kde-kuit-format
msgctxt "Delete page from a stacked widget"
msgid "Delete Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:385
#, kde-kuit-format
msgctxt "Go to Previous Page of a Stacked Widget"
msgid "Go to Previous Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardContainerFormWidgets.cpp:386
#, kde-kuit-format
msgctxt "Go to Next Page of a Stacked Widget"
msgid "Go to Next Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/forms/widgets/main/KexiStandardFormWidgets.cpp:67
#, kde-kuit-format
msgctxt "Edit rich text for a widget"
msgid "Edit Rich Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:62
#, kde-kuit-format
msgid "Copy"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:64
#: widget/navigator/KexiProjectNavigator.cpp:207
#, kde-kuit-format
msgid "Export"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:80
#, kde-kuit-format
msgctxt "@title:window"
msgid "Copy Data From Table to Clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:81
#: plugins/importexport/csv/kexicsvexportwizard.cpp:89
#, kde-kuit-format
msgid "Copying data from table:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:83
#, kde-kuit-format
msgctxt "@title:window"
msgid "Export Data From Table to CSV File"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:84
#, kde-kuit-format
msgid "Exporting data from table:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:88
#, kde-kuit-format
msgctxt "@title:window"
msgid "Copy Data From Query to Clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:91
#, kde-kuit-format
msgctxt "@title:window"
msgid "Export Data From Query to CSV File"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:92
#, kde-kuit-format
msgid "Exporting data from query:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:96
#, kde-kuit-format
msgid "Could not open data for exporting."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:106
#, kde-kuit-format
msgid "(rows: %1, columns: %2)"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:108
#, kde-kuit-format
msgid "(columns: %1)"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:125
#, kde-kuit-format
msgid "Enter Name of File You Want to Save Data To"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:157
#, kde-kuit-format
msgid "To CSV file:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:157
#, kde-kuit-format
msgid "To clipboard."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:166
#: plugins/importexport/csv/kexicsvexportwizard.cpp:357
#, kde-kuit-format
msgid "Show Options &gt;&gt;"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:183
#: plugins/importexport/csv/kexicsvimportdialog.cpp:609
#, kde-kuit-format
msgid "Delimiter:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:192
#: plugins/importexport/csv/kexicsvimportdialog.cpp:646
#, kde-kuit-format
msgid "Text quote:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:216
#, kde-kuit-format
msgid "Add column names as the first row"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:220
#, kde-kuit-format
msgid "Defaults"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:226
#, kde-kuit-format
msgid "Always use above options for copying"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:227
#, kde-kuit-format
msgid "Always use above options for exporting"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:235
#, kde-kuit-format
msgid "Copying"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:235
#, kde-kuit-format
msgid "Exporting"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvexportwizard.cpp:362
#, kde-kuit-format
msgid "Hide Options &lt;&lt;"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:262
#, kde-kuit-format
msgid "no"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:264
#, kde-kuit-format
msgid "false"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:271
#, kde-kuit-format
msgctxt "@title:window"
msgid "Import CSV Data From File"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:272
#, kde-kuit-format
msgctxt "@title:window"
msgid "Paste CSV Data From Clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:407
#, kde-kuit-format
msgid "Data set contains no rows. Do you want to import empty table?"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:428
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1828
#, kde-kuit-format
msgid "No database connection available."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:447
#: widget/KexiNameDialog.cpp:173
#, kde-kuit-format
msgid "Please choose other name."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:487
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1786
#, kde-kuit-format
msgctxt "@action:button Import CSV"
msgid "&Import..."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:504
#, kde-kuit-format
msgctxt "@info"
msgid "Loading CSV Data from <filename>%1</filename>..."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:506
#, kde-kuit-format
msgctxt "@title:window"
msgid "Loading CSV Data"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:585
#, kde-kuit-format
msgid "Select Import Filename"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:595
#, kde-kuit-format
msgid "Preview of data from file:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:596
#, kde-kuit-format
msgid "Preview of data from clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:617
#, kde-kuit-format
msgid "Comment symbol:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:638
#, kde-kuit-format
msgid "Primary key"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:670
#, kde-kuit-format
msgid "Ignore duplicated delimiters"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:675
#, kde-kuit-format
msgid "First row contains column names"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:695
#, kde-kuit-format
msgid "Import Options"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:705
#, kde-kuit-format
msgctxt "@option:check CSV import: data will be appended to a new table"
msgid "&New table"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:708
#, kde-kuit-format
msgctxt "@option:check CSV import: data will be appended to existing table"
msgid "&Existing table"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:718
#, kde-kuit-format
msgid "Choose Destination for Imported Data"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:740
#, kde-kuit-format
msgctxt "@label"
msgid "Select existing table:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:761
#, kde-kuit-format
msgctxt "@label Preview of selected table"
msgid "Table preview:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:762
#, kde-kuit-format
msgctxt "@label"
msgid "Name:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:764
#, kde-kuit-format
msgctxt "@label"
msgid "Caption:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:766
#, kde-kuit-format
msgctxt "@label"
msgid "Row count:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:768
#, kde-kuit-format
msgctxt "@label"
msgid "Column count:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:778
#, kde-kuit-format
msgctxt "@label"
msgid "Fields:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:784
#, kde-kuit-format
msgctxt "@label"
msgid "Choose Name of Destination Table"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:792
#, kde-kuit-format
msgid "From CSV file:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:792
#, kde-kuit-format
msgid "From Clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:797
#, kde-kuit-format
msgctxt "@label Importing CSV data to table:"
msgid "To table:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:812
#, kde-kuit-format
msgid "Ready to Import"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:854
#, kde-kuit-format
msgid "Cannot open input file <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:932
#, kde-kuit-format
msgid "Start at line (1-%1):"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:933
#: plugins/importexport/csv/kexicsvimportdialog.cpp:941
#, kde-kuit-format
msgid "Start at line:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1640
#: plugins/queries/kexiquerydesignerguieditor.cpp:240
#, kde-kuit-format
msgid "Column"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1670
#, kde-kuit-format
msgctxt "@info"
msgid "An error occurred during insert record."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1715
#: plugins/importexport/csv/kexicsvwidgets.cpp:190
#: plugins/importexport/csv/kexicsvwidgets.cpp:240
#: plugins/importexport/csv/kexicsvwidgets.cpp:252
#: plugins/queries/kexiquerydesignerguieditor.cpp:1872
#: plugins/tables/kexitabledesignerview.cpp:395
#, kde-kuit-format
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1764
#, kde-kuit-format
msgid "Format for column %1:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1844
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>No primary key (autonumber) has been defined.</para>"
"<para>Should it be automatically defined on import (recommended)?</para>"
"<para><note>An imported table without a primary key may not be editable (depending on database type).</note></para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1849
#: plugins/tables/kexitabledesignerview.cpp:1196
#, kde-kuit-format
msgctxt "@action:button Add Database Primary Key to a Table"
msgid "&Add Primary Key"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1850
#: plugins/tables/kexitabledesignerview.cpp:1197
#, kde-kuit-format
msgctxt "@action:button Do Not Add Database Primary Key to a Table"
msgid "Do &Not Add"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1886
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1944
#, kde-kuit-format
msgid "Cannot add column."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1900
#: plugins/importexport/csv/KexiCSVImportDialogModel.cpp:114
#, kde-kuit-format
msgctxt "@title:column Column 1, Column 2, etc."
msgid "Column %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:1960
#, kde-kuit-format
msgid ""
"<para>Field count does not match.</para>"
"<para>Please choose another table.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2002
#, kde-kuit-format
msgid "Importing data..."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2017
#, kde-kuit-format
msgid "Import has been canceled."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2019
#, kde-kuit-format
msgid "Error occurred during import."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2054
#, kde-kuit-format
msgctxt "@info"
msgid "Data has been successfully imported to table <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2081
#, kde-kuit-format
msgctxt "Text type for column"
msgid "Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2083
#, kde-kuit-format
msgctxt "Numeric type for column"
msgid "Number"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2085
#, kde-kuit-format
msgctxt "Currency type for column"
msgid "Currency"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2165
#, kde-kuit-format
msgctxt "row count"
msgid "(rows: %1)"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2169
#, kde-kuit-format
msgctxt "row count"
msgid "(rows: more than %1)"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportdialog.cpp:2170
#, kde-kuit-format
msgid "Not all rows are visible on this preview"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/KexiCSVImportDialogModel.cpp:77
#, kde-kuit-format
msgctxt "@title:row (with two spaces at the end)"
msgid "Column name "
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:103
#, kde-kuit-format
msgctxt "@title:window"
msgid "CSV Import Options"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:111
#, kde-kuit-format
msgid "Text encoding"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:125
#, kde-kuit-format
msgid "Always use this encoding when importing CSV data files"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:130
#, kde-kuit-format
msgctxt "Date format: Auto"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:131
#, kde-kuit-format
msgid "day"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:131
#, kde-kuit-format
msgid "month"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:131
#, kde-kuit-format
msgid "year"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:134
#, kde-kuit-format
msgctxt "do not reorder placeholders, just translate e.g. and - to the separator used by dates in your language"
msgid "%1, %2, %3 (e.g. %4-%5-%6)"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:143
#, kde-kuit-format
msgid "Date format:"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:148
#, kde-kuit-format
msgid "Strip leading and trailing blanks off of text values"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvimportoptionsdlg.cpp:152
#, kde-kuit-format
msgid "Import missing text values as empty texts"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:88
#, kde-kuit-format
msgid "Comma \",\""
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:89
#, kde-kuit-format
msgid "Semicolon \";\""
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:90
#, kde-kuit-format
msgid "Tabulator"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:91
#, kde-kuit-format
msgid "Space \" \""
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:92
#, kde-kuit-format
msgid "Other"
msgstr ""
#. +> trunk5 stable5
#: plugins/importexport/csv/kexicsvwidgets.cpp:191
#, kde-kuit-format
msgid "Hash \"#\""
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:183
#, kde-kuit-format
msgid "Query Columns"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:241
#, kde-kuit-format
msgid "Describes field name or expression for the designed query."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:248
#: widget/relations/KexiRelationsView.cpp:372
#, kde-kuit-format
msgid "Table"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:249
#, kde-kuit-format
msgid "Describes table for a given field. Can be empty."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:254
#, kde-kuit-format
msgid "Visible"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:255
#, kde-kuit-format
msgid "Describes visibility for a given field or expression."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:274
#: plugins/queries/kexiquerydesignerguieditor.cpp:1874
#, kde-kuit-format
msgid "Sorting"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:275
#, kde-kuit-format
msgid "Describes a way of sorting for a given field."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:278
#: plugins/queries/kexiquerydesignerguieditor.cpp:1872
#, kde-kuit-format
msgid "Ascending"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:279
#: plugins/queries/kexiquerydesignerguieditor.cpp:1872
#, kde-kuit-format
msgid "Descending"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:284
#, kde-kuit-format
msgid "Criteria"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:285
#, kde-kuit-format
msgid "Describes the criteria for a given field or expression."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:384
#, kde-kuit-format
msgid ""
"Cannot switch to data view, because query design is empty.\n"
"First, please create your design."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:424
#, kde-kuit-format
msgctxt "@info"
msgid "Select column for table <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:447
#: plugins/queries/kexiquerydesignerguieditor.cpp:1765
#, kde-kuit-format
msgctxt "@info"
msgid "Invalid criteria <icode>%1</icode>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:469
#: plugins/queries/kexiquerydesignerguieditor.cpp:476
#: plugins/queries/kexiquerydesignerguieditor.cpp:484
#: plugins/queries/kexiquerydesignerguieditor.cpp:1561
#, kde-kuit-format
msgctxt "@info"
msgid "Invalid expression <icode>%1</icode>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:704
#: plugins/queries/kexiquerydesignerguieditor.cpp:718
#: plugins/queries/kexiquerydesignerguieditor.cpp:740
#: plugins/queries/kexiquerydesignerguieditor.cpp:1144
#, kde-kuit-format
msgid "Query definition loading failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:705
#, kde-kuit-format
msgid ""
"Query design may be corrupted so it could not be opened even in text view.\n"
"You can delete the query and create it again."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1335
#, kde-kuit-format
msgctxt "short for 'expression' word (only latin letters, please)"
msgid "expr"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1541
#, kde-kuit-format
msgctxt "@info"
msgid "Entered column alias <resource>%1</resource> is not a valid identifier."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1543
#, kde-kuit-format
msgid "Identifiers should start with a letter or '_' character"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1713
#, kde-kuit-format
msgid "Could not set sorting for multiple columns (%1)"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1738
#, kde-kuit-format
msgctxt "@info"
msgid "Could not set criteria for <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1741
#, kde-kuit-format
msgid "Could not set criteria for empty record"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1835
#, kde-kuit-format
msgctxt "Query column"
msgid "Column"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignerguieditor.cpp:1860
#, kde-kuit-format
msgid "Alias"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:102
#, kde-kuit-format
msgid "SQL Query Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:155
#: plugins/queries/kexiquerydesignersql.cpp:158
#, kde-kuit-format
msgid "Check Query"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:159
#, kde-kuit-format
msgid "Checks query for validity."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:182
#, kde-kuit-format
msgid "The query is correct"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:188
#, kde-kuit-format
msgid "The query is incorrect"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:195
#, kde-kuit-format
msgid "Please enter your query and execute \"Check query\" function to verify it."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:233
#, kde-kuit-format
msgid ""
"<para>The query you entered is incorrect.</para>"
"<para>Do you want discard changes made to this SQL text and switch to the other view?</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:236
#, kde-kuit-format
msgid "Discard Changes and Switch"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:238
#, kde-kuit-format
msgid "Don't Switch"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerydesignersql.cpp:413
#, kde-kuit-format
msgid ""
"<para>This query is invalid.</para>"
"<para>Do you want to save it?</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:48
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "query"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:49
#, kde-kuit-format
msgctxt "tooltip"
msgid "Create new query"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:50
#, kde-kuit-format
msgctxt "what's this"
msgid "Creates new query."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:53
#, kde-kuit-format
msgid "SQL"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:108
#, kde-kuit-format
msgid "<para>You are about to delete query <resource>%1</resource> but it is used by following opened windows:</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:187
#, kde-format
msgctxt "@info"
msgid "Design of query <resource>%1</resource> has been modified."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:189
#, kde-format
msgctxt "@info"
msgid "Query <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:237 plugins/tables/kexitablepart.cpp:207
#, kde-format
msgctxt "@info/plain Sentence1 Sentence2 Sentence3"
msgid "%1%2%3"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:240 plugins/tables/kexitablepart.cpp:210
#, kde-kuit-format
msgctxt "@info"
msgid "<para>Do you want to close these windows and save the design or cancel saving?</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:245 plugins/tables/kexitablepart.cpp:215
#, kde-kuit-format
msgctxt "@action:button Close all windows and save"
msgid "Close Windows and Save"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:247 plugins/tables/kexitablepart.cpp:217
#, kde-kuit-format
msgctxt "@info:tooltip Close all windows and save design"
msgid "Close all windows and save design"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiquerypart.cpp:274
#, kde-kuit-format
msgctxt "@info"
msgid "Query <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/queries/kexiqueryview.cpp:97
#, kde-kuit-format
msgid "Query executing failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportdesignview.cpp:58
#, kde-kuit-format
msgid "Edit Sections"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportdesignview.cpp:61
#, kde-kuit-format
msgid "Raise"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportdesignview.cpp:63
#, kde-kuit-format
msgid "Lower"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:65
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "report"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:66
#, kde-kuit-format
msgctxt "tooltip"
msgid "Create new report"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:67
#, kde-kuit-format
msgctxt "what's this"
msgid "Creates new report."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:86
#, kde-format
msgctxt "@info"
msgid "Design of report <resource>%1</resource> has been modified."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:88
#, kde-format
msgctxt "@info"
msgid "Report <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportpart.cpp:184
#, kde-kuit-format
msgctxt "@info"
msgid "Report <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:64
#, kde-kuit-format
msgctxt "Page selector label"
msgid "Page:"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:65
#, kde-kuit-format
msgid "Go to first page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:66
#, kde-kuit-format
msgid "Goes to first page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:67
#, kde-kuit-format
msgid "Go to previous page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:68
#, kde-kuit-format
msgid "Goes to previous page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:69
#, kde-kuit-format
msgid "Go to next page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:70
#, kde-kuit-format
msgid "Goes to next page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:71
#, kde-kuit-format
msgid "Go to last page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:72
#, kde-kuit-format
msgid "Goes to last page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:73
#, kde-kuit-format
msgid "Current page number"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:73
#, kde-kuit-format
msgid "Number of pages"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:82
#, kde-kuit-format
msgid "Print"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:84
#, kde-kuit-format
msgid "Print report"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:85
#, kde-kuit-format
msgid "Prints the current report."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:88
#, kde-kuit-format
msgctxt "@title:menu"
msgid "E&xport As"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:95
#, kde-kuit-format
msgid "Export:"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:102
#, kde-kuit-format
msgctxt "open dialog to export as text document"
msgid "Text Document..."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:105
#, kde-kuit-format
msgid "Export the report as a text document (in OpenDocument Text format)"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:106
#, kde-kuit-format
msgid "Exports the report as a text document (in OpenDocument Text format)."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:115
#, kde-kuit-format
msgctxt "Portable Document Format..."
msgid "PDF..."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:118
#, kde-kuit-format
msgid "Export as PDF"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:119
#, kde-kuit-format
msgid "Exports the current report as PDF."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:128
#, kde-kuit-format
msgctxt "open dialog to export as spreadsheet"
msgid "Spreadsheet..."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:131
#, kde-kuit-format
msgid "Export the report as a spreadsheet (in OpenDocument Spreadsheet format)"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:132
#, kde-kuit-format
msgid "Exports the report as a spreadsheet (in OpenDocument Spreadsheet format)."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:142
#, kde-kuit-format
msgctxt "open dialog to export as web page"
msgid "Web Page..."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:145
#, kde-kuit-format
msgid "Export the report as a web page (in HTML format)"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:146
#, kde-kuit-format
msgid "Exports the report as a web page (in HTML format)."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:181
#, kde-kuit-format
msgid "Printing the report failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:182
#, kde-kuit-format
msgid "Print Failed"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:194
#, kde-kuit-format
msgid "Export Report as PDF"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:213
#, kde-kuit-format
msgid "Exporting the report as PDF to %1 failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:214
#: plugins/reports/kexireportview.cpp:270
#: plugins/reports/kexireportview.cpp:295
#: plugins/reports/kexireportview.cpp:335
#, kde-kuit-format
msgid "Export Failed"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:242
#, kde-kuit-format
msgid "Do you want to open exported document?"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:260
#, kde-kuit-format
msgid "Export Report as Spreadsheet"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:269
#, kde-kuit-format
msgid "Failed to export the report as spreadsheet to %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:285
#, kde-kuit-format
msgid "Export Report as Text Document"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:294
#, kde-kuit-format
msgid "Exporting the report as text document to %1 failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:305
#, kde-kuit-format
msgid "Export Report as Web Page"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:319
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Would you like to use Cascading Style Sheets (CSS) in the exported web page or use HTML tables?</para>"
"<para><note>CSS give output closer to the original.</note></para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:323
#, kde-kuit-format
msgctxt "@action:button"
msgid "Use CSS"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:324
#, kde-kuit-format
msgctxt "@action:button"
msgid "Use Table"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:334
#, kde-kuit-format
msgid "Exporting the report as web page to %1 failed."
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:396
#, kde-kuit-format
msgid "Opening failed"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexireportview.cpp:396
#, kde-kuit-format
msgid "Report schema appears to be invalid or corrupt"
msgstr ""
#. +> trunk5 stable5
#: plugins/reports/kexisourceselector.cpp:59
#, kde-kuit-format
msgid "Report's data source:"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:134
#, kde-kuit-format
msgid "Execute the scripting code"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:135
#, kde-kuit-format
msgid "Executes the scripting code."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:144
#, kde-kuit-format
msgid "Edit"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:146
#, kde-kuit-format
msgid "Edit actions"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:147
#, kde-kuit-format
msgid "Provides Edit menu."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:154
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:136
#, kde-kuit-format
msgid "Configure Editor..."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:156
#, kde-kuit-format
msgid "Configure the scripting editor"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:157
#, kde-kuit-format
msgid "Configures the scripting editor."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:166
#, kde-kuit-format
msgid "&Import..."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:168
#, kde-kuit-format
msgid "Import script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:169
#, kde-kuit-format
msgid "Imports script from a file."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:182
#, kde-kuit-format
msgid "&Export..."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:184
#, kde-kuit-format
msgid "Export script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:185
#, kde-kuit-format
msgid "Exports script to a file."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:224
#, kde-kuit-format
msgctxt "@title:window"
msgid "Import Script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:233
#, kde-kuit-format
msgctxt "@info"
msgid "Could not read <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:242
#, kde-kuit-format
msgctxt "@title:window"
msgid "Export Script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:249
#, kde-kuit-format
msgctxt "@info"
msgid "Could not write <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:271
#, kde-kuit-format
msgid "Script Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:272
#, kde-kuit-format
msgid "The type of script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:309
#, kde-kuit-format
msgctxt "@info"
msgid "Execution of the script <resource>%1</resource> started."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptdesignview.cpp:330
#, kde-kuit-format, no-c-format
msgid "Successfully executed. Time elapsed: %1ms"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:70
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:71
#, kde-kuit-format
msgctxt "tooltip"
msgid "Create new script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:72
#, kde-kuit-format
msgctxt "what's this"
msgid "Creates new script."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:107
#, kde-kuit-format
msgid ""
"Error executing script at line %1:\n"
"%2"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:107
#, kde-kuit-format
msgid "Kexi Script"
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:163
#, kde-format
msgctxt "@info"
msgid "Design of script <resource>%1</resource> has been modified."
msgstr ""
#. +> trunk5 stable5
#: plugins/scripting/kexiscripting/kexiscriptpart.cpp:165
#, kde-format
msgctxt "@info"
msgid "Script <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexilookupcolumnpage.cpp:129
#, kde-kuit-format
msgid "Record source:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexilookupcolumnpage.cpp:139
#, kde-kuit-format
msgid "Go to selected record source"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexilookupcolumnpage.cpp:150
#, kde-kuit-format
msgid "Bound column:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexilookupcolumnpage.cpp:164
#, kde-kuit-format
msgid "Visible column:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexilookupcolumnpage.cpp:212
#, kde-kuit-format
msgid "No field selected"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignercommands.cpp:94
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change <resource>%1</resource> property for table field from <resource>%2</resource> to <resource>%3</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignercommands.cpp:160
#, kde-format
msgctxt "(qtundo-format)"
msgid "Delete table field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignercommands.cpp:162
#, kde-format
msgctxt "(qtundo-format)"
msgid "Delete empty row at position %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignercommands.cpp:212
#, kde-format
msgctxt "(qtundo-format)"
msgid "Insert table field \"%1\""
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:119
#, kde-kuit-format
msgid "Additional information about the field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:126
#, kde-kuit-format
msgid "Field Caption"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:127
#, kde-kuit-format
msgid "Describes caption for the field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:130
#: widget/fields/KexiFieldListModel.cpp:147
#, kde-kuit-format
msgid "Data Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:131
#, kde-kuit-format
msgid "Describes data type for the field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:149
#, kde-kuit-format
msgid "Comments"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:149
#, kde-kuit-format
msgid "Describes additional comments for the field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:176
#, kde-kuit-format
msgid "Sets or deletes primary key"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:177
#, kde-kuit-format
msgid "Sets or deletes primary key for currently selected field."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:310
#, kde-kuit-format
msgctxt "Table field"
msgid "Field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:343
#: plugins/tables/kexitabledesignerview.cpp:355
#, kde-kuit-format
msgid "Subtype"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:349
#, kde-kuit-format
msgctxt "Image object type"
msgid "Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:365
#, kde-kuit-format
msgid "Unsigned Number"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:368
#, kde-kuit-format
msgid "Max Length"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:375
#, kde-kuit-format
msgid "Precision"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:380
#, kde-kuit-format
msgid "Visible Decimal Places"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:382
#, kde-kuit-format
msgctxt "Auto Decimal Places"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:386
#, kde-kuit-format
msgid "Default Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:392
#, kde-kuit-format
msgid "Default Value"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:402
#, kde-kuit-format
msgid "Unique"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:405
#, kde-kuit-format
msgid "Required"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:408
#, kde-kuit-format
msgid ""
"Allow Zero\n"
"Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:411
#, kde-kuit-format
msgid "Autonumber"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:415
#, kde-kuit-format
msgid "Indexed"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:422
#, kde-kuit-format
msgid "Record Source"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:427
#, kde-kuit-format
msgctxt "Record source type (in two records)"
msgid ""
"Record Source\n"
"Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:431
#, kde-kuit-format
msgid "Bound Column"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:441
#, kde-kuit-format
msgid "Visible Column"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:558
#, kde-kuit-format
msgid ""
"Cannot switch to data view, because table design is empty.\n"
"First, please create your design."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:569
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Saving changes for existing table design is now required.</para>"
"%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:579
#, kde-kuit-format
msgctxt "@action:button"
msgid "Save Design and Delete Table Data"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:580
#, kde-kuit-format
msgctxt "@action:button"
msgid "Discard Design"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:643
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change <resource>%1</resource> field name to <resource>%2</resource> and caption from <resource>%3</resource> to <resource>%4</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:721
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change data type for field <resource>%1</resource> to <resource>%2</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:894
#, kde-kuit-format
msgid "<para>Setting autonumber requires primary key to be set for current field.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:896
#, kde-kuit-format
msgid "<para>Previous primary key will be deleted.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:897
#, kde-kuit-format
msgid "<para>Do you want to create primary key for current field? Click <interface>Cancel</interface> to cancel setting autonumber.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:901
#, kde-kuit-format
msgid "Setting Autonumber Field"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:902
#, kde-kuit-format
msgctxt "@action:button"
msgid "Create &Primary Key"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:909
#, kde-format
msgctxt "(qtundo-format)"
msgid "Set autonumber for field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:914
#, kde-format
msgctxt "(qtundo-format)"
msgid "Delete autonumber from field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:932
#, kde-format
msgctxt "(qtundo-format)"
msgid "Set <resource>%1</resource> property for field <resource>%2</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:973
#, kde-format
msgctxt "(qtundo-format)"
msgid "Change type for field <resource>%1</resource> to <resource>%2</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1013
#, kde-format
msgctxt "(qtundo-format)"
msgid "Set primary key for field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1037
#, kde-format
msgctxt "(qtundo-format)"
msgid "Unset primary key for field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1142
#, kde-kuit-format
msgid "You should enter field caption."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1159
#, kde-kuit-format
msgid ""
"You have added no fields.\n"
"Every table should have at least one field."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1175
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>You have added <resource>%1</resource> field name twice.</para>"
"<para>Field names cannot be repeated. Correct name of the field.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1189
#, kde-kuit-format
msgctxt "@info"
msgid ""
"Table <resource>%1</resource> has no primary key defined."
"<para><note>Although a primary key is not required, it is needed for creating relations between database tables. Do you want a primary key to be automatically added now?</note></para>"
"<para>If you want to add a primary key by hand, press <interface>Cancel</interface> to cancel saving table design.</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1208
#, kde-kuit-format
msgctxt "Identifier%1"
msgid "Id%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1429
#, kde-kuit-format
msgctxt "@info"
msgid "<para>You are about to change the design of table <resource>%1</resource> but following objects using this table are open:</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1627
#, kde-kuit-format
msgctxt "@info"
msgid "Table field <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview.cpp:1629
#, kde-kuit-format
msgctxt "Empty table row"
msgid "Empty Row"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitabledesignerview_p.cpp:227
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<para>Do you want to save the design now?</para>"
"%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:63
#, kde-kuit-format
msgctxt "Translate this word using only lowercase alphanumeric characters (a..z, 0..9). Use '_' character instead of spaces. First character should be a..z character. If you cannot use latin characters in your language, use english word."
msgid "table"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:64
#, kde-kuit-format
msgctxt "tooltip"
msgid "Create new table"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:65
#, kde-kuit-format
msgctxt "what's this"
msgid "Creates new table."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:137
#, kde-kuit-format
msgid "<para>You are about to delete table <resource>%1</resource> but it is used by following opened windows:</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:158
#, kde-kuit-format
msgid "<para>You are about to rename table <resource>%1</resource> but it is used by following opened windows:</para>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:239
#, kde-format
msgctxt "@info"
msgid "Design of table <resource>%1</resource> has been modified."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:242
#, kde-format
msgctxt "@info"
msgid "Table <resource>%1</resource> already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:246
#, kde-format
msgctxt "@info"
msgid "<warning>Any data in this table will be deleted upon design's saving!</warning>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:275
#, kde-kuit-format
msgid "Lookup column"
msgstr ""
#. +> trunk5 stable5
#: plugins/tables/kexitablepart.cpp:304
#, kde-kuit-format
msgctxt "@info"
msgid "Table <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:855
#, kde-kuit-format
msgctxt "Question"
msgid "Error: %1?"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:865
#, kde-kuit-format
msgid "The column's constraint is declared as NOT NULL (required)."
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:878
#, kde-kuit-format
msgid "The column's constraint is declared as NOT EMPTY (text should be filled)."
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:888
#, kde-kuit-format
msgid "The column's constraint is declared as NOT EMPTY and NOT NULL."
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1083
#, kde-kuit-format
msgid "Do you want to delete selected record?"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1084
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Delete Record"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1183
#, kde-kuit-format
msgid "Do you want to clear the contents of table %1?"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1184
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Clear Contents"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1586
#, kde-kuit-format
msgid "Record: %1"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1633
#, kde-kuit-format
msgctxt "@action:button Correct Changes"
msgid "Correct"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1635
#, kde-kuit-format
msgid "Correct changes"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1636
#, kde-kuit-format
msgctxt "@action:button"
msgid "Discard Changes"
msgstr ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataawareobjectiface.cpp:1950
#, kde-kuit-format
msgid ""
"Limit of %2 characters for <resource>%3</resource> field has been exceeded by %1 character.\n"
"Fix the text or it will be truncated upon saving changes."
msgid_plural ""
"Limit of %2 characters for <resource>%3</resource> field has been exceeded by %1 characters.\n"
"Fix the text or it will be truncated upon saving changes."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: widget/dataviewcommon/kexidataprovider.cpp:216
#, kde-kuit-format
msgid "NAME"
msgstr ""
#. +> trunk5 stable5
#: widget/fields/KexiFieldListModel.cpp:145
#, kde-kuit-format
msgid "Field Name"
msgstr ""
#. +> trunk5 stable5
#: widget/fields/KexiFieldListModelItem.cpp:64
#, kde-kuit-format
msgid "* (All Columns)"
msgstr ""
#. +> trunk5 stable5
#: widget/kexicharencodingcombobox.cpp:74
#, kde-kuit-format
msgctxt "Text encoding: Default"
msgid "Default: %1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: widget/KexiConnectionSelector.ui:50
#, kde-format
msgid ""
"<title>Select Existing Database Server's Connection From the List Below</title>"
"\n"
"<para>You will see existing Kexi projects available for the selected connection. Here you may also add, edit or delete connections from the list.</para>"
"\n"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: widget/KexiConnectionSelector.ui:104
#, kde-format
msgid "Server Information"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btn_add)
#. +> trunk5 stable5
#: widget/KexiConnectionSelector.ui:155
#, kde-format
msgid "&Add..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btn_edit)
#. +> trunk5 stable5
#: widget/KexiConnectionSelector.ui:168
#, kde-format
msgid "&Edit..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btn_remove)
#. +> trunk5 stable5
#: widget/KexiConnectionSelector.ui:181
#: widget/navigator/KexiProjectNavigator.cpp:172
#, kde-format, kde-kuit-format
msgid "&Delete..."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:62
#, kde-kuit-format
msgid "Add a new database connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:63
#, kde-kuit-format
msgid "Edit selected database connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:64
#, kde-kuit-format
msgid "Delete selected database connections"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:89
#, kde-kuit-format
msgid "File"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:93
#, kde-kuit-format
msgctxt "file (driver name)"
msgid "%1 (%2)"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:386
#, kde-kuit-format
msgctxt "@action:button Add Database Connection"
msgid "&Add"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:386
#, kde-kuit-format
msgid "Add database connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:387
#, kde-kuit-format
msgctxt "@title:window"
msgid "Add a New Database Connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:418
#, kde-kuit-format
msgctxt "@action:button Save Database Connection"
msgid "&Save"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:419
#, kde-kuit-format
msgid "Save changes made to this database connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:420
#, kde-kuit-format
msgctxt "@title:window"
msgid "Edit Database Connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiConnectionSelectorWidget.cpp:446
#, kde-kuit-format
msgctxt "@info"
msgid "Do you want to delete database connection <resource>%1</resource> from the list of available connections?"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDataSourceComboBox.cpp:125
#, kde-kuit-format
msgid "Define Query..."
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:90
#, kde-kuit-format
msgid "Load database list from the server"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:92
#, kde-kuit-format
msgid "Loads database list from the server, so you can select one using the <interface>Name</interface> combo box."
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:103
#, kde-kuit-format
msgctxt "@action:button"
msgid "Save Changes"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:104
#, kde-kuit-format
msgid "Save all changes made to this connection information"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:105
#, kde-kuit-format
msgid "Save all changes made to this connection information. You can later reuse this information."
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:116
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Test Connection"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:117
#, kde-kuit-format
msgid "Test database connection"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:118
#, kde-kuit-format
msgid "Tests database connection. You can check validity of connection information."
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:152
#, kde-kuit-format
msgid "Database Connection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, dbGroupBox)
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:160 widget/kexidbconnectionwidget.ui:168
#: widget/KexiProjectSelector.ui:85
#, kde-format, kde-kuit-format
msgid "Database"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:274
#, kde-kuit-format
msgid "Parameters"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:278
#, kde-kuit-format
msgid "Details"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:392
#, kde-kuit-format
msgctxt "@title:window"
msgid "Open Database"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:404
#, kde-kuit-format
msgctxt "@title:window"
msgid "Connect to a Database Server"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:444
#: widget/KexiProjectSelectorWidget.cpp:309
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Open"
msgstr ""
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.cpp:444
#: widget/KexiProjectSelectorWidget.cpp:310
#, kde-kuit-format
msgid "Open Database Connection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, authenticationGBox)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:90
#, kde-format
msgid "Authentication"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, userLbl)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:96
#, kde-format
msgid "&Username:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, passwordLbl)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:116
#, kde-format
msgid "&Password:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, chkSavePassword)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:137
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Saves password in a <span style=\" font-style:italic;\">.kexic</span> or <span style=\" font-style:italic;\">.kexis</span> connection shortcut file using a simple encryption similar to ROT-47. It does not guarantee security, but simply makes it difficult for anyone to read, so generally it is not safe to make such files publicly accessible.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSavePassword)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:140
#, kde-format
msgid "Save password"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, nameLabel)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:174
#, kde-format
msgid "&Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, titleLabel)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:193
#, kde-format
msgid "&Caption (optional):"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, locationBGrp)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:289
#, kde-format
msgid "Database Server"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblEngine)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:298
#, kde-format
msgid "&Engine:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, localhostRBtn)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:335
#, kde-format
msgid "Local server"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, remotehostRBtn)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:348
#, kde-format
msgid "Remote server"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, hostLbl)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:357
#, kde-format
msgid "&Hostname:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, portLbl)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:383
#, kde-format
msgid "Port:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPortDefault)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidget.ui:424
#, kde-format
msgctxt "port: default"
msgid "Default"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUseSocket)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidgetdetails.ui:34
#, kde-format
msgid "Use socket &file instead of TCP/IP port:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSocketDefault)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidgetdetails.ui:80
#, kde-format
msgctxt "socket: default"
msgid "Default"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: widget/kexidbconnectionwidgetdetails.ui:140
#, kde-format
msgid "&Description:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:58
#, kde-kuit-format
msgctxt "@title:window"
msgid "Opening Database"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:59
#, kde-kuit-format
msgctxt "@info"
msgid "Supply a password below."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:68
#, kde-kuit-format
msgid "&Details >>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, domainLabel)
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:81 widget/KexiPasswordWidget.ui:138
#, kde-format, kde-kuit-format
msgid "Database server:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:87
#, kde-kuit-format
msgctxt "unspecified user"
msgid "(unspecified)"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiDBPasswordDialog.cpp:94
#: widget/navigator/KexiProjectNavigator.cpp:160
#, kde-kuit-format
msgid "&Open"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: widget/KexiDBTitlePage.ui:22
#, kde-format
msgid "Project title: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_requester)
#. +> trunk5 stable5
#: widget/KexiDBTitlePage.ui:54
#, kde-format
msgid "Project filename:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileDialog.cpp:480
#, kde-format
msgid "All supported formats"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:216
#, kde-kuit-format
msgid "Computer"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:365
#, kde-kuit-format
msgid "Could not enter directory <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:432
#, kde-kuit-format
msgid "Go to parent directory"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:449
#, kde-kuit-format
msgid "Select directory"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:473 widget/KexiNameWidget.cpp:98
#, kde-kuit-format
msgid "Name:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileRequester.cpp:488
#, kde-kuit-format
msgid "Filter:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileWidgetInterface.cpp:215 widget/KexiStartupFileHandler.cpp:375
#, kde-kuit-format
msgid "Enter a filename."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileWidgetInterface.cpp:251 widget/KexiStartupFileHandler.cpp:420
#, kde-kuit-format
msgctxt "@info"
msgid "The file <filename>%1</filename> does not exist."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileWidgetInterface.cpp:256 widget/KexiStartupFileHandler.cpp:426
#, kde-kuit-format
msgctxt "@info"
msgid "Enter a filename."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiFileWidgetInterface.cpp:261 widget/KexiStartupFileHandler.cpp:430
#, kde-kuit-format
msgctxt "@info"
msgid "The file <filename>%1</filename> is not readable."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameDialog.cpp:180
#, kde-kuit-format
msgid "Do you want to replace it?"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameDialog.cpp:183
#, kde-kuit-format
msgid "Replace object"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameDialog.cpp:186
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Choose Other Name..."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameWidget.cpp:93
#, kde-kuit-format
msgid "Caption:"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameWidget.cpp:125
#, kde-kuit-format
msgid "Please enter the name."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiNameWidget.cpp:126
#, kde-kuit-format
msgid "Please enter the caption."
msgstr ""
#. +> trunk5 stable5
#: widget/KexiObjectInfoLabel.cpp:110
#, kde-kuit-format
msgctxt "Object class \"objectName\", e.g. Text editor \"text\""
msgid "%1 <resource>%2</resource>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, prompt)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:49
#, kde-format
msgid "Supply a password below."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, userNameLabel)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:87
#, kde-format
msgid "Username:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, anonymousLabel)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:104
#, kde-format
msgid "Anonymous:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, nameLabel)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:121
#, kde-format
msgid "Database name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, passwordLabel)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:155
#, kde-format
msgid "Password:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, keepCheckBoxLabel)
#. +> trunk5 stable5
#: widget/KexiPasswordWidget.ui:185
#, kde-format
msgid "Remember password:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, option_file)
#. +> trunk5 stable5
#: widget/kexiprjtypeselector.ui:51
#, kde-format
msgid "Projects stored in a file"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, option_server)
#. +> trunk5 stable5
#: widget/kexiprjtypeselector.ui:86
#, kde-format
msgid "Projects stored on a database server"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: widget/KexiProjectSelector.ui:33
#, kde-format
msgid "<b>There are Kexi projects you have recently opened.</b> Select one you wish to open:\n"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: widget/KexiProjectSelector.ui:74
#, kde-format
msgid "Project Name"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: widget/KexiProjectSelector.ui:107
#, kde-format
msgid "Connection"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiProjectSelectorWidget.cpp:94
#, kde-kuit-format
msgid "File (%1)"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiProjectSelectorWidget.cpp:103
#, kde-kuit-format
msgctxt "caption: server_info"
msgid "%1: %2"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiProjectSelectorWidget.cpp:314
#, kde-kuit-format
msgid "Select a project on <resource>%1</resource> database server to open:"
msgstr ""
#. +> trunk5 stable5
#: widget/kexiqueryparameters.cpp:42
#, kde-kuit-format
msgctxt "@title:window Enter Query Parameter Value"
msgid "Enter Parameter Value"
msgstr ""
#. +> trunk5 stable5
#: widget/kexiqueryparameters.cpp:62
#, kde-kuit-format
msgctxt "Boolean False - No"
msgid "No"
msgstr ""
#. +> trunk5 stable5
#: widget/kexiqueryparameters.cpp:62
#, kde-kuit-format
msgctxt "Boolean True - Yes"
msgid "Yes"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiServerDriverNotFoundMessage.cpp:27
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<title>No database server drivers found</title>"
"<para>Connection to a database server requires an appropriate driver which you do not have installed.</para>"
"<subtitle>Details</subtitle>"
"<para>To obtain database drivers please use your Package Manager to search and install packages with so-called <emphasis>KDb drivers</emphasis> named <filename>kdb-****-driver</filename>. Please note that your package names could vary slightly depending on the operating system you use.</para>"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiStartupFileHandler.cpp:475
#, kde-kuit-format
msgid "This file already exists. Do you want to overwrite it?"
msgstr ""
#. +> trunk5 stable5
#: widget/KexiStartupFileHandler.cpp:476
#, kde-kuit-format
msgid "Overwrite"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:119
#, kde-kuit-format
msgctxt "@title:window"
msgid "Project Navigator"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:161
#, kde-kuit-format
msgid "Open object"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:161
#, kde-kuit-format
msgid "Opens object selected in the list."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:173
#, kde-kuit-format
msgid "Delete object"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:174
#, kde-kuit-format
msgid "Deletes the object selected in the list."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:177
#, kde-kuit-format
msgid "&Rename..."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:178
#, kde-kuit-format
msgid "Rename object"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:179
#, kde-kuit-format
msgid "Renames the object selected in the list."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:188
#, kde-kuit-format
msgid "&Design"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:189
#, kde-kuit-format
msgid "Design object"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:190
#, kde-kuit-format
msgid "Starts designing of the object selected in the list."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:193
#, kde-kuit-format
msgid "Design in &Text View"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:194
#, kde-kuit-format
msgid "Design object in text view"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:195
#, kde-kuit-format
msgid "Starts designing of the object in the list in text view."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:209
#, kde-kuit-format
msgctxt "Export->To Clipboard as Data... "
msgid "To &Clipboard..."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:210
#, kde-kuit-format
msgid "Export data to clipboard"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:211
#, kde-kuit-format
msgid "Exports data from the currently selected table or query to clipboard."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:216
#, kde-kuit-format
msgctxt "Export->To File As Data &Table... "
msgid "To &File As Data Table..."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:217
#, kde-kuit-format
msgid "Export data to a file"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:218
#, kde-kuit-format
msgid "Exports data from the currently selected table or query to a file."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:371
#, kde-kuit-format
msgid "&Create Object: %1..."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:377
#, kde-kuit-format
msgid "&Create Object..."
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:471
#, kde-kuit-format
msgctxt "@info Rename object %1:"
msgid "Rename <resource>%1</resource>:"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:473
#, kde-kuit-format
msgctxt "@action:button Rename object"
msgid "Rename"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:483
#, kde-kuit-format
msgctxt "@title:window Rename Object %1."
msgid "Rename <resource>%1</resource>"
msgstr ""
#. +> trunk5 stable5
#: widget/navigator/KexiProjectNavigator.cpp:639
#, kde-kuit-format
msgctxt "@info Message for empty state in project navigator"
msgid ""
"<nl/>"
"<nl/>"
"<img src=\"%1\" width=\"48\"/><nl/>"
"Your project is empty...<nl/>"
"Why not <b>create</b> something?"
msgstr ""
#. +> trunk5 stable5
#: widget/properties/KexiPropertyEditorView.cpp:46
#, kde-kuit-format
msgctxt "@title:window"
msgid "Properties"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsScrollArea.cpp:120
#, kde-kuit-format
msgid "&Hide Selected Table/Query"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsScrollArea.cpp:122
#, kde-kuit-format
msgid "&Delete Selected Relationship"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsScrollArea.cpp:124
#, kde-kuit-format
msgid "&Open Selected Table/Query"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:85
#, kde-kuit-format
msgid "Table:"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:91
#, kde-kuit-format
msgctxt "Insert table/query into relations view"
msgid "&Insert"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:107
#, kde-kuit-format
msgid "&Hide Table"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:119
#, kde-kuit-format
msgid "&Append Field"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:124
#, kde-kuit-format
msgid "&Append Fields"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:129
#, kde-kuit-format
msgid "&Open Table"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:134
#, kde-kuit-format
msgid "&Design Table"
msgstr ""
#. +> trunk5 stable5
#: widget/relations/KexiRelationsView.cpp:389
#, kde-kuit-format
msgid "Relationship"
msgstr ""
#. +> trunk5 stable5
#: widget/tableview/kexiblobtableedit.cpp:83
#, kde-kuit-format
msgid "Click to show available actions for this cell"
msgstr ""
#. +> trunk5 stable5
#: widget/tableview/KexiTableScrollArea.cpp:2438
#, kde-kuit-format
msgctxt "@info:whatsthis"
msgid "Contains a pointer to the currently selected record."
msgstr ""
#. +> trunk5 stable5
#: widget/tableview/KexiTableScrollArea.cpp:2441
#, kde-kuit-format
msgctxt "@info:whatsthis"
msgid "Record navigator."
msgstr ""
#. +> trunk5 stable5
#: widget/tableview/KexiTableScrollArea.cpp:2448
#, kde-kuit-format
msgctxt "@info:whatsthis"
msgid "Column <resource>%1</resource>."
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2group.cpp:358 widget/undo/kundo2stack.cpp:1079
#, kde-format
msgctxt "Default text for undo action"
msgid "Undo"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2group.cpp:358 widget/undo/kundo2stack.cpp:1079
#, kde-format
msgid "Undo %1"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2group.cpp:385 widget/undo/kundo2stack.cpp:1105
#, kde-format
msgctxt "Default text for redo action"
msgid "Redo"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2group.cpp:385 widget/undo/kundo2stack.cpp:1105
#, kde-format
msgid "Redo %1"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2model.cpp:67
#, kde-format
msgid "<empty>"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2stack.cpp:1347
#, kde-format
msgid "Redo"
msgstr ""
#. +> trunk5 stable5
#: widget/undo/kundo2stack.cpp:1366
#, kde-format
msgid "Undo"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:61
#, kde-kuit-format
msgid "Insert From &File..."
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:76
#, kde-kuit-format
msgid "&Clear"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:104
#, kde-kuit-format
msgctxt "@title"
msgid "Insert Image From File"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:148
#, kde-kuit-format
msgctxt "@title"
msgid "Save Image to File"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:159
#, kde-kuit-format
msgid ""
"<para>File <filename>%1</filename> already exists.</para>"
"<para>Do you want to replace it with a new one?</para>"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:162
#, kde-kuit-format
msgid "&Don't Replace"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:162
#, kde-kuit-format
msgctxt "@action:button"
msgid "&Replace"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexicontextmenuutils.cpp:246
#, kde-kuit-format
msgctxt "Object name : Object type"
msgid "%1 : %2"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexidisplayutils.cpp:61
#, kde-kuit-format
msgctxt "Autonumber, make it as short as possible"
msgid "(auto)"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:170
#, kde-kuit-format
msgid "Record:"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:201
#, kde-kuit-format
msgid "Current record number"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:203
#, kde-kuit-format
msgctxt "\"of\" in record number information: N of M"
msgid "of"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:227
#, kde-kuit-format
msgid "Number of records"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:598
#, kde-kuit-format
msgid "Editing indicator"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:625
#, kde-kuit-format
msgid "First record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:625
#, kde-kuit-format
msgid "Go to first record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:626
#, kde-kuit-format
msgid "Go to previous record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:626
#, kde-kuit-format
msgid "Previous record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:627
#, kde-kuit-format
msgid "Go to next record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:627
#, kde-kuit-format
msgid "Next record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:628
#, kde-kuit-format
msgid "Go to last record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:628
#, kde-kuit-format
msgid "Last record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:629
#, kde-kuit-format
msgid "Go to new record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:629
#, kde-kuit-format
msgid "New record"
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:630
#, kde-kuit-format
msgid "Moves cursor to first record."
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:631
#, kde-kuit-format
msgid "Moves cursor to previous record."
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:632
#, kde-kuit-format
msgid "Moves cursor to next record."
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:633
#, kde-kuit-format
msgid "Moves cursor to last record."
msgstr ""
#. +> trunk5 stable5
#: widget/utils/kexirecordnavigator.cpp:634
#, kde-kuit-format
msgid "Moves cursor to new record and allows inserting."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-base/latte-dock.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-base/latte-dock.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-base/latte-dock.pot (revision 1509808)
@@ -1,2013 +1,2013 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:40+0100\n"
+"POT-Creation-Date: 2018-02-02 13:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:63
#, kde-format
msgid "Layout"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:119
#, kde-format
msgctxt "opens the layout manager window"
msgid "Configure..."
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:136
#, kde-format
msgid "Applets"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:133
#, kde-format
msgid "Applets Size"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:147
#, kde-format
msgid "Size:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:195
#, kde-format
msgid "Zoom On Hover:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:203
#, kde-format
msgid "Zoom Factor"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:246
#, kde-format
msgid "Screen Height Proportion:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:300
#, kde-format
msgid "Applets Distance:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:336
#, kde-format
msgid "Background"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:346
#, kde-format
msgctxt "show panel"
msgid "Show"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:362
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1041
#, kde-format
msgid "Size: "
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:409
#: ../shell/package/contents/configuration/AppearanceConfig.qml:764
#: ../shell/package/contents/configuration/AppearanceConfig.qml:992
#, kde-format
msgid "Opacity: "
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:467
#, kde-format
msgid "Shadows"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:480
#, kde-format
msgid "Solid"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:499
#, kde-format
msgid "Animations"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:520
#, kde-format
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:529
#, kde-format
msgid "x1"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:538
#, kde-format
msgid "x2"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:547
#, kde-format
msgid "x3"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:564
#, kde-format
msgid "Active Indicator"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:595
#, kde-format
msgid "Style:"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:603
#, kde-format
msgctxt "line indicator"
msgid "Line"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:607
#, kde-format
msgid "Show a line indicator for active tasks/applets"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:615
#, kde-format
msgctxt "dot indicator"
msgid "Dot"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:619
#, kde-format
msgid "Show a dot indicator for active tasks/applets"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:631
#, kde-format
msgctxt "reverse the position of the active indicator e.g. from bottom to top"
msgid "Reverse"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:634
#, kde-format
msgid "Reverse the position of the active indicator e.g. from bottom to top"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:642
#, kde-format
msgid "Applets:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:650
#, kde-format
msgctxt "active indicator to no applets"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:655
#, kde-format
msgid ""
"Latte will not show any active applet indicator on its own\n"
" except those the plasma theme provides"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:662
#, kde-format
msgctxt "active indicator only to in-house latte applets"
msgid "Internals"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:667
#, kde-format
msgid ""
"Latte will show active applet indicators only for applets that have been adjusted\n"
" by it for hovering capabilities e.g. folderview"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:676
#, kde-format
msgctxt "active indicator to all applets"
msgid "All"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:681
#, kde-format
msgid "Latte will show active applet indicators for all applets"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:696
#, kde-format
msgid "Glow"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:712
#, kde-format
msgctxt "show glow"
msgid "Show"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:739
#, kde-format
msgctxt "add glow only to active task/applet indicators"
msgid "Only On Active"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:744
#, kde-format
msgid "Add glow only to active task/applet indicator"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:750
#, kde-format
msgctxt "Add glow to all task/applet indicators"
msgid "All"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:755
#, kde-format
msgid "Add glow to all task/applet indicators"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:813
#, kde-format
msgid "3D"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:816
#, kde-format
msgid "Use a 3D style glow"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:835
#, kde-format
msgid "Applet shadows"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:847
#, kde-format
msgctxt "show applet shadow"
msgid "Show"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:873
#, kde-format
msgctxt "Use theme shadow"
msgid "Theme"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:874
#, kde-format
msgctxt "Clear applet shadow settings"
msgid "Clear"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:956
#, kde-format
msgid "Please choose shadow color"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1092
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1110
#, kde-format
msgid "Length"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1102
#, kde-format
msgid "Maximum: "
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1177
#, kde-format
msgid "Offset: "
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/AppearanceConfig.qml:1185
#, kde-format
msgid "Offset"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:58
#, kde-format
msgid "Type"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:75
#, kde-format
msgid "Location"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:95
#, kde-format
msgid "On Primary"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:130
#, kde-format
msgid "Screen:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:222
#, kde-format
msgctxt "bottom location"
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:233
#, kde-format
msgctxt "left location"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:244
#, kde-format
msgctxt "top location"
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:255
#, kde-format
msgctxt "right location"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:275
#, kde-format
msgid "Alignment"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:311
#, kde-format
msgctxt "top alignment"
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:311
#, kde-format
msgctxt "left alignment"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:321
#, kde-format
msgctxt "center alignment"
msgid "Center"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:331
#, kde-format
msgctxt "bottom alignment"
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:331
#, kde-format
msgctxt "right alignment"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:342
#, kde-format
msgctxt "justify alignment"
msgid "Justify"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:361
#, kde-format
msgid "Visibility"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:385
#, kde-format
msgid "Always Visible"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:394
#, kde-format
msgid "Auto Hide"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:403
#, kde-format
msgid "Dodge Active"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:412
#, kde-format
msgid "Dodge Maximized"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:421
#, kde-format
msgid "Dodge All Windows"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:430
#, kde-format
msgid "Windows Go Below"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:452
#, kde-format
msgid "Delay"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:466
#, kde-format
msgid "Show:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/BehaviorConfig.qml:481
#, kde-format
msgid "Hide:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/config.qml:27
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:243
#, kde-format
msgid "Advanced"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, behaviorLbl)
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:291
#: ../shell/package/contents/configuration/TweaksConfig.qml:143
#: latteconfigdialog.ui:451
#, kde-format
msgid "Behavior"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:296
#: ../shell/package/contents/configuration/TasksConfig.qml:52
#: ../shell/package/contents/configuration/TweaksConfig.qml:51
#, kde-format
msgid "Appearance"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:301
#, kde-format
msgid "Tasks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:308
#, kde-format
msgid "Tweaks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:395
#, kde-format
msgid "Copy Dock"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:406
#, kde-format
msgid "Move to:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:454
#, kde-format
msgid "New Dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:456
#, kde-format
msgid "Add a new dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:472
#, kde-format
msgid "Remove"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:475
#, kde-format
msgid "Remove current dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:486
#, kde-format
msgid "Quit"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteDockConfiguration.qml:488
#, kde-format
msgid "Quit Latte"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteTextField.qml:42
#, kde-format
msgid "none"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/LatteTextField.qml:76
#, kde-format
msgid "ms."
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:57
#, kde-format
msgid "Show glow around windows points"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:58
#, kde-format
msgid "Different color for minimized windows"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:69
#, kde-format
msgid "Indicator for active window group"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TasksConfig.qml:71
#, kde-format
msgid ""
"Grouped windows show both a line and a dot when \n"
"one of them is active and the Line Active Indicator \n"
"is enabled"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:79
#, kde-format
msgid "Reverse position for lines and dots"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:92
#, kde-format
msgid ""
"Grouped windows show both a line and a dot when \n"
"one of them is active"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:88
#, kde-format
msgid "Interaction"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:94
#, kde-format
msgid "Preview windows on hovering"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:105
#, kde-format
msgid "Highlight windows on hovering"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:117
#, kde-format
msgid "Show progress information for tasks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:119
#, kde-format
msgid ""
"Show a beautiful progress animation e.g. when copying \n"
"files with Dolphin"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:129
#, kde-format
msgid "Show window actions in the context menu"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:141
#, kde-format
msgid "Show indicator for audio streams"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:143
#, kde-format
msgid "Audio indicator from which the user can mute/unmute an app"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:154
#, kde-format
msgid "Activate tasks through mouse wheel"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:156
#, kde-format
msgid "Enable/Disable the mouse wheel actions in order to cycle through tasks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:169
#, kde-format
msgid "On middle-click:"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:176
#: ../shell/package/contents/configuration/TasksConfig.qml:218
#, kde-format
msgctxt "The click action"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:176
#: ../shell/package/contents/configuration/TasksConfig.qml:218
#, kde-format
msgid "Close Window or Group"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:177
#: ../shell/package/contents/configuration/TasksConfig.qml:219
#, kde-format
msgid "New Instance"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:177
#: ../shell/package/contents/configuration/TasksConfig.qml:219
#, kde-format
msgid "Minimize/Restore Window or Group"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:177
#: ../shell/package/contents/configuration/TasksConfig.qml:219
#, kde-format
msgid "Cycle Through Tasks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:177
#: ../shell/package/contents/configuration/TasksConfig.qml:219
#, kde-format
msgid "Toggle Task Grouping"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:205
#, kde-format
msgid "Left Click"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:205
#, kde-format
msgid "Middle Click"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:205
#, kde-format
msgid "Right Click"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:234
#, kde-format
msgid "Launchers Group"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:257
#, kde-format
msgctxt "unique launchers group"
msgid "Unique"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TasksConfig.qml:261
#, kde-format
msgid "Use a unique set of launchers for this dock which is independent from any other dock"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:281
#, kde-format
msgid "Use a unique set of launchers for this dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:268
#, kde-format
msgctxt "layout launchers group"
msgid "Layout"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TasksConfig.qml:272
#, kde-format
msgid "Use the current layout set of launchers for this dock. This group provides launchers <b>synchronization</b> between different docks in the <b>same layout</b>"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:280
#, kde-format
msgctxt "global launchers group"
msgid "Global"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TasksConfig.qml:284
#, kde-format
msgid "Use the global set of launchers for this dock. This group provides launchers <b>synchronization</b> between different docks and between <b>different layouts</b>"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:292
#, kde-format
msgid "Use the current layout set of launchers for this dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:298
#, kde-format
msgid "Filters"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:304
#, kde-format
msgid "Show only tasks from the current screen"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:304
#, kde-format
msgid "Use the global set of launchers for this dock"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:315
#, kde-format
msgid "Show only tasks from the current desktop"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TasksConfig.qml:326
#, kde-format
msgid "Show only tasks from the current activity"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:57
#, kde-format
msgid "Blur for panel background"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:68
#, kde-format
msgid "Show applets/task title tooltips on hovering"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:79
#, kde-format
msgid "Shrink thickness margins to minimum"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TweaksConfig.qml:95
#, kde-format
msgid "Dynamic Background"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TweaksConfig.qml:102
#, kde-format
msgid "Force solid background for maximized or snapped windows"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TweaksConfig.qml:104
#, kde-format
msgid ""
"The panel background removes its transparency setting \n"
" when there is a maximized or snapped window"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TweaksConfig.qml:115
#, kde-format
msgid "Hide background for not maximized windows"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:90
#, kde-format
msgid "Show background only for maximized windows"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TweaksConfig.qml:117
#, kde-format
msgid ""
"The panel background becomes transparent except if \n"
"there is a maximized or snapped window"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:92
#, kde-format
msgid ""
"The panel background becomes transparent but is shown \n"
"when there is a maximized window"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:127
#, kde-format
msgid "Hide panel shadow for maximized windows"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:148
#, kde-format
msgid "Decrease applets size when it is needed"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:150
#, kde-format
msgid ""
"Applets size is decreased automatically when the contents \n"
"exceed the maximum length \n"
"\n"
"Hint: this option is disabled when only plasma taskmanagers are present"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:160
#, kde-format
msgid "Add launchers only in the corresponding area"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:162
#, kde-format
msgid "Launchers are added only in the taskmanager and not as plasma applets"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:171
#, kde-format
msgid "Behave as a normal dock window"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:174
#, kde-format
msgid "Show info for layouts automatic switching"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:176
#, kde-format
msgid ""
"Remove the BypassWindowManagerHint flag from the window.\n"
"The dock wont be above windows which are set at 'Always On Top'"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:176
#, kde-format
msgid "It shows a Latte specific info window"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:185
#, kde-format
msgid "Raise dock on desktop change"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:196
#, kde-format
msgid "Raise dock on activity change"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:214
#, kde-format
msgid "Extra Actions"
msgstr ""
#. +> stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:214
#, kde-format
msgid "Active Applet Indicator"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:224
#, kde-format
msgid "Add Spacer"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:227
#, kde-format
msgid "Add a spacer to separate applets"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:236
#, kde-format
msgid "Remove Tasks"
msgstr ""
#. +> trunk5 stable5
#: ../shell/package/contents/configuration/TweaksConfig.qml:238
#, kde-format
msgid "Remove Latte plasmoid"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TypeSelection.qml:71
#, kde-format
msgctxt "dock type"
msgid "Dock"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TypeSelection.qml:73
#, kde-format
msgid "Change the behavior and appearance to Dock type"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TypeSelection.qml:94
#, kde-format
msgctxt "panel type"
msgid "Panel"
msgstr ""
#. +> trunk5
#: ../shell/package/contents/configuration/TypeSelection.qml:96
#, kde-format
msgid "Change the behavior and appearance to Panel type"
msgstr ""
#. +> trunk5
#: dockview.cpp:114
#, kde-format
msgctxt "dock/panel settings window"
msgid "Dock/Panel Settings"
msgstr ""
#. +> trunk5 stable5
-#: dockview.cpp:2119
+#: dockview.cpp:2118
#, kde-format
msgctxt "%1 is the name of the containment"
msgid "%1 Options"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, layoutsTab)
#. +> trunk5 stable5
-#: dockview.cpp:2226 latteconfigdialog.ui:24
+#: dockview.cpp:2225 latteconfigdialog.ui:24
#, kde-format
msgid "Layouts"
msgstr ""
#. +> trunk5 stable5
-#: dockview.cpp:2227
+#: dockview.cpp:2226
#, kde-format
msgid "Switch to another layout"
msgstr ""
#. +> trunk5
-#: dockview.cpp:2235
+#: dockview.cpp:2234
#, kde-format
msgctxt "current layout"
msgid "(Current)"
msgstr ""
#. +> trunk5 stable5
-#: dockview.cpp:2257
+#: dockview.cpp:2256
#, kde-format
msgid "Configure..."
msgstr ""
#. +> trunk5
#: globalshortcuts.cpp:174
#, kde-format
msgid "Show Dock"
msgstr ""
#. +> stable5
#: globalshortcuts.cpp:201
#, kde-format
msgid "Show Latte Dock"
msgstr ""
#. +> trunk5
#: globalshortcuts.cpp:183
#, kde-format
msgid "Show Dock Settings"
msgstr ""
#. +> trunk5
#: globalshortcuts.cpp:191
#, kde-format
msgid "Show Layout Settings"
msgstr ""
#. +> trunk5
#: globalshortcuts.cpp:200
#, kde-format
msgid "Show Latte Settings"
msgstr ""
#. +> trunk5 stable5
#: globalshortcuts.cpp:215 globalshortcuts.cpp:230
#, kde-format
msgid "Activate Task Manager Entry %1"
msgstr ""
#. +> trunk5 stable5
#: globalshortcuts.cpp:244 globalshortcuts.cpp:255
#, kde-format
msgid "New Instance for Task Manager Entry %1"
msgstr ""
#. +> trunk5 stable5
#: importer.cpp:60 importer.cpp:77 layoutmanager.cpp:97 layoutmanager.cpp:99
#, kde-format
msgid "My Layout"
msgstr ""
#. +> trunk5 stable5
#: importer.cpp:61 layoutmanager.cpp:638 layoutmanager.cpp:639
#, kde-format
msgid "Alternative"
msgstr ""
#. +> trunk5 stable5
#: importer.cpp:267
#, kde-format
msgctxt "import/export config"
msgid "The extracted file could not be copied!!!"
msgstr ""
#. +> trunk5 stable5
#: importer.cpp:272
#, kde-format
msgctxt "import/export config"
msgid "The file has a wrong format!!!"
msgstr ""
#. +> trunk5 stable5
#: importer.cpp:278
#, kde-format
msgctxt "import/export config"
msgid "The temp directory could not be created!!!"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:106
#, kde-format
msgctxt "new button"
msgid "New"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:107
#, kde-format
msgctxt "copy button"
msgid "Copy"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:108
#, kde-format
msgctxt "remove button"
msgid "Remove"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:109
#, kde-format
msgctxt "switch button"
msgid "Switch"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:110
#, kde-format
msgctxt "import button"
msgid "Import"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:111
#, kde-format
msgctxt "export button"
msgid "Export"
msgstr ""
#. +> trunk5
#: latteconfigdialog.cpp:121
#, kde-format
msgid "Help"
msgstr ""
#. +> trunk5
#: latteconfigdialog.cpp:124
#, kde-format
msgid "About Latte"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:334
#, kde-format
msgctxt "import layout/configuration"
msgid "Import Layout/Configuration"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:343
#, kde-format
msgctxt "import latte layout"
msgid "Latte Dock Layout file v0.2"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:344
#, kde-format
msgctxt "import latte layouts/configuration"
msgid "Latte Dock Full Configuration file (v0.1, v0.2)"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:360
#, kde-format
msgid "Import: Configuration file version v0.1"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:362
#, kde-format
msgid ""
"You are going to import an old version <b>v0.1</b> configuration file.<br>"
"<b>Be careful</b>, importing the entire configuration <b>will erase all</b> your current configuration!!!<br>"
"<br>"
" <i>Alternative, you can <b>import safely</b> from this file<br>"
"<b>only the contained layouts...</b></i>"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:367
#, kde-format
msgctxt "import full configuration"
msgid "Full Configuration"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:369
#, kde-format
msgctxt "import only the layouts"
msgid "Only Layouts"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:395
#, kde-format
msgid "Import: Configuration file version v0.2"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:397
#, kde-format
msgid ""
"You are going to import a <b>v0.2</b> configuration file.<br>"
"<b>Be careful</b>, importing <b>will erase all</b> your current configuration!!!<br>"
"<br>"
"<i>Would you like to proceed?</i>"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:442
#, kde-format
msgctxt "layout"
msgid "Alternative"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:472
#, kde-format
msgctxt "export layout/configuration"
msgid "Export Layout/Configuration"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:480
#, kde-format
msgctxt "export layout"
msgid "Latte Dock Layout file v0.2"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:481
#, kde-format
msgctxt "export full configuraion"
msgid "Latte Dock Full Configuration file v0.2"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:495
#, kde-format
msgctxt "export layout"
msgid "Failed to export layout"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:516
#, kde-format
msgctxt "export layout"
msgid "Open location"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:517
#, kde-format
msgctxt "export layout"
msgid "Layout exported successfully"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:528
#, kde-format
msgctxt "import/export config"
msgid "Failed to export configuration"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:535
#, kde-format
msgctxt "import/export config"
msgid "Open location"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:536
#, kde-format
msgctxt "import/export config"
msgid "Full Configuration exported successfully"
msgstr ""
#. +> trunk5
#: latteconfigdialog.cpp:638
#, kde-format
msgctxt "import-done"
msgid "Layout: <b>%0</b> imported successfully<br>"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:517
#, kde-format
msgctxt "import-done"
msgid "Layout: <b>%0</b> imported successfully\n"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:683
#, kde-format
msgid "Color"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:684
#, kde-format
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:685
#, kde-format
msgid "In Menu"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:686
#, kde-format
msgid "Activities"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:720 latteconfigdialog.cpp:995
#, kde-format
msgid "Layout Warning"
msgstr ""
#. +> stable5
#: layoutconfigdialog.cpp:62
#, kde-format
msgid "Layouts Editor"
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:721
#, kde-format
msgid "The layout(s) <b>%0</b> have <i>broken configuration</i>!!! Please <b>remove them</b> to improve the system stability..."
msgstr ""
#. +> trunk5 stable5
#: latteconfigdialog.cpp:996
#, kde-format
msgid "There are layouts with the same name, that is not permitted!!! Please update these names to re-apply the changes..."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, LatteConfigDialog)
#. +> trunk5
#: latteconfigdialog.ui:14
#, kde-format
msgctxt "latte settings window"
msgid "Settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, singleToolBtn)
#. +> trunk5
#: latteconfigdialog.ui:53
#, kde-format
msgid "Only one layout can be present in memory at all cases"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, singleToolBtn)
#. +> trunk5
#: latteconfigdialog.ui:56
#, kde-format
msgctxt "single layout"
msgid "Single"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, multipleToolBtn)
#. +> trunk5
#: latteconfigdialog.ui:66
#, kde-format
msgid "Multiple layouts can be present in memory"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, multipleToolBtn)
#. +> trunk5
#: latteconfigdialog.ui:69
#, kde-format
msgctxt "multiple layouts"
msgid "Multiple"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, switchButton)
#. +> trunk5
#: latteconfigdialog.ui:121
#, kde-format
msgid "Switch to selected layout"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, switchButton)
#. +> trunk5
#: latteconfigdialog.ui:124
#, kde-format
msgctxt "switch to layout"
msgid "Switch"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, pauseButton)
#. +> trunk5
#: latteconfigdialog.ui:135
#, kde-format
msgid "Pause all activities from the selected layout"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pauseButton)
#. +> trunk5
#: latteconfigdialog.ui:138
#, kde-format
msgid "Pause"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, newButton)
#. +> trunk5
#: latteconfigdialog.ui:193
#, kde-format
msgid "New layout"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, newButton)
#. +> trunk5
#: latteconfigdialog.ui:196
#, kde-format
msgctxt "new layout"
msgid "New"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, copyButton)
#. +> trunk5
#: latteconfigdialog.ui:207
#, kde-format
msgid "Copy layout"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, copyButton)
#. +> trunk5
#: latteconfigdialog.ui:210
#, kde-format
msgctxt "copy layout"
msgid "Copy"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, removeButton)
#. +> trunk5
#: latteconfigdialog.ui:224
#, kde-format
msgid "Remove layout"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#. +> trunk5
#: latteconfigdialog.ui:227
#, kde-format
msgctxt "remove layout"
msgid "Remove"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, importButton)
#. +> trunk5
#: latteconfigdialog.ui:298
#, kde-format
msgid "Import layout or full configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, importButton)
#. +> trunk5
#: latteconfigdialog.ui:301
#, kde-format
msgctxt "import layout"
msgid "Import"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, exportButton)
#. +> trunk5
#: latteconfigdialog.ui:315
#, kde-format
msgid "Export layout or full configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, exportButton)
#. +> trunk5
#: latteconfigdialog.ui:318
#, kde-format
msgctxt "export layout"
msgid "Export"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, downloadButton)
#. +> trunk5
#: latteconfigdialog.ui:329
#, kde-format
msgid "Download online layouts"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, downloadButton)
#. +> trunk5
#: latteconfigdialog.ui:332
#, kde-format
msgctxt "download layout"
msgid "Download"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, preferencesTab)
#. +> trunk5
#: latteconfigdialog.ui:370
#, kde-format
msgid "Preferences"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autostartChkBox)
#. +> trunk5 stable5
#: latteconfigdialog.ui:479
#, kde-format
msgid "Enable autostart during startup"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, infoWindowChkBox)
#. +> trunk5
#: latteconfigdialog.ui:509
#, kde-format
msgid "Show informative window for layouts automatic switching"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, mouseSensetivityLbl)
#. +> trunk5
#: latteconfigdialog.ui:540
#, kde-format
msgid "Mouse Sensitivity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, parabolicEffectLbl)
#. +> trunk5
#: latteconfigdialog.ui:571
#, kde-format
msgid "Parabolic Effect"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, lowSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:602
#, kde-format
msgid "Low sensitivity for parabolic effect (low cpu usage and performance)"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, lowSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:605
#, kde-format
msgctxt "low sensitivity"
msgid "Low"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, mediumSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:621
#, kde-format
msgid "Medium sensitivity for parabolic effect (normal cpu usage and performance)"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, mediumSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:624
#, kde-format
msgctxt "medium sensitivity"
msgid "Medium"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, highSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:640
#, kde-format
msgid "High sensitivity for parabolic effect (high cpu usage and performance)"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, highSensitivityBtn)
#. +> trunk5
#: latteconfigdialog.ui:643
#, kde-format
msgctxt "high sensitivity"
msgid "High"
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:51
#, kde-format
msgid "Add Widgets..."
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:52
#, kde-format
msgid "Show Plasma Widget Explorer"
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:480
#, kde-format
msgid "Switching to layout <b>%0</b> ..."
msgstr ""
#. +> trunk5
#: layoutmanager.cpp:540
#, kde-format
msgid "Multiple Layouts Warning"
msgstr ""
#. +> trunk5
#: layoutmanager.cpp:541
#, kde-format
msgid "Latte did not close properly in the previous session. The following layout(s) <b>[%0]</b> were updated for consistency!!!"
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:639 layoutmanager.cpp:937 layoutmanager.cpp:1113
#, kde-format
msgid "Default"
msgstr ""
#. +> trunk5
#: layoutmanager.cpp:852
#, kde-format
msgid "Adding layout: <b>%0</b> ..."
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:1114
#, kde-format
msgid "Plasma"
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:1115
#, kde-format
msgid "Unity"
msgstr ""
#. +> trunk5 stable5
#: layoutmanager.cpp:1116
#, kde-format
msgid "Extended"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:83
#, kde-format
msgctxt "command line"
msgid "Replace the current dock instance."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:84
#, kde-format
msgctxt "command line"
msgid "Show the debugging messages on stdout."
msgstr ""
#. +> trunk5
#: main.cpp:85
#, kde-format
msgctxt "command line"
msgid "Import and load default layout on startup."
msgstr ""
#. +> trunk5
#: main.cpp:86
#, kde-format
msgctxt "command line"
msgid "Print available layouts"
msgstr ""
#. +> trunk5
#: main.cpp:87
#, kde-format
msgctxt "command line"
msgid "Load specific layout on startup."
msgstr ""
#. +> trunk5
#: main.cpp:87
#, kde-format
msgctxt "command line: load"
msgid "layout_name"
msgstr ""
#. +> trunk5
#: main.cpp:88
#, kde-format
msgctxt "command line"
msgid "Import and load a layout."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:88 main.cpp:89
#, kde-format
msgctxt "command line: import"
msgid "file_name"
msgstr ""
#. +> trunk5
#: main.cpp:89
#, kde-format
msgctxt "command line"
msgid "Import full configuration."
msgstr ""
#. +> stable5
#: main.cpp:87
#, kde-format
msgctxt "command line"
msgid "Import configuration."
msgstr ""
#. +> trunk5
#: main.cpp:90
#, kde-format
msgctxt "command line"
msgid "Single layout memory mode. Only one layout is active at any case."
msgstr ""
#. +> trunk5
#: main.cpp:91
#, kde-format
msgctxt "command line"
msgid "Multiple layouts memory mode. Multiple layouts can be active at any time based on Activities running."
msgstr ""
#. +> stable5
#: main.cpp:84
#, kde-format
msgctxt "command line"
msgid "Show messages of debugging for the mask (Only useful to devs)."
msgstr ""
#. +> stable5
#: main.cpp:85
#, kde-format
msgctxt "command line"
msgid "Draw boxes around of the applets."
msgstr ""
#. +> stable5
#: main.cpp:86
#, kde-format
msgctxt "command line"
msgid "Open a window with much debug information."
msgstr ""
#. +> trunk5
#: main.cpp:127
#, kde-format
msgid "Available layouts that can be used to start Latte:"
msgstr ""
#. +> trunk5
#: main.cpp:133
#, kde-format
msgid "There are no available layouts, during startup Default will be used."
msgstr ""
#. +> trunk5
#: main.cpp:150
#, kde-format
msgctxt "layout missing"
msgid "This layout doesnt exist in the system."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:175
#, kde-format
msgid "An instance is already running!, use --replace to restart Latte"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:184
#, kde-format
msgid "The configuration cannot be imported"
msgstr ""
#. +> trunk5
#: main.cpp:194
#, kde-format
msgid "The layout cannot be imported"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:247
#, kde-format
msgid ""
"Latte is a dock based on plasma frameworks that provides an elegant and intuitive experience for your tasks and plasmoids. It animates its contents by using parabolic zoom effect and tries to be there only when it is needed.\n"
"\n"
"\"Art in Coffee\""
msgstr ""
#. +> trunk5 stable5
#: main.cpp:264
#, kde-format
msgid "Logo and Icons"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:266 main.cpp:268
#, kde-format
msgid "Many bug reports"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:270
#, kde-format
msgid "Reviews for Latte Dock, CandilDock and NowDock"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:44
#, kde-format
msgid "Latte Dock panel"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:46
#, kde-format
msgid "Dock configuration UI"
msgstr ""
#. +> trunk5
#: packageplugins/shell/dockpackage.cpp:47
#, kde-format
msgid "Dock secondary configuration UI"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:48
#, kde-format
msgid "Config model"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:49
#, kde-format
msgid "Tangerine Font"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:50
#, kde-format
msgid "Info View Window"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:52
#, kde-format
msgid "default layout file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:53
#, kde-format
msgid "plasma layout file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:54
#, kde-format
msgid "unity layout file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:55
#, kde-format
msgid "extended layout file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:57
#, kde-format
msgid "default preset file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:58
#, kde-format
msgid "plasma preset file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:59
#, kde-format
msgid "unity preset file"
msgstr ""
#. +> trunk5 stable5
#: packageplugins/shell/dockpackage.cpp:60
#, kde-format
msgid "extended preset file"
msgstr ""
#. +> trunk5
#: packageplugins/shell/dockpackage.cpp:61
#, kde-format
msgid "multiple layouts hidden file"
msgstr ""
#. +> stable5
#: packageplugins/shell/dockpackage.cpp:61
#, kde-format
msgid "tasks plasmoid separator"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-base/plasma_applet_org.kde.latte.plasmoid.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-base/plasma_applet_org.kde.latte.plasmoid.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-base/plasma_applet_org.kde.latte.plasmoid.pot (revision 1509808)
@@ -1,535 +1,535 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-25 09:17+0100\n"
+"POT-Creation-Date: 2018-02-02 13:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#: package/contents/config/config.qml:27
#, kde-format
msgid "Appearance"
msgstr ""
#. +> trunk5 stable5
#: package/contents/config/config.qml:32
#, kde-format
msgid "Panel"
msgstr ""
#. +> trunk5 stable5
#: package/contents/config/config.qml:37
#, kde-format
msgid "Interaction"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:70
#, kde-format
msgid "Icon size: "
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:154
#, kde-format
msgid "Enable shadows for icons"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:160
#, kde-format
msgid "Show glow around windows points"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:166
#, kde-format
msgid "Different color for minimized windows"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:172
#, kde-format
msgid "Indicator for active window group"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:178
#, kde-format
msgid "Reverse position for lines and dots"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:196
#, kde-format
msgid "Animations: "
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:214
#, kde-format
msgid "duration"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:214
#, kde-format
msgid "disabled"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:226
#, kde-format
msgid "Zoom"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:240
#, kde-format
msgid "Level: "
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:284
#, kde-format
msgid "Show a red line on the limit needed for animations"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigAppearance.qml:314
#: package/contents/ui/config/ConfigPanel.qml:171
#, kde-format
msgid "For the disabled settings you should use the Latte Dock Configuration Window"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:59
#, kde-format
msgid "Cycle through tasks with mouse wheel"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:66
#, kde-format
msgid "Preview windows on hovering"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:72
#, kde-format
msgid "Highlight windows on hovering"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:78
#, kde-format
msgid "Show window actions in the context menu"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:84
#, kde-format
msgid "Show progress information for tasks"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:89
#, kde-format
msgid "On middle-click:"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:95
#, kde-format
msgctxt "The click action"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:95
#, kde-format
msgid "Close Window or Group"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:95
#, kde-format
msgid "New Instance"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:95
#, kde-format
msgid "Minimize/Restore Window or Group"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:107
#, kde-format
msgid "Filters"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:118
#, kde-format
msgid "Show only tasks from the current screen"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:123
#, kde-format
msgid "Show only tasks from the current desktop"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigInteraction.qml:128
#, kde-format
msgid "Show only tasks from the current activity"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:60
#, kde-format
msgid "Position: "
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:68
#, kde-format
msgid "Center"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:68
#, kde-format
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:68
#, kde-format
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:68
#, kde-format
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:68
#, kde-format
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:76
#, kde-format
msgid "Show bar line for tasks"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:83
#, kde-format
msgid "Use plasma theme panel"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:90
#, kde-format
msgid "Use transparency in the panel"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/config/ConfigPanel.qml:97
#, kde-format
msgid "Size: "
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:149
#, kde-format
msgctxt "Play previous track"
msgid "Previous Track"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:162
#, kde-format
msgctxt "Pause playback"
msgid "Pause"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:162
#, kde-format
msgctxt "Start playback"
msgid "Play"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:176
#, kde-format
msgctxt "Play next track"
msgid "Next Track"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:187
#, kde-format
msgctxt "Stop playback"
msgid "Stop"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:204
#, kde-format
msgctxt "Quit media player app"
msgid "Quit"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:219
#, kde-format
msgctxt "Open or bring to the front window of media player app"
msgid "Restore"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:245
#, kde-format
msgid "Mute"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:299
#, kde-format
msgid "Move To Desktop"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:321
#, kde-format
msgid "Move To Current Desktop"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:330
#, kde-format
msgid "All Desktops"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:359
#, kde-format
msgid "New Desktop"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:379
#, kde-format
msgid "Move To &Activity"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:400
#, kde-format
msgid "Add To Current Activity"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:410
#, kde-format
msgid "All Activities"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:478
#, kde-format
msgid "Minimize"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:494
#, kde-format
msgid "Maximize"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:509
#, kde-format
msgid "More Actions"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:517
#, kde-format
msgid "Move"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:526
#, kde-format
msgid "Resize"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:535
#, kde-format
msgid "Keep Above Others"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:545
#, kde-format
msgid "Keep Below Others"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:557
#, kde-format
msgid "Fullscreen"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:569
#, kde-format
msgid "Shade"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:584
#, kde-format
msgid "Allow this program to be grouped"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:597
#, kde-format
msgid "Start New Instance"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:627
#, kde-format
msgctxt "Toggle action for showing a launcher button while the application is not running"
msgid "&Pin"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:656
#, kde-format
msgid "&Pin"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:725
#, kde-format
msgid "On All Activities"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:731
#, kde-format
msgid "On The Current Activity"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:753
#, kde-format
msgctxt "Remove launcher button for application shown while it is not running"
msgid "Unpin"
msgstr ""
#. +> trunk5
#: package/contents/ui/ContextMenu.qml:779
#, kde-format
msgid "Add Internal Separator"
msgstr ""
#. +> stable5
#: package/contents/ui/ContextMenu.qml:773
#, kde-format
msgid "Internal Separator"
msgstr ""
#. +> trunk5
#: package/contents/ui/ContextMenu.qml:804
#, kde-format
msgid "Remove Internal Separator"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:833
#, kde-format
msgid "Layouts"
msgstr ""
#. +> trunk5
#: package/contents/ui/ContextMenu.qml:856
#, kde-format
msgctxt "current layout"
msgid "(Current)"
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:877
#, kde-format
msgid "Configure..."
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:902
#, kde-format
msgid "Add Widgets..."
msgstr ""
#. +> trunk5 stable5
#: package/contents/ui/ContextMenu.qml:936
#, kde-format
msgid "Close"
msgstr ""
#. +> trunk5 stable5
-#: package/contents/ui/task/TaskDelegate.qml:941
+#: package/contents/ui/task/TaskDelegate.qml:945
#: package/contents/ui/ToolTipInstance.qml:465
#, kde-format
msgid "On %1"
msgstr ""
#. +> trunk5 stable5
-#: package/contents/ui/task/TaskDelegate.qml:950
+#: package/contents/ui/task/TaskDelegate.qml:954
#: package/contents/ui/ToolTipInstance.qml:475
#, kde-format
msgctxt "Which virtual desktop a window is currently on"
msgid "Available on all activities"
msgstr ""
#. +> trunk5 stable5
-#: package/contents/ui/task/TaskDelegate.qml:969
+#: package/contents/ui/task/TaskDelegate.qml:973
#: package/contents/ui/ToolTipInstance.qml:497
#, kde-format
msgctxt "Activities a window is currently on (apart from the current one)"
msgid "Also available on %1"
msgstr ""
#. +> trunk5 stable5
-#: package/contents/ui/task/TaskDelegate.qml:973
+#: package/contents/ui/task/TaskDelegate.qml:977
#: package/contents/ui/ToolTipInstance.qml:501
#, kde-format
msgctxt "Which activities a window is currently on"
msgid "Available on %1"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-base/wacomtablet.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-base/wacomtablet.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-base/wacomtablet.pot (revision 1509808)
@@ -1,1468 +1,1468 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-11-07 09:22+0100\n"
+"POT-Creation-Date: 2018-02-02 13:44+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5
#: src/common/aboutdata.cpp:34
#, kde-format
msgid "(c), 2009,2010 Jörg Ehrichs"
msgstr ""
#. +> trunk5
#: src/common/aboutdata.cpp:38
#, kde-format
msgid "Jörg Ehrichs"
msgstr ""
#. +> trunk5
#: src/common/aboutdata.cpp:38
#, kde-format
msgid "Maintainer"
msgstr ""
#. +> trunk5
#: src/common/aboutdata.cpp:39
#, kde-format
msgid "Alexander Maret-Huskinson"
msgstr ""
#. +> trunk5
#: src/common/aboutdata.cpp:39
#, kde-format
msgid "Developer"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:279
#, kde-format
msgctxt "Tablet button triggers a left mouse button click."
msgid "Left Mouse Button Click"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:281
#, kde-format
msgctxt "Tablet button triggers a middle mouse button click."
msgid "Middle Mouse Button Click"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:283
#, kde-format
msgctxt "Tablet button triggers a right mouse button click."
msgid "Right Mouse Button Click"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:285
#, kde-format
msgctxt "Tablet button triggers mouse wheel up."
msgid "Mouse Wheel Up"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:287
#, kde-format
msgctxt "Tablet button triggers mouse wheel down."
msgid "Mouse Wheel Down"
msgstr ""
#. +> trunk5
#: src/common/buttonshortcut.cpp:289
#, kde-format
msgctxt "Tablet button triggers a click of mouse button with number #"
msgid "Mouse Button %1 Click"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:30
#, kde-format
msgid "Wacom Tablet"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:34
#, kde-format
msgctxt "@action"
msgid "Enable/Disable the Touch Tool"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:40
#, kde-format
msgctxt "@action"
msgid "Toggle the Stylus Tool Relative/Absolute"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:46
#, kde-format
msgctxt "@action"
msgid "Toggle between all screens"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:52
#, kde-format
msgctxt "@action Maps the area of the tablet to all available screen space (space depends on connected monitors)"
msgid "Map to fullscreen"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:58
#, kde-format
msgctxt "@action"
msgid "Map to screen 1"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:64
#, kde-format
msgctxt "@action"
msgid "Map to screen 2"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:70
#, kde-format
msgctxt "@action Switch to the next profile in the rotation"
msgid "Next profile"
msgstr ""
#. +> trunk5
#: src/common/globalactions.cpp:76
#, kde-format
msgctxt "@action Switch to the previous profile in the rotation"
msgid "Previous Profile"
msgstr ""
#. +> trunk5
#: src/kcmodule/buttonactionselectiondialog.cpp:57
#, kde-format
msgctxt "The action that will be assigned to a tablet button."
msgid "Select Button Action"
msgstr ""
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.cpp:152
#, kde-format
msgctxt "Select a mouse button from a dropwdown."
msgid "Click to select..."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ButtonActionSelectionWidget)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:14
#, kde-format
msgid "Select Key Function"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:35
#, kde-format
msgid "Select Button Action"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ctrlModifierCheckBox)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:46
#, kde-format
msgid "Ctrl"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, altModifierCheckBox)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:69
#, kde-format
msgid "Alt"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, metaModifierCheckBox)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:92
#, kde-format
msgid "Meta"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, shiftModifierCheckBox)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:115
#, kde-format
msgid "Shift"
msgstr ""
#. i18n: Select an action which will be assigned to a tablet button.
#. i18n: ectx: property (placeholderText), widget (Wacom::ButtonActionDisplayWidget, actionNameLineEdit)
#. +> trunk5
#: src/kcmodule/buttonactionselectionwidget.ui:159
#, kde-format
msgid "Please select an action."
msgstr ""
#. i18n: Click to assign an action (shortcut) to a tablet button.
#. i18n: ectx: property (placeholderText), widget (Wacom::ButtonActionDisplayWidget, actionNameDisplayWidget)
#. +> trunk5
#: src/kcmodule/buttonactionselectorwidget.ui:51
#, kde-format
msgid "Click to assign an action."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ButtonPageWidget)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:20
#, kde-format
msgid "Pad Buttons"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, buttonGroupBox)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:29
#: src/kcmodule/kcmwacomtabletwidget.cpp:427
#, kde-format
msgid "Express Buttons"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button1Label)
#. i18n: ectx: property (text), widget (QLabel, labelButton1)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:43 src/kcmodule/styluspagewidget.ui:81
#, kde-format
msgid "Button 1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button2Label)
#. i18n: ectx: property (text), widget (QLabel, labelButton2)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:56 src/kcmodule/styluspagewidget.ui:62
#, kde-format
msgid "Button 2"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button3Label)
#. i18n: ectx: property (text), widget (QLabel, labelButton3)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:69 src/kcmodule/styluspagewidget.ui:43
#, kde-format
msgid "Button 3"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button4Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:82
#, kde-format
msgid "Button 4"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button5Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:95
#, kde-format
msgid "Button 5"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button6Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:108
#, kde-format
msgid "Button 6"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button7Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:121
#, kde-format
msgid "Button 7"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button8Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:134
#, kde-format
msgid "Button 8"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button9Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:147
#, kde-format
msgid "Button 9"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button10Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:315
#, kde-format
msgid "Button 10"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button11Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:328
#, kde-format
msgid "Button 11"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button12Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:341
#, kde-format
msgid "Button 12"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button13Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:354
#, kde-format
msgid "Button 13"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button14Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:367
#, kde-format
msgid "Button 14"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button15Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:380
#, kde-format
msgid "Button 15"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button16Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:393
#, kde-format
msgid "Button 16"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button17Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:406
#, kde-format
msgid "Button 17"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, button18Label)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:419
#, kde-format
msgid "Button 18"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, touchStripGroupBox)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:537
#, kde-format
msgid "Touch Strip"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, leftStripUpLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:555
#, kde-format
msgid "Left Strip Up"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, leftStripDownLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:572
#, kde-format
msgid "Left Strip Down"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, rightStripUpLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:620
#, kde-format
msgid "Right Strip Up"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, rightStripDownLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:637
#, kde-format
msgid "Right Strip Down"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, touchRingGroupBox)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:660
#, kde-format
msgid "Touch Ring"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ringUpLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:671
#, kde-format
msgid "Ring Up"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ringDownLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:711
#, kde-format
msgid "Ring Down"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, wheelGroupBox)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:733
#, kde-format
msgid "Wheel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, wheelUpLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:741
#, kde-format
msgid "Wheel Up"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, wheelDownLabel)
#. +> trunk5
#: src/kcmodule/buttonpagewidget.ui:778
#, kde-format
msgid "Wheel Down"
msgstr ""
#. +> trunk5
#: src/kcmodule/calibrationdialog-xcb.cpp:57
#: src/kcmodule/calibrationdialog-xlib.cpp:61
#, kde-format
msgid ""
"Please tap into all four corners to calibrate the tablet.\n"
"Press escape to cancel the process."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ErrorWidget)
#. +> trunk5
#: src/kcmodule/errorwidget.ui:14
#, kde-format
msgid "No Tablet Found"
msgstr ""
#. +> trunk5
#: src/kcmodule/generalpagewidget.cpp:79
#, kde-format
msgid "Wacom Tablet Settings"
msgstr ""
#. +> trunk5
#: src/kcmodule/generalpagewidget.cpp:181
#, kde-format
msgid "Profile List"
msgstr ""
#. +> trunk5
#: src/kcmodule/generalpagewidget.cpp:182
#, kde-format
msgid "Select the Profile you want to add:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, GeneralPageWidget)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:14
#, kde-format
msgid "General Hardware Overview"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, profileRotationBox)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:35
#, kde-format
msgid "ProfileRotation"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbDown)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:80
#, kde-format
msgid "Down"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbRemoveFromRotationList)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:87
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbAddToRotationList)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:94
#, kde-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbUp)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:101
#, kde-format
msgid "Up"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, shortcutGroupBox)
#. +> trunk5
#: src/kcmodule/generalpagewidget.ui:140
#, kde-format
msgid "Shortcuts"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtablet.cpp:73
#, kde-format
msgid "Graphic Tablet Configuration"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtablet.cpp:74
#, kde-format
msgid "A configurator for graphic tablets"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtablet.cpp:75
#, kde-format
msgid "In this module you can configure your Wacom tablet profiles"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:156
#, kde-format
msgid "KDE tablet service not found"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:157
#, kde-format
msgid ""
"Please start the KDE wacom tablet service to use this configuration dialog.\n"
"The service is required for tablet detection and profile support."
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:162
#, kde-format
msgid "No tablet device detected"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:163
#, kde-format
msgid ""
"Please connect a tablet device to continue.\n"
"If your device is already connected it is currently unsupported."
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:216
#, kde-format
msgid "Add new profile"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:217
#, kde-format
msgid "Profile name:"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:411
#, kde-format
msgctxt "Name of the default profile that will be created if none exist."
msgid "Default"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:420
#, kde-format
msgctxt "Basic overview page for the tablet hardware"
msgid "General"
msgstr ""
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:421
#, kde-format
msgid "Stylus"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, generalGroupBox)
#. i18n: ectx: property (title), widget (QGroupBox, tabletGroupBox)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:430
#: src/kcmodule/tabletareaselectionview.ui:160
#: src/kcmodule/tabletpagewidget.ui:17
#, kde-format
msgid "Tablet"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, touchGroupBox)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.cpp:436 src/kcmodule/touchpagewidget.ui:17
#, kde-format
msgid "Touch"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KCMWacomTabletWidget)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:14
#, kde-format
msgid "Graphic Tablet Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, tabletListLabel)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:28
#, kde-format
msgid "Select Tablet:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, profileLabel)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:52
#, kde-format
msgid "Select Profile:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KAnimatedButton, addProfileButton)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:72
#, kde-format
msgid "Creates a new default profile"
msgstr ""
#. i18n: ectx: property (animationPath), widget (KAnimatedButton, addProfileButton)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:81
#, kde-format
msgid "document-new"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KAnimatedButton, delProfileButton)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:88
#, kde-format
msgid "Deletes the current profile"
msgstr ""
#. i18n: ectx: property (animationPath), widget (KAnimatedButton, delProfileButton)
#. +> trunk5
#: src/kcmodule/kcmwacomtabletwidget.ui:91
#, kde-format
msgid "edit-delete-page"
msgstr ""
#. +> trunk5
#: src/kcmodule/keysequenceinputbutton.cpp:316
#, kde-format
msgid ""
"Click on the button, then enter the shortcut like you would in the program.\n"
"Example for Ctrl+A: hold the Ctrl key and press A."
msgstr ""
#. +> trunk5
#: src/kcmodule/keysequenceinputbutton.cpp:350
#, kde-format
msgctxt "What the user inputs now will be taken as the new shortcut"
msgid "Input"
msgstr ""
#. +> trunk5
#: src/kcmodule/keysequenceinputbutton.cpp:357
#, kde-format
msgctxt "No shortcut defined"
msgid "None"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, PressureCurveDialog)
#. +> trunk5
#: src/kcmodule/pressurecurvedialog.ui:23
#, kde-format
msgid "Press Curve Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, explaining_Label)
#. +> trunk5
#: src/kcmodule/pressurecurvedialog.ui:37
#, kde-format
msgid ""
"The presscurve defines how the pen press is handled.\n"
"Drag around the dots to change the behavior\n"
"Use the stylus inside the Widget to see the pressure changes."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, pc_Label)
#. +> trunk5
#: src/kcmodule/pressurecurvedialog.ui:104
#, kde-format
msgid "Current Presscurve:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel)
#. +> trunk5
#: src/kcmodule/saveprofile.ui:17
#, kde-format
msgid "Save changes to the current profile?"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, StylusPageWidget)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:14
#, kde-format
msgid "Pen Settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, buttonGroupBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:28
#, kde-format
msgid "Defines the button action on the stylus."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, buttonGroupBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:31
#, kde-format
msgid "Button Settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, tpcCheckBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:113
#, kde-format
msgid ""
"If selected, the stylus must be in contact with the tablet for a stylus side button to work.\n"
"If deselected, stylus buttons will work once the stylus is in proximity of the tablet."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, tpcCheckBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:116
#, kde-format
msgid "Tap to execute action."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, eraserBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:128
#, kde-format
msgid "Sets eraser pressure threshold."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, eraserBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:131
#, kde-format
msgid "Eraser Feel"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, eraserSlider)
#. i18n: ectx: property (toolTip), widget (QSlider, tipSlider)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:153 src/kcmodule/styluspagewidget.ui:297
#, kde-format
msgid ""
"Set the minimum pressure necessary to generate a Button event for the stylus/tip, eraser, or touch.\n"
" The pressure levels of all tablets are normalized to 2048 levels irregardless of the actual hardware supported levels.\n"
"This parameter is independent of the PressureCurve parameter."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelSlow_2)
#. i18n: ectx: property (text), widget (QLabel, labelSlow_3)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:183 src/kcmodule/styluspagewidget.ui:327
#, kde-format
msgctxt "slow movement of the cursor (minimal value)"
msgid "Soft"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelFast_2)
#. i18n: ectx: property (text), widget (QLabel, labelFast_3)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:209 src/kcmodule/styluspagewidget.ui:353
#, kde-format
msgctxt "fast movement of the cursor (maximal value)"
msgid "Firm"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, eraserPressureButton)
#. i18n: ectx: property (toolTip), widget (QPushButton, tipPressureButton)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:241 src/kcmodule/styluspagewidget.ui:391
#, kde-format
msgid "Defines the pressure sensitivity with a bezier curve"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, eraserPressureButton)
#. i18n: ectx: property (text), widget (QPushButton, tipPressureButton)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:244 src/kcmodule/styluspagewidget.ui:394
#, kde-format
msgid "Edit Pressure Curve..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, tipFeelGroupBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:272
#, kde-format
msgid "Sets stylus pressure threshold."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, tipFeelGroupBox)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:275
#, kde-format
msgid "Tip Feel"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBoxRawSample)
#. i18n: ectx: property (toolTip), widget (QSlider, horizontalSliderRawSample)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:412 src/kcmodule/styluspagewidget.ui:421
#, kde-format
msgid "Number of raw data used to filter the points (default is 4)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxRawSample)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:415
#, kde-format
msgid "Raw Sample Rate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelMinRawSample)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:451
#, kde-format
msgid "1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelMaxRawSample)
#. i18n: ectx: property (text), widget (QLabel, labelMaxSuppress)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:471 src/kcmodule/styluspagewidget.ui:545
#, kde-format
msgid "20"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBoxSupress)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:489
#, kde-format
msgid "Number of points trimmed (default is 2)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxSupress)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:492
#, kde-format
msgid "Suppress Rate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelMinSuppress)
#. +> trunk5
#: src/kcmodule/styluspagewidget.ui:525
#, kde-format
msgid "0"
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletareaselectiondialog.cpp:116
#, kde-format
msgctxt "Dialog title from a dialog which lets the user select an area of the tablet where the screen space will be mapped to."
msgid "Select a Tablet Area"
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.cpp:155
#: src/kcmodule/tabletareaselectionview.cpp:184
#, kde-format
msgid "Internal Error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, infoLabel)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:41
#, kde-format
msgid "The tablet area defines how the screen space is mapped to your tablet. For each screen a different tablet area can be selected. "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, screenGroupBox)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:57
#, kde-format
msgid "Screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, screenToggleButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:83
#, kde-format
msgid "Toggle between fullscreen and each single screen."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, screenToggleButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:86
#, kde-format
msgid "Toggle Screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, controlsGroupBox)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:96
#, kde-format
msgid "Select the valid tablet area used for the selected screen space."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, controlsGroupBox)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:99
#, kde-format
msgid "Map Screen To"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, fullTabletRadioButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:105
#, kde-format
msgid "Full Tablet"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, tabletAreaRadioButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:115
#, kde-format
msgid "Tablet Area"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, forceProportionsButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:122
#, kde-format
msgid "Set the tablet area proportional to the selected screen area."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, forceProportionsButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:125
#, kde-format
msgid "Set Screen Proportions"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, calibrateButton)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:132
#, kde-format
msgid "Calibrate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, warningLabel)
#. +> trunk5
#: src/kcmodule/tabletareaselectionview.ui:207
#, kde-format
msgid "This mapping can only be applied in absolute tracking mode."
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletpagewidget.cpp:451
#, kde-format
msgctxt "Either no orientation or the current screen orientation is applied to the tablet."
msgid "Default Orientation"
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletpagewidget.cpp:452
#, kde-format
msgctxt "The tablet will be rotated clockwise."
msgid "Rotate Tablet Clockwise"
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletpagewidget.cpp:453
#, kde-format
msgctxt "The tablet will be rotated counterclockwise."
msgid "Rotate Tablet Counterclockwise"
msgstr ""
#. +> trunk5
#: src/kcmodule/tabletpagewidget.cpp:454
#, kde-format
msgctxt "The tablet will be rotated up side down."
msgid "Rotate Tablet Upside-Down"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, trackingModeGroupBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:31 src/kcmodule/touchpagewidget.ui:44
#, kde-format
msgid "Defines how the cursor movement mode will be used."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, trackingModeGroupBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:34
#, kde-format
msgid "Stylus Tracking Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, trackAbsoluteRadioButton)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:46 src/kcmodule/touchpagewidget.ui:59
#, kde-format
msgid "Map to Screen (Absolute Mode)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, trackRelativeRadioButton)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:62 src/kcmodule/touchpagewidget.ui:75
#, kde-format
msgid "Map to Cursor (Relative Mode)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, padMappingGroupBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:94
#, kde-format
msgid "Tablet Mapping"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, padMappingTabletButton)
#. i18n: ectx: property (toolTip), widget (QPushButton, touchMappingTabletButton)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:106 src/kcmodule/touchpagewidget.ui:122
#, kde-format
msgid "Allows to specify the tablet area for different screen selections in absolute cursor mode."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, padMappingTabletButton)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:109
#, kde-format
msgid "Map Tablet Area to Screen"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, trackingWarningLabel)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:137 src/kcmodule/touchpagewidget.ui:153
#, kde-format
msgid "Your currently selected mapping can not be applied in relative tracking mode."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, rotationGroupBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:178
#, kde-format
msgid "Changes the orientation of the tablet."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, rotationGroupBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:181
#, kde-format
msgid "Orientation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, rotateWithScreenCheckBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:190
#, kde-format
msgid "If enabled, the tablet rotates together with the screen."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rotateWithScreenCheckBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:193
#, kde-format
msgid "Auto-Rotate with Screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, rotateWithScreenInvertCheckBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:203
#, kde-format
msgid "If enabled the automatic tablet rotation for clockwise and counterclockwise rotations will be inverted."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rotateWithScreenInvertCheckBox)
#. +> trunk5
#: src/kcmodule/tabletpagewidget.ui:206
#, kde-format
msgid "Invert Auto-Rotation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, touchCheckBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:23
#, kde-format
msgid "If enabled the tablet will emit touch events."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, touchCheckBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:26
#, kde-format
msgid "Enable Touch"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, trackingModeGroupBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:47
#, kde-format
msgid "Touch Tracking Mode"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, touchMappingGroupBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:110
#, kde-format
msgid "Touch Mapping"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, touchMappingTabletButton)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:125
#, kde-format
msgid "Map Touch Area to Screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, gesturesCheckBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:189
#, kde-format
msgid "If enabled the touch events can recognize gestures."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, gesturesCheckBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:192
#, kde-format
msgid "Enable Gestures"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gesturesGroupBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:210
#, kde-format
msgid "Gestures"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, scrollDistanceLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:222
#, kde-format
msgid "Minimum motion before sending a scroll gesture."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scrollDistanceLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:225
#, kde-format
msgid "Scroll Distance"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, scrollDistanceSpinBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:241
#, kde-format
msgid "The minimum motion in tablet units before sending a scroll event."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, zoomDistanceLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:260
#, kde-format
msgid "Minimum distance for a zoom gesture is recognized."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, zoomDistanceLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:263
#, kde-format
msgid "Zoom Distance"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, zoomDistanceSpinBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:279
#, kde-format
msgid "The minimum distance in tablet units for a zoom gesture to be recognized."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, tapTimeLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:298
#, kde-format
msgid "Minimum time between taps for a right click."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, tapTimeLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:301
#, kde-format
msgid "Tap Time"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, tapTimeSpinBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:311
#, kde-format
msgid "The minimum time in milliseconds between taps to trigger a right click."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scrollInversionLabel)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:324
#, kde-format
msgid "Invert Scroll Direction"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, scrollInversionCheckBox)
#. +> trunk5
#: src/kcmodule/touchpagewidget.ui:331
#, kde-format
msgid "If selected, the scroll direction for the scroll gesture is inverted."
msgstr ""
#. +> trunk5
#: src/kded/tabletdaemon.cpp:154
#, kde-format
msgid "Graphic Tablet Configuration daemon"
msgstr ""
#. +> trunk5
#: src/kded/tabletdaemon.cpp:155
#, kde-format
msgid "A Wacom tablet control daemon"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:142
+#: src/kded/tablethandler.cpp:143
#, kde-format
msgid "Tablet Connected"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:143
+#: src/kded/tablethandler.cpp:144
#, kde-format
msgid "New tablet '%1' connected."
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:164
+#: src/kded/tablethandler.cpp:165
#, kde-format
msgid "Tablet removed"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:165
+#: src/kded/tablethandler.cpp:166
#, kde-format
msgid "Tablet %1 removed"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:457
+#: src/kded/tablethandler.cpp:458
#, kde-format
msgctxt "Name of the default profile that will be created if none exists."
msgid "Default"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:469
+#: src/kded/tablethandler.cpp:470
#, kde-format
msgid "Graphic Tablet error"
msgstr ""
#. +> trunk5
-#: src/kded/tablethandler.cpp:470
+#: src/kded/tablethandler.cpp:471
#, kde-format
msgid "Profile <b>%1</b> does not exist. Apply <b>%2</b> instead"
msgstr ""
#. +> trunk5
#: src/tabletfinder/dialog.cpp:390
#, kde-format
msgid "Button %1 maps to Button %2"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, Dialog)
#. +> trunk5
#: src/tabletfinder/dialog.ui:14
#, kde-format
msgid "Wacom Tablet detection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: src/tabletfinder/dialog.ui:20
#, kde-format
msgid "Connect your Tablet and click on Refresh to detect it."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: src/tabletfinder/dialog.ui:27
#, kde-format
msgid "Tablet Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: src/tabletfinder/dialog.ui:39
#, kde-format
msgid "Detected Tablets:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, refreshButton)
#. +> trunk5
#: src/tabletfinder/dialog.ui:51
#, kde-format
msgid "Refresh"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: src/tabletfinder/dialog.ui:66
#, kde-format
msgid "Serial Nr.:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/tabletfinder/dialog.ui:86
#, kde-format
msgid "Devices: "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: src/tabletfinder/dialog.ui:105
#, kde-format
msgid "Tablet Features"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasTouchRing)
#. +> trunk5
#: src/tabletfinder/dialog.ui:111
#, kde-format
msgid "has TouchRing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasStatusLEDsRight)
#. +> trunk5
#: src/tabletfinder/dialog.ui:118
#, kde-format
msgid "has Status LEDs right"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasTouchStripLeft)
#. +> trunk5
#: src/tabletfinder/dialog.ui:125
#, kde-format
msgid "has Touchstrip Left"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasTouchStripRight)
#. +> trunk5
#: src/tabletfinder/dialog.ui:132
#, kde-format
msgid "has Touchstrip Right"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasStatusLEDsLeft)
#. +> trunk5
#: src/tabletfinder/dialog.ui:139
#, kde-format
msgid "has Status LEDs left"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hasWheel)
#. +> trunk5
#: src/tabletfinder/dialog.ui:146
#, kde-format
msgid "has Wheel"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: src/tabletfinder/dialog.ui:162
#, kde-format
msgid "GroupBox"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: src/tabletfinder/dialog.ui:170
#, kde-format
msgid "Number of available Express Keys:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mapButtons)
#. +> trunk5
#: src/tabletfinder/dialog.ui:182
#, kde-format
msgid "Map Hardware Buttons"
msgstr ""
#. +> trunk5
#: src/tabletfinder/hwbuttondialog.cpp:65
#, kde-format
msgid "Please press Button %1 on the tablet now."
msgstr ""
#. +> trunk5
#: src/tabletfinder/hwbuttondialog.cpp:81
#, kde-format
msgid "Hardware button %1 detected."
msgstr ""
#. +> trunk5
#: src/tabletfinder/hwbuttondialog.cpp:93
#, kde-format
msgid "All buttons detected. Please close dialog"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, HWButtonDialog)
#. +> trunk5
#: src/tabletfinder/hwbuttondialog.ui:14
#, kde-format
msgid "Dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/tabletfinder/hwbuttondialog.ui:26
#, kde-format
msgid "Move the mouse cursor inside the dialog but <b>do not</b> click into it with the mouse."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-edu/kstars.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-edu/kstars.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-edu/kstars.pot (revision 1509808)
@@ -1,82194 +1,82194 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:42+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:44 kstars.cpp:68
#, kde-format
msgid "Sky"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:45
#, kde-format
msgid "Messier Object"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:46
#, kde-format
msgctxt "New General Catalog object"
msgid "NGC Object"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:47
#, kde-format
msgctxt "Index Catalog object"
msgid "IC Object"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:48
#, kde-format
msgctxt "Object with extra attached URLs"
msgid "Object w/ Links"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:49
#, kde-format
msgid "Star Name"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:50
#, kde-format
msgid "Deep Sky Object Name"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:51
#, kde-format
msgid "Planet Name"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:52
#, kde-format
msgctxt "Constellation Name"
msgid "Constell. Name"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:53
#, kde-format
msgctxt "Constellation Line"
msgid "Constell. Line"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:54
#, kde-format
msgctxt "Constellation Boundary"
msgid "Constell. Boundary"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:55
#, kde-format
msgctxt "Highlighted Constellation Boundary"
msgid "Constell. Boundary Highlight"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:57
#, kde-format
msgctxt "refers to the band of stars in the sky due to the Galactic plane"
msgid "Milky Way"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:59 skycomponents/equator.cpp:32
#, kde-format
msgid "Equator"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowEcliptic)
#. +> trunk5
#: auxiliary/colorscheme.cpp:60 options/opsguides.ui:207
#: skycomponents/ecliptic.cpp:32
#, kde-format
msgid "Ecliptic"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:61 projections/equirectangularprojector.cpp:167
#: projections/projector.cpp:288
#, kde-format
msgid "Horizon"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowLocalMeridian)
#. +> trunk5
#: auxiliary/colorscheme.cpp:62 options/opsguides.ui:361
#, kde-format
msgid "Local Meridian"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:63
#, kde-format
msgid "Compass Labels"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:64 skycomponents/equatorialcoordinategrid.cpp:31
#, kde-format
msgid "Equatorial Coordinate Grid"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:65 skycomponents/horizontalcoordinategrid.cpp:31
#, kde-format
msgid "Horizontal Coordinate Grid"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:66
#, kde-format
msgid "Info Box Text"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:67
#, kde-format
msgid "Info Box Selected"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:68
#, kde-format
msgid "Info Box Background"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:69
#, kde-format
msgid "Target Indicator"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:70
#, kde-format
msgid "User Labels"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:71
#, kde-format
msgid "Planet Trails"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:72
#, kde-format
msgid "Angular Distance Ruler"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:73
#, kde-format
msgid "Observing List Label"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:74
#, kde-format
msgid "Star-Hop Route"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:75
#, kde-format
msgid "Visible Satellites"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:76 dialogs/finddialog.cpp:54
#: kstarsactions.cpp:1025 kstarslite/dialogs/finddialoglite.cpp:48
#: tools/whatsinteresting/qml/wiview.qml:238
#, kde-format, kde-kuit-format
msgid "Satellites"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:77
#, kde-format
msgid "Satellites Labels"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:78 dialogs/finddialog.cpp:53
#: kstarsactions.cpp:1028 kstarslite/dialogs/finddialoglite.cpp:47
#: tools/whatsinteresting/qml/wiview.qml:514
#, kde-format, kde-kuit-format
msgid "Supernovae"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:79 skycomponents/artificialhorizoncomponent.cpp:65
#, kde-format
msgid "Artificial Horizon"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:80
#, kde-format
msgid "RA Guide Error"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:81
#, kde-format
msgid "DEC Guide Error"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:82 ekos/align/align.cpp:71
#, kde-format
msgid "Solver FOV"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:83
#, kde-format
msgid "Sensor FOV"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:84
#, kde-format
msgid "HiPS Grid"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:85
#, kde-format
msgid "FITS Image Object Label"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:107
#, kde-format
msgid "No color named \"%1\" found in color scheme."
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:151 kstarsdata.cpp:1018 options/opscolors.cpp:71
#: tools/scriptbuilder.cpp:780
#, kde-format
msgctxt "use default color scheme"
msgid "Default Colors"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:153 kstarsdata.cpp:1020 options/opscolors.cpp:72
#: tools/scriptbuilder.cpp:781
#, kde-format
msgctxt "use 'star chart' color scheme"
msgid "Star Chart"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:155 kstarsdata.cpp:1022 options/opscolors.cpp:73
#: tools/scriptbuilder.cpp:782
#, kde-format
msgctxt "use 'night vision' color scheme"
msgid "Night Vision"
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:285
#, kde-format
msgid ""
"Local color scheme file could not be opened.\n"
"Scheme cannot be recorded."
msgstr ""
#. +> trunk5
#: auxiliary/colorscheme.cpp:303
#, kde-format
msgid ""
"Local color scheme index file could not be opened.\n"
"Scheme cannot be recorded."
msgstr ""
#. +> trunk5
#: auxiliary/filedownloader.cpp:100
#, kde-format
msgid "Data verification failed!"
msgstr ""
#. +> trunk5
#: auxiliary/filedownloader.cpp:111
#, kde-format
msgid "File verification failed!"
msgstr ""
#. +> trunk5
#: auxiliary/filedownloader.cpp:159
#, kde-format
msgid "Downloading"
msgstr ""
#. +> trunk5
#: auxiliary/filedownloader.cpp:164
#, kde-format
msgid "Downloading Data..."
msgstr ""
#. +> trunk5
#: auxiliary/filedownloader.cpp:203
#, kde-format
msgid "Awaiting response from server..."
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:51 kstarslite/skyitems/fovitem.cpp:24
#, kde-format
msgctxt "use field-of-view for binoculars"
msgid "7x35 Binoculars"
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:53 kstarslite/skyitems/fovitem.cpp:25
#, kde-format
msgctxt "use a Telrad field-of-view indicator"
msgid "Telrad"
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:54 kstarslite/skyitems/fovitem.cpp:26
#, kde-format
msgctxt "use 1-degree field-of-view indicator"
msgid "One Degree"
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:56 kstarslite/skyitems/fovitem.cpp:27
#, kde-format
msgctxt "use HST field-of-view indicator"
msgid "HST WFPC2"
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:57 kstarslite/skyitems/fovitem.cpp:28
#, kde-format
msgctxt "use Radiotelescope HPBW"
msgid "30m at 1.3cm"
msgstr ""
#. +> trunk5
#: auxiliary/fov.cpp:197
#, kde-format
msgid "No FOV"
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:50 auxiliary/imageexporter.cpp:51
#, kde-format
msgid "KStars Exported Sky Image"
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:99 main.cpp:187 printing/foveditordialog.cpp:186
#, kde-format
msgid "Could not parse image format of %1; assuming PNG."
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:172
#, kde-format
msgid "Error: Unable to save image: %1 "
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:179 auxiliary/imageviewer.cpp:365
#, kde-format
msgid "Saved image to %1"
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:239 printing/foveditordialog.cpp:207
#: tools/scriptbuilder.cpp:961
#, kde-format
msgid "Could not upload image to remote location: %1"
msgstr ""
#. +> trunk5
#: auxiliary/imageexporter.cpp:246
#, kde-format
msgid "Could not export image: URL %1 invalid"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:128
#, kde-format
msgid "KStars image viewer: %1"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:142 tools/eyepiecefield.cpp:88
#, kde-format
msgid "Invert colors"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:143
#, kde-format
msgid "Reverse colors of the image. This is useful to enhance contrast at times. This affects only the display and not the saving."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, SavePreset)
#. +> trunk5
#: auxiliary/imageviewer.cpp:145 ekos/align/align.cpp:1233
-#: ekos/capture/capture.cpp:2948 ekos/scheduler/scheduler.cpp:3404
+#: ekos/capture/capture.cpp:2948 ekos/scheduler/scheduler.cpp:3406
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:95
#: kstarslite/qml/dialogs/helpers/LocationEdit.qml:382 options/opscolors.ui:204
#, kde-format, kde-kuit-format
msgid "Save"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:146
#, kde-format
msgid "Save the image to disk"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:187
#, kde-format
msgid "Remove temporary file %1 from disk?"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:188
#, kde-format
msgid "Confirm Removal"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:206
#, kde-format
msgid "Download"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:207
#, kde-format
msgid "Please wait while image is being downloaded..."
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:235
#, kde-format
msgid "Image Viewer"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:264
#, kde-format
msgid "Loading of the image %1 failed."
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:320 indi/clientmanagerlite.cpp:816
#: printing/foveditordialog.cpp:129
#, kde-format
msgid "Save Image"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:328 dialogs/addcatdialog.cpp:232
#: ekos/align/align.cpp:1220 ekos/align/align.cpp:1387
#: ekos/guide/guide.cpp:732 kstarsactions.cpp:1215 printing/pwizprint.cpp:86
#: tools/scriptbuilder.cpp:920
#, kde-format
msgid "A file named \"%1\" already exists. Overwrite it?"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:331 dialogs/addcatdialog.cpp:235
#: ekos/align/align.cpp:1223 ekos/align/align.cpp:1390
#: ekos/guide/guide.cpp:735 kstarsactions.cpp:1216 printing/pwizprint.cpp:87
#: tools/scriptbuilder.cpp:923
#, kde-format
msgid "Overwrite File?"
msgstr ""
#. +> trunk5
#: auxiliary/imageviewer.cpp:356
#, kde-format
msgid "Saving of the image %1 failed."
msgstr ""
#. +> trunk5
#: auxiliary/ksdssdownloader.cpp:212 auxiliary/ksdssdownloader.cpp:240
#, kde-format
msgid "DSS Download"
msgstr ""
#. +> trunk5
#: auxiliary/ksdssdownloader.cpp:213 auxiliary/ksdssdownloader.cpp:241
#, kde-format
msgid "Please wait while DSS image is being downloaded..."
msgstr ""
#. +> trunk5
#: auxiliary/ksnotification.h:19 ekos/capture/sequencejob.cpp:28
#: ekos/guide/internalguide/rcalibration.cpp:432
#: ekos/guide/internalguide/rcalibration.cpp:461
#: ekos/guide/internalguide/rcalibration.cpp:684
#: ekos/guide/internalguide/rcalibration.cpp:839
#: ekos/scheduler/schedulerjob.cpp:180 indi/drivermanager.cpp:421
#: indi/drivermanager.cpp:742 indi/inditelescope.cpp:1054
#: indi/inditelescope.cpp:1058
#, kde-format
msgid "Error"
msgstr ""
#. +> trunk5
#: auxiliary/ksnotification.h:20
#, kde-format
msgid "Sorry"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, infoGroup)
#. +> trunk5
#: auxiliary/ksnotification.h:21 ekos/guide/internalguide/guider.ui:316
#, kde-format
msgid "Info"
msgstr ""
#. +> trunk5
#: auxiliary/ksuserdb.cpp:1421
#, kde-format
msgctxt "No driver"
msgid "None"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:138
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "N"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:139
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "NNE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:140
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "NE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:141
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "ENE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:142
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "E"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:143
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "ESE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:144
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "SE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:145
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "SSE"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:146
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "S"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:147
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "SSW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:148
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "SW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:149
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "WSW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:150
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "W"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:151
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "WNW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:152
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "NW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:153
#, kde-format
msgctxt "Abbreviated cardinal / intercardinal etc. direction"
msgid "NNW"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:154
#, kde-format
msgctxt "Unknown cardinal / intercardinal direction"
msgid "???"
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:1162
#, kde-format
msgid "Error! The Astrometry Index File Directory does not exist and was not able to be created."
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:1169
#, kde-format
msgid "Internal Astrometry Configuration File Read Error."
msgstr ""
#. +> trunk5
#: auxiliary/ksutils.cpp:1201 ekos/align/opsastrometrycfg.cpp:76
#, kde-format
msgid "Internal Astrometry Configuration File Write Error."
msgstr ""
#. +> trunk5
#: auxiliary/kswizard.cpp:83
#, kde-format
msgid "Setup Wizard"
msgstr ""
#. +> trunk5
#: auxiliary/kswizard.cpp:90 printing/printingwizard.cpp:424
#: tools/obslistwizard.cpp:44
#, kde-format
msgid "&Next >"
msgstr ""
#. +> trunk5
#: auxiliary/kswizard.cpp:92 printing/printingwizard.cpp:427
#: tools/obslistwizard.cpp:46
#, kde-format
msgid "< &Back"
msgstr ""
#. +> trunk5
#: auxiliary/kswizard.cpp:314
#, kde-format
msgid "Error! There was no default data directory found in the app bundle!"
msgstr ""
#. +> trunk5
#: auxiliary/kswizard.cpp:324
#, kde-format
msgid "Error! There was a problem creating the data directory ~/Library/Application Support/ !"
msgstr ""
#. +> trunk5
#: auxiliary/thememanager.cpp:77
#, kde-format
msgctxt "default theme name"
msgid "Default"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnaileditor.cpp:46
#, kde-format
msgid "Crop region will be scaled to [ %1 * %2 ]"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnaileditor.cpp:48
#, kde-format
msgid "Edit Thumbnail Image"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnaileditor.cpp:85
#, kde-format
msgid "Crop region: [%1,%2 %3x%4]"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ThumbnailEditor)
#. +> trunk5
#: auxiliary/thumbnaileditor.ui:13
#, kde-format
msgid "Thumbnail Editor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, CropLabel)
#. +> trunk5
#: auxiliary/thumbnaileditor.ui:43
#, kde-format
msgid "Crop region: [0,0 200 x 200]"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, MessageLabel)
#. +> trunk5
#: auxiliary/thumbnaileditor.ui:59
#, kde-format
msgid "(crop region will be scaled to 200x200)"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnailpicker.cpp:138
#, kde-format
msgid "Loading images..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, SearchLabel)
#. +> trunk5
#: auxiliary/thumbnailpicker.cpp:171 auxiliary/thumbnailpicker.ui:24
#, kde-format
msgid "Search results:"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnailpicker.cpp:355
#, kde-format
msgid "Failed to load image at %1"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnailpicker.cpp:356
#, kde-format
msgid "Failed to load image"
msgstr ""
#. +> trunk5
#: auxiliary/thumbnailpicker.h:49
#, kde-format
msgid "Choose Thumbnail Image"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ThumbnailPicker)
#. +> trunk5
#: auxiliary/thumbnailpicker.ui:14
#, kde-format
msgid "Thumbnail Picker"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5
#: auxiliary/thumbnailpicker.ui:69
#, kde-format
msgid "Specify image location:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: auxiliary/thumbnailpicker.ui:103
#, kde-format
msgid "Current thumbnail:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, EditButton)
#. +> trunk5
#: auxiliary/thumbnailpicker.ui:178
#, kde-format
msgid "Edit Ima&ge..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, UnsetButton)
#. +> trunk5
#: auxiliary/thumbnailpicker.ui:185
#, kde-format
msgid "Unset Image"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5
#: data/fitsviewerui.rc:5 data/kstarsui.rc:5
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (edit)
#. +> trunk5
#: data/fitsviewerui.rc:16
#, kde-format
msgid "&Edit"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5
#: data/fitsviewerui.rc:23 data/kstarsui.rc:41
#, kde-format
msgid "&View"
msgstr ""
#. i18n: ectx: Menu (help)
#. i18n: ectx: property (text), widget (QPushButton, helpB)
#. +> trunk5
#: data/fitsviewerui.rc:42 data/kstarsui.rc:136 indi/telescopewizard.ui:54
#, kde-format
msgid "&Help"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
#. i18n: ectx: ToolBar (kstarsToolBar)
#. +> trunk5
#: data/fitsviewerui.rc:56 data/kstarsui.rc:151
#, kde-format
msgid "Main Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (processToolBar)
#. +> trunk5
#: data/fitsviewerui.rc:84
#, kde-format
msgid "Process ToolBar"
msgstr ""
#. i18n: ectx: Menu (time)
#. +> trunk5
#: data/kstarsui.rc:19
#, kde-format
msgid "T&ime"
msgstr ""
#. i18n: ectx: Menu (focus)
#. +> trunk5
#: data/kstarsui.rc:28
#, kde-format
msgid "&Pointing"
msgstr ""
#. i18n: ectx: Menu (projection)
#. +> trunk5
#: data/kstarsui.rc:50
#, kde-format
msgid "&Projection"
msgstr ""
#. i18n: ectx: Menu (tools)
#. +> trunk5
#: data/kstarsui.rc:61
#, kde-format
msgid "&Tools"
msgstr ""
#. i18n: ectx: Menu (devices)
#. +> trunk5
#: data/kstarsui.rc:63
#, kde-format
msgid "&Devices"
msgstr ""
#. i18n: ectx: Menu (data)
#. +> trunk5
#: data/kstarsui.rc:83
#, kde-format
msgid "&Data"
msgstr ""
#. i18n: ectx: Menu (updates)
#. +> trunk5
#: data/kstarsui.rc:86
#, kde-format
msgid "&Updates"
msgstr ""
#. i18n: ectx: Menu (observation)
#. +> trunk5
#: data/kstarsui.rc:93
#, kde-format
msgid "&Observation"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5
#: data/kstarsui.rc:100
#, kde-format
msgid "&Settings"
msgstr ""
#. i18n: ectx: Menu (infopanel)
#. +> trunk5
#: data/kstarsui.rc:101
#, kde-format
msgid "&Info Boxes"
msgstr ""
#. i18n: ectx: Menu (statusbar)
#. +> trunk5
#: data/kstarsui.rc:109
#, kde-format
msgid "&Statusbar"
msgstr ""
#. i18n: ectx: Menu (config_oal)
#. +> trunk5
#: data/kstarsui.rc:122
#, kde-format
msgid "Configure Observation &Logging"
msgstr ""
#. i18n: ectx: ToolBar (viewToolBar)
#. +> trunk5
#: data/kstarsui.rc:169
#, kde-format
msgid "View Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (INDIToolBar)
#. +> trunk5
#: data/kstarsui.rc:187
#, kde-format
msgid "INDI Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (TelescopeToolBar)
#. +> trunk5
#: data/kstarsui.rc:196
#, kde-format
msgid "Telescope Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (DomeToolBar)
#. +> trunk5
#: data/kstarsui.rc:207
#, kde-format
msgid "Dome Toolbar"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:46
#, kde-format
msgid "Import Catalog"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:59 dialogs/addcatdialog.cpp:148
#, kde-format
msgid "ID Number"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5
#: dialogs/addcatdialog.cpp:60 dialogs/addcatdialog.cpp:152
#: ekos/ekosmanager.ui:922 ekos/mount/mount.ui:237
#, kde-format
msgid "Right Ascension"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_7)
#. +> trunk5
#: dialogs/addcatdialog.cpp:61 dialogs/addcatdialog.cpp:156
#: ekos/ekosmanager.ui:939 ekos/mount/mount.ui:254
#, kde-format
msgid "Declination"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_5)
#. +> trunk5
#: dialogs/addcatdialog.cpp:62 dialogs/addcatdialog.cpp:160
#: tools/adddeepskyobject.ui:276
#, kde-format
msgid "Object Type"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:64 dialogs/addcatdialog.cpp:164
#, kde-format
msgid "Common Name"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:65 dialogs/addcatdialog.cpp:168
#: kstarslite/qml/dialogs/DetailsDialog.qml:145
#, kde-format, kde-kuit-format
msgid "Magnitude"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:66 dialogs/addcatdialog.cpp:172
#, kde-format
msgid "Flux"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:67 dialogs/addcatdialog.cpp:176
#, kde-format
msgid "Major Axis"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:68 dialogs/addcatdialog.cpp:180
#, kde-format
msgid "Minor Axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, PASpin)
#. +> trunk5
#: dialogs/addcatdialog.cpp:69 dialogs/addcatdialog.cpp:184
#: ekos/capture/rotatorsettings.ui:369
#, kde-format
msgid "Position Angle"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:70 dialogs/addcatdialog.cpp:188
#: widgets/draglistbox.cpp:81 widgets/draglistbox.cpp:98
#, kde-format
msgid "Ignore"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:76
#, kde-format
msgid "A valid custom catalog file has one line per object, with the following fields in each line:"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:79
#, kde-format
msgid "1. Type identifier. Must be one of: 0 (star), 3 (open cluster), 4 (globular cluster), 5 (gaseous nebula), 6 (planetary nebula), 7 (supernova remnant), or 8 (galaxy)"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:81
#, kde-format
msgid "2. Right Ascension (floating-point value)"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:82
#, kde-format
msgid "3. Declination (floating-point value)"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:82
#, kde-format
msgid "4. Magnitude (floating-point value)"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:83
#, kde-format
msgid "5. Integrated Flux (floating-point value); frequency and units are set separately in the catalog file."
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:84
#, kde-format
msgid "6. Spectral type (if type=0); otherwise object's catalog name"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:85
#, kde-format
msgid "7. Star name (if type=0); otherwise object's common name. [field 7 is optional]"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:87
#, kde-format
msgid "The fields should be separated by whitespace. In addition, the catalog may contain comment lines beginning with '#'."
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:90
#, kde-format
msgid "Help on custom catalog file format"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:133
#, kde-format
msgid "Custom"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:215
#, kde-format
msgid "Preview of %1"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:216
#, kde-format
msgid "Catalog Preview"
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:244
#, kde-format
msgid "Could not open the file %1 for writing."
msgstr ""
#. +> trunk5
#: dialogs/addcatdialog.cpp:245
#, kde-format
msgid "Error Opening Output File"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox4)
#. +> trunk5
#: dialogs/addcatdialog.ui:32
#, kde-format
msgid "Import File"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KUrlRequester, DataURL)
#. +> trunk5
#: dialogs/addcatdialog.ui:53
#, kde-format
msgid "Enter import data filename"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KUrlRequester, DataURL)
#. +> trunk5
#: dialogs/addcatdialog.ui:56
#, kde-format
msgid "To import an existing data file, enter its filename here. You will then describe the contents of the file below. You can leave the filename blank to construct a catalog file with a valid header, but no data."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QListWidget, DataFileBox)
#. +> trunk5
#: dialogs/addcatdialog.ui:76
#, kde-format
msgid "Contents of the imported data file"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QListWidget, DataFileBox)
#. +> trunk5
#: dialogs/addcatdialog.ui:79
#, kde-format
msgid "When you select a data file in the above line, its contents are displayed here."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. +> trunk5
#: dialogs/addcatdialog.ui:89
#, kde-format
msgid "Describe Data Fields"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
#. +> trunk5
#: dialogs/addcatdialog.ui:137
#, kde-format
msgid "<b>Catalog fields:</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3_2)
#. +> trunk5
#: dialogs/addcatdialog.ui:176
#, kde-format
msgid "<b>Available fields:</b>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, Epoch)
#. +> trunk5
#: dialogs/addcatdialog.ui:211
#, kde-format
msgid "The coordinate epoch for the catalog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. +> trunk5
#: dialogs/addcatdialog.ui:230
#, kde-format
msgid "Catalog name prefix:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4)
#. +> trunk5
#: dialogs/addcatdialog.ui:254
#, kde-format
msgid "Symbol color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5
#: dialogs/addcatdialog.ui:277
#, kde-format
msgid "Coordinate epoch:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, CSVButton)
#. +> trunk5
#: dialogs/addcatdialog.ui:301
#, kde-format
msgid "CSV"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, SpaceButton)
#. +> trunk5
#: dialogs/addcatdialog.ui:311
#, kde-format
msgid "Space Delimited"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PreviewButton)
#. +> trunk5
#: dialogs/addcatdialog.ui:324
#, kde-format
msgid "Preview &Output"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KUrlRequester, CatalogURL)
#. +> trunk5
#: dialogs/addcatdialog.ui:352
#, kde-format
msgid "Enter the filename for the output catalog file"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5
#: dialogs/addcatdialog.ui:359
#, kde-format
msgid "Catalog name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: dialogs/addcatdialog.ui:366
#, kde-format
msgid "Save catalog as:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, CatalogName)
#. +> trunk5
#: dialogs/addcatdialog.ui:373
#, kde-format
msgid "Enter a name for the catalog"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:41
#, kde-format
msgid "Add Custom URL to %1"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:57 dialogs/addlinkdialog.cpp:83
#, kde-format
msgid "Show image of "
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:70
#, kde-format
msgid ""
"The URL is not valid. Would you like to open a browser window\n"
"to the Google search engine?"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:71 ekos/align/align.cpp:1094
#: ekos/align/align.cpp:1240 ekos/align/align.cpp:1398
#: ekos/capture/capture.cpp:2556 ekos/capture/capture.cpp:2957
-#: ekos/guide/guide.cpp:743 ekos/scheduler/scheduler.cpp:3116
-#: ekos/scheduler/scheduler.cpp:3413 fitsviewer/fitstab.cpp:295
+#: ekos/guide/guide.cpp:743 ekos/scheduler/scheduler.cpp:3118
+#: ekos/scheduler/scheduler.cpp:3415 fitsviewer/fitstab.cpp:295
#: tools/scriptbuilder.cpp:873 tools/scriptbuilder.cpp:971
#, kde-format
msgid "Invalid URL"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:72
#, kde-format
msgid "Browse Google"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:73
#, kde-format
msgid "Do Not Browse"
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.cpp:85
#, kde-format
msgid "Show webpage about "
msgstr ""
#. +> trunk5
#: dialogs/addlinkdialog.h:50
#, kde-format
msgid "object"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, TypeBox)
#. +> trunk5
#: dialogs/addlinkdialog.ui:22
#, kde-format
msgid "Resource Type"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, ImageRadio)
#. i18n: ectx: property (text), widget (QLabel, sequenceLabel_2)
#. +> trunk5
#: dialogs/addlinkdialog.ui:34 ekos/ekosmanager.ui:557
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:70
#, kde-format, kde-kuit-format
msgid "Image"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, InfoRadio)
#. +> trunk5
#: dialogs/addlinkdialog.ui:41
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:66
#, kde-format, kde-kuit-format
msgid "Information"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, DescBox)
#. +> trunk5
#: dialogs/addlinkdialog.ui:59
#, kde-format
msgid "Text describing the linked resource"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DescLabel)
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. i18n: ectx: property (text), widget (QLabel, descriptionLabel)
#. +> trunk5
#: dialogs/addlinkdialog.ui:66 oal/execute.ui:427
#: printing/foveditordialog.ui:129 printing/pwizchartconfig.ui:161
#, kde-format
msgid "Description:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, URLLabel)
#. +> trunk5
#: dialogs/addlinkdialog.ui:73 dialogs/detaildialog.cpp:891
#, kde-format
msgid "URL:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, URLBox)
#. +> trunk5
#: dialogs/addlinkdialog.ui:94
#, kde-format
msgid "The URL which will be displayed by this item"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, URLButton)
#. +> trunk5
#: dialogs/addlinkdialog.ui:127
#, kde-format
msgid "Open URL in a browser window"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, URLButton)
#. +> trunk5
#: dialogs/addlinkdialog.ui:130
#, kde-format
msgid "You can verify the entered URL by opening it in a browser window with this button"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, URLButton)
#. +> trunk5
#: dialogs/addlinkdialog.ui:133
#, kde-format
msgid "Check URL"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, DetailButton)
#. +> trunk5
#: dialogs/detaildialog.cpp:65 skymap.cpp:809 tools/wutdialog.ui:480
#, kde-format
msgid "Object Details"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, generalTab)
#. i18n: ectx: property (title), widget (QGroupBox, generalGroup)
#. i18n: ectx: attribute (title), widget (QWidget, XplanetTabGeneral)
#. +> trunk5
#: dialogs/detaildialog.cpp:85 ekos/opsekos.ui:21 indi/opsindi.ui:17
#: kstarslite/qml/dialogs/DetailsDialog.qml:41 printing/detailstable.cpp:338
#: xplanet/opsxplanet.ui:21
#, kde-format, kde-kuit-format
msgid "General"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:128 kspopupmenu.cpp:216 kspopupmenu.cpp:317
#: kstarsinit.cpp:798 kstarslite/dialogs/detaildialoglite.cpp:79
#: kstarsliteinit.cpp:63 printing/detailstable.cpp:87
#: printing/pwizobjectselection.cpp:114 skycomponents/starcomponent.cpp:511
#: skyobjects/starobject.cpp:558 tools/observinglist.cpp:547
#, kde-format
msgid "star"
msgstr ""
#. i18nc("number in magnitudes", "%1 mag",
#. QLocale().toString( ((KSComet *)selectedObject)->getTotalMagnitudeParameter(), 'f', 2))); //show to hundredth place
#.
#. }
#. else{
#. +> trunk5
#: dialogs/detaildialog.cpp:129 dialogs/detaildialog.cpp:228
#: dialogs/detaildialog.cpp:276 dialogs/detaildialog.cpp:359
#: kstarslite/dialogs/detaildialoglite.cpp:80
#: kstarslite/dialogs/detaildialoglite.cpp:172
#: kstarslite/dialogs/detaildialoglite.cpp:220
#: kstarslite/dialogs/detaildialoglite.cpp:271 printing/detailstable.cpp:88
#: printing/detailstable.cpp:178 printing/detailstable.cpp:289
#: printing/pwizobjectselection.cpp:115 printing/pwizobjectselection.cpp:152
#, kde-format
msgctxt "number in magnitudes"
msgid "%1 mag"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:147 kstarslite/dialogs/detaildialoglite.cpp:91
#: printing/detailstable.cpp:98
#, kde-format
msgctxt "larger than 2000 parsecs"
msgid "> 2000 pc"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:151 dialogs/detaildialog.cpp:155
#: dialogs/detaildialog.cpp:159 kstarslite/dialogs/detaildialoglite.cpp:96
#: kstarslite/dialogs/detaildialoglite.cpp:101
#: kstarslite/dialogs/detaildialoglite.cpp:106 printing/detailstable.cpp:103
#: printing/detailstable.cpp:108 printing/detailstable.cpp:113
#, kde-format
msgctxt "number in parsecs"
msgid "%1 pc"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:168 dialogs/detaildialog.cpp:173
#: kstarslite/dialogs/detaildialoglite.cpp:113
#: kstarslite/dialogs/detaildialoglite.cpp:118 printing/detailstable.cpp:119
#: printing/detailstable.cpp:125
#, kde-format
msgctxt "the star is a multiple star"
msgid "multiple"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:169 dialogs/detaildialog.cpp:177
#: kstarslite/dialogs/detaildialoglite.cpp:114
#: kstarslite/dialogs/detaildialoglite.cpp:122 printing/detailstable.cpp:120
#: printing/detailstable.cpp:130
#, kde-format
msgctxt "the star is a variable star"
msgid "variable"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:194 kstarslite/dialogs/detaildialoglite.cpp:139
#: printing/detailstable.cpp:152 printing/pwizobjectselection.cpp:134
#, kde-format
msgid "G5 star"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:200 kstars_i18n.cpp:8172
#: printing/detailstable.cpp:160 printing/pwizobjectselection.cpp:142
#: skycomponents/asteroidscomponent.cpp:179 tools/obslistwizard.cpp:630
#: tools/obslistwizard.cpp:632 tools/wutdialog.cpp:315
#, kde-format, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pluto"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:200 kstars_i18n.cpp:4802
#: printing/detailstable.cpp:160 printing/pwizobjectselection.cpp:142
#, kde-format, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ceres"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:201 printing/detailstable.cpp:161
#: printing/pwizobjectselection.cpp:142
#, kde-format
msgctxt "Asteroid name (optional)"
msgid "Eris"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:203 kstarslite/dialogs/detaildialoglite.cpp:148
#: printing/detailstable.cpp:163 printing/pwizobjectselection.cpp:144
#, kde-format
msgid "Dwarf planet"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:236 kstarslite/dialogs/detaildialoglite.cpp:179
#: printing/detailstable.cpp:183
#, kde-format
msgctxt "distance in kilometers"
msgid "%1 km"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:241 kstarslite/dialogs/detaildialoglite.cpp:184
#: printing/detailstable.cpp:188
#, kde-format
msgctxt "distance in Astronomical Units"
msgid "%1 AU"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:250 dialogs/detaildialog.cpp:370
#: dialogs/detaildialog.cpp:375 kstarslite/dialogs/detaildialoglite.cpp:196
#: kstarslite/dialogs/detaildialoglite.cpp:282
#: kstarslite/dialogs/detaildialoglite.cpp:287 printing/detailstable.cpp:197
#: printing/detailstable.cpp:298 printing/detailstable.cpp:303
#, kde-format
msgctxt "angular size in arcminutes"
msgid "%1 arcmin"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:257 kstarslite/dialogs/detaildialoglite.cpp:203
#: printing/detailstable.cpp:203
#, kde-format
msgctxt "angular size in arcseconds"
msgid "%1 arcsec"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:272 kstarslite/dialogs/detaildialoglite.cpp:218
#: skyobjects/skyobject.cpp:392
#, kde-format
msgid "Supernova"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:286
#, kde-format
msgid "Discovery Date:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_17)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label6)
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5
#: dialogs/detaildialog.cpp:291 ekos/capture/capture.ui:412
#: oal/equipmentwriter.ui:83 oal/equipmentwriter.ui:606 oal/execute.ui:146
#: printing/detailstable.cpp:345
#, kde-format
msgid "Type:"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:296
#, kde-format
msgid "Host Galaxy:"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:301
#, kde-format
msgid "Red Shift:"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:348 printing/detailstable.cpp:276
#, kde-format
msgctxt "integrated flux at a frequency"
msgid "Flux(%1):"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:349 printing/detailstable.cpp:277
#, kde-format
msgctxt "integrated flux value"
msgid "%1 %2"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:397 dialogs/detaildialog.cpp:402
#: dialogs/detaildialog.cpp:446 dialogs/detaildialog.cpp:451
#, kde-format
msgctxt "Distance in astronomical units"
msgid "%1 AU"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, webManagerYesR)
#. +> trunk5
#: dialogs/detaildialog.cpp:409 dialogs/detaildialog.cpp:458
#: ekos/profilewizard.ui:542
#: kstarslite/qml/modules/tutorial/TutorialExitPopup.qml:46
#: printing/detailstable.cpp:399 printing/detailstable.cpp:437
#, kde-format, kde-kuit-format
msgid "Yes"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, webManagerNoR)
#. +> trunk5
#: dialogs/detaildialog.cpp:411 dialogs/detaildialog.cpp:460
#: ekos/profilewizard.ui:549 printing/detailstable.cpp:399
#: printing/detailstable.cpp:437
#, kde-format
msgid "No"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:421 dialogs/detaildialog.cpp:470
#, kde-format
msgctxt "Diameter in kilometers"
msgid "%1 km"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:426 dialogs/detaildialog.cpp:475
#, kde-format
msgctxt "Dimension in kilometers"
msgid "%1 km"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:431 dialogs/detaildialog.cpp:480
#, kde-format
msgctxt "Rotation period in hours"
msgid "%1 h"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:436 dialogs/detaildialog.cpp:485
#, kde-format
msgctxt "Orbit period in years"
msgid "%1 y"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:494 kstarslite/dialogs/detaildialoglite.cpp:427
#: printing/detailstable.cpp:324 tools/observinglist.cpp:624
#, kde-format
msgctxt "%1 type of sky object (planet, asteroid etc), %2 name of a constellation"
msgid "%1 in %2"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, XplanetTabPosition)
#. +> trunk5
#: dialogs/detaildialog.cpp:503 kstarslite/qml/dialogs/DetailsDialog.qml:45
#: xplanet/opsxplanet.ui:764
#, kde-format, kde-kuit-format
msgid "Position"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:520 kstarslite/dialogs/detaildialoglite.cpp:451
#: printing/detailstable.cpp:545
#, kde-format
msgid "RA (%1):"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:521
#, kde-format
msgid "DE (%1):"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:608 dialogs/detaildialog.cpp:609
#: kstarslite/dialogs/detaildialoglite.cpp:533
#: kstarslite/dialogs/detaildialoglite.cpp:534 printing/detailstable.cpp:649
#: printing/detailstable.cpp:650 tools/modcalcdaylength.cpp:149
#: tools/modcalcdaylength.cpp:151 tools/modcalcdaylength.cpp:196
#: tools/modcalcdaylength.cpp:198
#, kde-format
msgid "Circumpolar"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:613 dialogs/detaildialog.cpp:614
#: kstarslite/dialogs/detaildialoglite.cpp:538
#: kstarslite/dialogs/detaildialoglite.cpp:539 printing/detailstable.cpp:655
#: printing/detailstable.cpp:656 tools/observinglist.cpp:192
#, kde-format
msgid "Never rises"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:617 dialogs/detaildialog.cpp:618
#: kstarslite/dialogs/detaildialoglite.cpp:542
#: kstarslite/dialogs/detaildialoglite.cpp:543 printing/detailstable.cpp:659
#: printing/detailstable.cpp:660
#, kde-format
msgctxt "Not Applicable"
msgid "N/A"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:635 kstarslite/qml/dialogs/DetailsDialog.qml:54
#, kde-format, kde-kuit-format
msgid "Links"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:699 kstarslite/dialogs/detaildialoglite.cpp:696
#, kde-format
msgid ""
"Custom image-links file could not be opened.\n"
"Link cannot be recorded for future sessions."
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:700 ekos/align/align.cpp:1113
#: ekos/align/align.cpp:1251 ekos/align/align.cpp:1407
#: ekos/capture/capture.cpp:2573 ekos/capture/capture.cpp:2981
-#: ekos/guide/guide.cpp:752 ekos/scheduler/scheduler.cpp:3133
-#: ekos/scheduler/scheduler.cpp:3425 ekos/scheduler/scheduler.cpp:4549
-#: ekos/scheduler/scheduler.cpp:4579 ekos/scheduler/scheduler.cpp:4616
+#: ekos/guide/guide.cpp:752 ekos/scheduler/scheduler.cpp:3135
+#: ekos/scheduler/scheduler.cpp:3427 ekos/scheduler/scheduler.cpp:4564
+#: ekos/scheduler/scheduler.cpp:4594 ekos/scheduler/scheduler.cpp:4631
#: indi/drivermanager.cpp:1478 indi/indidriver.cpp:933 kstarsactions.cpp:1262
#: oal/execute.cpp:330 options/opscolors.cpp:272 tools/modcalcangdist.cpp:149
#: tools/modcalcapcoord.cpp:157 tools/modcalcdaylength.cpp:268
#: tools/modcalcgalcoord.cpp:210 tools/modcalcgeodcoord.cpp:243
#: tools/modcalcjd.cpp:128 tools/modcalcplanets.cpp:209
#: tools/modcalcsidtime.cpp:213 tools/modcalcvizequinox.cpp:83
#: tools/modcalcvlsr.cpp:307 tools/observinglist.cpp:860
#: tools/observinglist.cpp:1069 tools/scriptbuilder.cpp:860
#: tools/scriptbuilder.cpp:941 tools/scriptbuilder.cpp:1024
#, kde-format, kde-kuit-format
msgid "Could Not Open File"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:725 kstarslite/dialogs/detaildialoglite.cpp:721
#, kde-format
msgid ""
"Custom information-links file could not be opened.\n"
"Link cannot be recorded for future sessions."
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:726
#, kde-format
msgid "Could not Open File"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:753 kstarsactions.cpp:1063
#, kde-format
msgid "Advanced"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:768 kstarslite/qml/dialogs/DetailsDialog.qml:62
#: kstarslite/qml/dialogs/DetailsDialog.qml:460
#, kde-format, kde-kuit-format
msgid "Log"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:774 kstarslite/dialogs/detaildialoglite.cpp:567
#: kstarslite/qml/dialogs/DetailsDialog.qml:469 skyobjects/skyobject.cpp:478
#: tools/observinglist.cpp:558 tools/observinglist.cpp:823
#, kde-format
msgid "Record here observation logs and/or data on %1."
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:843
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:20
#, kde-format, kde-kuit-format
msgid "Edit Link"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:984
#, kde-format
msgid "Are you sure you want to remove the %1 link?"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:985 indi/drivermanager.cpp:1452
#: indi/indidriver.cpp:909
#, kde-format, kde-kuit-format
msgid "Delete Confirmation"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:1201 dialogs/detaildialog.cpp:1238
#: fitsviewer/fitslabel.cpp:327 fitsviewer/fitslabel.cpp:363
#: kstarsactions.cpp:282 kstarsactions.cpp:311 tools/flagmanager.cpp:278
#: tools/flagmanager.cpp:308 tools/observinglist.cpp:684
#: tools/observinglist.cpp:713 tools/whatsinteresting/wiview.cpp:330
#: tools/whatsinteresting/wiview.cpp:362
#, kde-format
msgid "KStars did not find any active telescopes."
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:1218 fitsviewer/fitslabel.cpp:344
#: kstarsactions.cpp:301 tools/flagmanager.cpp:295 tools/observinglist.cpp:701
#: tools/whatsinteresting/wiview.cpp:347
#, kde-format
msgid "Telescope %1 is offline. Please connect and retry again."
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:1225
#, kde-format
msgid "Danger! Viewing the Sun without adequate solar filters is dangerous and will result in permanent eye damage!"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:1290
#, kde-format
msgid "Error: Unable to save image to %1"
msgstr ""
#. +> trunk5
#: dialogs/detaildialog.cpp:1290
#, kde-format
msgid "Save Thumbnail"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Names)
#. +> trunk5
#: dialogs/details_data.ui:46
#, kde-format
msgid "Primary Name, Other Names"
msgstr ""
#. i18n: ectx: property (text), widget (KSHelpLabel, DistanceLabel)
#. +> trunk5
#: dialogs/details_data.ui:271 printing/detailstable.cpp:349
#, kde-format
msgid "Distance:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AngSize)
#. +> trunk5
#: dialogs/details_data.ui:292
#, kde-format
msgid "0.0 arcmin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AngSizeLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_19)
#. +> trunk5
#: dialogs/details_data.ui:299 ekos/capture/capture.ui:528
#: printing/detailstable.cpp:353
#, kde-format
msgid "Size:"
msgstr ""
#. i18n: ectx: property (text), widget (KSHelpLabel, MagLabel)
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5
#: dialogs/details_data.ui:306 oal/execute.ui:132 printing/detailstable.cpp:357
#, kde-format
msgid "Magnitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Magnitude)
#. +> trunk5
#: dialogs/details_data.ui:327
#, kde-format
msgid "0.0 mag"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Distance)
#. +> trunk5
#: dialogs/details_data.ui:345
#, kde-format
msgid "0.0 pc"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, IllumLabel)
#. +> trunk5
#: dialogs/details_data.ui:352 printing/detailstable.cpp:365
#, kde-format
msgid "Illumination:"
msgstr ""
#. i18n: ectx: property (text), widget (KSHelpLabel, BVLabel)
#. +> trunk5
#: dialogs/details_data.ui:374
#, kde-format
msgid "B - V index:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, BVIndex)
#. i18n: ectx: property (text), item, widget (QComboBox, filterCombo)
#. i18n: ectx: property (text), widget (QLabel, instFPS)
#. i18n: ectx: property (text), widget (QLabel, avgFPS)
#. +> trunk5
#: dialogs/details_data.ui:384 ekos/capture/capture.ui:1734
#: ekos/focus/focus.ui:454 ekos/guide/guide.ui:355 indi/streamform.ui:168
#: indi/streamform.ui:196
#, kde-format
msgid "--"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ObsListButton)
#. +> trunk5
#: dialogs/details_data.ui:476
#, kde-format
msgid "Add to Observing List"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, CenterButton)
#. +> trunk5
#: dialogs/details_data.ui:483 tools/flagmanager.ui:206
#, kde-format
msgid "Center in Map"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ScopeButton)
#. +> trunk5
#: dialogs/details_data.ui:490 tools/flagmanager.ui:216
#, kde-format
msgid "Center in Telescope"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, PerihelionLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:30 printing/detailstable.cpp:477
#, kde-format
msgid "Perihelion:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Perihelion)
#. i18n: ectx: property (text), widget (QLabel, EarthMOID)
#. +> trunk5
#: dialogs/details_data_comet.ui:45 dialogs/details_data_comet.ui:174
#, kde-format
msgid "0.0 AU"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, OrbitIDLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:52 printing/detailstable.cpp:481
#, kde-format
msgid "Orbit ID:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, OrbitID)
#. +> trunk5
#: dialogs/details_data_comet.ui:67
#, kde-format
msgid "Orbit ID"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, NEOLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:74 printing/detailstable.cpp:485
#, kde-format
msgid "NEO:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, NEO)
#. +> trunk5
#: dialogs/details_data_comet.ui:88
#: kstarslite/qml/dialogs/DetailsDialog.qml:180
#, kde-format, kde-kuit-format
msgid "NEO"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DiameterLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:95 printing/detailstable.cpp:489
#, kde-format
msgid "Diameter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Diameter)
#. i18n: ectx: property (text), widget (QLabel, Dimensions)
#. +> trunk5
#: dialogs/details_data_comet.ui:110 dialogs/details_data_comet.ui:240
#, kde-format
msgid "0.0 km"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, RotationLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:117 printing/detailstable.cpp:493
#, kde-format
msgid "Rotation period:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Rotation)
#. +> trunk5
#: dialogs/details_data_comet.ui:132
#, kde-format
msgid "0.0 h"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, EarthMOIDLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:159 printing/detailstable.cpp:497
#, kde-format
msgid "Earth MOID:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, OrbitClassLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:181 printing/detailstable.cpp:501
#, kde-format
msgid "Orbit class:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, OrbitClass)
#. +> trunk5
#: dialogs/details_data_comet.ui:196
#, kde-format
msgid "Class"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AlbedoLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:203 printing/detailstable.cpp:505
#, kde-format
msgid "Albedo:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Albedo)
#. i18n: ectx: property (text), widget (QLineEdit, AltGeoBox)
#. +> trunk5
#: dialogs/details_data_comet.ui:218 tools/modcalcgeod.ui:257
#, kde-format
msgid "0.0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DimensionsLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:225 printing/detailstable.cpp:509
#, kde-format
msgid "Dimensions:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, PeriodLabel)
#. +> trunk5
#: dialogs/details_data_comet.ui:247 printing/detailstable.cpp:513
#, kde-format
msgid "Period:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Period)
#. +> trunk5
#: dialogs/details_data_comet.ui:262
#, kde-format
msgid "0 y"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DetailsDatabase)
#. +> trunk5
#: dialogs/details_database.ui:13
#, kde-format
msgid "Details - Online Databases"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, ADVTree)
#. +> trunk5
#: dialogs/details_database.ui:29
#, kde-format
msgid "Choose Online Database"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DetailsLinks)
#. +> trunk5
#: dialogs/details_links.ui:13
#, kde-format
msgid "Details - Resource Links"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, InfoTitle)
#. +> trunk5
#: dialogs/details_links.ui:47 kstarslite/qml/dialogs/DetailsDialog.qml:364
#, kde-format, kde-kuit-format
msgid "Information Links"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ImagesTitle)
#. +> trunk5
#: dialogs/details_links.ui:110 kstarslite/qml/dialogs/DetailsDialog.qml:400
#, kde-format, kde-kuit-format
msgid "Image Links"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ViewButton)
#. +> trunk5
#: dialogs/details_links.ui:143
#, kde-format
msgid "View Resource"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, AddLinkButton)
#. +> trunk5
#: dialogs/details_links.ui:150
#, kde-format
msgid "Add Link..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, EditLinkButton)
#. +> trunk5
#: dialogs/details_links.ui:157
#, kde-format
msgid "Edit Link..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, RemoveLinkButton)
#. +> trunk5
#: dialogs/details_links.ui:164
#, kde-format
msgid "Remove Link"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, LogTitle)
#. +> trunk5
#: dialogs/details_log.ui:36
#, kde-format
msgid "User Log"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DetailsPosition)
#. +> trunk5
#: dialogs/details_position.ui:14
#, kde-format
msgid "Details - Position Data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, CoordTitle)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: dialogs/details_position.ui:66 ekos/mount/mount.ui:216
#: kstarslite/qml/dialogs/DetailsDialog.qml:243 printing/detailstable.cpp:536
#, kde-format, kde-kuit-format
msgid "Coordinates"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DecLabel)
#. +> trunk5
#: dialogs/details_position.ui:132
#, kde-format
msgid "DE (2000.0):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, RA0Label)
#. +> trunk5
#: dialogs/details_position.ui:167
#, kde-format
msgid "RA (J2000.0):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Dec0)
#. i18n: ectx: property (text), widget (QLabel, RA0)
#. i18n: ectx: property (text), widget (QLabel, HA)
#. i18n: ectx: property (text), widget (QLabel, Dec)
#. i18n: ectx: property (text), widget (QLabel, Alt)
#. i18n: ectx: property (text), widget (QLabel, Az)
#. i18n: ectx: property (text), widget (QLabel, RA)
#. i18n: ectx: property (text), widget (QLabel, AzRise)
#. i18n: ectx: property (text), widget (QLabel, AltTransit)
#. i18n: ectx: property (text), widget (QLabel, AzSet)
#. i18n: ectx: property (text), widget (QLabel, AngDist)
#. +> trunk5
#: dialogs/details_position.ui:185 dialogs/details_position.ui:243
#: dialogs/details_position.ui:277 dialogs/details_position.ui:305
#: dialogs/details_position.ui:323 dialogs/details_position.ui:414
#: dialogs/details_position.ui:470 dialogs/details_position.ui:827
#: dialogs/details_position.ui:845 dialogs/details_position.ui:863
#: tools/modcalcangdist.ui:321
#, kde-format
msgid "00:00:00"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Airmass)
#. +> trunk5
#: dialogs/details_position.ui:203
#, kde-format
msgid "0.00"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, RALabel)
#. +> trunk5
#: dialogs/details_position.ui:216
#, kde-format
msgid "RA (2000.0):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Dec0Label)
#. +> trunk5
#: dialogs/details_position.ui:287
#, kde-format
msgid "DE (J2000.0):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AzLabel)
#. i18n: ectx: property (text), widget (QLabel, label_23)
#. i18n: ectx: property (text), widget (QLabel, azLabel)
#. +> trunk5
#: dialogs/details_position.ui:336 oal/execute.ui:216
#: printing/detailstable.cpp:568 tools/modcalcaltaz.ui:313
#, kde-format
msgid "Azimuth:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AirmassLabel)
#. +> trunk5
#: dialogs/details_position.ui:371 printing/detailstable.cpp:586
#, kde-format
msgid "Airmass:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AltLabel)
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. i18n: ectx: property (text), widget (QLabel, elLabel)
#. +> trunk5
#: dialogs/details_position.ui:387 oal/execute.ui:202
#: printing/detailstable.cpp:572 tools/modcalcaltaz.ui:320
#, kde-format
msgid "Altitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, HALabel)
#. +> trunk5
#: dialogs/details_position.ui:427 printing/detailstable.cpp:553
#, kde-format
msgid "Hour angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, RSTTitle)
#. +> trunk5
#: dialogs/details_position.ui:554
#: kstarslite/qml/dialogs/DetailsDialog.qml:291 printing/detailstable.cpp:675
#, kde-format, kde-kuit-format
msgid "Rise/Set/Transit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TimeSetLabel)
#. +> trunk5
#: dialogs/details_position.ui:637 printing/detailstable.cpp:687
#, kde-format
msgid "Set time:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TimeTransitLabel)
#. +> trunk5
#: dialogs/details_position.ui:653 printing/detailstable.cpp:682
#, kde-format
msgid "Transit time:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TimeRiseLabel)
#. +> trunk5
#: dialogs/details_position.ui:669 printing/detailstable.cpp:678
#, kde-format
msgid "Rise time:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TimeRise)
#. i18n: ectx: property (text), widget (QLabel, TimeTransit)
#. i18n: ectx: property (text), widget (QLabel, TimeSet)
#. i18n: ectx: property (text), widget (QLabel, SunTransitAlt)
#. i18n: ectx: property (text), widget (QLabel, DayLength)
#. i18n: ectx: property (text), widget (QLabel, SunRiseAz)
#. i18n: ectx: property (text), widget (QLabel, SunSetAz)
#. i18n: ectx: property (text), widget (QLabel, SunSet)
#. i18n: ectx: property (text), widget (QLabel, SunRise)
#. i18n: ectx: property (text), widget (QLabel, SunTransit)
#. i18n: ectx: property (text), widget (QLabel, MoonRise)
#. i18n: ectx: property (text), widget (QLabel, MoonSet)
#. i18n: ectx: property (text), widget (QLabel, MoonRiseAz)
#. i18n: ectx: property (text), widget (QLabel, MoonSetAz)
#. i18n: ectx: property (text), widget (QLabel, MoonTransitAlt)
#. i18n: ectx: property (text), widget (QLabel, MoonTransit)
#. +> trunk5
#: dialogs/details_position.ui:690 dialogs/details_position.ui:708
#: dialogs/details_position.ui:726 tools/modcalcdaylength.ui:160
#: tools/modcalcdaylength.ui:197 tools/modcalcdaylength.ui:276
#: tools/modcalcdaylength.ui:330 tools/modcalcdaylength.ui:367
#: tools/modcalcdaylength.ui:401 tools/modcalcdaylength.ui:422
#: tools/modcalcdaylength.ui:512 tools/modcalcdaylength.ui:556
#: tools/modcalcdaylength.ui:606 tools/modcalcdaylength.ui:627
#: tools/modcalcdaylength.ui:648 tools/modcalcdaylength.ui:696
#, kde-format
msgid "00:00"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AzSetLabel)
#. +> trunk5
#: dialogs/details_position.ui:774 printing/detailstable.cpp:699
#, kde-format
msgid "Azimuth at set:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AltTransitLabel)
#. +> trunk5
#: dialogs/details_position.ui:790 printing/detailstable.cpp:695
#, kde-format
msgid "Altitude at transit:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, AzRiseLabel)
#. +> trunk5
#: dialogs/details_position.ui:806 printing/detailstable.cpp:691
#, kde-format
msgid "Azimuth at rise:"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:56
#, kde-format
msgid "Preview image"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:65
#, kde-format
msgid "Export sky image"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:100 printing/pwizfovconfig.cpp:69
#, kde-format
msgid "Horizontal"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:101 printing/pwizfovconfig.cpp:70
#, kde-format
msgid "Vertical"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:104
#, kde-format
msgid "Full legend"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:104 printing/pwizfovconfig.cpp:66
#, kde-format
msgid "Scale with magnitudes chart"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:104 printing/pwizfovconfig.cpp:66
#, kde-format
msgid "Only scale"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:104
#, kde-format
msgid "Only magnitudes"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:105
#, kde-format
msgid "Only symbols"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:109 printing/pwizfovconfig.cpp:73
#, kde-format
msgid "Upper left corner"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:109 printing/pwizfovconfig.cpp:73
#, kde-format
msgid "Upper right corner"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:109 printing/pwizfovconfig.cpp:73
#, kde-format
msgid "Lower left corner"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:110 printing/pwizfovconfig.cpp:74
#, kde-format
msgid "Lower right corner"
msgstr ""
#. +> trunk5
#: dialogs/exportimagedialog.cpp:134
#, kde-format
msgid "Could not export image"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, legendGroupBox)
#. +> trunk5
#: dialogs/exportimagedialog.ui:17
#, kde-format
msgid "Legend Configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, addLegendCheckBox)
#. +> trunk5
#: dialogs/exportimagedialog.ui:23
#, kde-format
msgid "Add legend to exported sky image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendOrientationLabel)
#. +> trunk5
#: dialogs/exportimagedialog.ui:35
#, kde-format
msgid "Legend orientation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendTypeLabel)
#. +> trunk5
#: dialogs/exportimagedialog.ui:45
#, kde-format
msgid "Legend type:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendPositionLabel)
#. +> trunk5
#: dialogs/exportimagedialog.ui:55
#, kde-format
msgid "Legend position:"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:42 kstarslite/dialogs/finddialoglite.cpp:36
#: tools/conjunctions.cpp:62
#, kde-format
msgid "Any"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, TypeList)
#. +> trunk5
#: dialogs/finddialog.cpp:43 kstarslite/dialogs/finddialoglite.cpp:37
#: tools/conjunctions.cpp:63 tools/obslistwizard.cpp:397
#: tools/obslistwizard.cpp:439 tools/obslistwizard.ui:105
#: tools/whatsinteresting/qml/wiview.qml:270 tools/wutdialog.cpp:109
#, kde-format, kde-kuit-format
msgid "Stars"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:44 kstarsactions.cpp:1022 kstarsinit.cpp:439
#: kstarslite/dialogs/finddialoglite.cpp:38 tools/astrocalc.cpp:172
#: tools/conjunctions.cpp:64
#, kde-format
msgid "Solar System"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:45 kstarslite/dialogs/finddialoglite.cpp:39
#: tools/conjunctions.cpp:68
#, kde-format
msgid "Open Clusters"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:46 kstarslite/dialogs/finddialoglite.cpp:40
#: tools/conjunctions.cpp:69
#, kde-format
msgid "Globular Clusters"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:47 kstarslite/dialogs/finddialoglite.cpp:41
#: tools/conjunctions.cpp:70
#, kde-format
msgid "Gaseous Nebulae"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:48 kstarslite/dialogs/finddialoglite.cpp:42
#: tools/conjunctions.cpp:71
#, kde-format
msgid "Planetary Nebulae"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, TypeList)
#. +> trunk5
#: dialogs/finddialog.cpp:49 kstarslite/dialogs/finddialoglite.cpp:43
#: tools/conjunctions.cpp:72 tools/obslistwizard.cpp:262
#: tools/obslistwizard.cpp:405 tools/obslistwizard.cpp:640
#: tools/obslistwizard.cpp:678 tools/obslistwizard.ui:145
#: tools/whatsinteresting/qml/wiview.qml:415 tools/wutdialog.cpp:109
#, kde-format, kde-kuit-format
msgid "Galaxies"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowComets)
#. i18n: ectx: property (text), item, widget (QListWidget, TypeList)
#. +> trunk5
#: dialogs/finddialog.cpp:50 kstarslite/dialogs/finddialoglite.cpp:44
#: options/opssolarsystem.ui:320 tools/conjunctions.cpp:66
#: tools/obslistwizard.cpp:269 tools/obslistwizard.cpp:401
#: tools/obslistwizard.cpp:725 tools/obslistwizard.ui:115
#: tools/whatsinteresting/qml/wiview.qml:383 tools/wutdialog.cpp:110
#, kde-format, kde-kuit-format
msgid "Comets"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowAsteroids)
#. i18n: ectx: property (text), item, widget (QListWidget, TypeList)
#. +> trunk5
#: dialogs/finddialog.cpp:51 kstarslite/dialogs/finddialoglite.cpp:45
#: options/opssolarsystem.ui:304 tools/conjunctions.cpp:67
#: tools/obslistwizard.cpp:270 tools/obslistwizard.cpp:403
#: tools/obslistwizard.cpp:767 tools/obslistwizard.ui:120
#: tools/whatsinteresting/qml/wiview.qml:351 tools/wutdialog.cpp:110
#, kde-format, kde-kuit-format
msgid "Asteroids"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:52 kstarslite/dialogs/finddialoglite.cpp:46
#: tools/whatsinteresting/qml/wiview.qml:300 tools/wutdialog.cpp:110
#, kde-format, kde-kuit-format
msgid "Constellations"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, FindButton)
#. +> trunk5
#: dialogs/finddialog.cpp:67 tools/observinglist.ui:329
#, kde-format
msgid "Find Object"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:80
#, kde-format
msgid "Details..."
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:145
#, kde-format
msgid "Andromeda Galaxy"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:151
#, kde-format
msgid "Aldebaran"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:158
#, kde-format
msgid "Aaltje"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:164
#, kde-format
msgid "Aarseth-Brewington (1989 W1)"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:255
#, kde-format
msgid "or search the internet for %1"
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:374 kstarslite/dialogs/finddialoglite.cpp:216
#, kde-format
msgid "No object named %1 found."
msgstr ""
#. +> trunk5
#: dialogs/finddialog.cpp:375
#, kde-format
msgid "Bad object name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, SearchLabel)
#. +> trunk5
#: dialogs/finddialog.ui:31
#, kde-format
msgid "Filter by name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, FilterTypeLabel)
#. +> trunk5
#: dialogs/finddialog.ui:55
#, kde-format
msgid "Filter by type:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, InternetSearchButton)
#. +> trunk5
#: dialogs/finddialog.ui:70
#, kde-format
msgid "or search internet for (nothing)"
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:50
#, kde-format
msgid "Set Coordinates Manually"
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:102 tools/flagmanager.cpp:195
#, kde-format
msgid "The Right Ascension value must be between 0.0 and 24.0."
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:104 tools/flagmanager.cpp:197
#, kde-format
msgid "The Declination value must be between -90.0 and 90.0."
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:107 dialogs/focusdialog.cpp:135
#: tools/flagmanager.cpp:200
#, kde-format
msgid "Invalid Coordinate Data"
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:130
#, kde-format
msgid "The Azimuth value must be between 0.0 and 360.0."
msgstr ""
#. +> trunk5
#: dialogs/focusdialog.cpp:132
#, kde-format
msgid "The Altitude value must be between -90.0 and 90.0."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, rdTab)
#. +> trunk5
#: dialogs/focusdialog.ui:36
#, kde-format
msgid "RA/Dec"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, epochBox)
#. i18n: ectx: property (text), widget (QLabel, EpochTarget)
#. +> trunk5
#: dialogs/focusdialog.ui:70 tools/flagmanager.ui:77
#: tools/modcalcapcoord.ui:230
#, kde-format
msgid "2000.0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, epochLabel)
#. i18n: ectx: property (text), widget (QLabel, EpochLabel)
#. i18n: ectx: property (text), widget (QLabel, EpochLabel2)
#. i18n: ectx: property (text), widget (QCheckBox, epochCheckBatch)
#. i18n: ectx: property (text), widget (QCheckBox, EpochCheckBatch)
#. +> trunk5
#: dialogs/focusdialog.ui:77 tools/flagmanager.ui:64
#: tools/modcalcapcoord.ui:127 tools/modcalcapcoord.ui:215
#: tools/modcalcapcoord.ui:527 tools/modcalcgalcoord.ui:214
#: tools/modcalcvlsr.ui:521
#, kde-format
msgid "Epoch:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, decLabel)
#. +> trunk5
#: dialogs/focusdialog.ui:84
#, kde-format
msgid "New declination:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, raLabel)
#. +> trunk5
#: dialogs/focusdialog.ui:91
#, kde-format
msgid "New right ascension:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, aaTab)
#. +> trunk5
#: dialogs/focusdialog.ui:105
#, kde-format
msgid "Az/Alt"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, altLabel)
#. +> trunk5
#: dialogs/focusdialog.ui:139
#, kde-format
msgid "New altitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, azLabel)
#. +> trunk5
#: dialogs/focusdialog.ui:146
#, kde-format
msgid "New azimuth:"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:88
#, kde-format
msgid "Set FOV Indicator"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, NewFOV)
#. +> trunk5
#: dialogs/fovdialog.cpp:188 dialogs/newfov.ui:14
#, kde-format
msgid "New FOV Indicator"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:246
#, kde-format
msgctxt "Specify the apparent field of view (AFOV) manually"
msgid "Specify AFOV"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:247
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Ramsden (Typical)"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:248
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Orthoscopic (Typical)"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:249
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Ploessl (Typical)"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:250
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Erfle (Typical)"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:251
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Tele Vue Radian"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:252
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Baader Hyperion"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:253
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Tele Vue Panoptic"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:254
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Tele Vue Delos"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:255
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Meade UWA"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:256
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Tele Vue Nagler"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:257
#, kde-format
msgctxt "Eyepiece Design / Brand / Name; Optional"
msgid "Tele Vue Ethos (Typical)"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:261
#, kde-format
msgid "1000 yards"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:262
#, kde-format
msgid "1000 meters"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, LabelUnits)
#. +> trunk5
#: dialogs/fovdialog.cpp:270 dialogs/newfov.ui:732
#, kde-format
msgid "feet"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:270
#, kde-format
msgid "meters"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:370
#, kde-format
msgid "Telescope Focal Length Calculator"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:387
#, kde-format
msgctxt "millimeters"
msgid "mm"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:388
#, kde-format
msgid "inch"
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:390
#, kde-format
msgid "Aperture diameter: "
msgstr ""
#. +> trunk5
#: dialogs/fovdialog.cpp:393
#, kde-format
msgctxt "F-Number or F-Ratio of optical system"
msgid "F-Number: "
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, FOVDialog)
#. +> trunk5
#: dialogs/fovdialog.ui:13
#, kde-format
msgid "Edit FOV Symbols"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, NewButton)
#. +> trunk5
#: dialogs/fovdialog.ui:54
#, kde-format
msgid "Add a new FOV symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, NewButton)
#. +> trunk5
#: dialogs/fovdialog.ui:57
#, kde-format
msgid "Add a new field-of-view (FOV) symbol to the list. You can define the size, shape, and color of the new symbol."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, NewButton)
#. +> trunk5
#: dialogs/fovdialog.ui:60
#, kde-format
msgid "New..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, EditButton)
#. +> trunk5
#: dialogs/fovdialog.ui:83
#, kde-format
msgid "Modify the highlighted FOV symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, EditButton)
#. +> trunk5
#: dialogs/fovdialog.ui:86
#, kde-format
msgid "Press this button to modify the highlighted FOV symbol. You can change its size, shape and color."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, EditButton)
#. +> trunk5
#: dialogs/fovdialog.ui:89
#, kde-format
msgid "Edit..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, RemoveButton)
#. +> trunk5
#: dialogs/fovdialog.ui:96
#, kde-format
msgid "Remove highlighted FOV symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, RemoveButton)
#. +> trunk5
#: dialogs/fovdialog.ui:99
#, kde-format
msgid "Press this button to remove the highlighted FOV symbol from the list."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, RemoveButton)
#. i18n: ectx: property (text), widget (QPushButton, removeB)
#. i18n: ectx: property (text), widget (QPushButton, RemoveScope)
#. i18n: ectx: property (text), widget (QPushButton, RemoveEyepiece)
#. i18n: ectx: property (text), widget (QPushButton, RemoveLens)
#. i18n: ectx: property (text), widget (QPushButton, RemoveFilter)
#. i18n: ectx: property (text), widget (QPushButton, RemovePreset)
#. +> trunk5
#: dialogs/fovdialog.ui:102 indi/drivermanager.ui:311
#: oal/equipmentwriter.ui:236 oal/equipmentwriter.ui:418
#: oal/equipmentwriter.ui:544 oal/equipmentwriter.ui:736
#: options/opscolors.ui:230
#, kde-format
msgid "Remove"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:65
#, kde-format
msgid "Set Geographic Location"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:117
#, kde-format
msgid "DST Rule:"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:162 dialogs/locationdialog.cpp:222
#: dialogs/locationdialog.cpp:528
#, kde-format
msgid "One city matches search criteria"
msgid_plural "%1 cities match search criteria"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: dialogs/locationdialog.cpp:310
#, kde-format
msgid "Are you sure you want to remove %1?"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:311
#, kde-format
msgid "Remove City?"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:316
#, kde-format
msgid "This city already exists in the database."
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:317
#, kde-format
msgid "Error: Duplicate Entry"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:331
#, kde-format
msgid "All fields (except province) must be filled to add this location."
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:332
#, kde-format
msgid "Fields are Empty"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:337
#, kde-format
msgid "Could not parse the Latitude/Longitude."
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:338
#, kde-format
msgid "Bad Coordinates"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:343
#, kde-format
msgid "UTC Offset must be selected."
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:344
#, kde-format
msgid "UTC Offset"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:587
#, kde-format
msgid "Daylight Saving Time Rules"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:637
#, kde-format
msgid "Cannot add new location -- city name blank"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:641
#, kde-format
msgid "Cannot add new location -- country name blank"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:645
#, kde-format
msgid "Cannot add new location -- invalid latitude / longitude"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:649
#, kde-format
msgid "Cannot add new location -- missing UTC Offset"
msgstr ""
#. +> trunk5
#: dialogs/locationdialog.cpp:653
#, kde-format
msgid "City is Read Only. Change name to add new city."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, CityGroupBox)
#. +> trunk5
#: dialogs/locationdialog.ui:32
#, kde-format
msgid "Choose City"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, CountryFiltLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:134
#, kde-format
msgid "Country filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, CityFiltLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:144
#, kde-format
msgid "City filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ProvinceFiltLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:157
#, kde-format
msgid "Province filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, CountLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:166
#, kde-format
msgid "0 cities match search criteria"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, EditGroupBox)
#. +> trunk5
#: dialogs/locationdialog.ui:187
#, kde-format
msgid "View/Edit Location Data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, NewCityLabel)
#. i18n: ectx: property (text), widget (QLabel, CityLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: dialogs/locationdialog.ui:245 dialogs/wizlocation.ui:129
#: tools/argsetgeolocation.ui:63
#, kde-format
msgid "City:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, NewProvinceLabel)
#. i18n: ectx: property (text), widget (QLabel, ProvinceLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5
#: dialogs/locationdialog.ui:262 dialogs/wizlocation.ui:136
#: tools/argsetgeolocation.ui:46
#, kde-format
msgid "Province:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, NewCountryLabel)
#. i18n: ectx: property (text), widget (QLabel, CountryLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_3)
#. +> trunk5
#: dialogs/locationdialog.ui:269 dialogs/wizlocation.ui:115
#: tools/argsetgeolocation.ui:70
#, kde-format
msgid "Country:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, LongLabel)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, LongGeoLabel)
#. i18n: ectx: property (text), widget (QCheckBox, LongGeoCheckBatch)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. i18n: ectx: property (text), widget (QCheckBox, LongCheckBatch)
#. +> trunk5
#: dialogs/locationdialog.ui:345 dialogs/wizlocation.ui:190
#: tools/modcalceclipticcoords.ui:189 tools/modcalcgalcoord.ui:128
#: tools/modcalcgeod.ui:264 tools/modcalcgeod.ui:418
#: tools/modcalcplanets.ui:388 tools/modcalcplanets.ui:447
#: tools/modcalcplanets.ui:739 tools/modcalcvlsr.ui:528
#, kde-format
msgid "Longitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, LatLabel)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, LatGeoLabel)
#. i18n: ectx: property (text), widget (QCheckBox, LatGeoCheckBatch)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QCheckBox, LatCheckBatch)
#. +> trunk5
#: dialogs/locationdialog.ui:368 dialogs/wizlocation.ui:183
#: tools/modcalceclipticcoords.ui:182 tools/modcalcgalcoord.ui:121
#: tools/modcalcgeod.ui:271 tools/modcalcgeod.ui:438
#: tools/modcalcplanets.ui:381 tools/modcalcplanets.ui:454
#: tools/modcalcplanets.ui:729 tools/modcalcvlsr.ui:541
#, kde-format
msgid "Latitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ElevationLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:375
#, kde-format
msgid "Elevation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DSTLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:447
#, kde-format
msgid "DST rule:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TZLabel)
#. +> trunk5
#: dialogs/locationdialog.ui:457
#, kde-format
msgid "UT offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, GetLocationButton)
#. +> trunk5
#: dialogs/locationdialog.ui:495
#, kde-format
msgid "Get Location"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ClearFieldsButton)
#. +> trunk5
#: dialogs/locationdialog.ui:502
#, kde-format
msgid "&Clear Fields"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, AddCityButton)
#. +> trunk5
#: dialogs/locationdialog.ui:531
#, kde-format
msgid "Add City"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, UpdateButton)
#. +> trunk5
#: dialogs/locationdialog.ui:550
#, kde-format
msgid "Update City"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, RemoveButton)
#. +> trunk5
#: dialogs/locationdialog.ui:572
#, kde-format
msgid "Remove City"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: dialogs/newfov.ui:58
#, kde-format
msgid "<b>Name:</b>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVName)
#. +> trunk5
#: dialogs/newfov.ui:65
#, kde-format
msgid "Name for FOV symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLineEdit, FOVName)
#. +> trunk5
#: dialogs/newfov.ui:68
#, kde-format
msgid "The name of the field-of-view (FOV) symbol. This name appears in the FOV menu and in the \"Edit FOV Symbols\" tool."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
#. i18n: ectx: attribute (title), widget (QWidget, Eyepiece)
#. +> trunk5
#: dialogs/newfov.ui:81 oal/equipmentwriter.ui:248
#, kde-format
msgid "Eyepiece"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#. +> trunk5
#: dialogs/newfov.ui:91
#, kde-format
msgid "Telescope focal length:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, TLength1)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, TLength2)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, LinearFOV)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, RTDiameter)
#. +> trunk5
#: dialogs/newfov.ui:103 dialogs/newfov.ui:453 dialogs/newfov.ui:698
#: dialogs/newfov.ui:839
#, kde-format
msgid "Telescope focal length, in millimeters"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, TLength1)
#. +> trunk5
#: dialogs/newfov.ui:108
#, kde-format
msgid ""
"Enter the telescope focal length, in millimeters.\n"
"\n"
"This is one of the data fields required for defining a field-of-view (FOV) symbol which matches the field-of-view of a telescope eyepiece."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_3)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. i18n: ectx: property (text), widget (QLabel, binoApertureUnit)
#. +> trunk5
#: dialogs/newfov.ui:134 dialogs/newfov.ui:193 dialogs/newfov.ui:477
#: ekos/scheduler/mosaic.ui:91 oal/equipmentwriter.ui:149
#: oal/equipmentwriter.ui:177 oal/equipmentwriter.ui:303
#: tools/whatsinteresting/wiequipsettings.ui:213
#, kde-format
msgid "mm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel7_2)
#. +> trunk5
#: dialogs/newfov.ui:159
#, kde-format
msgid "Eyepiece focal length:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, EyeLength)
#. +> trunk5
#: dialogs/newfov.ui:171
#, kde-format
msgid "Eyepiece focal length, in millimeters"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, EyeLength)
#. +> trunk5
#: dialogs/newfov.ui:176
#, kde-format
msgid ""
"Enter the eyepiece focal length, in millimeters.\n"
"\n"
"This is one of the data fields required for defining a field-of-view (FOV) symbol which matches the field-of-view of a telescope eyepiece."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel8_2)
#. +> trunk5
#: dialogs/newfov.ui:224
#, kde-format
msgid "Enter the eyepiece's Apparent field-of-view"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel8_2)
#. +> trunk5
#: dialogs/newfov.ui:227
#, kde-format
msgid "Eyepiece AFOV:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, EyeFOV)
#. +> trunk5
#: dialogs/newfov.ui:272
#, kde-format
msgid "field-of-view of the eyepiece, in arcminutes"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, EyeFOV)
#. +> trunk5
#: dialogs/newfov.ui:277
#, kde-format
msgid ""
"Enter the eyepiece field-of-view angle, in arcminutes.\n"
"\n"
"This is one of the data fields required for defining a field-of-view (FOV) symbol which matches the field-of-view of a telescope eyepiece."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_2_2)
#. +> trunk5
#: dialogs/newfov.ui:297
#, kde-format
msgid "degrees"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ComputeTLengthFromFNum1)
#. +> trunk5
#: dialogs/newfov.ui:328
#, kde-format
msgid "or compute from F-Number"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: dialogs/newfov.ui:359
#, kde-format
msgid "Note: Panoptic, Nagler, Radian, Delos and Ethos are trademarks of Tele Vue Optics, Inc."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, ComputeEyeFOV)
#. i18n: ectx: property (toolTip), widget (QPushButton, ComputeCameraFOV)
#. i18n: ectx: property (toolTip), widget (QPushButton, ComputeBinocularFOV)
#. +> trunk5
#: dialogs/newfov.ui:415 dialogs/newfov.ui:629 dialogs/newfov.ui:799
#, kde-format
msgid "Compute field-of-view from above data fields"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, ComputeEyeFOV)
#. +> trunk5
#: dialogs/newfov.ui:420
#, kde-format
msgid ""
"This button will compute the field-of-view (FOV) angle for a specific eyepiece/telescope combination. You must first specify the focal lengths of the telescope and eyepiece, and the FOV angle of the eyepiece in the above entry fields.\n"
"\n"
"The computed FOV angle (in arcminutes) will be displayed in the \"Field of view\" edit box."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ComputeEyeFOV)
#. i18n: ectx: property (text), widget (QPushButton, ComputeCameraFOV)
#. i18n: ectx: property (text), widget (QPushButton, ComputeBinocularFOV)
#. +> trunk5
#: dialogs/newfov.ui:423 dialogs/newfov.ui:637 dialogs/newfov.ui:807
#, kde-format
msgid "Compute FOV"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
#. +> trunk5
#: dialogs/newfov.ui:433
#, kde-format
msgid "Camera"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5_2)
#. +> trunk5
#: dialogs/newfov.ui:443
#, kde-format
msgid "Telescope Focal length:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, TLength2)
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, LinearFOV)
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, RTDiameter)
#. +> trunk5
#: dialogs/newfov.ui:458 dialogs/newfov.ui:703 dialogs/newfov.ui:844
#, kde-format
msgid ""
"Enter the telescope focal length, in millimeters.\n"
"\n"
"This is one of the data fields required for defining a field-of-view (FOV) symbol which matches the field-of-view of a camera mounted on a telescope."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: dialogs/newfov.ui:484
#, kde-format
msgid "Camera W:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_16)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_10)
#. +> trunk5
#: dialogs/newfov.ui:504 dialogs/newfov.ui:559 ekos/capture/capture.ui:567
#: ekos/capture/capture.ui:660
#, kde-format
msgid "H:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_5)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, l_22)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: dialogs/newfov.ui:521 ekos/capture/capture.ui:1014 ekos/focus/focus.ui:890
#: ekos/guide/internalguide/guider.ui:288 ekos/guide/opsguide.ui:40
#: ekos/scheduler/mosaic.ui:188 xplanet/opsxplanet.ui:120
#, kde-format
msgid "pixels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel9)
#. +> trunk5
#: dialogs/newfov.ui:528
#, kde-format
msgid "Pixel W:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, cameraPixelSizeW)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, cameraPixelSizeH)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, WaveLength)
#. +> trunk5
#: dialogs/newfov.ui:538 dialogs/newfov.ui:569 dialogs/newfov.ui:894
#, kde-format
msgid "Size of chip or film, in millimeters"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, cameraPixelSizeW)
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, cameraPixelSizeH)
#. i18n: ectx: property (whatsThis), widget (QDoubleSpinBox, WaveLength)
#. +> trunk5
#: dialogs/newfov.ui:543 dialogs/newfov.ui:574 dialogs/newfov.ui:899
#, kde-format
msgid ""
"Enter the physical size of the CCD chip or film negative.\n"
"\n"
"This is one of the data fields required for defining a field-of-view (FOV) symbol which matches the field-of-view of a camera mounted on a telescope."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_3_2)
#. +> trunk5
#: dialogs/newfov.ui:590
#, kde-format
msgid "µm"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, ComputeCameraFOV)
#. +> trunk5
#: dialogs/newfov.ui:634
#, kde-format
msgid ""
"This button will compute the field-of-view (FOV) angle for a specific camera/telescope combination. You must first specify the focal length of the telescope and the size of the CCD chip or film negative.\n"
"\n"
"The computed FOV angle (in arcminutes) will be displayed in the \"Field of view\" edit box."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, DetectFromINDI)
#. +> trunk5
#: dialogs/newfov.ui:650
#, kde-format
msgid "Detect from INDI"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab3)
#. +> trunk5
#: dialogs/newfov.ui:676
#, kde-format
msgid "Binocular"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel15_3)
#. +> trunk5
#: dialogs/newfov.ui:686
#, kde-format
msgid "Field of View:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel9_31)
#. +> trunk5
#: dialogs/newfov.ui:741
#, kde-format
msgid "At a distance of:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, ComputeBinocularFOV)
#. +> trunk5
#: dialogs/newfov.ui:804
#, kde-format
msgid ""
"This button will compute the field-of-view (FOV) angle for a binocular. You must specify the linear FOV as mentioned on the binocular.\n"
"\n"
"The computed FOV angle (in arcminutes) will be displayed in the \"Field of view\" edit box."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab4)
#. +> trunk5
#: dialogs/newfov.ui:817
#, kde-format
msgid "Radio Telescope"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5_2_3)
#. +> trunk5
#: dialogs/newfov.ui:827
#, kde-format
msgid "Radio Telescope diameter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_3_4)
#. +> trunk5
#: dialogs/newfov.ui:873
#, kde-format
msgid "m"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel9_3)
#. +> trunk5
#: dialogs/newfov.ui:882
#, kde-format
msgid "Wavelength:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6_2_3_2_3)
#. +> trunk5
#: dialogs/newfov.ui:916
#, kde-format
msgid "cm"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, ComputeHPBW)
#. +> trunk5
#: dialogs/newfov.ui:991
#, kde-format
msgid "Compute radiotelescope HPBW from above data fields"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, ComputeHPBW)
#. +> trunk5
#: dialogs/newfov.ui:996
#, kde-format
msgid ""
"This button will compute the Half Power Beam Width (HPBW) angle for a specific radiotelescope and observing wavelength combination, assuming no multibeam receiver is available at the telescope. You must first specify the diameter of the radiotelescope and the observing wavelength.\n"
"\n"
"The computed HPBW angle (in arcminutes) will be displayed in the \"Field of view\" edit box."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ComputeHPBW)
#. +> trunk5
#: dialogs/newfov.ui:999
#, kde-format
msgid "Compute HPBW"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, cameraFOVUnits)
#. i18n: ectx: property (text), widget (QLabel, targetFOVUnits)
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: dialogs/newfov.ui:1017 dialogs/newfov.ui:1027 dialogs/newfov.ui:1034
#: dialogs/newfov.ui:1061 ekos/scheduler/mosaic.ui:289
#: ekos/scheduler/mosaic.ui:312 tools/adddeepskyobject.ui:401
#: tools/adddeepskyobject.ui:424
#, kde-format
msgid "arcmin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fieldoFviewLabel)
#. +> trunk5
#: dialogs/newfov.ui:1041
#, kde-format
msgid "Field of view:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVEditRotation)
#. +> trunk5
#: dialogs/newfov.ui:1048
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Frame rotation with respect to Celestial Pole. Zero degrees indicates that <span style=\" font-weight:600;\">UP</span> is pointing directly at the pole. 90 degrees indicates that <span style=\" font-weight:600;\">UP</span> is rotated 90 degrees clockwise with respect to the pole.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, FOVEditRotation)
#. i18n: ectx: property (text), widget (QLineEdit, FOVEditOffsetY)
#. i18n: ectx: property (text), widget (QLineEdit, FOVEditOffsetX)
#. i18n: ectx: property (text), widget (QLabel, PAHErrorLabel)
#. i18n: ectx: property (text), widget (QLabel, PositionAngle)
#. +> trunk5
#: dialogs/newfov.ui:1054 dialogs/newfov.ui:1074 dialogs/newfov.ui:1137
#: ekos/align/align.ui:1575 tools/modcalcangdist.ui:353
#, kde-format
msgid "0"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVEditOffsetY)
#. +> trunk5
#: dialogs/newfov.ui:1068
#, kde-format
msgid "Desired vertical offset in arcminutes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fieldoFviewLabel_3)
#. +> trunk5
#: dialogs/newfov.ui:1081
#, kde-format
msgid "Offset Y:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, AngDistLabel_3)
#. +> trunk5
#: dialogs/newfov.ui:1088 tools/modcalcangdist.ui:363
#, kde-format
msgid "Degrees E of N"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fieldoFviewLabel_4)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: dialogs/newfov.ui:1095 ekos/scheduler/mosaic.ui:211
#, kde-format
msgid "Rotation:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVEditX)
#. +> trunk5
#: dialogs/newfov.ui:1102
#, kde-format
msgid "Desired field-of-view size, in arcminutes"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLineEdit, FOVEditX)
#. +> trunk5
#: dialogs/newfov.ui:1107
#, kde-format
msgid ""
"Enter the desired angular size for the field-of-view (FOV) symbol.\n"
"\n"
"You can either enter a value directly, or use the \"Eyepiece\" or \"Camera\" Tabs to compute an angular size for specific eyepieces or cameras."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fieldoFviewLabel_2)
#. +> trunk5
#: dialogs/newfov.ui:1114
#, kde-format
msgid "Offset X:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: dialogs/newfov.ui:1121
#, kde-format
msgid " x "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVEditOffsetX)
#. +> trunk5
#: dialogs/newfov.ui:1131
#, kde-format
msgid "Desired horizontal offset in arcminutes"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, FOVLockCP)
#. +> trunk5
#: dialogs/newfov.ui:1144
#, kde-format
msgid "Rotation is performed with respect to the celestial pole."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, FOVLockCP)
#. +> trunk5
#: dialogs/newfov.ui:1150
#, kde-format
msgid "Lock to Celestial Pole"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KColorButton, ColorButton)
#. +> trunk5
#: dialogs/newfov.ui:1226
#, kde-format
msgid "Select color for the field-of-view symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KColorButton, ColorButton)
#. +> trunk5
#: dialogs/newfov.ui:1229
#, kde-format
msgid "Select a color for the field-of-view (FOV) symbol."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, textLabelXplanetColor)
#. +> trunk5
#: dialogs/newfov.ui:1246 oal/equipmentwriter.ui:616 xplanet/opsxplanet.ui:556
#, kde-format
msgid "Color:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1253
#, kde-format
msgid "Select a shape for the field-of-view symbol"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1258
#, kde-format
msgid ""
"Select a shape for the field-of-view (FOV) symbol. The possible shapes are:\n"
"\n"
"Circle, Square, Crosshairs, Bullseye."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1262
#, kde-format
msgid "Square"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1267
#, kde-format
msgid "Circle"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1272
#, kde-format
msgid "Crosshairs"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1277
#, kde-format
msgid "Bullseye"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, ShapeBox)
#. +> trunk5
#: dialogs/newfov.ui:1282
#, kde-format
msgid "Semitransparent circle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#. +> trunk5
#: dialogs/newfov.ui:1290
#, kde-format
msgid "Shape:"
msgstr ""
#. +> trunk5
#: dialogs/timedialog.cpp:50
#, kde-format
msgctxt "set clock to a new time"
msgid "Set UTC Time"
msgstr ""
#. +> trunk5
#: dialogs/timedialog.cpp:52
#, kde-format
msgctxt "set clock to a new time"
msgid "Set Time"
msgstr ""
#. +> trunk5
#: dialogs/timedialog.cpp:69
#, kde-format
msgid "UTC Now"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, NowButton)
#. +> trunk5
#: dialogs/timedialog.cpp:69 tools/modcalcaltaz.ui:100
#: tools/modcalceclipticcoords.ui:54 tools/modcalcjd.ui:48
#: tools/modcalcvlsr.ui:72
#, kde-format
msgid "Now"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeTitle)
#. +> trunk5
#: dialogs/wizastrometry.ui:61
#, kde-format
msgid "Astrometry Setup for Plate Solving Astronomical Images with INDI/Ekos"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeText)
#. +> trunk5
#: dialogs/wizastrometry.ui:84
#, kde-format
msgid ""
"<html><head/><body>"
"<p>KStars can make use of Astrometry.net to plate solve images to aid with telescope alignment. You can use the online solver without any changes. To use the offline solver, you need to verify that certain programs are installed and that astrometry is configured properly. KStars for Mac includes Astrometry.net</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: dialogs/wizastrometry.ui:105
#, kde-format
msgid ""
"<html><head/><body>"
"<p>To the right you can verify that you have the required packages installed. If installed, a check should appear next to it.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, pythonFound)
#. +> trunk5
#: dialogs/wizastrometry.ui:123
#, kde-format
msgid "Python"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, pyfitsFound)
#. +> trunk5
#: dialogs/wizastrometry.ui:133
#, kde-format
msgid "pyfits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, netpbmFound)
#. +> trunk5
#: dialogs/wizastrometry.ui:143
#, kde-format
msgid "netpbm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, astrometryFeedback)
#. +> trunk5
#: dialogs/wizastrometry.ui:154
#, kde-format
msgid ""
"<html><head/><body>"
"<p>To plate solve, you also need to put index files in the following folder. You can install the files that you need inside Ekos. You can also download them from the internet. See the documentation at this link: <a href=\"http://astrometry.net/doc/readme.html\"><span style=\" text-decoration: underline; color:#0000ff;\">Astrometry Readme</span></a> for details on how to get files. Note that you do not need all of the index files, the ones you need depend on your field size.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, astrometryPath)
#. +> trunk5
#: dialogs/wizastrometry.ui:172
#, kde-format
msgid "~/Library/Application Support/Astrometry/"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, astrometryButton)
#. +> trunk5
#: dialogs/wizastrometry.ui:189
#, kde-format
msgid "Open Folder"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeTitle)
#. +> trunk5
#: dialogs/wizdata.ui:61
#, kde-format
msgid "KStars Data Directory"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, foundFeedback1)
#. +> trunk5
#: dialogs/wizdata.ui:68
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The KStars Data Directory called kstars should be located at:</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, dataPath)
#. +> trunk5
#: dialogs/wizdata.ui:83
#, kde-format
msgid "~/Library/Application Support/kstars"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, foundFeedback2)
#. +> trunk5
#: dialogs/wizdata.ui:102
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Your data directory was not found. You can click the button below to copy a default KStars data directory to the correct location, or if you have a KStars directory already some place else, you can exit KStars and copy it to that location yourself.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, copyKStarsData)
#. +> trunk5
#: dialogs/wizdata.ui:112
#, kde-format
msgid "Copy KStars Data Directory"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: dialogs/wizdata.ui:119
#, kde-format
msgid "Optional Files for the Data directory:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: dialogs/wizdata.ui:137
#, kde-format
msgid ""
"<html><head/><body>"
"<p>GSC: <a href=\"https://drive.google.com/file/d/0B_ivMJINsdQ8cDhNcU5ESkZMZ0E/view?usp=sharing\"><span style=\" text-decoration: underline; color:#0000ff;\">Guide Star Catalog</span></a> (305 MB)</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, installGSC)
#. +> trunk5
#: dialogs/wizdata.ui:150
#, kde-format
msgid "GSC"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, GSCFeedback)
#. +> trunk5
#: dialogs/wizdata.ui:188
#, kde-format
msgid "Installing this in your data directory will enable the CCD Simulator in KStars to take realistic images. This is useful for testing sequences, plate solving, and learning to use KStars. Just click the button to install or unzip the zip file and place the gsc folder in the data directory."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DownloadTitle)
#. +> trunk5
#: dialogs/wizdownload.ui:61
#, kde-format
msgid "Download Extra Data Files"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, DownloadText)
#. +> trunk5
#: dialogs/wizdownload.ui:84
#, kde-format
msgid ""
"<p>You may now download optional data files to enhance KStars, such as Messier object images, or a more complete NGC/IC catalog. Press the <b>Download Extra Data</b> button to proceed. </p>"
"<p>You can also use this tool later, by selecting <b>Download New Data</b> from the <b>File</b> menu.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, DownloadButton)
#. +> trunk5
#: dialogs/wizdownload.ui:128
#, kde-format
msgid "Download Extra Data..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, GeoTitle)
#. +> trunk5
#: dialogs/wizlocation.ui:61
#, kde-format
msgid "Choose Your Home Location"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeText)
#. +> trunk5
#: dialogs/wizlocation.ui:84
#, kde-format
msgid ""
"<p>Select a City near your location from the list. You may filter the list by the name of your city, province, and country.</p>"
"<p>Once you have selected a City, press <b>Next</b>.</p>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, CityFilter)
#. +> trunk5
#: dialogs/wizlocation.ui:122
#, kde-format
msgid "Filter the list by city name"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, CountryFilter)
#. +> trunk5
#: dialogs/wizlocation.ui:143
#, kde-format
msgid "Filter the list by country name"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, ProvinceFilter)
#. +> trunk5
#: dialogs/wizlocation.ui:150
#, kde-format
msgid "Filter the list by province name"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QListWidget, CityListBox)
#. +> trunk5
#: dialogs/wizlocation.ui:223
#, kde-format
msgid "The list of cities which match the present search filters."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeTitle)
#. +> trunk5
#: dialogs/wizwelcome.ui:61
#, kde-format
msgid "Welcome to the KStars Setup Wizard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, WelcomeText)
#. +> trunk5
#: dialogs/wizwelcome.ui:84
#, kde-format
msgid ""
"<p>This wizard will help you set up some basic options, such as your location on Earth.</p>"
"<p>To get started, press the <b>Next</b> button.</p>"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:153
#, kde-format
msgid "Astrometry.net"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, plateSolverOptionsGroup)
#. +> trunk5
#: ekos/align/align.cpp:157 ekos/align/align.ui:455
#, kde-format
msgid "Solver Options"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:162
#, kde-format
msgid "Astrometry.cfg"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/align/align.cpp:168 ekos/align/opsastrometryindexfiles.ui:258
#, kde-format
msgid "Index Files"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:174 ekos/focus/focus.cpp:211
#, kde-format
msgid "Idle."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:195
#, kde-format
msgid "Offline solver is not supported under Windows. Please use either the Online or Remote solvers."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:279
#, kde-format
msgid "Warning: If using astrometry.net v0.68 or above, remove the --no-fits2fits from the astrometry options."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:316 ekos/guide/guide.cpp:383
#, kde-format
msgid "dRA (arcsec)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:317 ekos/guide/guide.cpp:384
#, kde-format
msgid "dDE (arcsec)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:662 ekos/align/align.cpp:670
#, kde-format
msgid "DEC is below the altitude limit"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:749
#, kde-format
msgid "Point Calculation Error."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1086
#, kde-format
msgid "Open Ekos Alignment List"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1093 ekos/align/align.cpp:1239
#: ekos/align/align.cpp:1397 ekos/capture/capture.cpp:2555
#: ekos/capture/capture.cpp:2956 ekos/guide/guide.cpp:742
-#: ekos/scheduler/scheduler.cpp:3115 ekos/scheduler/scheduler.cpp:3412
+#: ekos/scheduler/scheduler.cpp:3117 ekos/scheduler/scheduler.cpp:3414
#: fitsviewer/fitstab.cpp:294 tools/scriptbuilder.cpp:872
#: tools/scriptbuilder.cpp:970
#, kde-format
msgid "Invalid URL: %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1112 ekos/capture/capture.cpp:2572
-#: ekos/scheduler/scheduler.cpp:3132 ekos/scheduler/scheduler.cpp:4548
-#: ekos/scheduler/scheduler.cpp:4578 ekos/scheduler/scheduler.cpp:4848
+#: ekos/scheduler/scheduler.cpp:3134 ekos/scheduler/scheduler.cpp:4563
+#: ekos/scheduler/scheduler.cpp:4593 ekos/scheduler/scheduler.cpp:4863
#, kde-format
msgid "Unable to open file %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1134 ekos/capture/capture.cpp:2600
#, kde-format
msgid "Deprecated sequence file format version %1. Please construct a new sequence file."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1203
#, kde-format
msgid "Save Ekos Alignment List"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1233
#, kde-format
msgid "Failed to save alignment list"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1250 ekos/align/align.cpp:1406
#: ekos/capture/capture.cpp:2980 ekos/guide/guide.cpp:751
-#: ekos/scheduler/scheduler.cpp:3424 ekos/scheduler/scheduler.cpp:4615
+#: ekos/scheduler/scheduler.cpp:3426 ekos/scheduler/scheduler.cpp:4630
#, kde-format
msgid "Unable to write to file %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1279
#, kde-format
msgid "Alignment List saved to %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1375
#, kde-format
msgid "Export Solution Points"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1428
#, kde-format
msgid "Error in table structure."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1437
#, kde-format
msgid "Solution Points Saved as: %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1447
#, kde-format
msgid "Are you sure you want to clear all of the solution points?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1448
#, kde-format
msgid "Clear Solution Points"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1464
#, kde-format
msgid "Are you sure you want to clear all the alignment points?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1465
#, kde-format
msgid "Clear Align Points"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1614
#, kde-format
msgid "The Mount Model Tool is Reset."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1651
#, kde-format
msgid "Please Check the Alignment Points."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1658
#, kde-format
msgid "In the Align Module, \"Nothing\" is Selected for the Solver Action. This means that the mount model tool will not sync/align your mount but will only report the pointing model errors. Do you wish to Continue?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1661
#, kde-format
msgid "Pointing Model Report Only?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1678
#, kde-format
msgid "The Mount Model Tool is Starting."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1687
#, kde-format
msgid "The Mount Model Tool is Paused."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1748
#, kde-format
msgid "The Mount Model Tool is Finished."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1774
#, kde-format
msgid "Solver timed out"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1927
#, kde-format
msgid "Mount does not support syncing."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:1974 ekos/align/align.cpp:1981
#: ekos/guide/guide.cpp:1052 ekos/guide/guide.cpp:1059
#: ekos/profileeditor.cpp:120 ekos/profileeditor.cpp:127
#, kde-format
msgctxt "F-Number, Focal Length, Aperture"
msgid "<nobr>F<b>%1</b> Focal Length: <b>%2</b> mm Aperture: <b>%3</b> mm<sup>2</sup></nobr>"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2120
#, kde-format
msgid ""
"<p>Polar Alignment Helper tool requires the following:</p>"
"<p>1. German Equatorial Mount</p>"
"<p>2. FOV &gt; 0.5 degrees</p>"
"<p>For small FOVs, use the Legacy Polar Alignment Tool.</p>"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2335 ekos/capture/capture.cpp:1396
#: ekos/focus/focus.cpp:822 ekos/guide/guide.cpp:1158
#, kde-format
msgid "Error: Lost connection to CCD."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2336
#, kde-format
msgid "Astrometry alignment failed"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2360
#, kde-format
msgid "Telescope aperture and focal length are missing. Please check your driver settings and try again."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2366
#, kde-format
msgid "CCD pixel size is missing. Please check your driver settings and try again."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2374 ekos/focus/focus.cpp:835
#, kde-format
msgid "Error: Lost connection to filter wheel."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2391 ekos/capture/capture.cpp:2141
#, kde-format
msgid "Image transfer is disabled for this camera. Would you like to enable it?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2409
#, kde-format
msgid "Cannot capture while focus module is busy! Retrying..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2416
#, kde-format
msgid "Cannot capture while CCD exposure is in progress! Retrying..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2507 ekos/capture/capture.cpp:1492
#: ekos/focus/focus.cpp:911 ekos/guide/internalguide/rcalibration.cpp:895
#, kde-format
msgid "Capturing image..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2578 ekos/focus/focus.cpp:1058
#, kde-format
msgid "Image received."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2681
#, kde-format
msgid "Using solver options: %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2685
#, kde-format
msgid "Blind solver"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2686
#, kde-format
msgid "Blind solver takes a very long time to solve but can reliably solve any image any where in the sky given enough time."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2688
#, kde-format
msgid "Use existing settings"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2689
#, kde-format
msgid "Mount must be pointing close to the target location and current field of view must match the image's field of view."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2692
#, kde-format
msgid "No metadata is available in this image. Do you want to use the blind solver or the existing solver settings?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2694
#, kde-format
msgid "Astrometry solver"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2750
#, kde-format
msgid "Solver iteration #%1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2788
#, kde-format
msgid "Solver RA (%1) DEC (%2) Orientation (%3) Pixel Scale (%4)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2796
#, kde-format
msgid "Current focal length is %1 mm while computed focal length from the solver is %2 mm. Please update the mount focal length to obtain accurate results."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2912
#, kde-format
msgid "WCS information updated. Images captured from this point forward shall have valid WCS."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2928
#, kde-format
msgid "Solution coordinates: RA (%1) DEC (%2) Telescope Coordinates: RA (%3) DEC (%4)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2934
#, kde-format
msgid "Target is within %1 degrees of solution coordinates."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:2987
#, kde-format
msgid "Setting position angle to %1 degrees E of N..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3014
#, kde-format
msgid "Maximum number of iterations reached. Solver failed."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3046
#, kde-format
msgid "Target is within acceptable range. Astrometric solver is successful."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3071 ekos/align/align.cpp:3332
#: ekos/align/align.cpp:3363
#, kde-format
msgid "Astrometry alignment completed successfully"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3089
#, kde-format
msgid "Astrometry alignment failed with errors"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3165
#, kde-format
msgid "Refresh is complete."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3172 ekos/focus/focus.cpp:749
#, kde-format
msgid "Capture aborted."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3177
#, kde-format
msgid "Solver aborted after %1 second."
msgid_plural "Solver aborted after %1 seconds"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/align/align.cpp:3204 ekos/capture/capture.cpp:1614
#: ekos/ekosmanager.cpp:1651 ekos/focus/focus.cpp:2142
#: ekos/guide/guide.cpp:1431 ekos/mount/mount.cpp:489
#: ekos/scheduler/scheduler.cpp:251
#, kde-format
msgctxt "log entry; %1 is the date, %2 is the text"
msgid "%1 %2"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3275
#, kde-format
msgid "Mount completed slewing near celestial pole. Capture again to verify."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3286
#, kde-format
msgid "Mount first rotation is complete."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3302
#, kde-format
msgid "Mount second rotation is complete."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3330
#, kde-format
msgid "Mount is synced to solution coordinates. Astrometric solver is successful."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3362
#, kde-format
msgid "Differential slewing complete. Astrometric solver is successful."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3374
#, kde-format
msgid "Slew complete. Target accuracy is not met, running solver again..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3376
#, kde-format
msgid "Slew complete. Solving Alignment Point. . ."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3408
#, kde-format
msgid "Syncing failed!"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3410
#, kde-format
msgid "Slewing failed!"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3457
#, kde-format
msgid "Slew complete. Please adjust azimuth knob until the target is in the center of the view."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3485
#, kde-format
msgid "Slew complete. Please adjust altitude knob until the target is in the center of the view."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3503
#, kde-format
msgid "Rotator reached target position angle."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3540
#, kde-format
msgid "Syncing to RA (%1) DEC (%2)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3546
#, kde-format
msgid "Syncing failed."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3557
#, kde-format
msgid "Slewing to target coordinates: RA (%1) DEC (%2)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3570
#, kde-format
msgid "Ekos job (%1) - Telescope synced"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3600
#, kde-format
msgid "Processing solution for polar alignment..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3631 ekos/align/align.cpp:3732
#, kde-format
msgid "Polar Alignment Helper is still active. Do you want to continue using legacy polar alignment tool?"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3648
#, kde-format
msgid "Point the telescope at the southern meridian. Press continue when ready."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3649
#, kde-format
msgid "Point the telescope at the northern meridian. Press continue when ready."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3650 ekos/align/align.cpp:3749
#, kde-format
msgid "Polar Alignment Measurement"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3654
#, kde-format
msgid "Solving first frame near the meridian."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3683 ekos/align/align.cpp:3783
#, kde-format
msgid "Slewing 30 arcminutes in RA..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3689
#, kde-format
msgid "Solving second frame near the meridian."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3698
#, kde-format
msgid "Calculating azimuth alignment error..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3714 ekos/align/align.cpp:3814
#, kde-format
msgid "Slewing back to original position..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3747
#, kde-format
msgid "Point the telescope to the eastern or western horizon with a minimum altitude of 20 degrees. Press continue when ready."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3754
#, kde-format
msgid "Solving first frame."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3789
#, kde-format
msgid "Solving second frame."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3797
#, kde-format
msgid "Calculating altitude alignment error..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3855 ekos/align/align.cpp:3893
#, kde-format
msgid "%1 too far east"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3857 ekos/align/align.cpp:3891
#, kde-format
msgid "%1 too far west"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3866 ekos/align/align.cpp:3877
#: ekos/align/align.cpp:3904 ekos/align/align.cpp:3910
#, kde-format
msgid "%1 too far high"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3868 ekos/align/align.cpp:3875
#: ekos/align/align.cpp:3902 ekos/align/align.cpp:3912
#, kde-format
msgid "%1 too far low"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:3990 ekos/align/align.cpp:4031
#, kde-format
msgid "Slewing to calibration position, please wait until telescope completes slewing."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4066
#, kde-format
msgid "Load Image"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4231
#, kde-format
msgid "World Coordinate System (WCS) is enabled. CCD rotation must be set either manually in the CCD driver or by solving an image before proceeding to capture any further images, otherwise the WCS information may be invalid."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4240
#, kde-format
msgid "World Coordinate System (WCS) is disabled."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4257
#, kde-format
msgid "Capture error! Aborting..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4263 ekos/capture/capture.cpp:1656
#, kde-format
msgid "Restarting capture attempt #%1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4325
#, kde-format
msgid "FITS header: Cannot find NAXIS1."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4334
#, kde-format
msgid "FITS header: Cannot find NAXIS2."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4349
#, kde-format
msgid "FITS header: Cannot find OBJCTRA (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4367
#, kde-format
msgid "FITS header: Cannot find OBJCTDEC (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4393
#, kde-format
msgid "FITS header: Cannot find FOCALLEN (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4405
#, kde-format
msgid "FITS header: Cannot find PIXSIZE1 (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4414
#, kde-format
msgid "FITS header: Cannot find PIXSIZE2 (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4514
#, kde-format
msgid "Align Frame"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4535
#, kde-format
msgid "Warning: Equatorial Grid Lines will not be drawn due to limited resources mode."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4539
#, kde-format
msgid "Clearing mount Alignment Model..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4558
#, kde-format
msgid "Are you sure you want to restart the polar alignment process?"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, polarAlignmentHelperGroup)
#. +> trunk5
#: ekos/align/align.cpp:4559 ekos/align/align.ui:1061
#, kde-format
msgid "Polar Alignment Assistant"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4629
#, kde-format
msgid "Please wait until mount completes rotating to RA (%1) DE (%2)"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4641
#, kde-format
msgid "Failed to find a solution. Try again."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4658
#, kde-format
msgid "Failed to find RA Axis center: %1."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4762
#, kde-format
msgid "Mount is synced to celestial pole. You can now continue Polar Alignment Assistant procedure."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4781 ekos/align/align.cpp:4841
#, kde-format
msgid "Please wait while WCS data is processed..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4799
#, kde-format
msgid "Error creating WCS file: %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4850
#, kde-format
msgid "WCS data processing is complete."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4859
#, kde-format
msgid "WCS info is now valid. Capturing next frame..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4888
#, kde-format
msgid "Failed to process World Coordinate System: %1. Try again."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4898
#, kde-format
msgid "Celestial pole is located outside of the field of view. Would you like to sync and slew the telescope to the celestial pole? WARNING: Slewing near poles may cause your mount to end up in unsafe position. Proceed with caution."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4914
#, kde-format
msgid "Warning: Celestial pole is located outside the field of view. Move the mount closer to the celestial pole."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:4927
#, kde-format
msgid "Error: Failed to load WCS data in file: %1"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5005 ekos/align/align.cpp:5030
#, kde-format
msgid "Only one solution is found."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5011
#, kde-format
msgid "Infinite number of solutions found."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5023
#, kde-format
msgid "No solution is found. Points are too far away"
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5224 ekos/capture/capture.cpp:4794
#: ekos/focus/focus.cpp:2798
#, kde-format
msgid "Filter operation failed."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5236 ekos/capture/capture.cpp:4808
#, kde-format
msgid "Changing focus offset by %1 steps..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5240 ekos/capture/capture.cpp:4812
#, kde-format
msgid "Changing filter to %1..."
msgstr ""
#. +> trunk5
#: ekos/align/align.cpp:5244 ekos/capture/capture.cpp:4816
#, kde-format
msgid "Auto focus on filter change..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, controlBox)
#. +> trunk5
#: ekos/align/align.ui:44
#, kde-format
msgid "Solver Control"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, solveB)
#. +> trunk5
#: ekos/align/align.ui:71
#, kde-format
msgid "Capture && Solve"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, loadSlewB)
#. +> trunk5
#: ekos/align/align.ui:78
#, kde-format
msgid "Load a FITS image and solve. Slew mount to image central coordinates."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadSlewB)
#. +> trunk5
#: ekos/align/align.ui:81
#, kde-format
msgid "Load && Slew..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, stopB)
#. i18n: ectx: property (text), widget (QPushButton, stopFocusB)
#. +> trunk5
#: ekos/align/align.ui:93 ekos/capture/capture.cpp:2300
#: ekos/focus/focus.ui:190 ekos/guide/guide.ui:157
#: ekos/guide/internalguide/guider.cpp:220
#: ekos/guide/internalguide/guider.cpp:238
#: ekos/guide/internalguide/guider.cpp:310
#: ekos/guide/internalguide/rcalibration.cpp:379
#: kstarslite/qml/indi/INDIControlPanel.qml:143
#: kstarslite/qml/indi/modules/MotionControl.qml:157
#, kde-format, kde-kuit-format
msgid "Stop"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, gotoBox)
#. +> trunk5
#: ekos/align/align.ui:105
#, kde-format
msgid "Select which action to perform after the captured image is solved"
msgstr ""
#. i18n: ectx: property (statusTip), widget (QGroupBox, gotoBox)
#. +> trunk5
#: ekos/align/align.ui:108
#, kde-format
msgid "Select what action to take once a solution is found."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gotoBox)
#. +> trunk5
#: ekos/align/align.ui:111
#, kde-format
msgid "Solver Action"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, syncR)
#. +> trunk5
#: ekos/align/align.ui:132
#, kde-format
msgid "Synchronize the telescope to the solution coordinates"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, syncR)
#. +> trunk5
#: ekos/align/align.ui:138
#, kde-format
msgid "S&ync"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, slewR)
#. +> trunk5
#: ekos/align/align.ui:151
#, kde-format
msgid "Synchronize the telescope to the solution coordinates and then slew to the target coordinates"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, slewR)
#. +> trunk5
#: ekos/align/align.ui:157
#, kde-format
msgid "S&lew to Target"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, nothingR)
#. +> trunk5
#: ekos/align/align.ui:167
#, kde-format
msgid "Just solve"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, nothingR)
#. +> trunk5
#: ekos/align/align.ui:173
#, kde-format
msgid "&Nothing"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_5)
#. +> trunk5
#: ekos/align/align.ui:188
#, kde-format
msgid "Telescope Coordinates"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, accuracySpin)
#. i18n: ectx: property (toolTip), widget (QLabel, label_9)
#. +> trunk5
#: ekos/align/align.ui:194 ekos/align/align.ui:264
#, kde-format
msgid "Accuracy threshold in arcseconds between solution and target coordinates. Plate solver shall be repeatedly executed until the solution coordinates are below the accuracy threshold"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/align.ui:213 ekos/align/align.ui:415 ekos/ekosmanager.ui:942
#, kde-format
msgid "DE:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_22)
#. i18n: ectx: property (toolTip), widget (QSpinBox, delaySpin)
#. +> trunk5
#: ekos/align/align.ui:227 ekos/align/align.ui:244
#, kde-format
msgid "After telescope completes slewing, wait until it settles for this many milliseconds before capturing the next image."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5
#: ekos/align/align.ui:230
#, kde-format
msgid "Settle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QCheckBox, raCheckBatch)
#. i18n: ectx: property (text), widget (QCheckBox, RACheckBatch)
#. +> trunk5
#: ekos/align/align.ui:257 ekos/align/align.ui:348 ekos/ekosmanager.ui:925
#: tools/adddeepskyobject.ui:167 tools/altvstime.ui:97 tools/argsetradec.ui:37
#: tools/modcalcgalcoord.ui:288 tools/modcalcplanets.ui:251
#: tools/modcalcvlsr.ui:508
#, kde-format
msgid "RA:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/align/align.ui:267
#, kde-format
msgid "Accuracy"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5
#: ekos/align/align.ui:277
#, kde-format
msgid "Solution Coordinates"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, pixScaleOut)
#. i18n: ectx: property (toolTip), widget (QLabel, label_17)
#. +> trunk5
#: ekos/align/align.ui:298 ekos/align/align.ui:308
#, kde-format
msgid "Image scale in arcsecs/pixel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/align/align.ui:311
#, kde-format
msgid "Pix:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, FOVOut)
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/align/align.ui:318 ekos/align/align.ui:382
#, kde-format
msgid "Field of View size in arcminutes"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, RotOut)
#. i18n: ectx: property (toolTip), widget (QLabel, label_10)
#. +> trunk5
#: ekos/align/align.ui:331 ekos/align/align.ui:392
#, kde-format
msgid "Image rotation angle, East of North"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, dDE)
#. i18n: ectx: property (toolTip), widget (QLineEdit, dDEOut)
#. +> trunk5
#: ekos/align/align.ui:355 ekos/align/align.ui:402
#, kde-format
msgid "Difference between telescope coordinates and solution coordinates in Declination"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, dDE)
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. +> trunk5
#: ekos/align/align.ui:358 ekos/align/align.ui:880
#, kde-format
msgid "dDE"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, dRA)
#. i18n: ectx: property (toolTip), widget (QLineEdit, dRAOut)
#. +> trunk5
#: ekos/align/align.ui:365 ekos/align/align.ui:422
#, kde-format
msgid "Difference between telescope coordinates and solution coordinates in Right Ascension"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, dRA)
#. +> trunk5
#: ekos/align/align.ui:368
#, kde-format
msgid "dRA:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/align/align.ui:385
#, kde-format
msgid "FOV:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/align/align.ui:395
#, kde-format
msgid "Rot:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, FOVScopeCombo)
#. +> trunk5
#: ekos/align/align.ui:435 ekos/guide/guide.ui:464
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select which telescope to use when performing Field of View calculations.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, FOVScopeCombo)
#. +> trunk5
#: ekos/align/align.ui:439 ekos/guide/guide.ui:468
#, kde-format
msgid "Primary Scope"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, FOVScopeCombo)
#. +> trunk5
#: ekos/align/align.ui:444 ekos/guide/guide.ui:473
#, kde-format
msgid "Guide Scope"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_6)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/align.ui:492 ekos/capture/capture.ui:84 ekos/focus/focus.ui:227
#: ekos/profileeditor.ui:403
#, kde-format
msgid "CCD:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, toggleFullScreenB)
#. +> trunk5
#: ekos/align/align.ui:511 ekos/focus/focus.ui:283
#, kde-format
msgid "Toggle Full Screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, exposureIN)
#. +> trunk5
#: ekos/align/align.ui:521
#, kde-format
msgid "Exposure duration in seconds"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/align/align.ui:543 ekos/focus/focus.ui:240 ekos/guide/guide.ui:216
#, kde-format
msgid "Exp:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, alignDarkFrameCheck)
#. +> trunk5
#: ekos/align/align.ui:550
#, kde-format
msgid "Subtract dark frame. If no suitable dark frame is available, a dark frame shall be captured."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, alignDarkFrameCheck)
#. i18n: ectx: property (text), widget (QCheckBox, darkFrameCheck)
#. +> trunk5
#: ekos/align/align.ui:553 ekos/guide/guide.ui:105
#, kde-format
msgid "Dark"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, binningCombo)
#. +> trunk5
#: ekos/align/align.ui:560
#, kde-format
msgid "Camera binning"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/align/align.ui:570 ekos/focus/focus.ui:317 ekos/guide/guide.ui:226
#, kde-format
msgid "Bin:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, showFITSViewerB)
#. +> trunk5
#: ekos/align/align.ui:589 ekos/focus/focus.ui:305 ekos/guide/guide.ui:82
#, kde-format
msgid "Show in FITS Viewer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, FilterCaptureLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_5_3)
#. +> trunk5
#: ekos/align/align.ui:602 ekos/capture/capture.ui:100 ekos/focus/focus.ui:377
#, kde-format
msgid "FW:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, FilterPosLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_3)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5
#: ekos/align/align.ui:612 ekos/capture/capture.ui:281 ekos/focus/focus.ui:400
#: ekos/profileeditor.ui:526 fitsviewer/fitsdebayer.ui:22 oal/execute.ui:358
#, kde-format
msgid "Filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/align/align.ui:631
#, kde-format
msgid "Options:"
msgstr ""
#. i18n: ectx: property (statusTip), widget (QLineEdit, solverOptions)
#. +> trunk5
#: ekos/align/align.ui:638
#, kde-format
msgid "Additional options to be the solver"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editOptionsB)
#. +> trunk5
#: ekos/align/align.ui:660
#, kde-format
msgid "Edit solver options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. +> trunk5
#: ekos/align/align.ui:677
#, kde-format
msgid "Solver:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, onlineSolverR)
#. +> trunk5
#: ekos/align/align.ui:684
#, kde-format
msgid "Use online astrometry.net solver to solve the image. You must have an internet connection and a valid API key."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, onlineSolverR)
#. +> trunk5
#: ekos/align/align.ui:687 indi/clientmanagerlite.cpp:241
#, kde-format
msgid "Online"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, offlineSolverR)
#. +> trunk5
#: ekos/align/align.ui:700
#, kde-format
msgid "Use offline astrometry.net solver. You must install all the necessary index files for your field of view."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, offlineSolverR)
#. +> trunk5
#: ekos/align/align.ui:703 indi/clientmanagerlite.cpp:248
#: indi/clientmanagerlite.cpp:259
#, kde-format
msgid "Offline"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, remoteSolverR)
#. +> trunk5
#: ekos/align/align.ui:716
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use astrometry solver on remote machine running INDI server. You must select <b>Astrometry</b> driver from Auxiliary drivers in your Ekos devices profile for this option to be enabled.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, remoteSolverR)
#. +> trunk5
#: ekos/align/align.ui:719
#, kde-format
msgid "Remote"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, solutionResults)
#. +> trunk5
#: ekos/align/align.ui:777
#, kde-format
msgid "Solution Results"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5
#: ekos/align/align.ui:804
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The results from Astrometric Solutions from the Capture and Solve Tool, the Load and Slew Tool, and the Mount Model Tool will be displayed below.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_DirRA)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/align/align.ui:840 ekos/align/opsastrometry.ui:532
#: ekos/guide/guide.ui:180 ekos/guide/internalguide/guider.ui:707
#: ekos/mount/mount.ui:240 ekos/scheduler/scheduler.ui:122
#, kde-format
msgid "RA"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_DirDEC)
#. i18n: ectx: property (text), widget (QCheckBox, showDECPlotCheck)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/align/align.ui:848 ekos/align/opsastrometry.ui:512
#: ekos/guide/guide.ui:311 ekos/guide/guide.ui:1391
#: ekos/guide/internalguide/guider.ui:693 ekos/mount/mount.ui:257
#: ekos/scheduler/scheduler.ui:136
#, kde-format
msgid "DEC"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. +> trunk5
#: ekos/align/align.ui:856
#, kde-format
msgid "Obj Name"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. i18n: ectx: property (text), widget (QTableWidget, alignTable)
#. +> trunk5
#: ekos/align/align.ui:864 ekos/align/mountmodel.ui:472
#, kde-format
msgid "~~"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, solutionTable)
#. +> trunk5
#: ekos/align/align.ui:872
#, kde-format
msgid "dRA"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, clearAllSolutionsB)
#. +> trunk5
#: ekos/align/align.ui:908
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Clear all of the solutions from the solutions table. Be careful because you cannot get them back.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, removeSolutionB)
#. +> trunk5
#: ekos/align/align.ui:930
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Remove the selected row from the solutions table. This can be useful for getting rid of results that did not actually solve from the table and/or results that you do not need any more. It can clean up clutter on both the graph and table.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, exportSolutionsCSV)
#. +> trunk5
#: ekos/align/align.ui:952
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Export all of the solutions in the Solution Results table to CSV file of your choosing for further analysis in a spreadsheet.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, autoScaleGraphB)
#. +> trunk5
#: ekos/align/align.ui:974
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Auto scale and center the Solution Results graph.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, mountModelB)
#. +> trunk5
#: ekos/align/align.ui:997
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Launch the mount model tool. This tool enables you to create pre-programmed list of points to go to and solve. It can aid in building a pointing model for better accuracy.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mountModelB)
#. +> trunk5
#: ekos/align/align.ui:1000
#, kde-format
msgid "Mount Model"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, polarAlignment)
#. +> trunk5
#: ekos/align/align.ui:1034
#, kde-format
msgid "Polar Alignment"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QStackedWidget, PAHWidgets)
#. +> trunk5
#: ekos/align/align.ui:1085
#, kde-format
msgid ""
"<p>Polar Alignment Helper tool requires the following:</p>"
"<p>1. German Equatorial Mount</p>"
"<p>2. Wide FOV &gt; 1 degrees</p>"
"<p>For small FOVs, use the Legacy Polar Alignment Tool.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/align/align.ui:1113
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This tool provides a simple method to polar align a German equatorial mount. <span style=\" font-weight:600;\">Unpark</span> your mount, <span style=\" font-weight:600;\">Point</span> toward the celestial pole, and <span style=\" font-weight:600;\">Engage</span> sidereal tracking.</p>"
"<p>Click <span style=\" font-weight:600;\">Start</span> to begin the process.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, FOVDisabledLabel)
#. +> trunk5
#: ekos/align/align.ui:1128
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600; color:#ff5500;\">Disabled: FOV must be 30 arcmins or wider.</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHStartB)
#. +> trunk5
#: ekos/align/align.ui:1151 ekos/guide/internalguide/rcalibration.cpp:357
#: kstarslite/qml/indi/INDIControlPanel.qml:172
#, kde-format, kde-kuit-format
msgid "Start"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/align/align.ui:1179
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The assistant requires three images to find a solution. The first image shall now be captured and solved. Click <span style=\" font-weight:600;\">Capture</span> to start.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHFirstCaptureB)
#. i18n: ectx: property (text), widget (QPushButton, PAHSecondCaptureB)
#. i18n: ectx: property (text), widget (QPushButton, PAHThirdCaptureB)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CaptureLogging)
#. i18n: ectx: property (title), widget (QGroupBox, captureGroup)
#. i18n: ectx: property (text), widget (QPushButton, captureB)
#. i18n: ectx: attribute (title), widget (QWidget, captureTab)
#. +> trunk5
#: ekos/align/align.ui:1207 ekos/align/align.ui:1369 ekos/align/align.ui:1491
#: ekos/auxiliary/opslogs.ui:328 ekos/ekosmanager.ui:470
#: ekos/focus/focus.ui:160 ekos/guide/guide.ui:63
#: ekos/guide/internalguide/guider.ui:213 ekos/opsekos.ui:259
#: options/opsadvanced.ui:332
#, kde-format
msgid "Capture"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5
#: ekos/align/align.ui:1235
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select direction and range of <span style=\" font-style:italic;\">first</span> mount rotation, then click <span style=\" font-weight:600;\">Rotate</span> to continue. To automate the rest of the process, check <span style=\" font-weight:600;\">Auto Mode</span>.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, PAHFirstWestMeridianR)
#. i18n: ectx: property (text), widget (QRadioButton, PAHSecondWestMeridianR)
#. +> trunk5
#: ekos/align/align.ui:1250 ekos/align/align.ui:1397
#, kde-format
msgid "West"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, PAHFirstEastMeridianR)
#. i18n: ectx: property (text), widget (QRadioButton, PAHSecondEastMeridianR)
#. +> trunk5
#: ekos/align/align.ui:1260 ekos/align/align.ui:1407
#, kde-format
msgid "East"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. i18n: ectx: property (text), widget (QLabel, label_25)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/align/align.ui:1283 ekos/align/align.ui:1430
#: ekos/scheduler/scheduler.ui:936 ekos/scheduler/scheduler.ui:966
#, kde-format
msgid "°"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, PAHAutoModeCheck)
#. +> trunk5
#: ekos/align/align.ui:1303
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Perform the remaining steps automatically</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, PAHAutoModeCheck)
#. +> trunk5
#: ekos/align/align.ui:1306
#, kde-format
msgid "Auto Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHFirstRotateB)
#. i18n: ectx: property (text), widget (QPushButton, PAHSecondRotateB)
#. +> trunk5
#: ekos/align/align.ui:1313 ekos/align/align.ui:1450
#, kde-format
msgid "Rotate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5
#: ekos/align/align.ui:1341
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The second image shall now be captured and solved. Click <span style=\" font-weight:600;\">Capture</span> to start.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_27)
#. +> trunk5
#: ekos/align/align.ui:1382
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select direction and range of final mount rotation, then click <span style=\" font-weight:600;\">Rotate</span> to continue.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_28)
#. +> trunk5
#: ekos/align/align.ui:1463
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The final image shall now be captured and solved. Click <span style=\" font-weight:600;\">Capture</span> to start.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, PAHErrorDescriptionLabel)
#. +> trunk5
#: ekos/align/align.ui:1519
#, kde-format
msgid "Error Occurred"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButton)
#. i18n: ectx: property (text), widget (QPushButton, PAHRestartB)
#. +> trunk5
#: ekos/align/align.ui:1547 ekos/align/align.ui:1710
#, kde-format
msgid "Restart"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_23)
#. +> trunk5
#: ekos/align/align.ui:1565
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Angle between expected perfectly aligned mount center and the actual center</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_23)
#. +> trunk5
#: ekos/align/align.ui:1568
#, kde-format
msgid "Polar Error:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_26)
#. +> trunk5
#: ekos/align/align.ui:1608
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Correction vector is plotted above. Select a bright star to reposition the correction vector. Click <span style=\" font-weight:600;\">Next</span> when done.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHCorrectionsNextB)
#. i18n: ectx: property (text), widget (QPushButton, introNextB)
#. i18n: ectx: property (text), widget (QPushButton, remoteEquipmentNextB)
#. i18n: ectx: property (text), widget (QPushButton, stellarMateEquipmentNextB)
#. i18n: ectx: property (text), widget (QPushButton, NextButton)
#. +> trunk5
#: ekos/align/align.ui:1618 ekos/profilewizard.ui:169
#: ekos/profilewizard.ui:620 ekos/profilewizard.ui:734
#: kstarslite/qml/modules/tutorial/TutorialPane.qml:57
#: tools/starhopperdialog.ui:53 tools/whatsinteresting/qml/wiview.qml:1337
#, kde-format, kde-kuit-format
msgid "Next"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_24)
#. +> trunk5
#: ekos/align/align.ui:1646
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Adjust mount's Altitude and Azimuth knobs until the selected star is centered within the crosshair. Click <span style=\" font-weight:600;\">Refresh</span> to begin continuous capture. Click <span style=\" font-weight:600;\">Done</span> when star is centered.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHRefreshB)
#. i18n: ectx: property (text), widget (QPushButton, refreshB)
#. i18n: ectx: property (text), widget (QPushButton, refreshSourceB)
#. +> trunk5
#: ekos/align/align.ui:1661 ekos/opsekos.ui:484 hips/opships.ui:116
#, kde-format
msgid "Refresh"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, PAHExposure)
#. +> trunk5
#: ekos/align/align.ui:1668
#, kde-format
msgid "Exposure duration in seconds during refresh phase"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, PAHDoneB)
#. +> trunk5
#: ekos/align/align.ui:1694
#, kde-format
msgid "Done"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, polarAlignmentGroup)
#. +> trunk5
#: ekos/align/align.ui:1717
#, kde-format
msgid "Legacy Polar Alignment Tool"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/align/align.ui:1733
#, kde-format
msgid "Az Error:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, measureAzB)
#. +> trunk5
#: ekos/align/align.ui:1752
#, kde-format
msgid "Measure Az Error"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, correctAzB)
#. +> trunk5
#: ekos/align/align.ui:1762
#, kde-format
msgid "Correct Az Error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/align/align.ui:1785
#, kde-format
msgid "Alt Error:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, measureAltB)
#. +> trunk5
#: ekos/align/align.ui:1804
#, kde-format
msgid "Measure Alt Error"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, correctAltB)
#. +> trunk5
#: ekos/align/align.ui:1814
#, kde-format
msgid "Correct Alt Error"
msgstr ""
#. +> trunk5
#: ekos/align/alignview.cpp:149 fitsviewer/fitsview.cpp:981
#, kde-format
msgctxt "North Celestial Pole"
msgid "NCP"
msgstr ""
#. +> trunk5
#: ekos/align/alignview.cpp:151 fitsviewer/fitsview.cpp:998
#, kde-format
msgctxt "South Celestial Pole"
msgid "SCP"
msgstr ""
#. +> trunk5
#: ekos/align/alignview.cpp:176
#, kde-format
msgid "RA Axis"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, mountModel)
#. i18n: ectx: property (windowTitle), widget (QDialog, OpsAstrometryCfg)
#. i18n: ectx: property (windowTitle), widget (QDialog, OpsAstrometryIndexFiles)
#. +> trunk5
#: ekos/align/mountmodel.ui:14 ekos/align/opsastrometrycfg.ui:14
#: ekos/align/opsastrometryindexfiles.ui:14
#, kde-format
msgid "Dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/align/mountmodel.ui:35
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This tool can help your mount build a better pointing model by moving the mount to different points in the sky and solving captured images. This can increase the accuracy of your GOTOs. To qualify, your mount must be capable of improving its internal pointing model after each <b>Sync</b> commanded by Ekos. If this is not the case, then this tool is not suitable for your mount.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/align/mountmodel.ui:48
#, kde-format
msgid "Mount Model Wizard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/align/mountmodel.ui:54
#, kde-format
msgid "Alignment Points:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, alignPtNum)
#. +> trunk5
#: ekos/align/mountmodel.ui:61
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The Number of points the wizard should generate. If this number is less than 5, it will generate them at the same DEC. After that they will be evenly distributed over RA and DEC. Note, if Fixed DEC is selected, all of the points will be at the same DEC.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, wizardAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:90
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Automatically generate the specified number of alignment points in the table below. They will be generated based on the options selected in this wizard.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, wizardAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:93
#, kde-format
msgid "Generate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/align/mountmodel.ui:100
#, kde-format
msgid "Minimum Alt:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, minAltBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:107
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This is the minimum altitude above the horizon to use in generating points with the wizard.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. i18n: ectx: property (text), widget (QLabel, label_27)
#. i18n: ectx: property (text), widget (QLabel, decLabel)
#. i18n: ectx: property (text), widget (QLabel, dec0Label)
#. i18n: ectx: property (text), widget (QLabel, dec1Label)
#. i18n: ectx: property (text), widget (QLabel, DecLabel2)
#. i18n: ectx: property (text), widget (QLabel, DecLabel)
#. i18n: ectx: property (text), widget (QCheckBox, decCheckBatch)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/mountmodel.ui:120 oal/execute.ui:188 tools/flagmanager.ui:47
#: tools/modcalcaltaz.ui:232 tools/modcalcangdist.ui:148
#: tools/modcalcangdist.ui:251 tools/modcalcapcoord.ui:117
#: tools/modcalcapcoord.ui:359 tools/modcalcapcoord.ui:517
#: tools/modcalceclipticcoords.ui:121 tools/modcalcgalcoord.ui:66
#: tools/modcalcvlsr.ui:236
#, kde-format
msgid "Declination:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, alignDec)
#. +> trunk5
#: ekos/align/mountmodel.ui:130
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The Declination of the points that will be generated. This option only applies to the Fixed DEC Option.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/mountmodel.ui:156
#, kde-format
msgid "Object Type:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:171
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select the type of objects/points added by the wizard.</p>"
"<p><span style=\" font-weight:600;\">Note:</span> all of the options except Fixed DEC start with a grid of RA/DEC points.</p>"
"\n"
"<ul>\n"
"<li><b>Any Stars:</b> The wizard searches for the nearest star.</li>"
"\n"
"<li><b>Any object:</b> The wizard searches for the nearest object of any type.</li>"
"\n"
"<li><b>Named Stars</b> The wizard searches for the nearest star in the currently visible star list. Note that the first named star might be fairly far from the intended point and also sometimes the same star could be the closest one for multiple points.</li>"
"\n"
"<li><b>Fixed DEC:</b> The wizard generates all points at the chosen DEC.</li>"
"\n"
"<li><b>Fixed Grid:</b> The wizard just uses the original grid without trying to pair it with objects.</li>"
"\n"
"</ul>"
"\n"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:175
#, kde-format
msgid "Any Stars"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:180
#, kde-format
msgid "Named Stars"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:185
#, kde-format
msgid "Any Object"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:190
#, kde-format
msgid "Fixed DEC"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, alignTypeBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:195
#, kde-format
msgid "Fixed Grid"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: ekos/align/mountmodel.ui:219
#, kde-format
msgid "Add Currently Visible Stars"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/align/mountmodel.ui:237
#, kde-format
msgid "Common Names:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, starListBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:250
#, kde-format
msgid ""
"<html><head/><body>"
"<p>These are the common names for the named stars that are currently up at your location. If you select a star, it will be added to the table below.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/align/mountmodel.ui:270
#, kde-format
msgid "Greek:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, greekStarListBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:283
#, kde-format
msgid ""
"<html><head/><body>"
"<p>These are the Greek names for the brighter stars that are currently up at your location. If you select a star, it will be added to the table below.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/align/mountmodel.ui:293
#, kde-format
msgid "Mount Model Alignment Points"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, clearAllAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:331
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Clear the entire table of alignment points below. Note that this will not affect your mount in any way. It will not clear your pointing model. It just clears the list of points so that if you run the mount model routine again, these points will not be included.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, removeAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:353
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Remove the selected row from the alignment point table below. Note that it does <b>not</b> command your mount to clear that point from the model, it just means that if you run the mount model routine, that point will not be included in the list.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, addAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:375
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Add an empty row to the alignment list so that you can manually add an RA and DE for a position you would like the telescope to slew to when doing the mount model routine.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, findAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:397
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Open the Find Object dialog so that you can select an object to get an RA and DEC automatically that you would like the telescope to slew to when doing the mount model routine.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, sortAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:419
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Sort the alignment points, starting with the point closest to the current telescope position, to try to minimize the distance between each slew.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTableWidget, alignTable)
#. +> trunk5
#: ekos/align/mountmodel.ui:444
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This is a table of alignment points that you would like the mount model routine to use in aligning your telescope. If you would like to add or remove points, you may use the buttons above. If you would like to run, pause, or stop the mount model routine, you may use the buttons below. You can directly edit an RA or DE for a particular point directly in the cells. Just be sure to follow the format hh:mm:ss. The object name is just provided for convenience and is not used. If you want to change the order of the alignment points, you can drag the row up or down using the vertical header for that row on the left. </p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, alignTable)
#. +> trunk5
#: ekos/align/mountmodel.ui:448
#, kde-format
msgid "RA (J2000)"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, alignTable)
#. +> trunk5
#: ekos/align/mountmodel.ui:456
#, kde-format
msgid "DEC (J2000)"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, alignTable)
#. i18n: ectx: property (text), widget (QPushButton, FindButton)
#. +> trunk5
#: ekos/align/mountmodel.ui:464 tools/argfindobject.ui:47
#: tools/arglooktoward.ui:116
#, kde-format
msgid "Object"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, loadAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:503
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Load a saved alignment point list so that you can run the same alignment you ran on a previous occasion.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, saveAsAlignB)
#. i18n: ectx: property (toolTip), widget (QPushButton, saveAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:525 ekos/align/mountmodel.ui:547
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Save the alignment list so that you can run this alignment again in the future.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, previewB)
#. +> trunk5
#: ekos/align/mountmodel.ui:569
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Display the alignment points on the skymap as flags. Clicking it again will remove the flags. The flags will not be saved.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, startAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:604
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Start or pause the mount model routine. It will slew to and astrometrically solve the list of points in the table above using the settings in the align module. If the routine was previously paused, it will pick up where it left off. If it was stopped or it had finished it will start the routine over again.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, stopAlignB)
#. +> trunk5
#: ekos/align/mountmodel.ui:626
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Stop the mount model routine. It will <b>not</b> clear any points from your telescope's pointing model. It will stop the routine and any points currently being solved. If you run the mount model again after hitting stop, it will start the routine over again with the first point.</p>"
"</body></html>"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:68
#, kde-format
msgid "Failed to find astrometry.net binaries. Please ensure astrometry.net is installed and try again."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:69
#, kde-format
msgid "Missing astrometry files"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:93
#, kde-format
msgid "Detected Astrometry.net version %1"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:98
#, kde-format
msgid "Setting astrometry option --no-fits2fits"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:103
#, kde-format
msgid "Turning off option --no-fits2fits"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:188
#, kde-format
msgid "Index file %1 is missing. Astrometry.net would not be able to adequately solve plates until you install the missing index files. Download the index files from http://www.astrometry.net"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:192
#, kde-format
msgid "Index files %1 to %2 are missing. Astrometry.net would not be able to adequately solve plates until you install the missing index files. Download the index files from http://www.astrometry.net"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:212
#: ekos/align/opsastrometrycfg.cpp:48
#: ekos/align/opsastrometryindexfiles.cpp:211
#, kde-format
msgid ""
"Astrometry configuration file corrupted or missing: %1\n"
"Please set the configuration file full path in INDI options."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:234
#: ekos/align/opsastrometryindexfiles.cpp:233
#, kde-format
msgid "Unable to find data dir in astrometry configuration file."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:284
#, kde-format
msgid "Error starting solver: %1"
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:302
#, kde-format
msgid "Starting solver..."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:335
#: ekos/align/remoteastrometryparser.cpp:241
#, kde-format
msgid "Solver failed. Try again."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:359
#, kde-format
msgid "WCS header missing or corrupted. Solver failed."
msgstr ""
#. +> trunk5
#: ekos/align/offlineastrometryparser.cpp:392
#: ekos/align/onlineastrometryparser.cpp:476
#: ekos/align/remoteastrometryparser.cpp:283
#, kde-format
msgid "Solver completed in %1 second."
msgid_plural "Solver completed in %1 seconds."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:73
#, kde-format
msgid "Error: No connection to the internet."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:181
#, kde-format
msgid "Failed to open file %1. %2"
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:252
#, kde-format
msgid "Uploading file..."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:325
#, kde-format
msgid "JSon error during parsing (%1)."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:343
#, kde-format
msgid "Astrometry.net authentication failed. Check the validity of the Astrometry.net API Key."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:351
#, kde-format
msgid "Authentication to astrometry.net is successful. Session: %1"
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:360
#, kde-format
msgid "Upload failed."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:369
#, kde-format
msgid "Parsing submission ID failed."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:374
#, kde-format
msgid "Upload complete. Waiting for astrometry.net solver to complete..."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:397
#, kde-format
msgid "Failed to retrieve job ID."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:420
#, kde-format
msgid "Solver timed out."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:430
#, kde-format
msgid "Solver failed after %1 second."
msgid_plural "Solver failed after %1 seconds."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:440
#, kde-format
msgid "Error parsing parity."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:447
#, kde-format
msgid "Error parsing orientation."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:455
#, kde-format
msgid "Error parsing RA."
msgstr ""
#. +> trunk5
#: ekos/align/onlineastrometryparser.cpp:462
#: ekos/align/onlineastrometryparser.cpp:470
#, kde-format
msgid "Error parsing DEC."
msgstr ""
#. +> trunk5
#: ekos/align/opsalign.cpp:35
#, kde-format
msgid "Internal or External Plate Solver?"
msgstr ""
#. +> trunk5
#: ekos/align/opsalign.cpp:40
#, kde-format
msgid "Internal or External astrometry.cfg?"
msgstr ""
#. i18n: ectx: label, entry (AstrometryWCSIsInternal), group (Align)
#. +> trunk5
#: ekos/align/opsalign.cpp:45 kstars.kcfg:1833
#, kde-format
msgid "Internal or External wcsinfo?"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_AstrometryTimeout)
#. +> trunk5
#: ekos/align/opsalign.ui:26
#, kde-format
msgid "Timeout in seconds to wait for astrometry solver to complete"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/align/opsalign.ui:39
#, kde-format
msgid "config:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5
#: ekos/align/opsalign.ui:46
#, kde-format
msgid "solver:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometryWCSInfo)
#. +> trunk5
#: ekos/align/opsalign.ui:53
#, kde-format
msgid "Astrometry.net wcsinfo binary"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometrySolverBinary)
#. +> trunk5
#: ekos/align/opsalign.ui:70
#, kde-format
msgid "Astrometry.net solve-field binary"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometryConfFile)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometryAPIURL)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometryAPIKey)
#. +> trunk5
#: ekos/align/opsalign.ui:80 ekos/align/opsalign.ui:90
#: ekos/align/opsalign.ui:100
#, kde-format
msgid "Astrometry.net configuration file"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/align/opsalign.ui:110
#, kde-format
msgid "Time out:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/align/opsalign.ui:117
#, kde-format
msgid "API Key:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5
#: ekos/align/opsalign.ui:131
#, kde-format
msgid "API URL:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5
#: ekos/align/opsalign.ui:138
#, kde-format
msgid "wcsinfo:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseRotator)
#. +> trunk5
#: ekos/align/opsalign.ui:145
#, kde-format
msgid ""
"<html><head/><body>"
"<p>On Load &amp; Slew, solve the image and slew the mount to the target location and then rotate the camera to match the orientation of the FITS image.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/align/opsalign.ui:155
#, kde-format
msgid "Rotator:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, kcfg_AstrometryRotatorThreshold)
#. +> trunk5
#: ekos/align/opsalign.ui:162
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Rotator threshold in arc-minutes when using Load &amp; Slew. If the difference between measured position angle and FITS position angle is below this value, the Load &amp; Slew operation is considered successful.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometrySolverWCS)
#. +> trunk5
#: ekos/align/opsalign.ui:173
#, kde-format
msgid "enable World Coordinate System (WCS). WCS is used to encode RA/DEC coordinates in captured CCD images."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometrySolverWCS)
#. +> trunk5
#: ekos/align/opsalign.ui:176
#, kde-format
msgid "WCS"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometrySolverVerbose)
#. +> trunk5
#: ekos/align/opsalign.ui:183
#, kde-format
msgid "Log verbose solver output"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometrySolverVerbose)
#. +> trunk5
#: ekos/align/opsalign.ui:189
#, kde-format
msgid "Verbose"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometrySolverOverlay)
#. +> trunk5
#: ekos/align/opsalign.ui:196
#, kde-format
msgid "Display received FITS images unto solver FOV rectangle in the sky map"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometrySolverOverlay)
#. +> trunk5
#: ekos/align/opsalign.ui:199 tools/eyepiecefield.cpp:87
#, kde-format
msgid "Overlay"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseJPEG)
#. +> trunk5
#: ekos/align/opsalign.ui:206
#, kde-format
msgid "Use JPEG format, instead of FITS, to upload images to the online astrometry.net service"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseJPEG)
#. +> trunk5
#: ekos/align/opsalign.ui:209
#, kde-format
msgid "Upload JPG"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: ekos/align/opsastrometry.ui:17
#, kde-format
msgid "Basic Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseNoFITS2FITS)
#. +> trunk5
#: ekos/align/opsastrometry.ui:28
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This option should <span style=\" font-weight:600;\">ONLY</span> be checked if your astrometry.net version is 0.67 or earlier. Uncheck for any versions greater than 0.67</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseNoFITS2FITS)
#. +> trunk5
#: ekos/align/opsastrometry.ui:31
#, kde-format
msgid "--no-fits2fits"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseResort)
#. +> trunk5
#: ekos/align/opsastrometry.ui:38
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Check this option if your image does not have much nebulosity. If it does have strong nebulosity, uncheck it.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseResort)
#. +> trunk5
#: ekos/align/opsastrometry.ui:41
#, kde-format
msgid "--resort"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseNoVerify)
#. +> trunk5
#: ekos/align/opsastrometry.ui:51
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This will prevent the solver from looking at an already existing WCS Header before blindly trying to solve the image. It is recommended to keep it checked.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseNoVerify)
#. +> trunk5
#: ekos/align/opsastrometry.ui:54
#, kde-format
msgid "--no-verify"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryDetectParity)
#. +> trunk5
#: ekos/align/opsastrometry.ui:64
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Detect parity and reuse it to speed up solver.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryDetectParity)
#. +> trunk5
#: ekos/align/opsastrometry.ui:67
#, kde-format
msgid "parity"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_27)
#. +> trunk5
#: ekos/align/opsastrometry.ui:77
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Prevents creation of unnecessary files unused by Ekos.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_27)
#. +> trunk5
#: ekos/align/opsastrometry.ui:80
#, kde-format
msgid "--no-plots"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_30)
#. +> trunk5
#: ekos/align/opsastrometry.ui:99
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Overwrite already generated files. It must be checked to prevent solver failure.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_30)
#. +> trunk5
#: ekos/align/opsastrometry.ui:102
#, kde-format
msgid "-O"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/align/opsastrometry.ui:117
#, kde-format
msgid "Imaging Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_7)
#. i18n: ectx: property (toolTip), widget (QComboBox, kcfg_AstrometryImageScaleUnits)
#. +> trunk5
#: ekos/align/opsastrometry.ui:128 ekos/align/opsastrometry.ui:193
#, kde-format
msgid ""
"<p>The units of the imager scale bounds above.</p>"
"\n"
"<ul>\n"
"<li>dw: degree width</li>"
"\n"
"<li>aw: arcminute width</li>"
"\n"
"<li>app: arcsecs per pixel</li>"
"\n"
"</ul>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/opsastrometry.ui:131
#, kde-format
msgid "units"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, updateScale)
#. +> trunk5
#: ekos/align/opsastrometry.ui:153
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Update Image Scale Bounds from the currently active camera &amp; telescope combination.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_42)
#. i18n: ectx: property (toolTip), widget (QLabel, label_13)
#. +> trunk5
#: ekos/align/opsastrometry.ui:172 ekos/align/opsastrometry.ui:324
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The high end of the imager scale, calculated as a little bigger than the longer dimension of the image.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_42)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, cameraHFOVLabel)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, targetFOVHLabel)
#. +> trunk5
#: ekos/align/opsastrometry.ui:175 ekos/scheduler/mosaic.ui:38
#: ekos/scheduler/mosaic.ui:100 ekos/scheduler/mosaic.ui:324
#: ekos/scheduler/mosaic.ui:412 ekos/scheduler/mosaic.ui:455
#, kde-format
msgid "H"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_AstrometryImageScaleUnits)
#. +> trunk5
#: ekos/align/opsastrometry.ui:200
#, kde-format
msgid "dw"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_AstrometryImageScaleUnits)
#. +> trunk5
#: ekos/align/opsastrometry.ui:205
#, kde-format
msgid "aw"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_AstrometryImageScaleUnits)
#. +> trunk5
#: ekos/align/opsastrometry.ui:210
#, kde-format
msgid "app"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseDownsample)
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_55)
#. +> trunk5
#: ekos/align/opsastrometry.ui:231 ekos/align/opsastrometry.ui:295
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Downsample the image to shrink its size and speed up the solver.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseDownsample)
#. +> trunk5
#: ekos/align/opsastrometry.ui:234
#, kde-format
msgid "Down Sample"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUseImageScale)
#. +> trunk5
#: ekos/align/opsastrometry.ui:244
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set image scale to speed up solver as it does not have to search index files of different image scales.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUseImageScale)
#. +> trunk5
#: ekos/align/opsastrometry.ui:247
#, kde-format
msgid "Use Scale"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_41)
#. i18n: ectx: property (toolTip), widget (QLabel, label_12)
#. +> trunk5
#: ekos/align/opsastrometry.ui:266 ekos/align/opsastrometry.ui:410
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The lower end of the imager scale, calculated as a little smaller than the shorter dimension of the image.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_41)
#. +> trunk5
#: ekos/align/opsastrometry.ui:269
#, kde-format
msgid "L"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_55)
#. +> trunk5
#: ekos/align/opsastrometry.ui:298
#, kde-format
msgid "downsample"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5
#: ekos/align/opsastrometry.ui:327
#, kde-format
msgid "High"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryAutoUpdateImageScale)
#. +> trunk5
#: ekos/align/opsastrometry.ui:339
#, kde-format
msgid "Automatically update image scale values when CCD and/or Mount parameters are updated."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryAutoUpdateImageScale)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryAutoUpdatePosition)
#. +> trunk5
#: ekos/align/opsastrometry.ui:342 ekos/align/opsastrometry.ui:631
#, kde-format
msgid "Auto Update"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, imageWarningLabel)
#. +> trunk5
#: ekos/align/opsastrometry.ui:370
#, kde-format
msgid "<html><head/><body><nobr>Image Scale Auto Update is turned off!</nobr></body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_50)
#. +> trunk5
#: ekos/align/opsastrometry.ui:400
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The units of the imager scale bounds above.</p>"
"<p>dw: degree width</p>"
"<p>aw: arcminute width</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_50)
#. +> trunk5
#: ekos/align/opsastrometry.ui:403
#, kde-format
msgid "u"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/align/opsastrometry.ui:413
#, kde-format
msgid "Low"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/align/opsastrometry.ui:439
#, kde-format
msgid "Position Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryUsePosition)
#. +> trunk5
#: ekos/align/opsastrometry.ui:445
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set estimated position to speed up astrometry solver as it does not have to search in other areas of the sky.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryUsePosition)
#. +> trunk5
#: ekos/align/opsastrometry.ui:448
#, kde-format
msgid "Use Position"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_44)
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/align/opsastrometry.ui:467 ekos/align/opsastrometry.ui:574
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The Search Radius for the Estimated Telescope/Image Field Position in degrees.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_44)
#. i18n: ectx: property (text), widget (QLabel, bortleClassLabel5)
#. +> trunk5
#: ekos/align/opsastrometry.ui:470 tools/whatsinteresting/wilpsettings.ui:103
#, kde-format
msgid "5"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_47)
#. i18n: ectx: property (toolTip), widget (dmsBox, estRA)
#. i18n: ectx: property (toolTip), widget (QLabel, label_14)
#. +> trunk5
#: ekos/align/opsastrometry.ui:499 ekos/align/opsastrometry.ui:522
#: ekos/align/opsastrometry.ui:529
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The RA of the Estimated Telescope/Image Field Position in hh:mm:ss notation</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_47)
#. +> trunk5
#: ekos/align/opsastrometry.ui:502
#, kde-format
msgid "3"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_15)
#. i18n: ectx: property (toolTip), widget (dmsBox, estDec)
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_48)
#. +> trunk5
#: ekos/align/opsastrometry.ui:509 ekos/align/opsastrometry.ui:593
#: ekos/align/opsastrometry.ui:616
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The DEC of the Estimated Telescope/Image Field Position in dd:mm:ss notation</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, updatePosition)
#. +> trunk5
#: ekos/align/opsastrometry.ui:551
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Update coordinates to the current telescope position</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/align/opsastrometry.ui:577
#, kde-format
msgid "Radius"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit_48)
#. +> trunk5
#: ekos/align/opsastrometry.ui:619
#, kde-format
msgid "4"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryAutoUpdatePosition)
#. +> trunk5
#: ekos/align/opsastrometry.ui:628
#, kde-format
msgid "Automatically update position coordinates when mount completes slewing."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, positionWarningLabel)
#. +> trunk5
#: ekos/align/opsastrometry.ui:659
#, kde-format
msgid "<html><head/><body><nobr>Position Auto Update is turned off!</nobr></body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AstrometryDifferentialSlewing)
#. +> trunk5
#: ekos/align/opsastrometry.ui:680
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Do not use Sync when Slew to Target is selected. Use differential slewing to correct for discrepancies. This is useful on some mounts (e.g. Paramount).</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AstrometryDifferentialSlewing)
#. +> trunk5
#: ekos/align/opsastrometry.ui:683
#, kde-format
msgid "Use differential slewing instead of syncing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/align/opsastrometry.ui:709
#, kde-format
msgid "Custom:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_AstrometryCustomOptions)
#. +> trunk5
#: ekos/align/opsastrometry.ui:716
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Additional optional astrometry.net options.</p>"
"</body></html>"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometrycfg.cpp:82
#, kde-format
msgid "Astrometry.cfg successfully saved!"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QLineEdit, astrometryCFGLocation)
#. +> trunk5
#: ekos/align/opsastrometrycfg.ui:22 ekos/align/opsastrometrycfg.ui:38
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This is the absolute location of the Astrometry.cfg file on the filesystem.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/align/opsastrometrycfg.ui:25
#, kde-format
msgid "Astrometry.cfg Location:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, loadCFG)
#. +> trunk5
#: ekos/align/opsastrometrycfg.ui:45
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This button will let you reload the Astrometry.cfg file in the event that something was changed outside of KStars.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadCFG)
#. +> trunk5
#: ekos/align/opsastrometrycfg.ui:48
#, kde-format
msgid "Reload"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, astrometryCFGDisplay)
#. +> trunk5
#: ekos/align/opsastrometrycfg.ui:57
#, kde-format
msgid ""
"<html><head/><body>"
"<p>In this space you can edit the Astrometry.cfg file. When you finish, you can hit \"Apply\" or \"Ok\" to save your changes. </p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_35)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:129
#: ekos/align/opsastrometryindexfiles.ui:180
#, kde-format
msgid "Optional"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_32)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:146
#: ekos/align/opsastrometryindexfiles.cpp:151
#: ekos/align/opsastrometryindexfiles.ui:72
#, kde-format
msgid "Required"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_33)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:163
#: ekos/align/opsastrometryindexfiles.cpp:168
#: ekos/align/opsastrometryindexfiles.ui:126
#, kde-format
msgid "Recommended"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:316
#, kde-format
msgid "Download Timed out. Either the network is not fast enough, the file is not accessible, or you aren't connected."
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:355
#, kde-format
msgid "File Write Error"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:373
#: ekos/align/opsastrometryindexfiles.cpp:494
#, kde-format
msgid "Astrometry Folder Permissions Error"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:463
#, kde-format
msgid "Could not contact Astrometry Index Server: broiler.astrometry.net"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:470
#, kde-format
msgid "Delete File(s)"
msgstr ""
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.cpp:484
#, kde-format
msgid "File Delete Error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_30)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:26
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Offline</span> astrometry.net solver requires index files in order to solve an image. The following list provides a complete list of the index files, along with recommended index files to install given current CCD Field of View. Installed index files are checked. Next to each index file is an icon that represents the following:</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_31)
#. i18n: ectx: property (toolTip), widget (QLabel, label_32)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:53
#: ekos/align/opsastrometryindexfiles.ui:69
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This index file is required and must be installed for the solver to work correctly.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_34)
#. i18n: ectx: property (toolTip), widget (QLabel, label_33)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:107
#: ekos/align/opsastrometryindexfiles.ui:123
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This index file is recommended. Installing the index file might help in improving the solver.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_36)
#. i18n: ectx: property (toolTip), widget (QLabel, label_35)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:161
#: ekos/align/opsastrometryindexfiles.ui:177
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This index file is not required.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_27)
#. i18n: ectx: property (toolTip), widget (QLineEdit, indexLocation)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:191
#: ekos/align/opsastrometryindexfiles.ui:204
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This displays the path to the folder for the Astrometry Index Files on your computer.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_27)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:194
#, kde-format
msgid "Index Files Location: "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, openIndexFileDirectory)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:211
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This button will open the Astrometry Index File folder on your filesystem so that you can see where it is located and copy files into it if needed.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, openIndexFileDirectory)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:214
#, kde-format
msgid "Open"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_28)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:221
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This displays the current CCD field of view that will be used to calculate which index files are needed.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_28)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:224
#, kde-format
msgid "Current CCD FOV: "
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4210)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:264
#, kde-format
msgid "index-4210.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4208)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:271
#, kde-format
msgid "index-4208.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_26)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:278
#, kde-format
msgid "(arcminutes)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_23)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:285
#, kde-format
msgid "SkyMark"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_58)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:354
#, kde-format
msgid "(242 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:361
#, kde-format
msgid "680' - 1000'"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, index_4209_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4110_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4113_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4202_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4204_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4115_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4213_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4109_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4207_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4215_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4208_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4112_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4206_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4200_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4107_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4217_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4119_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4203_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4108_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4219_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4218_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4211_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4114_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4210_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4201_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4212_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4205_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4214_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4111_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4117_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4116_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4118_cancel)
#. i18n: ectx: property (text), widget (QPushButton, index_4216_cancel)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:423
#: ekos/align/opsastrometryindexfiles.ui:502
#: ekos/align/opsastrometryindexfiles.ui:578
#: ekos/align/opsastrometryindexfiles.ui:647
#: ekos/align/opsastrometryindexfiles.ui:956
#: ekos/align/opsastrometryindexfiles.ui:1070
#: ekos/align/opsastrometryindexfiles.ui:1163
#: ekos/align/opsastrometryindexfiles.ui:1225
#: ekos/align/opsastrometryindexfiles.ui:1287
#: ekos/align/opsastrometryindexfiles.ui:1401
#: ekos/align/opsastrometryindexfiles.ui:1536
#: ekos/align/opsastrometryindexfiles.ui:1598
#: ekos/align/opsastrometryindexfiles.ui:1674
#: ekos/align/opsastrometryindexfiles.ui:1760
#: ekos/align/opsastrometryindexfiles.ui:1822
#: ekos/align/opsastrometryindexfiles.ui:1891
#: ekos/align/opsastrometryindexfiles.ui:1953
#: ekos/align/opsastrometryindexfiles.ui:2043
#: ekos/align/opsastrometryindexfiles.ui:2143
#: ekos/align/opsastrometryindexfiles.ui:2212
#: ekos/align/opsastrometryindexfiles.ui:2326
#: ekos/align/opsastrometryindexfiles.ui:2388
#: ekos/align/opsastrometryindexfiles.ui:2485
#: ekos/align/opsastrometryindexfiles.ui:2644
#: ekos/align/opsastrometryindexfiles.ui:2713
#: ekos/align/opsastrometryindexfiles.ui:2841
#: ekos/align/opsastrometryindexfiles.ui:2903
#: ekos/align/opsastrometryindexfiles.ui:3141
#: ekos/align/opsastrometryindexfiles.ui:3203
#: ekos/align/opsastrometryindexfiles.ui:3352
#: ekos/align/opsastrometryindexfiles.ui:3501
#: ekos/align/opsastrometryindexfiles.ui:3577
#: ekos/align/opsastrometryindexfiles.ui:3698
#, kde-format
msgid "X"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_132)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:430
#, kde-format
msgid "Wide Fields"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_37)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:440
#, kde-format
msgid "(160 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4115)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:509
#, kde-format
msgid "index-4115.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4111)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:516
#, kde-format
msgid "index-4111.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_42)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:585
#, kde-format
msgid "(2.1 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4107)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:654
#, kde-format
msgid "index-4107.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:666
#, kde-format
msgid "5.6' - 8.0'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, index_4203_info)
#. i18n: ectx: property (text), widget (QLabel, index_4202_info)
#. i18n: ectx: property (text), widget (QLabel, index_4206_info)
#. i18n: ectx: property (text), widget (QLabel, index_4204_info)
#. i18n: ectx: property (text), widget (QLabel, index_4201_info)
#. i18n: ectx: property (text), widget (QLabel, index_4200_info)
#. i18n: ectx: property (text), widget (QLabel, index_4205_info)
#. i18n: ectx: property (text), widget (QLabel, index_4207_info)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:704
#: ekos/align/opsastrometryindexfiles.ui:798
#: ekos/align/opsastrometryindexfiles.ui:885
#: ekos/align/opsastrometryindexfiles.ui:1465
#: ekos/align/opsastrometryindexfiles.ui:2535
#: ekos/align/opsastrometryindexfiles.ui:2770
#: ekos/align/opsastrometryindexfiles.ui:3008
#: ekos/align/opsastrometryindexfiles.ui:3423
#, kde-format
msgid "info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_29)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:713
#, kde-format
msgid "(129 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_38)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:720
#, kde-format
msgid "(208 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, index_4110_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4111_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4212_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4107_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4108_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4112_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4209_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4210_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4109_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4208_perc)
#. i18n: ectx: property (text), widget (QLabel, index_4211_perc)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:727
#: ekos/align/opsastrometryindexfiles.ui:835
#: ekos/align/opsastrometryindexfiles.ui:1006
#: ekos/align/opsastrometryindexfiles.ui:1077
#: ekos/align/opsastrometryindexfiles.ui:1301
#: ekos/align/opsastrometryindexfiles.ui:1408
#: ekos/align/opsastrometryindexfiles.ui:2262
#: ekos/align/opsastrometryindexfiles.ui:3267
#: ekos/align/opsastrometryindexfiles.ui:3359
#: ekos/align/opsastrometryindexfiles.ui:3627
#: ekos/align/opsastrometryindexfiles.ui:3797
#, kde-format
msgid "perc"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4201)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:734
#, kde-format
msgid "index-4201-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4207)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:741
#, kde-format
msgid "index-4207-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_61)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:748
#, kde-format
msgid "(1.3 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:760
#, kde-format
msgid "4.0' - 5.6'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_45)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:807
#, kde-format
msgid "(20 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_53)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:814
#, kde-format
msgid "(4.8 G)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:821
#, kde-format
msgid "480' - 680'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_60)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:828
#, kde-format
msgid "(723 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:847
#, kde-format
msgid "16' - 22'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_64)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:894
#, kde-format
msgid "(9.7 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:968
#, kde-format
msgid "120' - 170'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_71)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1084
#, kde-format
msgid "Fields"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4218)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1094
#, kde-format
msgid "index-4218.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_51)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1101
#, kde-format
msgid "(1.2 G)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_46)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1294
#, kde-format
msgid "(39 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4119)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1308
#, kde-format
msgid "index-4119.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4202)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1315
#, kde-format
msgid "index-4202-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1322
#, kde-format
msgid "Tycho2 Catalog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_65)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1332
#, kde-format
msgid "(24 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_47)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1339
#, kde-format
msgid "(78 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4117)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1415
#, kde-format
msgid "index-4117.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1427
#, kde-format
msgid "8' - 11'"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4212)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1474
#, kde-format
msgid "index-4212.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4116)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1605
#, kde-format
msgid "index-4116.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_62)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1612
#, kde-format
msgid "(2.6 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_56)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1681
#, kde-format
msgid "(141 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_70)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1688
#, kde-format
msgid "Narrow - Medium"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4203)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1698
#, kde-format
msgid "index-4203-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4108)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1829
#, kde-format
msgid "index-4108.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4217)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1960
#, kde-format
msgid "index-4217.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1967
#, kde-format
msgid "1400' - 2000'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1974
#, kde-format
msgid "170' - 240'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_50)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:1981
#, kde-format
msgid "(624 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4214)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2050
#, kde-format
msgid "index-4214.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2057
#, kde-format
msgid "240' - 340'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_49)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2064
#, kde-format
msgid "(312 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_134)
#. i18n: ectx: property (text), widget (QLabel, label_135)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2071
#: ekos/align/opsastrometryindexfiles.ui:3373
#, kde-format
msgid "(filesize)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2081
#, kde-format
msgid "340' - 480'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_57)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2150
#, kde-format
msgid "(183 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2224
#, kde-format
msgid "42' - 60'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_43)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2395
#, kde-format
msgid "(4 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4206)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2402
#, kde-format
msgid "index-4206-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_54)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2409
#, kde-format
msgid "(8.8 G)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4109)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2416
#, kde-format
msgid "index-4109.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4113)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2423
#, kde-format
msgid "index-4113.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2497
#, kde-format
msgid "2.8' - 4.0'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_48)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2544
#, kde-format
msgid "(156 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4205)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2551
#, kde-format
msgid "index-4205-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4118)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2651
#, kde-format
msgid "index-4118.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4213)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2720
#, kde-format
msgid "index-4213.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2732
#, kde-format
msgid "2.0' - 2.8'"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4219)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2779
#, kde-format
msgid "index-4219.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4204)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2910
#, kde-format
msgid "index-4204-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2948
#, kde-format
msgid "2Mass Catalog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_69)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2958
#, kde-format
msgid "Diameters"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:2970
#, kde-format
msgid "11' - 16'"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4215)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3017
#, kde-format
msgid "index-4215.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_55)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3210
#, kde-format
msgid "(13.6 G)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4200)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3217
#, kde-format
msgid "index-4200-*.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3229
#, kde-format
msgid "60' - 85'"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4110)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3276
#, kde-format
msgid "index-4110.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_41)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3283
#, kde-format
msgid "(1 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4114)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3290
#, kde-format
msgid "index-4114.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_68)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3366
#, kde-format
msgid "(157 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3385
#, kde-format
msgid "22' - 30'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_59)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3432
#, kde-format
msgid "(399 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_40)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3439
#, kde-format
msgid "(582 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_67)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3508
#, kde-format
msgid "(90 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4216)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3515
#, kde-format
msgid "index-4216.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3589
#, kde-format
msgid "30' - 42'"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4211)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3636
#, kde-format
msgid "index-4211.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4209)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3705
#, kde-format
msgid "index-4209.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_39)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3712
#, kde-format
msgid "(332 K)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_52)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3719
#, kde-format
msgid "(2.5 G)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, index_4112)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3726
#, kde-format
msgid "index-4112.fits"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_44)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3733
#, kde-format
msgid "(7.6 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_63)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3740
#, kde-format
msgid "(5.1 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_66)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3747
#, kde-format
msgid "(47 M)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3759
#, kde-format
msgid "85' - 120'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5
#: ekos/align/opsastrometryindexfiles.ui:3806
#, kde-format
msgid "1000' - 1400'"
msgstr ""
#. +> trunk5
#: ekos/align/remoteastrometryparser.cpp:50
#, kde-format
msgid "Cannot open file %1 for reading!"
msgstr ""
#. +> trunk5
#: ekos/align/remoteastrometryparser.cpp:60
#, kde-format
msgid "Failed to find solver properties."
msgstr ""
#. +> trunk5
#: ekos/align/remoteastrometryparser.cpp:83 indi/indielement.cpp:637
#, kde-format
msgid "Not enough memory for file %1"
msgstr ""
#. +> trunk5
#: ekos/align/remoteastrometryparser.cpp:103
#, kde-format
msgid "Starting remote solver..."
msgstr ""
#. +> trunk5
#: ekos/align/remoteastrometryparser.cpp:115
#, kde-format
msgid "Failed to find solver settings."
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:101
#, kde-format
msgid "Removing bad dark frame file %1"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:124
#, kde-format
msgid "Failed to load dark frame file %1"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:164
#, kde-format
msgid "Dark frame saved to %1"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:272
#, kde-format
msgid "Does %1 have mechanical or electronic shutter?"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:273 ekos/auxiliary/darklibrary.cpp:290
#, kde-format
msgid "Dark Exposure"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:290
#, kde-format
msgid "Cover the telescope or camera in order to take a dark exposure."
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:294
#, kde-format
msgid "Dark frame capture cancelled."
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:313
#, kde-format
msgid "Capturing dark frame..."
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:336
#, kde-format
msgid "Dark frame received."
msgstr ""
#. +> trunk5
#: ekos/auxiliary/darklibrary.cpp:351
#, kde-format
msgid "Warning: Cannot load calibration file %1"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, filterCheck)
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. i18n: ectx: attribute (title), widget (QWidget, Filter)
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:96 ekos/capture/capture.ui:880
#: ekos/capture/capture.ui:1497 oal/equipmentwriter.ui:556
#, kde-format
msgid "Filter"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:98
#, kde-format
msgid "Filter exposure time during focus"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:99
#, kde-format
msgid "Exposure"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:101
#, kde-format
msgid "Relative offset in steps"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:102
#, kde-format
msgid "Offset"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:104
#, kde-format
msgid "Start AutoFocus when filter is activated"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:105
#, kde-format
msgid "AutoFocus"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:107
#, kde-format
msgid "Lock specific filter when running AutoFocus"
msgstr ""
#. +> trunk5
#: ekos/auxiliary/filtermanager.cpp:108
#, kde-format
msgid "Lock Filter"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, FilterSettings)
#. i18n: ectx: property (toolTip), widget (QPushButton, filterManagerB)
#. +> trunk5
#: ekos/auxiliary/filtersettings.ui:14 ekos/capture/capture.ui:185
#: ekos/focus/focus.ui:428
#, kde-format
msgid "Filter Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIFilterWheelLogging)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_5_3)
#. i18n: ectx: property (toolTip), widget (QLabel, FilterCaptureLabel)
#. i18n: ectx: property (toolTip), widget (QLabel, label_9)
#. +> trunk5
#: ekos/auxiliary/filtersettings.ui:22 ekos/auxiliary/opslogs.ui:183
#: ekos/capture/capture.ui:94 ekos/focus/focus.ui:371 ekos/profileeditor.ui:523
#, kde-format
msgid "Filter Wheel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/auxiliary/filtersettings.ui:75
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set <span style=\" font-style:italic;\">relative</span> filter focus offset in steps.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:59
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Enable Logs to diagnose issues with Ekos and INDI. Only enable the necessary logs to help in diagnosing specific problems. Logs consume resources and may slow the system down. Turn off logs when no longer used.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), widget (QPushButton, logsB)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:71 ekos/ekosmanager.ui:316
#, kde-format
msgid "Logs"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:77 options/opsadvanced.ui:278
#, kde-format
msgid "Output:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDICCDLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:84
#, kde-format
msgid "CCD"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_GuideLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:94 options/opsadvanced.ui:394
#, kde-format
msgid "Log Ekos Guide module activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GuideLogging)
#. i18n: ectx: property (title), widget (QGroupBox, guideGroup)
#. i18n: ectx: property (text), widget (QPushButton, guideB)
#. i18n: ectx: property (text), widget (QCheckBox, guideStepCheck)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:97 ekos/ekosmanager.cpp:2008
#: ekos/ekosmanager.ui:1217 ekos/guide/guide.cpp:443 ekos/guide/guide.ui:147
#: ekos/scheduler/scheduler.ui:353 fitsviewer/fitsviewer.cpp:371
#: options/opsadvanced.ui:397
#, kde-format
msgid "Guide"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIAuxiliaryLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:107
#, kde-format
msgid "Auxiliary"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_LogToFile)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:117 options/opsadvanced.ui:445
#, kde-format
msgid "Log output to log file"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_LogToFile)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:120 options/opsadvanced.ui:448
#, kde-format
msgid "File"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_MountLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:127 options/opsadvanced.ui:303
#, kde-format
msgid "Log Ekos Mount module activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_MountLogging)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIMountLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:130 ekos/auxiliary/opslogs.ui:213
#: ekos/ekosmanager.cpp:1930 options/opsadvanced.ui:306
#, kde-format
msgid "Mount"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:140
#, kde-format
msgid "Have problem with Ekos? Turn on logging for Ekos modules that exhibit issues."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (windowTitle), widget (QWidget, EkosManager)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:143 ekos/ekosmanager.ui:26 kstarsactions.cpp:1049
#: kstarsinit.cpp:421
#, kde-format
msgid "Ekos"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_LogToDefault)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:150 options/opsadvanced.ui:429
#, kde-format
msgid "Log debug messages to default output device used by the platform (e.g. Standard Error)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_LogToDefault)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:153 options/opsadvanced.ui:432
#, kde-format
msgid "Defaul&t"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AlignmentLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:163 options/opsadvanced.ui:355
#, kde-format
msgid "Log Ekos Alignment module activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AlignmentLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:166 options/opsadvanced.ui:358
#, kde-format
msgid "Alignment"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_VerboseLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:193 options/opsadvanced.ui:416
#, kde-format
msgid "Enable verbose debug output"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_VerboseLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:196 options/opsadvanced.ui:419
#, kde-format
msgid "&Verbose"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_RegularLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:223 options/opsadvanced.ui:226
#, kde-format
msgid "Enable regular debug output"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_RegularLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:226 options/opsadvanced.ui:229
#, kde-format
msgid "Reg&ular"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:239 options/opsadvanced.ui:409
#, kde-format
msgid "Verbosity:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIWeatherLogging)
#. i18n: ectx: property (text), widget (QCheckBox, weatherCheck)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:246 ekos/scheduler/scheduler.ui:999
#, kde-format
msgid "Weather"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_9)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:256
#, kde-format
msgid "Have problems with INDI drivers? Turn on logging for drivers that exhibit issues."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:259
#, kde-format
msgid "Drivers"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIFocuserLogging)
#. i18n: ectx: property (title), widget (QGroupBox, controlGroup)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:266 ekos/focus/focus.ui:42
#, kde-format
msgid "Focuser"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_INDILogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:276 options/opsadvanced.ui:368
#, kde-format
msgid "Log INDI devices activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDILogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:279 kstarsactions.cpp:1045
#: options/opsadvanced.ui:371
#, kde-format
msgid "INDI"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIDomeLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:289
#, kde-format
msgid "Dome"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_DisableLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:299 options/opsadvanced.ui:255
#, kde-format
msgid "Disable all logging output"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_DisableLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:302 options/opsadvanced.ui:258
#, kde-format
msgid "&Disable"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_INDIDetectorLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:315
#, kde-format
msgid "Detector"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_CaptureLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:325 options/opsadvanced.ui:329
#, kde-format
msgid "Log Ekos Capture module activity"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_FocusLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:338 options/opsadvanced.ui:316
#, kde-format
msgid "Log Ekos Focus module activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FocusLogging)
#. i18n: ectx: property (title), widget (QGroupBox, focusGroup)
#. i18n: ectx: property (text), widget (QCheckBox, focusStepCheck)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:341 ekos/ekosmanager.cpp:1847
#: ekos/ekosmanager.ui:1020 ekos/scheduler/scheduler.ui:321
#: fitsviewer/fitsviewer.cpp:367 options/opsadvanced.ui:319
#, kde-format
msgid "Focus"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SchedulerLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:351 options/opsadvanced.ui:381
#, kde-format
msgid "Log Ekos Scheduler module activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SchedulerLogging)
#. i18n: ectx: attribute (title), widget (QWidget, schedulerTab)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:354 ekos/ekosmanager.cpp:177 ekos/opsekos.ui:151
#: options/opsadvanced.ui:384
#, kde-format
msgid "Scheduler"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_FITSLogging)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:364 options/opsadvanced.ui:342
#, kde-format
msgid "Log FITS processing activity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_FITSLogging)
#. i18n: ectx: property (text), item, widget (QComboBox, transferFormatCombo)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:367 ekos/capture/capture.cpp:630
#: ekos/capture/capture.cpp:640 ekos/capture/capture.ui:367
#: kstarsactions.cpp:1039 options/opsadvanced.ui:345
#, kde-format
msgid "FITS"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_showINDIMessages)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:382 indi/opsindi.ui:363
#, kde-format
msgid "Display INDI status messages in the status bar"
msgstr ""
#. i18n: ectx: property (statusTip), widget (QCheckBox, kcfg_showINDIMessages)
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_showINDIMessages)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:385 ekos/auxiliary/opslogs.ui:388
#: indi/opsindi.ui:366 indi/opsindi.ui:369
#, kde-format
msgid "Display incoming INDI status messages in KStars status bar"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showINDIMessages)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:391 indi/opsindi.ui:372
#, kde-format
msgid "INDI messages in status &bar"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, showLogsB)
#. +> trunk5
#: ekos/auxiliary/opslogs.ui:417
#, kde-format
msgid "Open Logs Directory"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, calibrationOptions)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:14
#, kde-format
msgid "Calibration Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:22
#, kde-format
msgid "Specify the source the flat field evenly illuminated light source"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:25
#, kde-format
msgid "Flat Source"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, manualSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:31
#, kde-format
msgid "Light source triggered by the user manually"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, manualSourceC)
#. i18n: ectx: property (text), widget (QRadioButton, manualDurationC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:34 ekos/capture/calibrationoptions.ui:161
#, kde-format
msgid "Manual"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, flatDeviceSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:47
#, kde-format
msgid "For dark and bias frames, close the dust cap before proceeding. For flat frames, close the dust cap and turn on the light source."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, flatDeviceSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:50
#, kde-format
msgid "Dust Cover with Built-in Flat Light"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, darkDeviceSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:60
#, kde-format
msgid "For dark and bias frames, close the dust cap before proceeding. For flat frames, open the dust cap and turn on the light source."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, darkDeviceSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:63
#, kde-format
msgid "Dust Cover with External Flat Light"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, wallSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:75
#, kde-format
msgid "Slew mount to the specified Azimuth/Altitude coordinates before taking flat field images"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, wallSourceC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:78
#, kde-format
msgid "Wall"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:88 tools/argsetaltaz.ui:30
#: tools/modcalcplanets.ui:303
#, kde-format
msgid "Az:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:102 tools/argsetaltaz.ui:37
#: tools/modcalcplanets.ui:296
#, kde-format
msgid "Alt:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, dawnDuskFlatsC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:121
#, kde-format
msgid "Use Dawn and Dusk light"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, dawnDuskFlatsC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:124
#, kde-format
msgid "Dawn/Dusk"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:150
#, kde-format
msgid "Flat Duration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, manualDurationC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:158
#, kde-format
msgid "Use the frame exposure value"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, ADUC)
#. i18n: ectx: property (toolTip), widget (QSpinBox, ADUValue)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:174
#: ekos/capture/calibrationoptions.ui:187
#, kde-format
msgid "Calculate optimal exposure time given the required ADU. If a controllable device is selected, calculate optimal brightness."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, ADUC)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:177
#, kde-format
msgid "ADU"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (QSpinBox, ADUTolerance)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:200
#: ekos/capture/calibrationoptions.ui:210
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Accept ADU values that fall within this range around the desired ADU target. For example, if the ADU value was set to 10000 and the tolerance was set to 100, then frames with ADU values f 9900 and 10100 shall be accepted.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:203
#, kde-format
msgid "Tolerance:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, parkMountC)
#. i18n: ectx: property (text), widget (QCheckBox, parkMountCheck)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:246 ekos/scheduler/scheduler.ui:1408
#, kde-format
msgid "Park Mount"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, parkDomeC)
#. i18n: ectx: property (text), widget (QCheckBox, parkDomeCheck)
#. +> trunk5
#: ekos/capture/calibrationoptions.ui:253 ekos/scheduler/scheduler.ui:1424
#, kde-format
msgid "Park Dome"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:156 ekos/capture/capture.cpp:3215
#, kde-format
msgid "Add job to sequence queue"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:157 ekos/capture/capture.cpp:3216
#, kde-format
msgid "Remove job from sequence queue"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:277
#, kde-format
msgid "Sequence shall be paused after current exposure is complete."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:281
#, kde-format
msgid "Resume Sequence"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:290 ekos/capture/capture.cpp:404
#, kde-format
msgid "Stop Sequence"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:296
#, kde-format
msgid "Sequence resumed."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:316 ekos/capture/capture.cpp:1735
#, kde-format
msgid "Auto dark subtract is not supported in batch mode."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:351
#, kde-format
msgid "No pending jobs found. Please add a job to the sequence queue."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:358
#, kde-format
msgid "All jobs are complete. Do you want to reset the status of all jobs and restart capturing?"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:359 ekos/capture/capture.cpp:3109
#, kde-format
msgid "Reset job status"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:410
#, kde-format
msgid "Warning: Guide deviation is selected but autoguide process was not started."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:412
#, kde-format
msgid "Warning: in-sequence focusing is selected but autofocus process was not started."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:429
#, kde-format
msgid "CCD capture failed with errors"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, startB)
#. +> trunk5
#: ekos/capture/capture.cpp:496 ekos/capture/capture.ui:1610
#, kde-format
msgid "Start Sequence"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, transferFormatCombo)
#. +> trunk5
#: ekos/capture/capture.cpp:641 ekos/capture/capture.ui:372
#, kde-format
msgid "Native"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1039 ekos/capture/capture.cpp:1151
#: ekos/capture/capture.cpp:1234 ekos/capture/capture.cpp:1522
#, kde-format
msgid "Sequence paused."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1040 ekos/capture/capture.cpp:1152
#: ekos/capture/capture.cpp:1235 ekos/capture/capture.cpp:1523
#, kde-format
msgid "Paused..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1046
#, kde-format
msgid "Waiting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1068
#, kde-format
msgid "Failed to save file to %1"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1129 fitsviewer/fitsdebayer.cpp:64
#, kde-format
msgid "Complete."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1131
#, kde-format
msgid "Captured image received"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1169
#, kde-format
msgid "Received image %1 out of %2."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1180
#, kde-format
msgid "Executing post capture script %1"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1215
#, kde-format
msgid "CCD capture sequence completed"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1312
#, kde-format
msgid "Dithering..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1321 ekos/capture/capture.cpp:1542
#, kde-format
msgid "Scheduled refocus started..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1323 ekos/capture/capture.cpp:1347
#: ekos/capture/capture.cpp:1533 ekos/capture/capture.cpp:1544
#, kde-format
msgid "Focusing..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1378
#, kde-format
msgid "Cannot perform auto dark subtraction of native DSLR formats."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1403 ekos/capture/capture.cpp:1511
#, kde-format
msgid "Cannot capture while focus module is busy."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1440
#, kde-format
msgid "Cannot calculate ADU levels in non-FITS images."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1496
#, kde-format
msgid "Failed to set sub frame."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1501
#, kde-format
msgid "Failed to set binning."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1648
#, kde-format
msgid "Capture failed. Check INDI Control Panel for details."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1687
#, kde-format
msgid "Downloading..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1693
#, kde-format
msgid "second left"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1695
#, kde-format
msgid "seconds left"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1741
#, kde-format
msgid "You must set remote directory for Local & Both modes."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1747
#, kde-format
msgid "You must set local directory for Client & Both modes."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:1939
#, kde-format
msgid "Job #%1 changes applied."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2171
#, kde-format
msgid "Manual scheduled focusing is not supported. Run Autofocus process before trying again."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2183
#, kde-format
msgid "Manual focusing post filter change is not supported. Run Autofocus process before trying again."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2261
#, kde-format
msgid "Setting temperature to %1 C..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2262
#, kde-format
msgid "Set %1 C..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2266
#, kde-format
msgid "Setting rotation to %1 degrees E of N..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2267
#, kde-format
msgid "Set Rotator %1..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2326
#, kde-format
msgid "Warning: Calibration process was prematurely terminated."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2359
#, kde-format
msgid "Post meridian flip calibration completed successfully."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2386
#, kde-format
msgid "Guiding deviation %1 exceeded limit value of %2 arcsecs, aborting exposure."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2411
#, kde-format
msgid "Guiding deviation %1 is now lower than limit value of %2 arcsecs, resuming exposure."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2414
#, kde-format
msgid "Guiding deviation %1 is now lower than limit value of %2 arcsecs, resuming exposure in %3 seconds."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2461 ekos/capture/capture.cpp:2479
#, kde-format
msgid "Focus complete."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2465 ekos/capture/capture.cpp:2484
#, kde-format
msgid "Autofocus failed. Aborting exposure..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2538 ekos/scheduler/mosaic.cpp:214
#, kde-format
msgid "FITS Save Directory"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2548
#, kde-format
msgid "Open Ekos Sequence Queue"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2918
#, kde-format
msgid "Save Ekos Sequence Queue"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:2948
#, kde-format
msgid "Failed to save sequence queue"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3101
#, kde-format
msgid "Sequence queue saved to %1"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3109
#, kde-format
msgid "Are you sure you want to reset status of all jobs?"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3198 ekos/scheduler/scheduler.cpp:729
#, kde-format
msgid "Editing job #%1..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3201
#, kde-format
msgid "Apply job changes."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3202
#, kde-format
msgid "Cancel job changes."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3210
#, kde-format
msgid "Editing job canceled."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3517
#, kde-format
msgid "Telescope completed the meridian flip."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3520
#, kde-format
msgid "Meridian flip is successfully completed"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3524
#, kde-format
msgid "Performing post flip re-alignment..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3525 ekos/capture/capture.cpp:3705
#, kde-format
msgid "Aligning..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3557
#, kde-format
msgid "Performing post flip re-calibration and guiding..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3558
#, kde-format
msgid "Calibrating..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3577
#, kde-format
msgid "Failed to retrieve telescope coordinates. Unable to calculate telescope's hour angle."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3609
#, kde-format
msgid "Current hour angle %1 hours exceeds meridian flip limit of %2 hours. Auto meridian flip is initiated."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3613
#, kde-format
msgid "Meridian flip started"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3628
#, kde-format
msgid "Meridian Flip..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3649
#, kde-format
msgid "Telescope meridian flip timed out. Please make sure your mount supports meridian flip."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3653
#, kde-format
msgid "Meridian flip failed"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3662
#, kde-format
msgid "Retrying meridian flip again..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3671
#, kde-format
msgid "Guide module timed out."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3687
#, kde-format
msgid "Post flip re-alignment completed successfully."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3699
#, kde-format
msgid "Post-flip alignment failed."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3704
#, kde-format
msgid "Post-flip alignment failed. Retrying..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3730
#, kde-format
msgid "Autoguiding stopped. Aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3746
#, kde-format
msgid "Post meridian flip calibration error. Aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3751
#, kde-format
msgid "Post meridian flip calibration error. Restarting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3759
#, kde-format
msgid "Dither complete."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:3764
#, kde-format
msgid "Warning: Dithering failed. Resuming capture..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4032
#, kde-format
msgid "Wall coordinates are invalid."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4078
#, kde-format
msgid "Unparking dust cap..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4083
#, kde-format
msgid "Unparking dust cap failed, aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4097 ekos/capture/capture.cpp:4236
#, kde-format
msgid "Dust cap unparked."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4105
#, kde-format
msgid "Autoguiding resumed."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4115
#, kde-format
msgid "Autoguiding suspended."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4137 ekos/capture/capture.cpp:4187
#, kde-format
msgid "Parking dust cap..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4142 ekos/capture/capture.cpp:4192
#, kde-format
msgid "Parking dust cap failed, aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4156 ekos/capture/capture.cpp:4206
#, kde-format
msgid "Dust cap parked."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4217
#, kde-format
msgid "UnParking dust cap..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4222
#, kde-format
msgid "UnParking dust cap failed, aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4264
#, kde-format
msgid "Mount slewing to wall position..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4275
#, kde-format
msgid "Slew to wall position complete."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4308
#, kde-format
msgid "Parking mount prior to calibration frames capture..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4313
#, kde-format
msgid "Parking mount failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/capture/capture.cpp:4328 ekos/scheduler/scheduler.cpp:4089
+#: ekos/capture/capture.cpp:4328 ekos/scheduler/scheduler.cpp:4104
#, kde-format
msgid "Mount parked."
msgstr ""
#. +> trunk5
-#: ekos/capture/capture.cpp:4342 ekos/scheduler/scheduler.cpp:4175
+#: ekos/capture/capture.cpp:4342 ekos/scheduler/scheduler.cpp:4190
#, kde-format
msgid "Parking dome..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4347
#, kde-format
msgid "Parking dome failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/capture/capture.cpp:4362 ekos/scheduler/scheduler.cpp:4220
+#: ekos/capture/capture.cpp:4362 ekos/scheduler/scheduler.cpp:4235
#, kde-format
msgid "Dome parked."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4401
#, kde-format
msgid "Current ADU %1 within target ADU tolerance range."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4434
#, kde-format
msgid "Unable to calculate optimal exposure settings, please capture the flats manually."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4444
#, kde-format
msgid "Current ADU is %1 Next exposure is %2 seconds."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4465
#, kde-format
msgid "An empty image is received, aborting..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4477
#, kde-format
msgid "Remote image saved to %1"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4500
#, kde-format
msgid "Post capture script finished with code %1."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4513
#, kde-format
msgid "Resuming sequence..."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4552
#, kde-format
msgid "Filter Focus Offsets"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4571
#, kde-format
msgid "Set <em>relative</em> filter focus offset in steps."
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4697
#, kde-format
msgid "Select Current Observer"
msgstr ""
#. +> trunk5
#: ekos/capture/capture.cpp:4699
#, kde-format
msgid "Current Observer:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ObserverAdd)
#. +> trunk5
#: ekos/capture/capture.cpp:4710 oal/execute.cpp:49 oal/observeradd.cpp:36
#: oal/observeradd.ui:26
#, kde-format
msgid "Manage Observers"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, CCDFWGroup)
#. i18n: ectx: property (title), widget (QGroupBox, ccdGroup)
#. +> trunk5
#: ekos/capture/capture.ui:52 ekos/focus/focus.ui:200
#, kde-format
msgid "CCD && Filter Wheel"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, temperatureCheck)
#. +> trunk5
#: ekos/capture/capture.ui:112
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Enforce temperature value before capturing an image</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, temperatureCheck)
#. +> trunk5
#: ekos/capture/capture.ui:115
#, kde-format
msgid "Tº"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, temperatureOUT)
#. +> trunk5
#: ekos/capture/capture.ui:131
#, kde-format
msgid "Current CCD temperature"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, temperatureIN)
#. +> trunk5
#: ekos/capture/capture.ui:150
#, kde-format
msgid "Desired CCD temperature"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/capture/capture.ui:169
#, kde-format
msgid "Cooler:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, setTemperatureB)
#. +> trunk5
#: ekos/capture/capture.ui:201
#, kde-format
msgid "Set CCD temperature"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, setTemperatureB)
#. i18n: ectx: property (text), widget (QPushButton, setAngleB)
#. i18n: ectx: property (text), widget (QPushButton, setPAB)
#. i18n: ectx: property (text), widget (QPushButton, setAbsTicksB)
#. +> trunk5
#: ekos/capture/capture.ui:204 ekos/capture/rotatorsettings.ui:226
#: ekos/capture/rotatorsettings.ui:388 ekos/focus/focus.ui:123
#: indi/indiproperty.cpp:236 indi/indiproperty.cpp:264
#: kstarslite/qml/indi/modules/KSINDITextField.qml:39
#, kde-format, kde-kuit-format
msgid "Set"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/capture/capture.ui:218
#, kde-format
msgid "<b>Capture Settings</b>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, exposureLabel_2)
#. +> trunk5
#: ekos/capture/capture.ui:240
#, kde-format
msgid "Set the exposure time in seconds for individual images, if applicable"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, exposureLabel_2)
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5
#: ekos/capture/capture.ui:246 oal/equipmentwriter.ui:626
#, kde-format
msgid "Exposure:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_4)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_2_5)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_2_4)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_2_6)
#. i18n: ectx: property (toolTip), widget (QLabel, FilterPosLabel)
#. +> trunk5
#: ekos/capture/capture.ui:298 ekos/capture/capture.ui:1008
#: ekos/capture/capture.ui:1088 ekos/capture/capture.ui:1101
#: ekos/focus/focus.ui:394
#, kde-format
msgid "Number of images to capture"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4)
#. +> trunk5
#: ekos/capture/capture.ui:304
#, kde-format
msgid "Count:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_8)
#. +> trunk5
#: ekos/capture/capture.ui:330
#, kde-format
msgid "Delay in seconds between consecutive images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_8)
#. +> trunk5
#: ekos/capture/capture.ui:336
#, kde-format
msgid "Delay:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/capture/capture.ui:356
#, kde-format
msgid "Format:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, transferFormatCombo)
#. +> trunk5
#: ekos/capture/capture.ui:363
#, kde-format
msgid "Image Transfer Format"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ISOLabel)
#. +> trunk5
#: ekos/capture/capture.ui:380 ekos/focus/focus.ui:354
#, kde-format
msgid "ISO:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, ISOCombo)
#. +> trunk5
#: ekos/capture/capture.ui:399
#, kde-format
msgid "ISO settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_12)
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/capture/capture.ui:435 ekos/focus/focus.ui:462
#, kde-format
msgid "Frame:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_13)
#. i18n: ectx: property (text), widget (QLabel, l_26)
#. +> trunk5
#: ekos/capture/capture.ui:448 ekos/guide/opscalibration.ui:158
#, kde-format
msgid "X:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_14)
#. i18n: ectx: property (text), widget (QLabel, l_27)
#. +> trunk5
#: ekos/capture/capture.ui:471 ekos/guide/opscalibration.ui:172
#, kde-format
msgid "Y:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetFrameB)
#. +> trunk5
#: ekos/capture/capture.ui:506
#, kde-format
msgid "Reset CCD frame & size values to default values"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetFrameB)
#. i18n: ectx: property (text), widget (QPushButton, resetB)
#. +> trunk5
#: ekos/capture/capture.ui:509 ekos/focus/focus.ui:472
#: ekos/scheduler/mosaic.ui:613
#, kde-format
msgid "Reset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_15)
#. +> trunk5
#: ekos/capture/capture.ui:541
#, kde-format
msgid "W:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, calibrationB)
#. +> trunk5
#: ekos/capture/capture.ui:610
#, kde-format
msgid "Dark & Flat frames automatic calibration options"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, calibrationB)
#. +> trunk5
#: ekos/capture/capture.ui:613 ekos/guide/guide.cpp:440
#: ekos/guide/internalguide/rcalibration.cpp:47
#, kde-format
msgid "Calibration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, rotatorB)
#. +> trunk5
#: ekos/capture/capture.ui:629
#, kde-format
msgid "Rotator Control"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, rotatorB)
#. +> trunk5
#: ekos/capture/capture.ui:632
#, kde-format
msgid "Rotator"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_9)
#. +> trunk5
#: ekos/capture/capture.ui:641
#, kde-format
msgid "Horizontal and Vertical binning"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_9)
#. +> trunk5
#: ekos/capture/capture.ui:647
#, kde-format
msgid "Binning:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, binXIN)
#. +> trunk5
#: ekos/capture/capture.ui:673
#, kde-format
msgid "Horizontal binning"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_11)
#. +> trunk5
#: ekos/capture/capture.ui:695
#, kde-format
msgid "V:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, binYIN)
#. +> trunk5
#: ekos/capture/capture.ui:708
#, kde-format
msgid "Vertical binning"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/capture/capture.ui:729
#, kde-format
msgid "<b>File Settings</b>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. +> trunk5
#: ekos/capture/capture.ui:756
#, kde-format
msgid "When storing images on remote devices, specify the directory where captured images are saved to."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/capture/capture.ui:759
#, kde-format
msgid "Remote:"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, remoteDirIN)
#. +> trunk5
#: ekos/capture/capture.ui:772
#, kde-format
msgid "/home/pi"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. +> trunk5
#: ekos/capture/capture.ui:779
#, kde-format
msgid "Post-capture script to be executed after an image is captured. The capture sequence is resumed when the script is executed successfully."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5
#: ekos/capture/capture.ui:782 ekos/scheduler/scheduler.ui:1303
#: ekos/scheduler/scheduler.ui:1473
#, kde-format
msgid "Script:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, uploadModeCombo)
#. i18n: ectx: attribute (title), widget (QWidget, clientTab)
#. +> trunk5
#: ekos/capture/capture.ui:799 indi/drivermanager.ui:242
#, kde-format
msgid "Client"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, uploadModeCombo)
#. i18n: ectx: property (text), widget (QRadioButton, localR)
#. +> trunk5
#: ekos/capture/capture.ui:804 indi/drivermanager.ui:153
#, kde-format
msgid "Local"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, uploadModeCombo)
#. +> trunk5
#: ekos/capture/capture.ui:809
#, kde-format
msgid "Both"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_18)
#. +> trunk5
#: ekos/capture/capture.ui:817
#, kde-format
msgid "Local directory to save sequence images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_18)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/capture/capture.ui:823 ekos/scheduler/mosaic.ui:558
#: indi/recordingoptions.ui:94
#, kde-format
msgid "Directory:"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, prefixIN)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/capture/capture.ui:830 ekos/capture/rotatorsettings.ui:362
#, kde-format
msgid "Target"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_7)
#. +> trunk5
#: ekos/capture/capture.ui:843
#, kde-format
msgid ""
"<p>Prefix is used to generate file names ( e.g. M42_HA_240_secs_001.fits)</p>"
"\n"
"<ul>\n"
"<li><strong>Target</strong>: Target Name (e.g. M42)</li>"
"\n"
"<li><strong>Filter</strong>: When using a filter wheel, the filter name is appended to the file name (e.g. HA)</li>"
"\n"
"<li><strong>Duration</strong>: Capture duration is appended to the file name (e.g. 240_secs)</li>"
"\n"
"<li><strong>TS</strong>: ISO 8601 timestamp is appended to the file name (e.g. 2016-10-20T22:42:10)</li>"
"\n"
"</ul>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_7)
#. +> trunk5
#: ekos/capture/capture.ui:849
#, kde-format
msgid "Prefix:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. +> trunk5
#: ekos/capture/capture.ui:862
#, kde-format
msgid ""
"<p>Select how captured images are uploaded:</p>"
"\n"
"<ol>\n"
"<li><strong>Client</strong>: Captured images are only uploaded to Ekos.</li>"
"\n"
"<li><strong>Local</strong>: Captured images are only saved locally on the remote computer.</li>"
"\n"
"<li><strong>Both</strong>: Captured images are saved on remote device <b>and</b> uploaded to Ekos.</li>"
"\n"
"</ol>"
"\n"
"<p>When selecting <i>Local</i> or <i>Both</i>, you must specify the remote directory where the remote images are saved to. By default, all captured images are uploaded to Ekos."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/capture/capture.ui:865
#, kde-format
msgid "Upload:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, filterCheck)
#. +> trunk5
#: ekos/capture/capture.ui:877
#, kde-format
msgid "Append the active filter slot to the prefix"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, expDurationCheck)
#. +> trunk5
#: ekos/capture/capture.ui:887
#, kde-format
msgid "Append the expose duration to the prefix"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, expDurationCheck)
#. i18n: ectx: property (text), widget (QRadioButton, recordDurationR)
#. +> trunk5
#: ekos/capture/capture.ui:890 indi/recordingoptions.ui:40
#, kde-format
msgid "Duration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, ISOCheck)
#. +> trunk5
#: ekos/capture/capture.ui:897
#, kde-format
msgid "Append time stamp to the prefix"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ISOCheck)
#. +> trunk5
#: ekos/capture/capture.ui:900
#, kde-format
msgid "TS"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, customValuesB)
#. +> trunk5
#: ekos/capture/capture.ui:942
#, kde-format
msgid "Custom Properties..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, optionsGroup)
#. +> trunk5
#: ekos/capture/capture.ui:952
#, kde-format
msgid "Limit Settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, meridianCheck)
#. +> trunk5
#: ekos/capture/capture.ui:998
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Command a meridian flip if the hour angle exceeds the specified value. Capture and Guiding will be suspended and resumed after the flip is complete.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, meridianCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1001
#, kde-format
msgid "Meridian Flip if HA >"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, autofocusCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1062
#, kde-format
msgid "Perform autofocusing once Half-Flux-Radius (HFR) value exceeds this limit"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autofocusCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1065
#, kde-format
msgid "Autofocus if HFR >"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, guideDeviationCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1075
#, kde-format
msgid "Abort sequence if guiding deviation exceed this value"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, guideDeviationCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1078
#, kde-format
msgid "Guiding Deviation <"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_4)
#. +> trunk5
#: ekos/capture/capture.ui:1094
#, kde-format
msgid "\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_6)
#. +> trunk5
#: ekos/capture/capture.ui:1107
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:186
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:187
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:188
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:189
#, kde-format
msgid "hours"
msgid_plural "hrs"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (text), widget (QCheckBox, refocusEveryNCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1117
#, kde-format
msgid "Refocus every"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel_1_2_7)
#. +> trunk5
#: ekos/capture/capture.ui:1140
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:180
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:181
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:182
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:183
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:184
#, kde-format
msgid "minutes"
msgid_plural "mins"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/capture/capture.ui:1168
#, kde-format
msgid "Sequence Queue"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetB)
#. +> trunk5
#: ekos/capture/capture.ui:1336
#, kde-format
msgid "Reset status of all jobs"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, observerB)
#. +> trunk5
#: ekos/capture/capture.ui:1361
#, kde-format
msgid "Select Observer"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. i18n: ectx: property (text), widget (QTreeWidget, localTreeWidget)
#. i18n: ectx: property (text), widget (QTreeWidget, clientTreeWidget)
#. +> trunk5
#: ekos/capture/capture.ui:1492 ekos/scheduler/scheduler.ui:606
#: indi/drivermanager.ui:66 indi/drivermanager.ui:322
#, kde-format
msgid "Status"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. i18n: ectx: property (text), widget (QTreeWidget, OptionsList)
#. +> trunk5
#: ekos/capture/capture.ui:1502 tools/observinglist.cpp:98
#: tools/observinglist.cpp:102 tools/optionstreeview.ui:33
#, kde-format
msgid "Type"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/capture/capture.ui:1507
#, kde-format
msgid "Bin"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/capture/capture.ui:1512
#, kde-format
msgid "Exp"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/capture/capture.ui:1517
#, kde-format
msgid "ISO"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/capture/capture.ui:1522
#, kde-format
msgid "Count"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, previewB)
#. +> trunk5
#: ekos/capture/capture.ui:1547 fitsviewer/fitsviewer.cpp:457
#: indi/indiccd.cpp:1426
#, kde-format
msgid "Preview"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, liveVideoB)
#. +> trunk5
#: ekos/capture/capture.ui:1566
#, kde-format
msgid "Live Video"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, pauseB)
#. +> trunk5
#: ekos/capture/capture.ui:1647
#, kde-format
msgid "Pause Sequence"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/capture/capture.ui:1672
#, kde-format
msgid "FITS Viewer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, darkSubCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1699
#, kde-format
msgid "Perform automatic dark subtraction in preview mode"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, darkSubCheck)
#. +> trunk5
#: ekos/capture/capture.ui:1702
#, kde-format
msgid "Auto Dark "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/capture/capture.ui:1717
#, kde-format
msgid "Apply effect to image after capture to enhance it"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/capture/capture.ui:1720
#, kde-format
msgid "Effects:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, progressGroup)
#. +> trunk5
#: ekos/capture/capture.ui:1747
#, kde-format
msgid "Progress"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, progressLabel_3)
#. +> trunk5
#: ekos/capture/capture.ui:1778
#, kde-format
msgid "Expose:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, progressLabel_2)
#. +> trunk5
#: ekos/capture/capture.ui:1826
#, kde-format
msgid "Progress:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4_2_3)
#. +> trunk5
#: ekos/capture/capture.ui:1849
#, kde-format
msgid "of"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, completedLabel_2)
#. +> trunk5
#: ekos/capture/capture.ui:1875
#, kde-format
msgid "completed"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, CustomProperties)
#. +> trunk5
#: ekos/capture/customproperties.ui:14
#, kde-format
msgid "Custom Capture Properties"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, tipLabel)
#. +> trunk5
#: ekos/capture/customproperties.ui:20
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select custom properties to be set when the sequence job is executed in batch mode. After the desired property value is set in INDI Control Panel, add it to the<span style=\" font-weight:600;\"> Job Properties</span> section. Click <span style=\" font-weight:600;\">Apply</span> to record the property values.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/capture/customproperties.ui:34
#, kde-format
msgid "Available Properties"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/capture/customproperties.ui:142
#, kde-format
msgid "Job Properties"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, DSLRInfo)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:14
#, kde-format
msgid "DSLR Camera Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:44
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Please fill the required information below. This is a one-time setup. You can obtain these values from your camera manual or from online sources such as <a href=\"http://www.digicamdb.com/\"><span style=\" text-decoration: underline; color:#007af4;\">Digital Camera Database</span></a>.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:58
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Sensor resolution in pixels (W x H)</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:61
#, kde-format
msgid "Sensor Resolution:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, textLabelXplanetGeometryY)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:80 ekos/capture/dslrinfo.ui:133
#: ekos/capture/rotatorsettings.ui:290 xplanet/opsxplanet.ui:94
#, kde-format
msgid "x"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:115
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Pixel pitch in micrometers. For squared-pixel cameras, put the same value in the horizontal and vertical pixel pitches.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/capture/dslrinfo.ui:118
#, kde-format
msgid "Pixel Pitch:"
msgstr ""
#. +> trunk5
#: ekos/capture/dslrinfodialog.cpp:42
#, kde-format
msgid "Invalid values. Please set all values."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, RotatorDialog)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:14
#, kde-format
msgid "Rotator Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, targetPAGroup)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:76
#, kde-format
msgid "Target Position Angle"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, enforceRotationCheck)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:87
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set target position angle before capture is started.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enforceRotationCheck)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:90
#, kde-format
msgid "PA"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, syncFOVPA)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:129
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set FOV indicator Position Angle to match Target Position Angle</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, syncFOVPA)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:132
#, kde-format
msgid "Sync FOV to PA"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, rotateAfterMeridianCheck)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:142
#, kde-format
msgid "Rotate camera 180 degrees after meridian flip"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rotateAfterMeridianCheck)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:145
#, kde-format
msgid "Rotate After Meridian Flip"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, rotatorControlGroup)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:172
#, kde-format
msgid "Rotator Angle Control"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, l_28)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:233 ekos/guide/opscalibration.ui:186
#, kde-format
msgid "Angle:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, currentPAGroup)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:243
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Position Angle (PA) is defined as degrees E of N. Zero degrees indicate frame <span style=\" font-weight:600;\">UP</span> points directly toward the celestial pole. 90 degrees indicate frame <span style=\" font-weight:600;\">UP</span> points 90 degrees counter-clockwise with respect to the celestial pole.</p>"
"<p>PA is calculated from raw rotator angle plus modifiers to match the rotation angle as measured by astrometry. Enter the modifiers manually or solve an image in the Align Module to generate them automatically.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, currentPAGroup)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:246
#, kde-format
msgid "Position Angle Control"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:267
#, kde-format
msgid "Current"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, rawAngle)
#. i18n: ectx: property (toolTip), widget (QLineEdit, PAOut)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:280 ekos/capture/rotatorsettings.ui:352
#, kde-format
msgid "Rotator Angle"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, PAMulSpin)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:297
#, kde-format
msgid "Rotator angle multiplier"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QCheckBox, eastControlCheck)
#. i18n: ectx: property (text), widget (QCheckBox, northControlCheck)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:313 ekos/guide/guide.ui:374
#: ekos/guide/guide.ui:401 kstarslite/qml/indi/modules/MotionControl.qml:305
#, kde-format, kde-kuit-format
msgid "+"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, PAOffsetSpin)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:320
#, kde-format
msgid "Rotator angle offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/capture/rotatorsettings.ui:339
#, kde-format
msgid "="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, captureStatus)
#. i18n: ectx: property (text), widget (QLabel, mountStatus)
#. i18n: ectx: property (text), widget (QLabel, focusStatus)
#. i18n: ectx: property (text), widget (QLabel, guideStatus)
#. +> trunk5
#: ekos/capture/sequencejob.cpp:28 ekos/ekos.h:22 ekos/ekos.h:66
#: ekos/ekos.h:96 ekos/ekos.h:114 ekos/ekos.h:131 ekos/ekosmanager.cpp:369
#: ekos/ekosmanager.cpp:370 ekos/ekosmanager.cpp:371 ekos/ekosmanager.cpp:372
#: ekos/ekosmanager.ui:506 ekos/ekosmanager.ui:869 ekos/ekosmanager.ui:1062
#: ekos/ekosmanager.ui:1256 ekos/scheduler/schedulerjob.cpp:150
#: indi/inditelescope.cpp:1030
#, kde-format
msgid "Idle"
msgstr ""
#. +> trunk5
#: ekos/capture/sequencejob.cpp:28 ekos/ekos.h:66 ekos/ekos.h:97
#: ekos/ekos.h:115
#, kde-format
msgid "In Progress"
msgstr ""
#. +> trunk5
#: ekos/capture/sequencejob.cpp:28 ekos/ekos.h:23 ekos/ekos.h:67
#: ekos/ekos.h:97 ekos/ekos.h:115 ekos/scheduler/schedulerjob.cpp:174
#, kde-format
msgid "Aborted"
msgstr ""
#. +> trunk5
#: ekos/capture/sequencejob.cpp:29 ekos/ekos.h:70 ekos/ekos.h:96
#: ekos/ekos.h:114 ekos/scheduler/schedulerjob.cpp:170
#, kde-format
msgid "Complete"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:24
#, kde-format
msgid "Connected"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:25
#, kde-format
msgid "Disconnected"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:26 ekos/ekos.h:66 ekos/scheduler/schedulerjob.cpp:276
#, kde-format
msgid "Capturing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:27
#, kde-format
msgid "Looping"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:28
#, kde-format
msgid "Subtracting"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:29
#, kde-format
msgid "Subframing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:30
#, kde-format
msgid "Selecting star"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:31 ekos/ekos.h:69
#, kde-format
msgid "Calibrating"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:32
#, kde-format
msgid "Calibration error"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:33
#, kde-format
msgid "Calibrated"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, guiderClass)
#. +> trunk5
#: ekos/ekos.h:34 ekos/guide/internalguide/guider.ui:32
#: ekos/scheduler/schedulerjob.cpp:272
#, kde-format
msgid "Guiding"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:35
#, kde-format
msgid "Suspended"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:36 ekos/ekos.h:67
#, kde-format
msgid "Dithering"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:37
#, kde-format
msgid "Dithering error"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:38
#, kde-format
msgid "Dithering successful"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:39
#, kde-format
msgid "Settling"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:66
#, kde-format
msgid "Paused"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:67
#, kde-format
msgid "Waiting"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:67
#, kde-format
msgid "Image Received"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:68 ekos/scheduler/schedulerjob.cpp:244
#, kde-format
msgid "Focusing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:68
#, kde-format
msgid "Filter Focus"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:68 ekos/ekos.h:98 ekos/ekos.h:131
#, kde-format
msgid "Changing Filter"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:68
#, kde-format
msgid "Setting Temperature"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:69
#, kde-format
msgid "Setting Rotator"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:69 ekos/scheduler/schedulerjob.cpp:252
#, kde-format
msgid "Aligning"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:69
#, kde-format
msgid "Meridian Flip"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:96 ekos/ekos.h:114
#, kde-format
msgid "Failed"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:97
#, kde-format
msgid "User Input"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, startLoopB)
#. +> trunk5
#: ekos/ekos.h:98 ekos/focus/focus.ui:150
#, kde-format
msgid "Framing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:115
#, kde-format
msgid "Syncing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:116 ekos/scheduler/schedulerjob.cpp:235
#: indi/inditelescope.cpp:1042
#, kde-format
msgid "Slewing"
msgstr ""
#. +> trunk5
#: ekos/ekos.h:131
#, kde-format
msgid "Focus Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, startFocusB)
#. +> trunk5
#: ekos/ekos.h:132 ekos/focus/focus.ui:140
#, kde-format
msgid "Auto Focus"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:111
#, kde-format
msgid "Logging"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, setupGroup)
#. +> trunk5
#: ekos/ekosmanager.cpp:172 ekos/guide/internalguide/guider.ui:184
#, kde-format
msgid "Setup"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, sequenceLabel)
#. +> trunk5
#: ekos/ekosmanager.cpp:363 ekos/ekosmanager.ui:640
#, kde-format
msgid "Sequence"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, processINDIB)
#. +> trunk5
#: ekos/ekosmanager.cpp:383 ekos/ekosmanager.ui:303
#, kde-format
msgid "Start INDI"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:518 ekos/ekosmanager.cpp:542
#, kde-format
msgid "Ekos requires at least one CCD or Guider to operate."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:577
#, kde-format
msgid "Ekos detected that PTP Camera is running and may prevent a Canon or Nikon camera from connecting to Ekos. Do you want to quit PTP Camera now?"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:578
#, kde-format
msgid "PTP Camera"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:595
#, kde-format
msgid "Ekos detected an instance of INDI server running. Do you wish to shut down the existing instance before starting a new one?"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:597
#, kde-format
msgid "INDI Server"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:608
#, kde-format
msgid "Starting INDI services..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:625
#, kde-format
msgid "INDI services started on port %1."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:628
#, kde-format
msgid "INDI services started on port %1. Please connect devices."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:637
#, kde-format
msgid "Establishing communication with remote INDI Web Manager..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:647
#, kde-format
msgid "Failed to start profile on remote INDI Web Manager."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:651
#, kde-format
msgid "Starting profile on remote INDI Web Manager..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:656
#, kde-format
msgid "Warning: INDI Web Manager is not online."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:660
#, kde-format
msgid "Connecting to remote INDI server at %1 on port %2 ..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:667
#, kde-format
msgid "Failed to connect to remote INDI server!"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:683
#, kde-format
msgid "INDI services started. Connection to remote INDI server is successful. Waiting for devices..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:695
#, kde-format
msgid "Stop INDI"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:724
#, kde-format
msgid ""
"Unable to establish:\n"
"%1\n"
"Please ensure the device is connected and powered on."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:726 ekos/ekosmanager.cpp:733 ekos/ekosmanager.cpp:762
#: ekos/ekosmanager.cpp:769
#, kde-format
msgid "Ekos startup error"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:730
#, kde-format
msgid ""
"Unable to establish the following devices:\n"
"%1\n"
"Please ensure each device is connected and powered on."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:759
#, kde-format
msgid ""
"Unable to establish remote device:\n"
"%1\n"
"Please ensure remote device name corresponds to actual device name."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:766
#, kde-format
msgid ""
"Unable to establish remote devices:\n"
"%1\n"
"Please ensure remote device name corresponds to actual device name."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:803
#, kde-format
msgid "Connecting INDI devices..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:814
#, kde-format
msgid "Disconnecting INDI devices..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:858
#, kde-format
msgid "INDI services stopped."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:896
#, kde-format
msgid "Remote devices established."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:898
#, kde-format
msgid "Remote devices established. Please connect devices."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1003
#, kde-format
msgid "%1 is disconnected."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1044 ekos/ekosmanager.cpp:1134
#: ekos/ekosmanager.cpp:1207 ekos/ekosmanager.cpp:1218
#: ekos/ekosmanager.cpp:1229 indi/indistd.cpp:436
#, kde-format
msgid "%1 is online."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1151
#, kde-format
msgid "%1 filter is online."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1187
#, kde-format
msgid "%1 focuser is online."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1269
#, kde-format
msgid "%1 is offline."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:1690
#, kde-format
msgctxt "Charge-Coupled Device"
msgid "CCD"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, alignStepCheck)
#. +> trunk5
#: ekos/ekosmanager.cpp:1790 ekos/scheduler/scheduler.ui:337
#: fitsviewer/fitsviewer.cpp:375
#, kde-format
msgid "Align"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2103
#, kde-format
msgid "Guider port from %1 is ready."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2229
#, kde-format
msgid "Are you sure you want to delete the profile?"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2230
#, kde-format
msgid "Confirm Delete"
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2290
#, kde-format
msgid "Site location updated to %1."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2292
#, kde-format
msgid "Failed to update site location to %1. City not found."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2623
#, kde-format
msgid "Enabling debug logging for %1..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2631
#, kde-format
msgid "Disabling debug logging for %1..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2657
#, kde-format
msgid "Re-enabling debug logging for %1..."
msgstr ""
#. +> trunk5
#: ekos/ekosmanager.cpp:2668
#, kde-format
msgid "Re-disabling debug logging for %1..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, profileGroup)
#. +> trunk5
#: ekos/ekosmanager.ui:93
#, kde-format
msgid "1. Select Profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/ekosmanager.ui:114 ekos/profilewizard.ui:1023
#: ekos/scheduler/scheduler.ui:274 kstarslite/qml/indi/INDIControlPanel.qml:166
#, kde-format, kde-kuit-format
msgid "Profile:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, addProfileB)
#. +> trunk5
#: ekos/ekosmanager.ui:152
#, kde-format
msgid "Add profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editProfileB)
#. +> trunk5
#: ekos/ekosmanager.ui:183
#, kde-format
msgid "Edit profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, deleteProfileB)
#. +> trunk5
#: ekos/ekosmanager.ui:214
#, kde-format
msgid "Remove profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, wizardProfileB)
#. +> trunk5
#: ekos/ekosmanager.ui:239
#, kde-format
msgid "Launch Ekos Profile Wizard"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/ekosmanager.ui:268
#, kde-format
msgid "2. Start && Stop INDI"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, controlPanelB)
#. +> trunk5
#: ekos/ekosmanager.ui:332 indi/guimanager.cpp:61
#, kde-format
msgid "INDI Control Panel"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, optionsB)
#. +> trunk5
#: ekos/ekosmanager.ui:351
#, kde-format
msgid "Ekos Options"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: ekos/ekosmanager.ui:366
#, kde-format
msgid "3. Connect && Disconnect Devices"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, connectB)
#. i18n: ectx: property (text), widget (QPushButton, externalConnectB)
#. i18n: ectx: property (text), widget (QPushButton, connectHostB)
#. +> trunk5
#: ekos/ekosmanager.ui:401 ekos/guide/guide.ui:337 indi/drivermanager.ui:361
#: kstarslite/qml/indi/INDIControlPanel.qml:218
#, kde-format, kde-kuit-format
msgid "Connect"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, disconnectB)
#. i18n: ectx: property (text), widget (QPushButton, externalDisconnectB)
#. i18n: ectx: property (text), widget (QPushButton, disconnectHostB)
#. +> trunk5
#: ekos/ekosmanager.ui:417 ekos/guide/guide.ui:196 indi/drivermanager.ui:368
#: kstarslite/qml/indi/INDIControlPanel.qml:218
#, kde-format, kde-kuit-format
msgid "Disconnect"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, summaryGroup)
#. +> trunk5
#: ekos/ekosmanager.ui:446
#, kde-format
msgid "Summary"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/ekosmanager.ui:496 ekos/ekosmanager.ui:856 ekos/ekosmanager.ui:1052
#: ekos/ekosmanager.ui:1246 fitsviewer/fitsdebayer.ui:123
#, kde-format
msgid "Status:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, imageRemainingTime)
#. i18n: ectx: property (text), widget (QLabel, sequenceRemainingTime)
#. i18n: ectx: property (text), widget (QLabel, overallRemainingTime)
#. +> trunk5
#: ekos/ekosmanager.ui:623 ekos/ekosmanager.ui:706 ekos/ekosmanager.ui:802
#, kde-format
msgid "--:--:--"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, overallLabel)
#. +> trunk5
#: ekos/ekosmanager.ui:723
#, kde-format
msgid "Overall"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, mountGroup)
#. +> trunk5
#: ekos/ekosmanager.ui:827
#, kde-format
msgid "Mount && Alignment"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, targetLabel)
#. +> trunk5
#: ekos/ekosmanager.ui:895 ekos/scheduler/scheduler.ui:61
#, kde-format
msgid "Target:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#. +> trunk5
#: ekos/ekosmanager.ui:959 ekos/mount/mount.ui:274
#: kstarslite/qml/dialogs/DetailsDialog.qml:271
#, kde-format, kde-kuit-format
msgid "Azimuth"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/ekosmanager.ui:962
#, kde-format
msgid "AZ:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/ekosmanager.ui:976 ekos/mount/mount.ui:291
#: kstarslite/qml/dialogs/DetailsDialog.qml:276 tools/altvstime.cpp:108
#, kde-format, kde-kuit-format
msgid "Altitude"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/ekosmanager.ui:979
#, kde-format
msgid "AL:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/ekosmanager.ui:1082 ekos/focus/focus.ui:876
#, kde-format
msgid "HFR:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, focusProfileImage)
#. +> trunk5
#: ekos/ekosmanager.ui:1145
#, kde-format
msgid "Focus Profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, focusStarImage)
#. +> trunk5
#: ekos/ekosmanager.ui:1183
#, kde-format
msgid "Focus Star"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/ekosmanager.ui:1279
#, kde-format
msgid " σRA:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/ekosmanager.ui:1311
#, kde-format
msgid "σDEC:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, guideProfileImage)
#. +> trunk5
#: ekos/ekosmanager.ui:1356
#, kde-format
msgid "Guide Profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, guideStarImage)
#. +> trunk5
#: ekos/ekosmanager.ui:1391
#, kde-format
msgid "Guide Star"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, ekosOptionsB)
#. +> trunk5
#: ekos/ekosmanager.ui:1475
#, kde-format
msgid "Advanced Ekos Options"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, ekosOptionsB)
#. +> trunk5
#: ekos/ekosmanager.ui:1478
#, kde-format
msgid "Options..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearB)
#. i18n: ectx: property (text), widget (QPushButton, ClearButton)
#. i18n: ectx: property (text), widget (QPushButton, Clear)
#. +> trunk5
#: ekos/ekosmanager.ui:1485 indi/guimanager.cpp:64 tools/conjunctions.ui:205
#: tools/modcalcgeod.ui:160
#, kde-format
msgid "Clear"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:137
#, kde-format
msgid "Relative Profile"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:200
#, kde-format
msgid "HFR"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:638 ekos/focus/focus.cpp:810 ekos/focus/focus.cpp:2160
#, kde-format
msgid "No CCD connected."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:660
#, kde-format
msgid "Setting dummy central position to 50000"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:673
#, kde-format
msgid "Starting pulse step is too low. Increase the step size to %1 or higher..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:716
#, kde-format
msgid "Autofocus in progress..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:718
#, kde-format
msgid "Please wait until image capture is complete..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:731
#, kde-format
msgid "Autofocus operation started"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:928 ekos/focus/focus.cpp:967 ekos/focus/focus.cpp:2532
#, kde-format
msgid "Error: Lost connection to Focuser."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:944 ekos/focus/focus.cpp:949
#, kde-format
msgid "Focusing inward..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:954
#, kde-format
msgid "Focusing inward by %1 ms..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:983 ekos/focus/focus.cpp:988
#, kde-format
msgid "Focusing outward..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:993
#, kde-format
msgid "Focusing outward by %1 ms..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1175
#, kde-format
msgid "FITS received. No stars detected."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1185 ekos/focus/focus.cpp:1668
#: ekos/focus/focus.cpp:1855 ekos/focus/focus.cpp:1949
#, kde-format
msgid "Autofocus complete after %1 iterations."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1258
#, kde-format
msgid "No reliable star is detected. Aborting..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1294
#, kde-format
msgid "Failed to automatically select a star. Please select a star manually."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1387
#, kde-format
msgid "Capture complete. Select a star to focus."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1418 ekos/focus/focus.cpp:1590
#: ekos/focus/focus.cpp:1927
#, kde-format
msgid "No stars detected, capturing again..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1573
#, kde-format
msgid "FITS received. HFR %1 @ %2. Delta (%3%)"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1575
#, kde-format
msgid "FITS received. HFR %1 @ %2."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1579
#, kde-format
msgid "Autofocus failed to reach proper focus. Try increasing tolerance value."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1602
#, kde-format
msgid "Failed to detect any stars. Reset frame and try again."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1656
#, kde-format
msgid "Change in HFR is too small. Try increasing the step size or decreasing the tolerance."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1662
#, kde-format
msgid "Failed to detect focus star in frame. Capture and select a focus star."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1815
#, kde-format
msgid "Found polynomial solution @ %1"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1865
#, kde-format
msgid "Deadlock reached. Please try again with different settings."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1912
#, kde-format
msgid "FITS received. HFR %1. Delta (%2%) Min HFR (%3)"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:1916
#, kde-format
msgid "Autofocus failed to reach proper focus. Try adjusting the tolerance value."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2052 ekos/focus/focus.cpp:2093
#: ekos/focus/focus.cpp:2120
#, kde-format
msgid "Restarting autofocus process..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2063 ekos/focus/focus.cpp:2103
#: ekos/focus/focus.cpp:2130
#, kde-format
msgid "Focuser error, check INDI panel."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2178
#, kde-format
msgid "Starting continuous exposure..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2366
#, kde-format
msgid "Focus star is selected."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2375
#, kde-format
msgid "Disabling Auto Star Selection as star selection box was moved manually."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2407
#, kde-format
msgid "Warning: Only use filters for preview as they may interface with autofocus operation."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2464
#, kde-format
msgid "Autofocus failed, moving back to initial focus position %1."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2480
#, kde-format
msgid "Autofocus operation completed successfully"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2485
#, kde-format
msgid "Autofocus operation failed with errors"
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2508
#, kde-format
msgid "No star was selected. Using last known position..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2512
#, kde-format
msgid "No star was selected. Aborting..."
msgstr ""
#. +> trunk5
#: ekos/focus/focus.cpp:2647
#, kde-format
msgid "Focus Frame"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/focus/focus.ui:48 ekos/profileeditor.ui:423
#, kde-format
msgid "Focuser:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, focusInB)
#. +> trunk5
#: ekos/focus/focus.ui:61
#, kde-format
msgid "Focus In"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, focusOutB)
#. +> trunk5
#: ekos/focus/focus.ui:71
#, kde-format
msgid "Focus Out"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5
#: ekos/focus/focus.ui:78
#, kde-format
msgid "Ticks:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, absTicksLabel)
#. +> trunk5
#: ekos/focus/focus.ui:88
#, kde-format
msgid "Current absolute focuser position"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, absTicksSpin)
#. +> trunk5
#: ekos/focus/focus.ui:110
#, kde-format
msgid "Desired absolute focus position"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, setAbsTicksB)
#. +> trunk5
#: ekos/focus/focus.ui:120
#, kde-format
msgid "Set desired absolute focus position"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5
#: ekos/focus/focus.ui:130
#, kde-format
msgid "Start:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/focus/focus.ui:167 ekos/guide/opsguide.ui:164
#, kde-format
msgid "Settle:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, FocusSettleTime)
#. i18n: ectx: whatsthis, entry (FocusSettleTime), group (Focus)
#. +> trunk5
#: ekos/focus/focus.ui:174 kstars.kcfg:1612
#, kde-format
msgid "Wait for this many seconds after moving the focuser before capturing the next image during AutoFocus."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_7)
#. i18n: ectx: property (toolTip), widget (QLabel, gainLabel)
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. +> trunk5
#: ekos/focus/focus.ui:237 ekos/focus/focus.ui:336 ekos/guide/guide.ui:213
#, kde-format
msgid "Exposure time in seconds"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, gainLabel)
#. +> trunk5
#: ekos/focus/focus.ui:339
#, kde-format
msgid "Gain:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/focus/focus.ui:443 ekos/guide/guide.ui:203
#, kde-format
msgid "Apply filter to image after capture to enhance it"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/focus/focus.ui:446
#, kde-format
msgid "Effect:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetFrameB)
#. +> trunk5
#: ekos/focus/focus.ui:469
#, kde-format
msgid "Reset focus subframe to full capture"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/focus/focus.ui:482 ekos/guide/opscalibration.ui:32
#: ekos/guide/opsguide.ui:32
#, kde-format
msgid "Settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useSubFrame)
#. +> trunk5
#: ekos/focus/focus.ui:508
#, kde-format
msgid "Subframe around the focus star during the autofocus procedure"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useSubFrame)
#. +> trunk5
#: ekos/focus/focus.ui:511
#, kde-format
msgid "Sub Frame"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, darkFrameCheck)
#. +> trunk5
#: ekos/focus/focus.ui:524
#, kde-format
msgid "Dark Frame"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useAutoStar)
#. +> trunk5
#: ekos/focus/focus.ui:531
#, kde-format
msgid "Automatically select the best focus star from the image"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useAutoStar)
#. +> trunk5
#: ekos/focus/focus.ui:534
#, kde-format
msgid "Auto Select Star"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, suspendGuideCheck)
#. +> trunk5
#: ekos/focus/focus.ui:541
#, kde-format
msgid "Suspend Guiding while autofocus in progress"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, suspendGuideCheck)
#. +> trunk5
#: ekos/focus/focus.ui:544
#, kde-format
msgid "Suspend Guiding"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useFullField)
#. +> trunk5
#: ekos/focus/focus.ui:551
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Measure average HFR from all stars combined in a full frame. This method can be slow.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useFullField)
#. +> trunk5
#: ekos/focus/focus.ui:554
#, kde-format
msgid "Full Field"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_12)
#. +> trunk5
#: ekos/focus/focus.ui:588
#, kde-format
msgid "Maximum travel in ticks before the autofocus process aborts"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/focus/focus.ui:591
#, kde-format
msgid "Max Travel:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_19)
#. +> trunk5
#: ekos/focus/focus.ui:614
#, kde-format
msgid "Increase to restrict the centroid to bright cores. Decrease to enclose fuzzy stars."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5
#: ekos/focus/focus.ui:617
#, kde-format, no-c-format
msgid "Threshold (%):"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: ekos/focus/focus.ui:624
#, kde-format
msgid "<b>Initial</b> step size in ticks to cause a noticeable change in HFR value. For timer based focuser, it is the initial time in milliseconds to move the focuser inward or outward"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/focus/focus.ui:630
#, kde-format
msgid "Step:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, label_10)
#. +> trunk5
#: ekos/focus/focus.ui:656
#, kde-format
msgid "Delay between two consequent focus images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/focus/focus.ui:659
#, kde-format
msgid "Box Size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. +> trunk5
#: ekos/focus/focus.ui:666
#, kde-format
msgid "Decrease value to narrow optimal focus point solution radius. Increase to expand solution radius"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/focus/focus.ui:669
#, kde-format, no-c-format
msgid "Tolerance (%):"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (QSpinBox, focusFramesSpin)
#. +> trunk5
#: ekos/focus/focus.ui:708 ekos/focus/focus.ui:718
#, kde-format
msgid "Number of frames to average"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/focus/focus.ui:711
#, kde-format
msgid "Frames:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, focusDetectionCombo)
#. +> trunk5
#: ekos/focus/focus.ui:729
#, kde-format
msgid "Gradient"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, focusDetectionCombo)
#. +> trunk5
#: ekos/focus/focus.ui:734
#, kde-format
msgid "Centroid"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, focusDetectionCombo)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/focus/focus.ui:739 ekos/guide/opsguide.ui:74
#, kde-format
msgid "Threshold"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_21)
#. +> trunk5
#: ekos/focus/focus.ui:752
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select focus process algorithm:</p>"
"\n"
"<ul>\n"
"<li><b>Iterative</b>: Moves focuser by discreet steps initially decided by the step size. Once a curve slope is calculated, further step sizes are calculated to reach optimal solution. The algorithm stops when the measured HFR is within percentage tolerance of the minimum HFR recorded in the procedure.</li>"
"\n"
"<li><b>Polynomial</b>: Starts with iterative method. Upon crossing to the other side of the V-Curve, polynomial fitting coefficients along with possible minimum solution are calculated. This algorithm can be faster than purely iterative approach given a good data set.</li>"
"\n"
"</ul>"
"\n"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. +> trunk5
#: ekos/focus/focus.ui:755
#, kde-format
msgid "Algorithm:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5
#: ekos/focus/focus.ui:762
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select star detection algorithm</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/focus/focus.ui:765
#, kde-format
msgid "Detection:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, focusAlgorithmCombo)
#. +> trunk5
#: ekos/focus/focus.ui:773
#, kde-format
msgid "Iterative"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, focusAlgorithmCombo)
#. +> trunk5
#: ekos/focus/focus.ui:778
#, kde-format
msgid "Polynomial"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5
#: ekos/focus/focus.ui:834
#, kde-format
msgid "V-Curve"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, relativeProfileB)
#. +> trunk5
#: ekos/focus/focus.ui:913
#, kde-format
msgid "Relative Profile..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearDataB)
#. +> trunk5
#: ekos/focus/focus.ui:920
#, kde-format
msgid "Clear Data"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:74
#: ekos/guide/externalguide/phd2.cpp:171
#, kde-format
msgid "The host was not found. Please check the host name and port settings in Guide options."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:78
#, kde-format
msgid "The connection was refused by the peer. Make sure the LinGuider is running, and check that the host name and port settings are correct."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:83
#: ekos/guide/externalguide/phd2.cpp:180
#, kde-format
msgid "The following error occurred: %1."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:106
#: ekos/guide/externalguide/linguider.cpp:114
#, kde-format
msgid "Invalid response."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:143
#, kde-format
msgid "Connected to LinGuider %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:147
#, kde-format
msgid "Only LinGuider v4.1.0 or higher is supported. Please upgrade LinGuider and try again."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:170
#, kde-format
msgid "Auto star selected %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:179
#, kde-format
msgid "Failed to process star position."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:192
#, kde-format
msgid "Failed to set guider reticle position."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:204
#, kde-format
msgid "Failed to set guider square position."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:230
#, kde-format
msgid "Failed to start guider."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:232
#, kde-format
msgid "Failed to stop guider."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:257
#, kde-format
msgid "Failed to get RA/DEC Drift."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/linguider.cpp:271
#, kde-format
msgid "Failed to set dither range."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:127
#, kde-format
msgid "PHD2: There was no dithering response from PHD2, but continue guiding."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:143
#, kde-format
msgid "Connecting to PHD2 Host: %1, on port %2. . ."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:175
#, kde-format
msgid "The connection was refused by the peer. Make sure the PHD2 is running, and check that the host name and port settings are correct."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:237
#, kde-format
msgid "Unknown PHD2 event: %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:246
#, kde-format
msgid "PHD2: Version %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:259
#, kde-format
msgid "PHD2: Calibration Complete."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:267
#, kde-format
msgid "PHD2: Guiding Started."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:273
#, kde-format
msgid "PHD2: Guiding Paused."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:279
#, kde-format
msgid "PHD2: Calibration Started."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:289
#, kde-format
msgid "PHD2: Calibration Failed (%1)."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:294
#, kde-format
msgid "Calibration Data Flipped."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:302
#, kde-format
msgid "PHD2: Looping Exposures Stopped."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:317
#, kde-format
msgid "PHD2: Settling failed (%1)."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:325
#, kde-format
msgid "PHD2: Settling complete, Guiding Started."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:338
#, kde-format
msgid "PHD2: There was a dithering error, but continue guiding."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:347
#, kde-format
msgid "PHD2: Star Selected."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:351
#, kde-format
msgid "PHD2: Star Lost. Trying to reacquire."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:360
#, kde-format
msgid "PHD2: Guiding Stopped."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:366
#, kde-format
msgid "PHD2: Guiding Resumed."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:377
#, kde-format
msgid "PHD2: Star found, guiding resumed."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:383
#, kde-format
msgid "PHD2: Guiding started up again."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:448
#, kde-format
msgid "PHD2: Lock Position Set."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:452
#, kde-format
msgid "PHD2: Lock Position Lost."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:458
#, kde-format
msgid "PHD2 %1: %2"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:545
#, kde-format
msgid "PHD2: DEC Guide Mode is Set to: %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:555
#, kde-format
msgid "PHD2: Exposure Time set to: "
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:563
#, kde-format
msgid "PHD2: Valid Exposure Times: Auto, "
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:579
#, kde-format
msgid "PHD2: Please set CCD and telescope parameters in PHD2, Pixel Scale is invalid."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:581
#, kde-format
msgid "PHD2: Pixel Scale is %1 arcsec per pixel"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:638
#, kde-format
msgid "PHD2 Error: %1"
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:763 ekos/guide/externalguide/phd2.cpp:780
#: ekos/guide/externalguide/phd2.cpp:879 ekos/guide/externalguide/phd2.cpp:978
#: ekos/guide/externalguide/phd2.cpp:999 ekos/guide/externalguide/phd2.cpp:1021
#, kde-format
msgid "PHD2 Error: Equipment not connected."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:872
#, kde-format
msgid "PHD2: Guiding is already running."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:930
#, kde-format
msgid "PHD2: Connecting Equipment. . ."
msgstr ""
#. +> trunk5
#: ekos/guide/externalguide/phd2.cpp:932
#, kde-format
msgid "PHD2: Disconnecting Equipment. . ."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:269
#, kde-format
msgid "drift (arcsec)"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:270
#, kde-format
msgid "pulse (ms)"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:637
#, kde-format
msgctxt "Drift graphics tooltip; %1 is local time; %2 is RA deviation; %3 is DE deviation in arcseconds"
msgid ""
"<table>"
"<tr>"
"<td>LT: </td>"
"<td>%1</td>"
"</tr>"
"<tr>"
"<td>RA: </td>"
"<td>%2 \"</td>"
"</tr>"
"<tr>"
"<td>DE: </td>"
"<td>%3 \"</td>"
"</tr>"
"</table>"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:650 ekos/guide/guide.cpp:2794
#, kde-format
msgctxt "Drift graphics tooltip; %1 is local time; %2 is RA deviation; %3 is DE deviation in arcseconds; %4 is RA Pulse in ms; %5 is DE Pulse in ms"
msgid ""
"<table>"
"<tr>"
"<td>LT: </td>"
"<td>%1</td>"
"</tr>"
"<tr>"
"<td>RA: </td>"
"<td>%2 \"</td>"
"</tr>"
"<tr>"
"<td>DE: </td>"
"<td>%3 \"</td>"
"</tr>"
"<tr>"
"<td>RA Pulse: </td>"
"<td>%4 ms</td>"
"</tr>"
"<tr>"
"<td>DE Pulse: </td>"
"<td>%5 ms</td>"
"</tr>"
"</table>"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:720
#, kde-format
msgid "Export Guide Data"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:773
#, kde-format
msgid "Guide Data Saved as: %1"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:881 ekos/guide/guide.cpp:3134
#, kde-format
msgid "Disabling remote image reception from %1"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:888 ekos/guide/guide.cpp:3140
#, kde-format
msgid "Enabling remote image reception from %1"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1002
#, kde-format
msgid "Connection to the guide CCD is lost."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1313
#, kde-format
msgid "Exposure timeout. Aborting Autoguide."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1315
#, kde-format
msgid "Exposure timeout. Aborting Dithering."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1317
#, kde-format
msgid "Exposure timeout. Aborting Calibration."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1323
#, kde-format
msgid "Exposure timeout. Restarting exposure..."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1495
#, kde-format
msgid "Lost track of the guide star. Rapid guide aborted."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1526
#, kde-format
msgid "Dithering failed. Autoguiding aborted."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1546
#, kde-format
msgid "The CCD does not support Rapid Guiding. Aborting..."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1823
#, kde-format
msgid "Calibration is cleared."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1839
#, kde-format
msgid "External guider connected."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1850
#, kde-format
msgid "External guider disconnected."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1865 ekos/guide/internalguide/rcalibration.cpp:420
#: ekos/guide/internalguide/rcalibration.cpp:448
#: ekos/guide/internalguide/rcalibration.cpp:669
#: ekos/guide/internalguide/rcalibration.cpp:821
#, kde-format
msgid "Calibration completed."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1884
#, kde-format
msgid "Calibration started."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1890
#, kde-format
msgid "Guiding resumed."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1893 ekos/guide/internalguide/guider.cpp:221
#: ekos/guide/internalguide/guider.cpp:239
#: ekos/guide/internalguide/guider.cpp:311
#, kde-format
msgid "Autoguiding started."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1904
#, kde-format
msgid "Autoguiding aborted."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1909
#, kde-format
msgid "Guiding suspended."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1913
#, kde-format
msgid "Dithering in progress."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1918
#, kde-format
msgid "Post-dither settling for %1 second..."
msgid_plural "Post-dither settling for %1 seconds..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/guide/guide.cpp:1923
#, kde-format
msgid "Dithering failed!"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1934
#, kde-format
msgid "Dithering completed successfully."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:1988
#, kde-format
msgid "Exposure failed. Restarting exposure..."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2070
#, kde-format
msgid "Cannot change guider type while active."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2121
#, kde-format
msgid "Select guide camera."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2163 ekos/guide/guide.cpp:2198
#, kde-format
msgid "Select a camera to disable remote streaming."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2414 ekos/guide/internalguide/guider.cpp:140
#, kde-format
msgid "P: %1"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2534
#, kde-format
msgid "You must stop auto guiding before changing this setting."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2542
#, kde-format
msgid "Rapid Guiding is enabled. Guide star will be determined automatically by the CCD driver. No frames are sent to Ekos unless explicitly enabled by the user in the CCD driver settings."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2545
#, kde-format
msgid "Rapid Guiding is disabled."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2781
#, kde-format
msgctxt "Drift graphics tooltip; %1 is local time; %2 is RA deviation; %3 is DE deviation in arcseconds;"
msgid ""
"<table>"
"<tr>"
"<td>LT: </td>"
"<td>%1</td>"
"</tr>"
"<tr>"
"<td>RA: </td>"
"<td>%2 \"</td>"
"</tr>"
"<tr>"
"<td>DE: </td>"
"<td>%3 \"</td>"
"</tr>"
"</table>"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:2914
#, kde-format
msgid "Calibration failed to start!"
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:3054
#, kde-format
msgid "Auto star selected."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:3058
#, kde-format
msgid "Failed to select an auto star."
msgstr ""
#. +> trunk5
#: ekos/guide/guide.cpp:3067
#, kde-format
msgid "Select a guide star to calibrate."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, controlGroup)
#. +> trunk5
#: ekos/guide/guide.ui:37 ekos/guide/internalguide/guider.ui:657
#, kde-format
msgid "Control"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, subFrameCheck)
#. +> trunk5
#: ekos/guide/guide.ui:92
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Subframe the image around the guide star. Before checking this option, you must <span style=\" font-weight:600;\">first</span> capture an image and select a guide star. Uncheck it to take a full frame again.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, subFrameCheck)
#. +> trunk5
#: ekos/guide/guide.ui:95 ekos/guide/internalguide/guider.ui:250
#, kde-format
msgid "Subframe"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, darkFrameCheck)
#. +> trunk5
#: ekos/guide/guide.ui:102
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Subtract dark frame. If no dark frame is available, a new dark frame shall be captured and saved for future use.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loopB)
#. +> trunk5
#: ekos/guide/guide.ui:112
#, kde-format
msgid "Loop"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, clearCalibrationB)
#. +> trunk5
#: ekos/guide/guide.ui:131
#, kde-format
msgid "Clear calibration data."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_DirRA)
#. +> trunk5
#: ekos/guide/guide.ui:174
#, kde-format
msgid "Guide Right Ascention Axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, externalDisconnectB)
#. +> trunk5
#: ekos/guide/guide.ui:193
#, kde-format
msgid "Disconnect from external guiding application."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/guide/guide.ui:206
#, kde-format
msgid "Effects"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. +> trunk5
#: ekos/guide/guide.ui:223
#, kde-format
msgid "Guide camera binning. It is recommended to set binning to 2x2 or higher."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, boxSizeCombo)
#. +> trunk5
#: ekos/guide/guide.ui:237
#, kde-format
msgid "8"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, boxSizeCombo)
#. +> trunk5
#: ekos/guide/guide.ui:242
#, kde-format
msgid "16"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, boxSizeCombo)
#. +> trunk5
#: ekos/guide/guide.ui:247
#, kde-format
msgid "32"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, boxSizeCombo)
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideRegionAxis)
#. +> trunk5
#: ekos/guide/guide.ui:252 ekos/guide/opsguide.ui:340
#, kde-format
msgid "64"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, boxSizeCombo)
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideRegionAxis)
#. +> trunk5
#: ekos/guide/guide.ui:257 ekos/guide/opsguide.ui:345
#, kde-format
msgid "128"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/guide/guide.ui:268 ekos/profileeditor.ui:460
#, kde-format
msgid "Guider:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5
#: ekos/guide/guide.ui:275
#, kde-format
msgid "Guide star tracking box size. Box size must be set in accordance to the selected star size."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/guide/guide.ui:278
#, kde-format
msgid "Box:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_9)
#. +> trunk5
#: ekos/guide/guide.ui:298
#, kde-format
msgid "Directions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_DirDEC)
#. +> trunk5
#: ekos/guide/guide.ui:305
#, kde-format
msgid "Guide Declination Axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, swapCheck)
#. +> trunk5
#: ekos/guide/guide.ui:318 ekos/guide/internalguide/guider.ui:683
#, kde-format
msgid "Swap DEC direction pulses. This value is determined automatically from the calibration procedure, only override if necessary."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, swapCheck)
#. +> trunk5
#: ekos/guide/guide.ui:324 ekos/guide/internalguide/guider.ui:686
#, kde-format
msgid "Swap"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, externalConnectB)
#. +> trunk5
#: ekos/guide/guide.ui:334
#, kde-format
msgid "Connect to external guiding application."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. +> trunk5
#: ekos/guide/guide.ui:344
#, kde-format
msgid "Select which device receives the guiding correction commands."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/guide/guide.ui:347
#, kde-format
msgid "Via:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, eastControlCheck)
#. +> trunk5
#: ekos/guide/guide.ui:371
#, kde-format
msgid "East Direction Guiding"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, westControlCheck)
#. +> trunk5
#: ekos/guide/guide.ui:381
#, kde-format
msgid "West Direction Guiding"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, westControlCheck)
#. i18n: ectx: property (text), widget (QCheckBox, southControlCheck)
#. +> trunk5
#: ekos/guide/guide.ui:384 ekos/guide/guide.ui:411
#: kstarslite/qml/indi/modules/MotionControl.qml:275
#, kde-format, kde-kuit-format
msgid "-"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, northControlCheck)
#. +> trunk5
#: ekos/guide/guide.ui:398
#, kde-format
msgid "North Direction Guiding"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, southControlCheck)
#. +> trunk5
#: ekos/guide/guide.ui:408
#, kde-format
msgid "South Direction Guiding"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, infoGroup)
#. +> trunk5
#: ekos/guide/guide.ui:425
#, kde-format
msgid "Guide Info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/guide/guide.ui:451
#, kde-format
msgid "Scope:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_3)
#. +> trunk5
#: ekos/guide/guide.ui:488
#, kde-format
msgid "Mount guiding rate. Find out the guiding rate used by your mount and update the value here to get the <b>recommended</b> value of proportional gain suitable for your mount. Setting this value <b>does not</b> change your mount guiding rate!"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_3)
#. +> trunk5
#: ekos/guide/guide.ui:491
#, kde-format
msgid "Guiding rate"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, spinBox_GuideRate)
#. +> trunk5
#: ekos/guide/guide.ui:498
#, kde-format
msgid "Mount guiding rate (x15\"/sec)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_RecommendedGain)
#. +> trunk5
#: ekos/guide/guide.ui:517
#, kde-format
msgid "<b>Recommended</b> proportional rate given the selected guiding rate."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_5)
#. +> trunk5
#: ekos/guide/guide.ui:544
#, kde-format
msgid "Focal"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_Focal)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/guide/guide.ui:551 ekos/mount/mount.ui:79 ekos/mount/mount.ui:123
#, kde-format
msgid "Focal Length (mm)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_6)
#. +> trunk5
#: ekos/guide/guide.ui:573
#, kde-format
msgid "Aperture"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_Aperture)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/guide/guide.ui:580 ekos/mount/mount.ui:59 ekos/mount/mount.ui:156
#, kde-format
msgid "Aperture (mm)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_7)
#. +> trunk5
#: ekos/guide/guide.ui:599
#, kde-format
msgid "Focal Ratio"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_7)
#. +> trunk5
#: ekos/guide/guide.ui:602 ekos/guide/internalguide/guider.ui:434
#, kde-format
msgid "F/D"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_8)
#. +> trunk5
#: ekos/guide/guide.ui:625
#, kde-format
msgid "FOV"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_FOV)
#. +> trunk5
#: ekos/guide/guide.ui:632
#, kde-format
msgid "Field of View (arcmin)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_FOV)
#. +> trunk5
#: ekos/guide/guide.ui:641 ekos/guide/internalguide/guider.ui:470
#, kde-format
msgid "YYxYY"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_17)
#. +> trunk5
#: ekos/guide/guide.ui:665
#, kde-format
msgid "Pulse Length (ms)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_16)
#. +> trunk5
#: ekos/guide/guide.ui:672
#, kde-format
msgid "Guiding Delta \""
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_PulseRA)
#. +> trunk5
#: ekos/guide/guide.ui:684
#, kde-format
msgid "Generated RA pulse"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_PulseDEC)
#. +> trunk5
#: ekos/guide/guide.ui:703
#, kde-format
msgid "Generated DEC pulse"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_DeltaRA)
#. +> trunk5
#: ekos/guide/guide.ui:729
#, kde-format
msgid "Immediate Guiding RA deviation in arcseconds"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_DeltaDEC)
#. +> trunk5
#: ekos/guide/guide.ui:748
#, kde-format
msgid "Immediate Guiding DEC deviation in arcseconds"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_20)
#. +> trunk5
#: ekos/guide/guide.ui:771
#, kde-format
msgid "RA Guiding RMS error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_20)
#. +> trunk5
#: ekos/guide/guide.ui:774
#, kde-format
msgid "RA RMS\""
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_21)
#. +> trunk5
#: ekos/guide/guide.ui:804
#, kde-format
msgid "DEC Guiding RMS error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_21)
#. +> trunk5
#: ekos/guide/guide.ui:807
#, kde-format
msgid "DE RMS\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/guide/guide.ui:835
#, kde-format
msgid "<b>Total RMS\"</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_TotalRMS)
#. +> trunk5
#: ekos/guide/guide.ui:854
#, kde-format
msgid "xxx"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, driftGraphicsGroup)
#. +> trunk5
#: ekos/guide/guide.ui:919
#, kde-format
msgid "Drift Graphics"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, correctionSlider)
#. +> trunk5
#: ekos/guide/guide.ui:993
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Drag the slider to adjust the scale of the Corrections Graphs relative to the scale of the drift graphs.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5
#: ekos/guide/guide.ui:1040
#, kde-format
msgid "Control parameters"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, controlGroup)
#. +> trunk5
#: ekos/guide/guide.ui:1058
#, kde-format
msgid "Control Parameters"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_11)
#. +> trunk5
#: ekos/guide/guide.ui:1091
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Proportional term accounts for present values of the error. For example, if the error is large and positive, the guider corrective pulse will also be large and positive.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_11)
#. +> trunk5
#: ekos/guide/guide.ui:1094 ekos/guide/internalguide/guider.ui:728
#, kde-format
msgid "Proportional gain"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_12)
#. +> trunk5
#: ekos/guide/guide.ui:1121
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Integral term accounts for past values of the error. For example, if the current pulse is not sufficiently strong, the integral of the error will accumulate over time, and the guider will respond by applying a stronger action.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_12)
#. +> trunk5
#: ekos/guide/guide.ui:1124 ekos/guide/internalguide/guider.ui:755
#, kde-format
msgid "Integral gain"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_13)
#. +> trunk5
#: ekos/guide/guide.ui:1154
#, kde-format
msgid "Derivative term accounts for possible future trends of the error, based on its current rate of change."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_13)
#. +> trunk5
#: ekos/guide/guide.ui:1157 ekos/guide/internalguide/guider.ui:782
#, kde-format
msgid "Derivative gain"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_14)
#. +> trunk5
#: ekos/guide/guide.ui:1190
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Maximum guide pulse that is generated by the guider and sent to the mount.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_14)
#. +> trunk5
#: ekos/guide/guide.ui:1193 ekos/guide/internalguide/guider.ui:809
#, kde-format
msgid "Maximum pulse"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_15)
#. +> trunk5
#: ekos/guide/guide.ui:1214
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Minimum guide pulse that is sent to the mount. If the generated pulse is less than this value, then no pulse is sent to the mount.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_15)
#. +> trunk5
#: ekos/guide/guide.ui:1217 ekos/guide/internalguide/guider.ui:830
#, kde-format
msgid "Minimum pulse"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_23)
#. +> trunk5
#: ekos/guide/guide.ui:1241 ekos/guide/internalguide/guider.ui:851
#, kde-format
msgid "AO Limits"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, spinBox_AOLimit)
#. +> trunk5
#: ekos/guide/guide.ui:1251 ekos/guide/internalguide/guider.ui:861
#, kde-format
msgid "Maximum deviation to correct for using Adaptive Optics unit. If the guiding deviation exceeds this value, Ekos will guide the mount mechanically"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_24)
#. +> trunk5
#: ekos/guide/guide.ui:1273 ekos/guide/internalguide/guider.ui:880
#, kde-format
msgid "arcsecs"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5
#: ekos/guide/guide.ui:1286
#, kde-format
msgid "Drift Plot"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/guide/guide.ui:1340
#, kde-format
msgid " Graph:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showRAPlotCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1355
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Display the RA graph in the Drift Graphics plot.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, showRAPlotCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1358
#, kde-format
msgid "RA "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showRACorrectionsCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1368
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Display the RA Corrections graph in the Drift Graphics plot.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, showRACorrectionsCheck)
#. i18n: ectx: property (text), widget (QCheckBox, showDECorrectionsCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1371 ekos/guide/guide.ui:1404
#, kde-format
msgid "Corr"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDECPlotCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1388
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Display DEC graph in the Drift Graphics plot.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDECorrectionsCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1401
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Display the DEC Corrections graph in the Drift Graphics plot.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/guide/guide.ui:1413
#, kde-format
msgid "Trace:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, guideSlider)
#. +> trunk5
#: ekos/guide/guide.ui:1420
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Drag the slider to scroll through guide history while displaying the RA and DEC error points on both graphs. Dragging to the far right will set the guide plots to display the latest guide data and autoscroll the graph.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, latestCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1436
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Check to display the latest guide data and autoscroll the graph.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, latestCheck)
#. +> trunk5
#: ekos/guide/guide.ui:1439
#, kde-format
msgid "Max "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, guideAutoScaleGraphB)
#. +> trunk5
#: ekos/guide/guide.ui:1461
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Autoscale both Guide Graphs to their default scale. If any points are located outside this range, the view is expanded to include them (with the exception of the time axis in the drift graphics).</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, guideSaveDataB)
#. +> trunk5
#: ekos/guide/guide.ui:1483
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Export the guide data from the current session to a CSV file readable by a spreadsheet program.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, guideDataClearB)
#. +> trunk5
#: ekos/guide/guide.ui:1505
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Clear all the recent guide data.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, accuracyRadiusSpin)
#. +> trunk5
#: ekos/guide/guide.ui:1515
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set the desired guiding accuracy in the Drift Plot. The number represents the radius of the green concentric circle in arcseconds.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButton_StartStop)
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:267
#: ekos/guide/internalguide/guider.cpp:279
#: ekos/guide/internalguide/guider.cpp:316
#: ekos/guide/internalguide/guider.ui:220
#, kde-format
msgid "Start Autoguide"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:280
#, kde-format
msgid "Autoguiding stopped."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:432
#: ekos/guide/internalguide/internalguider.cpp:840
#, kde-format
msgid "Lost track of the guide star. Try increasing the square size and check the mount."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:450
#: ekos/guide/internalguide/internalguider.cpp:859
#, kde-format
msgid "Lost track of the guide star. Aborting guiding..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:522
#, kde-format
msgid "Autoguiding failed with errors"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:702
#, kde-format
msgid "Disconnect PHD2"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/guider.cpp:711
#, kde-format
msgid "Connect PHD2"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, driftGraphicsGroup)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:63
#, kde-format
msgid "Drift graphics"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_1)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:123
#, kde-format
msgid "X scale(frm.)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_2)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:140
#, kde-format
msgid "Y scale(\")"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, connectPHD2B)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:230
#, kde-format
msgid "Connect External"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_19)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:237 ekos/guide/opsguide.ui:88
#, kde-format
msgid "Algorithm"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, subFrameCheck)
#. i18n: ectx: property (toolTip), widget (QCheckBox, ditherCheck)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:247
#: ekos/guide/internalguide/guider.ui:257
#, kde-format
msgid "Subframe the image around the guide star"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ditherCheck)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DitherEnabled)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:260 ekos/guide/opsguide.ui:50
#, kde-format
msgid "Dither"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rapidGuideCheck)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RapidGuideEnabled)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:297 ekos/guide/opsguide.ui:304
#, kde-format
msgid "Rapid Guide"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_3)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:342
#, kde-format
msgid "Mount guiding rate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_3)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:345
#, kde-format
msgid "Guiding rate,x15\"/sec"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, l_RecommendedGain)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:368
#, kde-format
msgid "Recommended proportional rate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_5)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:385
#, kde-format
msgid "Focal,mm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_6)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:411
#, kde-format
msgid "Aperture,mm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_8)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:457
#, kde-format
msgid "FOV,'"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_16)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:494
#, kde-format
msgid "Delta ,\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_17)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:540
#, kde-format
msgid "Pulse duration, ms"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_20)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:591
#, kde-format
msgid "Sig(RA)\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_21)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:624
#, kde-format
msgid "Sig(DEC)\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_9)
#. +> trunk5
#: ekos/guide/internalguide/guider.ui:700
#, kde-format
msgid "Enable directions"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:206
#, kde-format
msgid "Warning: Dithering failed. Autoguiding shall continue as set in the options in case of dither failure."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:256
#: ekos/guide/internalguide/rcalibration.cpp:262
#, kde-format
msgid "%1 info are missing. Please set the values in INDI Control Panel."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:257
#, kde-format
msgid "Missing Information"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:300
#: ekos/guide/internalguide/rcalibration.cpp:322
#, kde-format
msgid "Lost track of the guide star. Try increasing the square size or reducing pulse duration."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:364
#, kde-format
msgid "RA drifting forward..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:416
#, kde-format
msgid "RA drifting reverse..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:420
#: ekos/guide/internalguide/internalguider.cpp:547
#: ekos/guide/internalguide/internalguider.cpp:716
#, kde-format
msgid "Calibration rejected. Star drift is too short. Check for mount, cable, or backlash problems."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:426
#: ekos/guide/internalguide/internalguider.cpp:512
#: ekos/guide/internalguide/internalguider.cpp:554
#: ekos/guide/internalguide/internalguider.cpp:606
#: ekos/guide/internalguide/internalguider.cpp:687
#: ekos/guide/internalguide/internalguider.cpp:723
#: ekos/guide/internalguide/rcalibration.cpp:465
#: ekos/guide/internalguide/rcalibration.cpp:631
#: ekos/guide/internalguide/rcalibration.cpp:692
#: ekos/guide/internalguide/rcalibration.cpp:805
#: ekos/guide/internalguide/rcalibration.cpp:847
#, kde-format
msgid "Guiding calibration failed with errors"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:506
#, kde-format
msgid "Guide RA: Scope cannot reach the start point after %1 iteration. Possible mount or backlash problems..."
msgid_plural "GUIDE_RA: Scope cannot reach the start point after %1 iterations. Possible mount or backlash problems..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:532
#, kde-format
msgid "DEC drifting forward..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:543
#: ekos/guide/internalguide/internalguider.cpp:709
#: ekos/guide/internalguide/rcalibration.cpp:423
#: ekos/guide/internalguide/rcalibration.cpp:453
#: ekos/guide/internalguide/rcalibration.cpp:675
#: ekos/guide/internalguide/rcalibration.cpp:829
#, kde-format
msgid "Guiding calibration completed successfully"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:590
#, kde-format
msgid "DEC drifting reverse..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:599
#: ekos/guide/internalguide/internalguider.cpp:680
#, kde-format
msgid ""
"Guide DEC: Scope cannot reach the start point after %1 iteration.\n"
"Possible mount or backlash problems..."
msgid_plural ""
"GUIDE DEC: Scope cannot reach the start point after %1 iterations.\n"
"Possible mount or backlash problems..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:700
#: ekos/guide/internalguide/rcalibration.cpp:416
#: ekos/guide/internalguide/rcalibration.cpp:818
#, kde-format
msgid "DEC swap enabled."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:702
#: ekos/guide/internalguide/rcalibration.cpp:418
#: ekos/guide/internalguide/rcalibration.cpp:820
#, kde-format
msgid "DEC swap disabled."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:918
#, kde-format
msgid "Lost track of phase shift."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/internalguider.cpp:937
#, kde-format
msgid "Lost track of phase shift. Aborting guiding..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:229
#, kde-format
msgid "Cannot calibrate while autoguiding is active."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:375
#, kde-format
msgid "Stop GUIDE_RA"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:381
#, kde-format
msgid "Drift scope in RA. Press stop when done."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:402
#, kde-format
msgid "Stop GUIDE_DEC"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:403
#, kde-format
msgid "Drift scope in DEC. Press Stop when done."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:432
#: ekos/guide/internalguide/rcalibration.cpp:461
#, kde-format
msgid "Calibration rejected. Start drift is too short."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:504
#: skycomponents/satellitescomponent.cpp:154 tools/conjunctions.cpp:340
#, kde-format
msgid "Abort"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:506
#, kde-format
msgid "GUIDE_RA drifting forward..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:565
#, kde-format
msgid "GUIDE_RA drifting reverse..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:616
#: ekos/guide/internalguide/rcalibration.cpp:623
#, kde-format
msgid "GUIDE_RA: Scope cannot reach the start point after %1 iteration. Possible mount or drive problems..."
msgid_plural "GUIDE_RA: Scope cannot reach the start point after %1 iterations. Possible mount or drive problems..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:622
#: ekos/guide/internalguide/rcalibration.cpp:796
#, kde-format
msgid "Warning"
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:661
#, kde-format
msgid "GUIDE_DEC drifting forward..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:682
#: ekos/guide/internalguide/rcalibration.cpp:684
#: ekos/guide/internalguide/rcalibration.cpp:837
#: ekos/guide/internalguide/rcalibration.cpp:839
#, kde-format
msgid "Calibration rejected. Star drift is too short."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:733
#, kde-format
msgid "GUIDE_DEC drifting reverse..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:790
#: ekos/guide/internalguide/rcalibration.cpp:797
#, kde-format
msgid ""
"GUIDE_DEC: Scope cannot reach the start point after %1 iteration.\n"
"Possible mount or drive problems..."
msgid_plural ""
"GUIDE_DEC: Scope cannot reach the start point after %1 iterations.\n"
"Possible mount or drive problems..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:914
#, kde-format
msgid "Image captured..."
msgstr ""
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.cpp:931
#, kde-format
msgid "Failed to automatically select a guide star. Please select a guide star..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_29)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:40 ekos/guide/opscalibration.ui:55
#, kde-format
msgid "Pulse:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, twoAxisCheck)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TwoAxisEnabled)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:65 ekos/guide/opscalibration.ui:100
#, kde-format
msgid "Two axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, autoStarCheck)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_GuideAutoStarEnabled)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:75 ekos/guide/opscalibration.ui:110
#, kde-format
msgid "Automatically select the calibration star."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoStarCheck)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GuideAutoStarEnabled)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:78 ekos/guide/opscalibration.ui:113
#, kde-format
msgid "Auto Star"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, autoSquareSizeCheck)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_GuideAutoSquareSizeEnabled)
#. i18n: ectx: label, entry (GuideAutoSquareSizeEnabled), group (Guide)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:91
#: ekos/guide/opscalibration.ui:126 kstars.kcfg:1923
#, kde-format
msgid "Automatically select the square size based on the selected star width."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoSquareSizeCheck)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GuideAutoSquareSizeEnabled)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:94 ekos/guide/opscalibration.ui:129
#, kde-format
msgid "Auto Square Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_26)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:132
#, kde-format
msgid "reticle-X"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_27)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:139
#, kde-format
msgid "reticle-Y"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_28)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:149
#, kde-format
msgid "reticle-Angle"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoModeCheck)
#. +> trunk5
#: ekos/guide/internalguide/rcalibration.ui:204
#, kde-format
msgid "Auto mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/guide/opscalibration.ui:91
#, kde-format
msgid "Iterations:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/guide/opscalibration.ui:152
#, kde-format
msgid "Reticle"
msgstr ""
#. +> trunk5
#: ekos/guide/opsguide.cpp:38 ekos/opsekos.cpp:49
#, kde-format
msgid "You must restart KStars for this change to take effect."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_DitherEnabled)
#. +> trunk5
#: ekos/guide/opsguide.ui:47
#, kde-format
msgid "Move locked guiding square location after frame capture"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/guide/opsguide.ui:57 ekos/opsekos.ui:347
#, kde-format
msgid "frames"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, kcfg_DitherThreshold)
#. +> trunk5
#: ekos/guide/opsguide.ui:64
#, kde-format
msgid "Maximum allowable distance for guiding to be considered settled."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_DitherSettle)
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. i18n: ectx: label, entry (DitherSettle), group (Guide)
#. +> trunk5
#: ekos/guide/opsguide.ui:81 ekos/guide/opsguide.ui:161 kstars.kcfg:1959
#, kde-format
msgid "After dither is successful, wait for this many seconds before proceeding."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, kcfg_DitherPixels)
#. +> trunk5
#: ekos/guide/opsguide.ui:95
#, kde-format
msgid "Number of pixels to move the guiding square in a random direction."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideAlgorithm)
#. +> trunk5
#: ekos/guide/opsguide.ui:121
#, kde-format
msgid "Smart"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideAlgorithm)
#. +> trunk5
#: ekos/guide/opsguide.ui:126
#, kde-format
msgid "Fast"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideAlgorithm)
#. +> trunk5
#: ekos/guide/opsguide.ui:131
#, kde-format
msgid "Auto Threshold"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideAlgorithm)
#. +> trunk5
#: ekos/guide/opsguide.ui:136
#, kde-format
msgid "No Threshold"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_DitherFrames)
#. +> trunk5
#: ekos/guide/opsguide.ui:144
#, kde-format
msgid "Dither after this many captured frames in the CCD module"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_22)
#. +> trunk5
#: ekos/guide/opsguide.ui:154
#, kde-format
msgid "pixels every"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, textLabelXplanetSecondes)
#. +> trunk5
#: ekos/guide/opsguide.ui:171 ekos/guide/opsguide.ui:192
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:169
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:170
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:171
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:172
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:174
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:175
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:176
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:177
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:178 xplanet/opsxplanet.ui:249
#, kde-format
msgid "seconds"
msgid_plural "secs"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/guide/opsguide.ui:178
#, kde-format
msgid "Timeout"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_DitherTimeout)
#. +> trunk5
#: ekos/guide/opsguide.ui:185
#, kde-format
msgid "time limit for successful dither settling"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_DitherMaxIterations)
#. +> trunk5
#: ekos/guide/opsguide.ui:203 ekos/guide/opsguide.ui:213
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Maximum dithering iteration attempts before giving up</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/guide/opsguide.ui:206
#, kde-format
msgid "Maximum Dither Iterations:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_DitherFailAbortsAutoGuide)
#. +> trunk5
#: ekos/guide/opsguide.ui:241
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If checked, autoguiding is aborted when dithering fails. Otherwise, guiding resumes normally.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DitherFailAbortsAutoGuide)
#. +> trunk5
#: ekos/guide/opsguide.ui:244
#, kde-format
msgid "Dither Failure Aborts Autoguide"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_GuideRemoteImagesEnabled)
#. +> trunk5
#: ekos/guide/opsguide.ui:254
#, kde-format
msgid "For external guiders, enable receiving guide images in Ekos."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GuideRemoteImagesEnabled)
#. +> trunk5
#: ekos/guide/opsguide.ui:257
#, kde-format
msgid "Receive external guide frames"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_DitherNoGuiding)
#. +> trunk5
#: ekos/guide/opsguide.ui:266
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Perform dithering when not guiding.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DitherNoGuiding)
#. +> trunk5
#: ekos/guide/opsguide.ui:269
#, kde-format
msgid "Non-Guide Dither Pulse:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_DitherNoGuidingPulse)
#. +> trunk5
#: ekos/guide/opsguide.ui:276
#, kde-format
msgid "Pulse length in milliseconds to command mount motion in a random direction"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/guide/opsguide.ui:292
#, kde-format
msgid "ms"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/guide/opsguide.ui:317
#, kde-format
msgid "Image Guiding"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ImageGuidingEnabled)
#. +> trunk5
#: ekos/guide/opsguide.ui:323
#, kde-format
msgid "Use Image Guiding"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/guide/opsguide.ui:332
#, kde-format
msgid "Region Axis:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideRegionAxis)
#. +> trunk5
#: ekos/guide/opsguide.ui:350
#, kde-format
msgid "256"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideRegionAxis)
#. +> trunk5
#: ekos/guide/opsguide.ui:355
#, kde-format
msgid "512"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_GuideRegionAxis)
#. +> trunk5
#: ekos/guide/opsguide.ui:360
#, kde-format
msgid "1024"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mountToolBoxB)
#. +> trunk5
#: ekos/mount/mount.cpp:93 ekos/mount/mount.ui:402
#, kde-format
msgid "Mount Control"
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:184 ekos/mount/mount.cpp:549
#, kde-format
msgid "%1 guide scope"
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:272
#, kde-format
msgid "Are you sure you want to turn off mount tracking?"
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:273
#, kde-format
msgid "Mount Tracking"
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:360
#, kde-format
msgid "Telescope altitude is below minimum altitude limit of %1. Aborting motion..."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:375
#, kde-format
msgid "Telescope altitude is above maximum altitude limit of %1. Aborting motion..."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:434
#, kde-format
msgid "Error syncing telescope info. Please fill telescope aperture and focal length."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:436
#, kde-format
msgid "Error syncing telescope info. Check INDI control panel for more details."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:446
#, kde-format
msgid "Telescope info updated successfully."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:503
#, kde-format
msgctxt "Message shown in Ekos Mount module"
msgid "%1"
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:578
#, kde-format
msgid "Failed to save telescope information."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:761
#, kde-format
msgid "Warning: Overriding %1 configuration."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:884
#, kde-format
msgid "Alignment Model cleared."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:888
#, kde-format
msgid "Failed to clear Alignment Model."
msgstr ""
#. +> trunk5
#: ekos/mount/mount.cpp:903
#, kde-format
msgid "GPS driver detected. KStars and mount time and location settings are now synced to the GPS driver."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, primaryScopeGroup)
#. +> trunk5
#: ekos/mount/mount.ui:38
#, kde-format
msgid "Primary Telescope"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, guideScopeGroup)
#. +> trunk5
#: ekos/mount/mount.ui:102
#, kde-format
msgid "Guide Telescope"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/mount/mount.ui:170
#, kde-format
msgid "Configurations"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, scopeConfigCombo)
#. +> trunk5
#: ekos/mount/mount.ui:177
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Scope configuration index. You can define up to 6 different combinations of primary and secondary scopes.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, scopeConfigNameEdit)
#. +> trunk5
#: ekos/mount/mount.ui:184
#, kde-format
msgid "Configuration label"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, saveB)
#. +> trunk5
#: ekos/mount/mount.ui:204
#, kde-format
msgid "Save telescope information in configuration file"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, saveB)
#. +> trunk5
#: ekos/mount/mount.ui:207
#, kde-format
msgid "Save Telescope Info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/mount/mount.ui:277
#, kde-format
msgid "AZ"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/mount/mount.ui:294
#, kde-format
msgid "ALT"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_9)
#. +> trunk5
#: ekos/mount/mount.ui:308
#, kde-format
msgid "Hour Angle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/mount/mount.ui:311
#, kde-format
msgid "HA"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_10)
#. +> trunk5
#: ekos/mount/mount.ui:325
#, kde-format
msgid "Local Sidereal TIme"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/mount/mount.ui:328
#, kde-format
msgid "LST"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, parkB)
#. +> trunk5
#: ekos/mount/mount.ui:350
#, kde-format
msgid "Park"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, unparkB)
#. +> trunk5
#: ekos/mount/mount.ui:360
#, kde-format
msgid "UnPark"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearAlignmentModelB)
#. +> trunk5
#: ekos/mount/mount.ui:380
#, kde-format
msgid "Clear Alignment Model"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QPushButton, mountToolBoxB)
#. +> trunk5
#: ekos/mount/mount.ui:415
#, kde-format
msgid "Ctrl+S"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, trackingGroup)
#. +> trunk5
#: ekos/mount/mount.ui:425 indi/inditelescope.cpp:1050
#, kde-format
msgid "Tracking"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, trackOnB)
#. +> trunk5
#: ekos/mount/mount.ui:466
#, kde-format
msgid "ON"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, trackOffB)
#. +> trunk5
#: ekos/mount/mount.ui:499
#, kde-format
msgid "OFF"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, LimitGroup)
#. +> trunk5
#: ekos/mount/mount.ui:512 tools/scriptbuilder.cpp:724
#, kde-format
msgid "Limits"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, enableLimitsCheck)
#. +> trunk5
#: ekos/mount/mount.ui:552
#, kde-format
msgid "Enable Limits"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, minAltLabel)
#. i18n: ectx: whatsthis, entry (MinimumAltLimit), group (Mount)
#. +> trunk5
#: ekos/mount/mount.ui:562 kstars.kcfg:1469
#, kde-format
msgid "Minimum telescope altitude limit. If the telescope is below this limit, it will be commanded to stop."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, minAltLabel)
#. +> trunk5
#: ekos/mount/mount.ui:565
#, kde-format
msgid "Min. Alt:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, maxAltLabel)
#. +> trunk5
#: ekos/mount/mount.ui:575
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Maximum telescope altitude limit. If the telescope is above this limit, it will be commanded to stop.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, maxAltLabel)
#. +> trunk5
#: ekos/mount/mount.ui:578
#, kde-format
msgid "Max. Alt:"
msgstr ""
#. +> trunk5
#: ekos/opsekos.cpp:63
#, kde-format
msgid "Are you sure you want to delete all dark frames images and data?"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QTabWidget, OpsEkos)
#. +> trunk5
#: ekos/opsekos.ui:14
#, kde-format
msgid "TabWidget"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: ekos/opsekos.ui:29
#, kde-format
msgid "Configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/opsekos.ui:35
#, kde-format
msgid "Load Device Configuration:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_neverLoadConfig)
#. +> trunk5
#: ekos/opsekos.ui:42
#, kde-format
msgid "Ne&ver"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_loadConfigOnConnection)
#. +> trunk5
#: ekos/opsekos.ui:52
#, kde-format
msgid "O&n connection"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_loadDefaultConfig)
#. +> trunk5
#: ekos/opsekos.ui:59
#, kde-format
msgid "Always &load defaults"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/opsekos.ui:76
#, kde-format
msgid "Icons Orientation:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_EkosTopIcons)
#. i18n: ectx: label, entry (EkosTopIcons), group (Ekos)
#. +> trunk5
#: ekos/opsekos.ui:83 kstars.kcfg:1426
#, kde-format
msgid "Ekos modules icons are placed on the top of pages"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_EkosTopIcons)
#. +> trunk5
#: ekos/opsekos.ui:86
#, kde-format
msgid "Top"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_EkosLeftIcons)
#. +> trunk5
#: ekos/opsekos.ui:99
#, kde-format
msgid "Ekos module icons are placed to the left of pages"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_EkosLeftIcons)
#. +> trunk5
#: ekos/opsekos.ui:102
#, kde-format
msgid "Left"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_independentWindowEkos)
#. +> trunk5
#: ekos/opsekos.ui:127
#, kde-format
msgid "Make Ekos window independent from KStars main window. Requires restart to take effect."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_independentWindowEkos)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_independentWindowFITS)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_independentWindowINDI)
#. +> trunk5
#: ekos/opsekos.ui:130 fitsviewer/opsfits.ui:107 indi/opsindi.ui:382
#, kde-format
msgid "Independent Window"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, leadTimeLabel)
#. +> trunk5
#: ekos/opsekos.ui:159
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Lead time is the minimum time in minutes between jobs. The scheduler starts execution of a job before its scheduled startup time by this lead time. Early execution is useful as focusing, alignment, and guiding procedures may take prolonged periods to time to complete.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, leadTimeLabel)
#. +> trunk5
#: ekos/opsekos.ui:162
#, kde-format
msgid "Lead Time:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, preDawnLabel)
#. +> trunk5
#: ekos/opsekos.ui:172
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Do not permit jobs to be scheduled or executed past this many minutes before dawn.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, preDawnLabel)
#. +> trunk5
#: ekos/opsekos.ui:175
#, kde-format
msgid "Pre-dawn"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_PreemptiveShutdown)
#. +> trunk5
#: ekos/opsekos.ui:189
#, kde-format
msgid ""
"<html><head/><body>"
"<p>In case no scheduler job is scheduled for this many hours, perform a complete shutdown procedure and restart observatory operations once the next job is ready.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_PreemptiveShutdown)
#. +> trunk5
#: ekos/opsekos.ui:192
#, kde-format
msgid "Pre-emptive shutdown"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, kcfg_PreemptiveShutdownTime)
#. +> trunk5
#: ekos/opsekos.ui:199
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Pre-emptive shutdown hours</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ResetMountModelOnAlignFail)
#. +> trunk5
#: ekos/opsekos.ui:208
#, kde-format
msgid "Reset Mount Model On Alignment Failure"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_StopEkosAfterShutdown)
#. +> trunk5
#: ekos/opsekos.ui:215
#, kde-format
msgid "After shutdown procedure is successfully executed, stop INDI and Ekos."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_StopEkosAfterShutdown)
#. +> trunk5
#: ekos/opsekos.ui:218
#, kde-format
msgid "Stop Ekos After Shutdown"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShutdownScriptTerminatesINDI)
#. +> trunk5
#: ekos/opsekos.ui:225
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If the shutdown script terminates INDI server, enable this option so that no disconnection errors are generated.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShutdownScriptTerminatesINDI)
#. +> trunk5
#: ekos/opsekos.ui:228
#, kde-format
msgid "Shutdown Script Terminates INDI"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SortSchedulerJobs)
#. +> trunk5
#: ekos/opsekos.ui:235
#, kde-format
msgid "High priority and altitude jobs are executed first"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SortSchedulerJobs)
#. +> trunk5
#: ekos/opsekos.ui:238
#, kde-format
msgid "Sort jobs by Altitude and Priority"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/opsekos.ui:267 ekos/opsekos.ui:447
#, kde-format
msgid "° C"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: ekos/opsekos.ui:274
#, kde-format
msgid "Maximum acceptable difference between requested and measured temperature set point. When the temperature threshold is below this value, the temperature set point request is deemed successful."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/opsekos.ui:277
#, kde-format
msgid "Temperature Threshold:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, overlapUnits)
#. +> trunk5
#: ekos/opsekos.ui:307 ekos/scheduler/mosaic.ui:403
#, kde-format, no-c-format
msgid "%"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5
#: ekos/opsekos.ui:314
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set HFR Threshold percentage gain. When an autofocus operation is completed, the autofocus HFR value is increased by this threshold percentage value and stored within the capture module. If In-Sequence-Focus is engaged, the autofocus module only performs autofocusing procedure if current HFR value exceeds the capture module HFR threshold. Increase value to permit more relaxed changes in HFR values without requiring a full autofocus run.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/opsekos.ui:317
#, kde-format
msgid "HFR Threshold Modifier:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_11)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_InSequenceCheckFrames)
#. i18n: ectx: label, entry (InSequenceCheckFrames), group (Capture)
#. +> trunk5
#: ekos/opsekos.ui:324 ekos/opsekos.ui:334 kstars.kcfg:1583
#, kde-format
msgid "Run In-Sequence HFR check after this many frames."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/opsekos.ui:327
#, kde-format
msgid "In-Sequence HFR Check:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_RememberJobProgress)
#. +> trunk5
#: ekos/opsekos.ui:369
#, kde-format
msgid "When loading a sequence file, resume the sequence starting from the last captured image, if any."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_RememberJobProgress)
#. +> trunk5
#: ekos/opsekos.ui:372
#, kde-format
msgid "Remember Job Progress"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ResetMountModelAfterMeridian)
#. +> trunk5
#: ekos/opsekos.ui:382
#, kde-format
msgid "Reset Mount Model After Meridian Flip"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_SaveHFRToFile)
#. +> trunk5
#: ekos/opsekos.ui:389
#, kde-format
msgid ""
"<html><head/><body>"
"<p>In-Sequence HFR threshold value controls when the autofocus process is started. If the measured HFR value exceeds the HFR threshold, autofocus process is initiated. If the HFR threshold value is zero initially (default), then the autofocus process best HFR value is used to set the new HFR threshold, after applying the HFR threshold modifier percentage. This new HFR threshold is then used for subsequent In-Sequence focus checks. If this option is enabled, the HFR threshold value is constant and gets saved to the sequence file.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SaveHFRToFile)
#. +> trunk5
#: ekos/opsekos.ui:392
#, kde-format
msgid "Save Sequence HFR Value to File"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_useSummaryPreview)
#. +> trunk5
#: ekos/opsekos.ui:399
#, kde-format
msgid "Display received FITS in the Summary screen preview window."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useSummaryPreview)
#. +> trunk5
#: ekos/opsekos.ui:402
#, kde-format
msgid "Summary Screen Preview"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, darkLibraryTab)
#. +> trunk5
#: ekos/opsekos.ui:423
#, kde-format
msgid "Dark Library"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, clearRowB)
#. +> trunk5
#: ekos/opsekos.ui:454
#, kde-format
msgid "Remove one row from the database and delete the associated dark frame from disk"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearRowB)
#. +> trunk5
#: ekos/opsekos.ui:457
#, kde-format
msgid "Clear Row"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, clearAllB)
#. +> trunk5
#: ekos/opsekos.ui:474
#, kde-format
msgid "Remove all dark frames data and files"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearAllB)
#. +> trunk5
#: ekos/opsekos.ui:477
#, kde-format
msgid "Clear All"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, openDarksFolderB)
#. +> trunk5
#: ekos/opsekos.ui:491
#, kde-format
msgid "Open folder where dark frames are stored"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, openDarksFolderB)
#. +> trunk5
#: ekos/opsekos.ui:494
#, kde-format
msgid "Darks Folder"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/opsekos.ui:501 kstarslite/qml/modules/helpers/TimeSpinBox.qml:191
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:195
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:196
#: kstarslite/qml/modules/helpers/TimeSpinBox.qml:197
#: widgets/timespinbox.cpp:150 widgets/timespinbox.cpp:154
#: widgets/timespinbox.cpp:155 widgets/timespinbox.cpp:156
#, kde-format, kde-kuit-format
msgid "days"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_7)
#. i18n: ectx: label, entry (MaxDarkTemperatureDiff), group (DarkLibrary)
#. +> trunk5
#: ekos/opsekos.ui:508 kstars.kcfg:1456
#, kde-format
msgid "Maximum acceptable difference between current and recorded dark frame temperature set point. When the difference exceeds this value, a new dark frame shall be captured for this set point."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/opsekos.ui:511
#, kde-format
msgid "T. Threshold:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#. i18n: ectx: label, entry (DarkLibraryDuration), group (Capture)
#. +> trunk5
#: ekos/opsekos.ui:518 kstars.kcfg:1587
#, kde-format
msgid "Reuse dark frames from the dark library for this many days. If exceeded, a new dark frame shall be captured and stored for future use."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/opsekos.ui:521
#, kde-format
msgid "Dark Validity"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTableView, darkTableView)
#. +> trunk5
#: ekos/opsekos.ui:543
#, kde-format
msgid "Double click to load dark frame"
msgstr ""
#. +> trunk5
#: ekos/profileeditor.cpp:39
#, kde-format
msgid "Profile Editor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, schedulerProfileCombo)
#. +> trunk5
#: ekos/profileeditor.cpp:95 ekos/profileeditor.cpp:97
-#: ekos/scheduler/scheduler.cpp:2205 ekos/scheduler/scheduler.cpp:4833
+#: ekos/scheduler/scheduler.cpp:2207 ekos/scheduler/scheduler.cpp:4848
#: ekos/scheduler/scheduler.ui:282 skycomponents/flagcomponent.cpp:44
#, kde-format
msgid "Default"
msgstr ""
#. +> trunk5
#: ekos/profileeditor.cpp:96 ekos/profileeditor.cpp:98
#, kde-format
msgid "Use scope data from INDI"
msgstr ""
#. +> trunk5
#: ekos/profileeditor.cpp:143
#, kde-format
msgid "Cannot save an empty profile!"
msgstr ""
#. +> trunk5
#: ekos/profileeditor.cpp:560
#, kde-format
msgid "<nobr>Available as <b>Remote</b> Driver. To use locally, install the corresponding driver.<nobr/>"
msgstr ""
#. +> trunk5
#: ekos/profileeditor.cpp:562
#, kde-format
msgid "<nobr><b>Label</b>: %1 &#9473; <b>Driver</b>: %2 &#9473; <b>Exec</b>: %3<nobr/>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, profileGroup)
#. +> trunk5
#: ekos/profileeditor.ui:32
#, kde-format
msgid "Profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, profileNameLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: ekos/profileeditor.ui:55 indi/indihostconf.ui:20 tools/altvstime.ui:54
#: tools/argfindobject.ui:21
#, kde-format
msgid "Name:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, autoConnectCheck)
#. +> trunk5
#: ekos/profileeditor.ui:65
#, kde-format
msgid ""
"<html><head/><body>"
"<p>After establishing connection with INDI server, automatically connect all devices.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoConnectCheck)
#. +> trunk5
#: ekos/profileeditor.ui:68
#, kde-format
msgid "Auto Connect"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, loadSiteCheck)
#. +> trunk5
#: ekos/profileeditor.ui:81
#, kde-format
msgid "Load current site settings when Ekos is online. This option should only be used when connecting to a remote geographic site."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, loadSiteCheck)
#. +> trunk5
#: ekos/profileeditor.ui:84
#, kde-format
msgid "Site Info"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, INDIWebManagerPort)
#. +> trunk5
#: ekos/profileeditor.ui:117
#, kde-format
msgid "INDI Web Manager port"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, INDIWebManagerPort)
#. +> trunk5
#: ekos/profileeditor.ui:120
#, kde-format
msgid "8624"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, remotePortLabel)
#. i18n: ectx: property (text), widget (QLabel, INDIWebManagerPortLabel)
#. i18n: ectx: property (text), widget (QLabel, externalGuidePortLabel)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5
#: ekos/profileeditor.ui:130 ekos/profileeditor.ui:169
#: ekos/profileeditor.ui:290 ekos/profilewizard.ui:508
#: ekos/profilewizard.ui:697 indi/indihostconf.ui:40
#, kde-format
msgid "Port:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, openWebManagerB)
#. +> trunk5
#: ekos/profileeditor.ui:140
#, kde-format
msgid "Open Web Manager in browser"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, openWebManagerB)
#. +> trunk5
#: ekos/profileeditor.ui:143
#, kde-format
msgid "Web Manager"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, guidingTypeLabel)
#. +> trunk5
#: ekos/profileeditor.ui:159
#, kde-format
msgid "Guiding:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, modeLabel)
#. +> trunk5
#: ekos/profileeditor.ui:176
#, kde-format
msgid "Mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, remoteHostLabel)
#. i18n: ectx: property (text), widget (QLabel, externalGuideHostLabel)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: ekos/profileeditor.ui:186 ekos/profileeditor.ui:280
#: ekos/profilewizard.ui:494 ekos/profilewizard.ui:673 indi/indihostconf.ui:30
#, kde-format
msgid "Host:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, INDIWebManagerCheck)
#. +> trunk5
#: ekos/profileeditor.ui:209
#, kde-format
msgid "Store profile on remote INDI Web Manager. Use INDI Web Manager on the remote device to start/stop INDI server."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, INDIWebManagerCheck)
#. +> trunk5
#: ekos/profileeditor.ui:212
#, kde-format
msgid "INDI Web Manager"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, remotePort)
#. +> trunk5
#: ekos/profileeditor.ui:228
#, kde-format
msgid "Remote INDI Server Port"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, remotePort)
#. i18n: ectx: property (text), widget (QLineEdit, remotePortEdit)
#. i18n: ectx: property (text), widget (QLineEdit, stellarMatePort)
#. +> trunk5
#: ekos/profileeditor.ui:231 ekos/profilewizard.ui:515
#: ekos/profilewizard.ui:704
#, kde-format
msgid "7624"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, externalGuideHost)
#. +> trunk5
#: ekos/profileeditor.ui:247
#, kde-format
msgid "localhost"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, remoteMode)
#. +> trunk5
#: ekos/profileeditor.ui:254
#, kde-format
msgid "Re&mote"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, localMode)
#. +> trunk5
#: ekos/profileeditor.ui:297
#, kde-format
msgid "&Local"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, guideTypeCombo)
#. +> trunk5
#: ekos/profileeditor.ui:308
#, kde-format
msgid "Internal"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, guideTypeCombo)
#. i18n: ectx: property (text), widget (QRadioButton, usePHD2R)
#. +> trunk5
#: ekos/profileeditor.ui:313 ekos/profilewizard.ui:1064
#, kde-format
msgid "PHD2"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, guideTypeCombo)
#. +> trunk5
#: ekos/profileeditor.ui:318
#, kde-format
msgid "LinGuider"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/profileeditor.ui:331
#, kde-format
msgid "Select Devices"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_15)
#. +> trunk5
#: ekos/profileeditor.ui:337
#, kde-format
msgid "Auxliary #3"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5
#: ekos/profileeditor.ui:340
#, kde-format
msgid "Aux 3:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_17)
#. +> trunk5
#: ekos/profileeditor.ui:373
#, kde-format
msgid "Auxliary #4"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/profileeditor.ui:376
#, kde-format
msgid "Aux 4:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_12)
#. +> trunk5
#: ekos/profileeditor.ui:383
#, kde-format
msgid "Adaptive Optics"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/profileeditor.ui:386
#, kde-format
msgid "AO:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_14)
#. +> trunk5
#: ekos/profileeditor.ui:393
#, kde-format
msgid "Auxliary #2"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/profileeditor.ui:396
#, kde-format
msgid "Aux 2:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_11)
#. +> trunk5
#: ekos/profileeditor.ui:443
#, kde-format
msgid "Weather Station"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/profileeditor.ui:446 oal/execute.ui:65
#, kde-format
msgid "Weather:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/profileeditor.ui:453
#, kde-format
msgid "Mount:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5
#: ekos/profileeditor.ui:480
#, kde-format
msgid "Dome:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_16)
#. +> trunk5
#: ekos/profileeditor.ui:487
#, kde-format
msgid "Auxliary #1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5
#: ekos/profileeditor.ui:490
#, kde-format
msgid "Aux 1:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/profileeditor.ui:601
#, kde-format
msgid "Select Telescopes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/profileeditor.ui:622
#, kde-format
msgid "Primary:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/profileeditor.ui:639
#, kde-format
msgid "Guide:"
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:125
#, kde-format
msgid "Invalid port!"
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:131 ekos/profilewizard.cpp:162
#, kde-format
msgid "Host name cannot be empty!"
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:218
#, kde-format
msgid "Profile name cannot be empty!"
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:270
#, kde-format
msgid "Detecting StellarMate..."
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:271
#, kde-format
msgid "Please wait while searching for StellarMate..."
msgstr ""
#. +> trunk5
#: ekos/profilewizard.cpp:296
#, kde-format
msgid "Failed to detect any StellarMate gadget. Make sure it is powered and on the same network."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, ProfileWizard)
#. +> trunk5
#: ekos/profilewizard.ui:26
#, kde-format
msgid "Ekos Profile Wizard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, intoPageLabel)
#. +> trunk5
#: ekos/profilewizard.ui:119
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Welcome to the <span style=\" font-weight:600;\">Ekos Profile Wizard!</span></p>"
"<p>Ekos is the premier observatory control and automation platform. With Ekos, you can capture images and gather scientific data with ease. This Wizard will help you create your equipment profile. You will be asked to verify some basic information. </p>"
"<p>Please click <span style=\" font-weight:600;\">next</span> to continue. </p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5
#: ekos/profilewizard.ui:214
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Online Resources:</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, INDIInfoB)
#. +> trunk5
#: ekos/profilewizard.ui:243
#, kde-format
msgid ""
"What is\n"
"INDI?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, discoverEkosB)
#. +> trunk5
#: ekos/profilewizard.ui:266
#, kde-format
msgid ""
"Discover\n"
"Ekos"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, videoTutorialsB)
#. +> trunk5
#: ekos/profilewizard.ui:289
#, kde-format
msgid ""
"Video\n"
"Tutorials"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/profilewizard.ui:335
#, kde-format
msgid "Where is your equipment connected?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, localEquipmentB)
#. +> trunk5
#: ekos/profilewizard.ui:358
#, kde-format
msgid ""
"Equipment is attached\n"
"to this computer"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, remoteEquipmentB)
#. +> trunk5
#: ekos/profilewizard.ui:401
#, kde-format
msgid ""
"Equipment is attached\n"
"to a remote computer"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, stellarMateEquipmentB)
#. +> trunk5
#: ekos/profilewizard.ui:441
#, kde-format
msgid ""
"Equipment is attached\n"
"to StellarMate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: ekos/profilewizard.ui:485
#, kde-format
msgid "Enter the remote computer information:"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, remoteHostEdit)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, stellarMateHost)
#. +> trunk5
#: ekos/profilewizard.ui:501 ekos/profilewizard.ui:683
#, kde-format
msgid "Enter IP address or host name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/profilewizard.ui:530
#, kde-format
msgid ""
"<html><head/><body>"
"<p><a href=\"https://github.com/knro/indiwebmanager\"><span style=\" text-decoration: underline; color:#007af4;\">INDI Web Manager</span></a> running on the Remote Computer?</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, webManagerNotSureB)
#. +> trunk5
#: ekos/profilewizard.ui:556
#, kde-format
msgid "Not Sure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5
#: ekos/profilewizard.ui:586
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Tip</span>: <span style=\" font-style:italic;\">INDI Web Manager</span> is a service that runs on remote devices to help you start and stop INDI services remotely.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/profilewizard.ui:661
#, kde-format
msgid "Enter StellarMate host name. If you do not know, click Auto Detect:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, stellarMateHost)
#. +> trunk5
#: ekos/profilewizard.ui:680
#, kde-format
msgid "stellarmate.local"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, stellarMateAutoDetectB)
#. +> trunk5
#: ekos/profilewizard.ui:690
#, kde-format
msgid "Auto Detect"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/profilewizard.ui:768
#, kde-format
msgid ""
"<html><head/><body>"
"<p>To use Ekos with your equipment locally on Windows, you need to download and install <a href=\"http://www.cloudmakers.eu/windi/\"><span style=\" text-decoration: underline; color:#007af4;\">INDI Server for Windows</span></a>.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: ekos/profilewizard.ui:805
#, kde-format
msgid ""
"<html><head/><body>"
"<p>After installing <span style=\" font-style:italic;\">INDI Server for Windows (wINDI)</span>, establish connection with your equipment. wINDI requires <a href=\"http://www.ascom-standards.org/\"><span style=\" text-decoration: underline; color:#007af4;\">ASCOM</span></a> drivers for all your equipment, so make sure to install all necessary ASCOM drivers for your gear.</p>"
"<p>After successfully starting INDI Server in wINDI, click <span style=\" font-weight:600;\">Ready</span> to continue.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5
#: ekos/profilewizard.ui:825
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Tip</span>: INDI Server for Windows functionality is limited compared to the native INDI drivers on Linux. It is recommended to install native INDI on an embedded Linux device such as <a href=\"http://indilib.org/support/tutorials/169-ekos-on-raspberry-pi-complete-guide.html\"><span style=\" text-decoration: underline; color:#007af4;\">Raspberry PI</span></a>.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, windowsReadyB)
#. +> trunk5
#: ekos/profilewizard.ui:862
#, kde-format
msgid "Ready"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/profilewizard.ui:897
#, kde-format
msgid "Which INDI Server do you want to use?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, useInternalINDIB)
#. +> trunk5
#: ekos/profilewizard.ui:920
#, kde-format
msgid ""
"Internal INDI\n"
"Server"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, useExternalINDIB)
#. +> trunk5
#: ekos/profilewizard.ui:955
#, kde-format
msgid ""
"External INDI\n"
"Server"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/profilewizard.ui:979
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Tip</span>: External INDI Server can be <a href=\"http://www.cloudmakers.eu/indiserver/\"><span style=\" text-decoration: underline; color:#007af4;\">INDI Server for OSX</span></a> or an INDI Server launched manually locally. If unsure, select Internal INDI Server.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/profilewizard.ui:1001
#, kde-format
msgid ""
"<html><head/><body>"
"<p>You're almost done...</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5
#: ekos/profilewizard.ui:1014
#, kde-format
msgid ""
"<html><head/><body>"
"<p>What do you want to name your profile?</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, profileNameEdit)
#. +> trunk5
#: ekos/profilewizard.ui:1030
#, kde-format
msgid "My Astro Gear"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5
#: ekos/profilewizard.ui:1045
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Which guider application do you want to use?</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, useInternalGuiderR)
#. +> trunk5
#: ekos/profilewizard.ui:1054
#, kde-format
msgid "Internal Guider"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, useLinGuiderR)
#. +> trunk5
#: ekos/profilewizard.ui:1071
#, kde-format
msgid "Lin Guider"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5
#: ekos/profilewizard.ui:1098
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Tip</span>: Internal Guider is recommended. Using external guider applications requires additional setup instructions outside the scope of Ekos.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5
#: ekos/profilewizard.ui:1117
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Do you want to select additional services?</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useJoystickCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1131
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use INDI Joystick driver to enable control of mounts, domes, and focusers with any compatible game pad.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useJoystickCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1134
#, kde-format
msgid "Joystick"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useRemoteAstrometryCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1144
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If the remote computer has astrometry.net installed, you can run the remote astrometry driver and use it to solve images in Ekos Align module.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useRemoteAstrometryCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1147
#, kde-format
msgid "Remote Astrometry"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useWatchDogCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1157
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use the INDI WatchDog driver. It monitors connection between your remote equipment and Ekos. If the communication is lost between the two, the WatchDog driver goes into safe mode and executes a shutdown procedure to protect your equipment.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useWatchDogCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1160
#, kde-format
msgid "Watch Dog"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, useSkySafariCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1167
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If you plan to use SkySafari to monitor and/or control your mount, check this box to start INDI SkySafari Server. You can connect SkySafari to this server and it shall enable you to connect and control your mount. For more details, please check the <a href=\"http://indilib.org/devices/telescopes/skysafari.html\"><span style=\" text-decoration: underline; color:#007af4;\">INDI SkySafari Documentation.</span></a></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useSkySafariCheck)
#. +> trunk5
#: ekos/profilewizard.ui:1170
#, kde-format
msgid "SkySafari"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, createProfileB)
#. +> trunk5
#: ekos/profilewizard.ui:1204
#, kde-format
msgid ""
"Create Profile &&\n"
"Select Devices"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, mosaicDialog)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:14
#, kde-format
msgid "Mosaic Job Creator"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, equipmentGroup)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:30
#, kde-format
msgid "1. Equipment"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:57
#, kde-format
msgid "um"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, cameraWFOVLabel)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, targetFOVWLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:66 ekos/scheduler/mosaic.ui:160
#: ekos/scheduler/mosaic.ui:351 ekos/scheduler/mosaic.ui:375
#: ekos/scheduler/mosaic.ui:479
#: kstarslite/qml/indi/modules/MotionControl.qml:141
#, kde-format, kde-kuit-format
msgid "W"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:128
#, kde-format
msgid "Mount focal length in millimeters"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:131 oal/equipmentwriter.ui:158
#: oal/equipmentwriter.ui:312
#, kde-format
msgid "Focal Length:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_11)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:138
#, kde-format
msgid "Camera pixel size in microns"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:141
#, kde-format
msgid "Pixel Size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_8)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:148
#, kde-format
msgid "Camera frame width and height in pixels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:151
#, kde-format
msgid "Camera:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:208
#, kde-format
msgid "Camera's rotation angle (East of North) in degrees. To measure the angle, solve an image and use the astrometry solver solution's rotation angle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:231
#, kde-format
msgid "E of N"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, fovGroup)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:244
#, kde-format
msgid "2. FOV"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, cameraFOVLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:253
#, kde-format
msgid "Camera FOV in arc minutes as determined from equipment parameters above"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cameraFOVLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:256
#, kde-format
msgid "Camera FOV:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:263
#, kde-format
msgid "Specify the number of rows and columns of the final mosaic image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:266
#, kde-format
msgid "Mosaic Grid:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, targetFOVLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:299
#, kde-format
msgid "Final mosaic field of view size in arc minutes. Click update to calculate it or enter it manually."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, targetFOVLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:302
#, kde-format
msgid "Mosaic FOV:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, overlapLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:440
#, kde-format
msgid "Percentage of overlap between two neighbouring images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, overlapLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:443
#, kde-format
msgid "Overlap:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:501
#, kde-format
msgid "3. Output"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, jobCountLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:512
#, kde-format
msgid "Number of scheduler jobs required to capture the mosaic image. Click update to calculate it"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, jobCountLabel)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:515
#, kde-format
msgid "Job Count:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_18)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:552
#, kde-format
msgid "Directory to save sequence images"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, updateB)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:600
#, kde-format
msgid "Calculate target FOV and number of jobs required to capture the mosaic"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, updateB)
#. i18n: ectx: property (text), widget (QPushButton, updateButton)
#. i18n: ectx: property (text), widget (QPushButton, Update)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:603 tools/altvstime.ui:535
#: tools/observinglist.ui:222
#, kde-format
msgid "Update"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetB)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:610
#, kde-format
msgid "Reset all parameters"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, createJobsB)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:636
#, kde-format
msgid "Create scheduler jobs to capture the mosaic image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, createJobsB)
#. +> trunk5
#: ekos/scheduler/mosaic.ui:639
#, kde-format
msgid "Create Jobs"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:124 ekos/scheduler/scheduler.cpp:756
#, kde-format
msgid "Add observation job to list."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:128
#, kde-format
msgid "Remove observation job from list."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:302
#, kde-format
msgid "Select FITS Image"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:322
#, kde-format
msgid "Select Sequence Queue"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:322
#, kde-format
msgid "Ekos Sequence Queue (*.esq)"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:344
#, kde-format
msgid "Select Startup Script"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:344 ekos/scheduler/scheduler.cpp:356
#, kde-format
msgid "Script (*)"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:356
#, kde-format
msgid "Select Shutdown Script"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:382 ekos/scheduler/scheduler.cpp:621
#, kde-format
msgid "You cannot add or modify a job while the scheduler is running."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:390
#, kde-format
msgid "Target name is required."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:396
#, kde-format
msgid "Sequence file is required."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:403
#, kde-format
msgid "Target coordinates are required."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:425 ekos/scheduler/scheduler.cpp:4455
+#: ekos/scheduler/scheduler.cpp:425 ekos/scheduler/scheduler.cpp:4470
#, kde-format
msgid "RA value %1 is invalid."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:431 ekos/scheduler/scheduler.cpp:4461
+#: ekos/scheduler/scheduler.cpp:431 ekos/scheduler/scheduler.cpp:4476
#, kde-format
msgid "DEC value %1 is invalid."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:593
#, kde-format
msgid "You cannot reset a job while the scheduler is running."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:611
#, kde-format
msgid "Job %1 status is reset."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:736
#, kde-format
msgid "Exit edit mode"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:748
#, kde-format
msgid "Edit mode cancelled."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:858
#, kde-format
msgid "Scheduler aborted."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:902
#, kde-format
msgid "Scheduler is in shutdown until next job is ready"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, startB)
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:919 ekos/scheduler/scheduler.ui:661
#, kde-format
msgid "Start Scheduler"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:937
#, kde-format
msgid "Scheduler resumed."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:941 ekos/scheduler/scheduler.cpp:967
#, kde-format
msgid "Stop Scheduler"
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:948
#, kde-format
msgid "Startup script URL %1 is not valid."
msgstr ""
#. +> trunk5
#: ekos/scheduler/scheduler.cpp:955
#, kde-format
msgid "Shutdown script URL %1 is not valid."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1003
+#: ekos/scheduler/scheduler.cpp:1005
#, kde-format
msgid "Scheduler paused."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1007
+#: ekos/scheduler/scheduler.cpp:1009
#, kde-format
msgid "Resume Scheduler"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1024
+#: ekos/scheduler/scheduler.cpp:1026
#, kde-format
msgid "%1 observation job has no more runs remaining."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1081
+#: ekos/scheduler/scheduler.cpp:1083
#, kde-format
msgid "Ekos failed to schedule %1."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1087
+#: ekos/scheduler/scheduler.cpp:1089
#, kde-format
msgid "%1 observation job is due to run as soon as possible."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1094
+#: ekos/scheduler/scheduler.cpp:1096
#, kde-format
msgid "%1 observation job is scheduled at %2"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1112
+#: ekos/scheduler/scheduler.cpp:1114
#, kde-format
msgid "%1 completion time (%2) is earlier than start up time (%3)"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1127
+#: ekos/scheduler/scheduler.cpp:1129
#, kde-format
msgid "%1 startup time already passed by %2. Job is marked as invalid."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1133
+#: ekos/scheduler/scheduler.cpp:1135
#, kde-format
msgid "%1 startup time already passed by %2. Aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1153 ekos/scheduler/scheduler.cpp:1191
+#: ekos/scheduler/scheduler.cpp:1155 ekos/scheduler/scheduler.cpp:1193
#, kde-format
msgid "%1 observation job evaluation failed with a score of %2. Aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1161
+#: ekos/scheduler/scheduler.cpp:1163
#, kde-format
msgid "%1 observation job updated score is %2. Aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1164
+#: ekos/scheduler/scheduler.cpp:1166
#, kde-format
msgid "%1 observation job updated score is %2 %3 seconds after startup time. Aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1246
+#: ekos/scheduler/scheduler.cpp:1248
#, kde-format
msgid "No valid jobs found, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1252
+#: ekos/scheduler/scheduler.cpp:1254
#, kde-format
msgid "%1 job is invalid."
msgid_plural "%1 jobs are invalid."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1255
+#: ekos/scheduler/scheduler.cpp:1257
#, kde-format
msgid "%1 job aborted."
msgid_plural "%1 jobs aborted"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1258
+#: ekos/scheduler/scheduler.cpp:1260
#, kde-format
msgid "%1 job completed."
msgid_plural "%1 jobs completed."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1262
+#: ekos/scheduler/scheduler.cpp:1264
#, kde-format
msgid "Scheduler complete. Starting shutdown procedure..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1332
+#: ekos/scheduler/scheduler.cpp:1334
#, kde-format
msgid "Observation jobs %1 and %2 have close start up times. %2 is rescheduled to %3."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1341
+#: ekos/scheduler/scheduler.cpp:1343
#, kde-format
msgid "Job evaluation complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1399
+#: ekos/scheduler/scheduler.cpp:1401
#, kde-format
msgid "Found candidate job %1 (Priority #%2)."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1432
+#: ekos/scheduler/scheduler.cpp:1434
#, kde-format
msgid "%1 observation job is scheduled for execution at %2. Observatory is scheduled for shutdown until next job is ready."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1454
+#: ekos/scheduler/scheduler.cpp:1456
#, kde-format
msgid "%1 observation job is scheduled for execution at %2. Parking the mount until the job is ready."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1463
+#: ekos/scheduler/scheduler.cpp:1465
#, kde-format
msgid "Scheduler is going into sleep mode..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1466
+#: ekos/scheduler/scheduler.cpp:1468
#, kde-format
msgid "Scheduler is in sleep mode"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1490
+#: ekos/scheduler/scheduler.cpp:1492
#, kde-format
msgid "Scheduler is awake."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1496
+#: ekos/scheduler/scheduler.cpp:1498
#, kde-format
msgid "Scheduler is awake. Jobs shall be started when ready..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1498
+#: ekos/scheduler/scheduler.cpp:1500
#, kde-format
msgid "Scheduler is awake. Jobs shall be started when scheduler is resumed."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1558
+#: ekos/scheduler/scheduler.cpp:1560
#, kde-format
msgid "%1 reaches an altitude of %2 degrees at %3 but will not be scheduled due to close proximity to astronomical twilight rise."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1569
+#: ekos/scheduler/scheduler.cpp:1571
#, kde-format
msgid "%1 is scheduled to start at %2 where its altitude is %3 degrees."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1577
+#: ekos/scheduler/scheduler.cpp:1579
#, kde-format
msgid "No night time found for %1 to rise above minimum altitude of %2 degrees."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1580
+#: ekos/scheduler/scheduler.cpp:1582
#, kde-format
msgid "No night time found for %1 to rise above minimum altitude of %2 degrees with minimum moon separation of %3 degrees."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1603
+#: ekos/scheduler/scheduler.cpp:1605
#, kde-format
msgid "%1 Transit time is %2"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1612
+#: ekos/scheduler/scheduler.cpp:1614
#, kde-format
msgid "%1 Observation time is %2 adjusted for %3 minute."
msgid_plural "%1 Observation time is %2 adjusted for %3 minutes."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1618
+#: ekos/scheduler/scheduler.cpp:1620
#, kde-format
msgid "%1 culminates during the day and cannot be scheduled for observation."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1624
+#: ekos/scheduler/scheduler.cpp:1626
#, kde-format
msgid "Observation time for %1 already passed."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1649
+#: ekos/scheduler/scheduler.cpp:1651
#, kde-format
msgid "Weather conditions are OK."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1653
+#: ekos/scheduler/scheduler.cpp:1655
#, kde-format
msgid "Warning! Weather conditions are in the WARNING zone."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1657
+#: ekos/scheduler/scheduler.cpp:1659
#, kde-format
msgid "Caution! Weather conditions are in the DANGER zone!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1664
+#: ekos/scheduler/scheduler.cpp:1666
#, kde-format
msgid "Warning: Ekos did not receive any weather updates for the last %1 minutes."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1685
+#: ekos/scheduler/scheduler.cpp:1687
#, kde-format
msgid "Weather conditions in warning zone"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1693
+#: ekos/scheduler/scheduler.cpp:1695
#, kde-format
msgid "Weather conditions are critical. Observatory shutdown is imminent"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1709
+#: ekos/scheduler/scheduler.cpp:1711
#, kde-format
msgid "Starting shutdown procedure due to severe weather."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1762
+#: ekos/scheduler/scheduler.cpp:1764
#, kde-format
msgid "Dark sky score is %1 for time %2"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1820
+#: ekos/scheduler/scheduler.cpp:1822
#, kde-format
msgid "%1 altitude at %2 is %3 degrees. %1 altitude score is %4."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1903
+#: ekos/scheduler/scheduler.cpp:1905
#, kde-format
msgid "%1 Moon score %2 (separation %3)."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1921
+#: ekos/scheduler/scheduler.cpp:1923
#, kde-format
msgid "Astronomical twilight rise is at %1, set is at %2, and current time is %3"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1941
+#: ekos/scheduler/scheduler.cpp:1943
#, kde-format
msgid "Ekos job started (%1)"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1988
+#: ekos/scheduler/scheduler.cpp:1990
#, kde-format
msgid "Ekos started."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:1994
+#: ekos/scheduler/scheduler.cpp:1996
#, kde-format
msgid "Ekos failed to start."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2001
+#: ekos/scheduler/scheduler.cpp:2003
#, kde-format
msgid "Ekos timed out."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2014
+#: ekos/scheduler/scheduler.cpp:2016
#, kde-format
msgid "Ekos stopped."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2069
+#: ekos/scheduler/scheduler.cpp:2071
#, kde-format
msgid "INDI devices connected."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2077 ekos/scheduler/scheduler.cpp:2091
+#: ekos/scheduler/scheduler.cpp:2079 ekos/scheduler/scheduler.cpp:2093
#, kde-format
msgid "One or more INDI devices failed to connect. Retrying..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2082
+#: ekos/scheduler/scheduler.cpp:2084
#, kde-format
msgid "INDI devices failed to connect. Check INDI control panel for details."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2096
+#: ekos/scheduler/scheduler.cpp:2098
#, kde-format
msgid "INDI devices connection timed out. Check INDI control panel for details."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2110
+#: ekos/scheduler/scheduler.cpp:2112
#, kde-format
msgid "INDI devices disconnected."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2185
+#: ekos/scheduler/scheduler.cpp:2187
#, kde-format
msgid "Observatory is in the startup process"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2196
+#: ekos/scheduler/scheduler.cpp:2198
#, kde-format
msgid "Ekos is already started, skipping startup script..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2295
+#: ekos/scheduler/scheduler.cpp:2297
#, kde-format
msgid "Observatory is in the shutdown process"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2318
+#: ekos/scheduler/scheduler.cpp:2320
#, kde-format
msgid "Warming up CCD..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2452
+#: ekos/scheduler/scheduler.cpp:2454
#, kde-format
msgid "park/unpark wait procedure failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2463
+#: ekos/scheduler/scheduler.cpp:2465
#, kde-format
msgid "Executing script %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2493
+#: ekos/scheduler/scheduler.cpp:2495
#, kde-format
msgid "Startup script failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2498
+#: ekos/scheduler/scheduler.cpp:2500
#, kde-format
msgid "Shutdown script failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2537
+#: ekos/scheduler/scheduler.cpp:2539
#, kde-format
msgid "Shutdown complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2539
+#: ekos/scheduler/scheduler.cpp:2541
#, kde-format
msgid "Shutdown procedure failed, aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2627
+#: ekos/scheduler/scheduler.cpp:2629
#, kde-format
msgid "%1 current altitude (%2 degrees) crossed minimum constraint altitude (%3 degrees), aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2653
+#: ekos/scheduler/scheduler.cpp:2655
#, kde-format
msgid "Current moon separation (%1 degrees) is lower than %2 minimum constraint (%3 degrees), aborting job..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2674
+#: ekos/scheduler/scheduler.cpp:2676
#, kde-format
msgid "Approaching astronomical twilight rise limit at %1 (%2 minutes safety margin), aborting all jobs..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2708 ekos/scheduler/scheduler.cpp:2741
-#: ekos/scheduler/scheduler.cpp:2801 ekos/scheduler/scheduler.cpp:2854
-#: ekos/scheduler/scheduler.cpp:2886 ekos/scheduler/scheduler.cpp:2931
+#: ekos/scheduler/scheduler.cpp:2710 ekos/scheduler/scheduler.cpp:2743
+#: ekos/scheduler/scheduler.cpp:2803 ekos/scheduler/scheduler.cpp:2856
+#: ekos/scheduler/scheduler.cpp:2888 ekos/scheduler/scheduler.cpp:2933
#, kde-format
msgid "Connection to INDI is lost. Aborting..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2719
+#: ekos/scheduler/scheduler.cpp:2721
#, kde-format
msgid "%1 slew is complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2726 ekos/scheduler/scheduler.cpp:2869
+#: ekos/scheduler/scheduler.cpp:2728 ekos/scheduler/scheduler.cpp:2871
#, kde-format
msgid "%1 slew failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2754
+#: ekos/scheduler/scheduler.cpp:2756
#, kde-format
msgid "%1 focusing is complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2765
+#: ekos/scheduler/scheduler.cpp:2767
#, kde-format
msgid "%1 focusing failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2769
+#: ekos/scheduler/scheduler.cpp:2771
#, kde-format
msgid "Restarting %1 focusing procedure..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2812
+#: ekos/scheduler/scheduler.cpp:2814
#, kde-format
msgid "%1 alignment is complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2820
+#: ekos/scheduler/scheduler.cpp:2822
#, kde-format
msgid "%1 alignment failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2826
+#: ekos/scheduler/scheduler.cpp:2828
#, kde-format
msgid "Restarting %1 alignment procedure..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2862
+#: ekos/scheduler/scheduler.cpp:2864
#, kde-format
msgid "%1 repositioning is complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2897
+#: ekos/scheduler/scheduler.cpp:2899
#, kde-format
msgid "%1 guiding is in progress..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2906
+#: ekos/scheduler/scheduler.cpp:2908
#, kde-format
msgid "%1 guiding failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2908
+#: ekos/scheduler/scheduler.cpp:2910
#, kde-format
msgid "%1 calibration failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2912 ekos/scheduler/scheduler.cpp:2953
+#: ekos/scheduler/scheduler.cpp:2914 ekos/scheduler/scheduler.cpp:2955
#, kde-format
msgid "Restarting %1 guiding procedure..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2939
+#: ekos/scheduler/scheduler.cpp:2941
#, kde-format
msgid "%1 capture failed!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:2969
+#: ekos/scheduler/scheduler.cpp:2971
#, kde-format
msgid "Ekos job (%1) - Capture finished"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3009
+#: ekos/scheduler/scheduler.cpp:3011
#, kde-format
msgid "Proceeding directly to capture stage because only calibration frames are pending."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3109
+#: ekos/scheduler/scheduler.cpp:3111
#, kde-format
msgid "Open Ekos Scheduler List"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3386
+#: ekos/scheduler/scheduler.cpp:3388
#, kde-format
msgid "Save Ekos Scheduler List"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3404
+#: ekos/scheduler/scheduler.cpp:3406
#, kde-format
msgid "Failed to save scheduler list"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3525
+#: ekos/scheduler/scheduler.cpp:3527
#, kde-format
msgid "Scheduler list saved to %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3541
+#: ekos/scheduler/scheduler.cpp:3543
#, kde-format
msgid "Slewing to %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3570
+#: ekos/scheduler/scheduler.cpp:3572
#, kde-format
msgid "canAutoFocus DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3576
+#: ekos/scheduler/scheduler.cpp:3578
#, kde-format
msgid "Autofocus is not supported."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3592
+#: ekos/scheduler/scheduler.cpp:3594
#, kde-format
msgid "resetFrame DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3604
+#: ekos/scheduler/scheduler.cpp:3606
#, kde-format
msgid "setAutoFocusStar DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3612
+#: ekos/scheduler/scheduler.cpp:3614
#, kde-format
msgid "startFocus DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3629
+#: ekos/scheduler/scheduler.cpp:3631
#, kde-format
msgid "Focusing %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3640
+#: ekos/scheduler/scheduler.cpp:3642
#, kde-format
msgid "%1 observation job terminated due to errors."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3681
+#: ekos/scheduler/scheduler.cpp:3683
#, kde-format
msgid "%1 observation job is complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3692
+#: ekos/scheduler/scheduler.cpp:3694
#, kde-format
msgid "Repeating %1 observation job. %2 runs remaining."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3717
+#: ekos/scheduler/scheduler.cpp:3719
#, kde-format
msgid "%1 observation job reached completion time with #%2 batch done. Stopping..."
msgid_plural "%1 observation job reached completion time with #%2 batches done. Stopping..."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3732
+#: ekos/scheduler/scheduler.cpp:3734
#, kde-format
msgid "%1 observation job completed and will restart now..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3763
+#: ekos/scheduler/scheduler.cpp:3765
#, kde-format
msgid "loadAndSlew DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3768
+#: ekos/scheduler/scheduler.cpp:3770
#, kde-format
msgid "Solving %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3774
+#: ekos/scheduler/scheduler.cpp:3776
#, kde-format
msgid "captureAndSolve DBUS error: %1"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3778
+#: ekos/scheduler/scheduler.cpp:3780
#, kde-format
msgid "Capturing and solving %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3801
+#: ekos/scheduler/scheduler.cpp:3803
#, kde-format
msgid "Starting guiding procedure for %1 ..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3830
+#: ekos/scheduler/scheduler.cpp:3832
#, kde-format
msgid "Ekos job (%1) - Capture started"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3833
+#: ekos/scheduler/scheduler.cpp:3835
#, kde-format
msgid "%1 capture is in progress (Batch #%2)..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3835
+#: ekos/scheduler/scheduler.cpp:3837
#, kde-format
msgid "%1 capture is in progress..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3901
+#: ekos/scheduler/scheduler.cpp:3903
#, kde-format
msgid "Cannot estimate time since the sequence saves the files remotely."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:3978
+#: ekos/scheduler/scheduler.cpp:3993
#, kde-format
msgid "%1 observation job is already complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4003
+#: ekos/scheduler/scheduler.cpp:4018
#, kde-format
msgid "%1 observation job is estimated to take %2 to complete."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4019
+#: ekos/scheduler/scheduler.cpp:4034
#, kde-format
msgid "Parking mount in progress..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4023
+#: ekos/scheduler/scheduler.cpp:4038
#, kde-format
msgid "Parking mount..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4035
+#: ekos/scheduler/scheduler.cpp:4050
#, kde-format
msgid "Mount already parked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4052
+#: ekos/scheduler/scheduler.cpp:4067
#, kde-format
msgid "Unparking mount in progress..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4056
+#: ekos/scheduler/scheduler.cpp:4071
#, kde-format
msgid "Unparking mount..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4068
+#: ekos/scheduler/scheduler.cpp:4083
#, kde-format
msgid "Mount already unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4098
+#: ekos/scheduler/scheduler.cpp:4113
#, kde-format
msgid "Mount unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4113 ekos/scheduler/scheduler.cpp:4243
-#: ekos/scheduler/scheduler.cpp:4362
+#: ekos/scheduler/scheduler.cpp:4128 ekos/scheduler/scheduler.cpp:4258
+#: ekos/scheduler/scheduler.cpp:4377
#, kde-format
msgid "Operation timeout. Restarting operation..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4126 ekos/scheduler/scheduler.cpp:4141
+#: ekos/scheduler/scheduler.cpp:4141 ekos/scheduler/scheduler.cpp:4156
#, kde-format
msgid "Mount unparking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4131 ekos/scheduler/scheduler.cpp:4136
+#: ekos/scheduler/scheduler.cpp:4146 ekos/scheduler/scheduler.cpp:4151
#, kde-format
msgid "Mount parking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4181
+#: ekos/scheduler/scheduler.cpp:4196
#, kde-format
msgid "Dome already parked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4195
+#: ekos/scheduler/scheduler.cpp:4210
#, kde-format
msgid "Unparking dome..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4201
+#: ekos/scheduler/scheduler.cpp:4216
#, kde-format
msgid "Dome already unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4231
+#: ekos/scheduler/scheduler.cpp:4246
#, kde-format
msgid "Dome unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4256
+#: ekos/scheduler/scheduler.cpp:4271
#, kde-format
msgid "Dome parking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4261
+#: ekos/scheduler/scheduler.cpp:4276
#, kde-format
msgid "Dome unparking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4295
+#: ekos/scheduler/scheduler.cpp:4310
#, kde-format
msgid "Parking Cap..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4301
+#: ekos/scheduler/scheduler.cpp:4316
#, kde-format
msgid "Cap already parked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4315
+#: ekos/scheduler/scheduler.cpp:4330
#, kde-format
msgid "Unparking cap..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4321
+#: ekos/scheduler/scheduler.cpp:4336
#, kde-format
msgid "Cap already unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4340
+#: ekos/scheduler/scheduler.cpp:4355
#, kde-format
msgid "Cap parked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4350
+#: ekos/scheduler/scheduler.cpp:4365
#, kde-format
msgid "Cap unparked."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4375
+#: ekos/scheduler/scheduler.cpp:4390
#, kde-format
msgid "Cap parking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4380
+#: ekos/scheduler/scheduler.cpp:4395
#, kde-format
msgid "Cap unparking error."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4417
+#: ekos/scheduler/scheduler.cpp:4432
#, kde-format
msgid "Weather information is pending..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4429
+#: ekos/scheduler/scheduler.cpp:4444
#, kde-format
msgid "%1 observation job aborted due to bad weather."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4532
+#: ekos/scheduler/scheduler.cpp:4547
#, kde-format
msgid "Mosaic file %1 saved successfully."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4536
+#: ekos/scheduler/scheduler.cpp:4551
#, kde-format
msgid "Error saving mosaic file %1. Please reload job."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4648
+#: ekos/scheduler/scheduler.cpp:4663
#, kde-format
msgid "Warning! Turning off astronomial twilight check may cause the observatory to run during daylight. This can cause irreversible damage to your equipment!"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4650
+#: ekos/scheduler/scheduler.cpp:4665
#, kde-format
msgid "Astronomial Twilight Warning"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4664
+#: ekos/scheduler/scheduler.cpp:4679
#, kde-format
msgid "Manual startup procedure completed successfully."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4666
+#: ekos/scheduler/scheduler.cpp:4681
#, kde-format
msgid "Manual startup procedure terminated due to errors."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4679
+#: ekos/scheduler/scheduler.cpp:4694
#, kde-format
msgid "Cannot run startup procedure while INDI devices are not online."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4684
+#: ekos/scheduler/scheduler.cpp:4699
#, kde-format
msgid "Are you sure you want to execute the startup procedure manually?"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4686
+#: ekos/scheduler/scheduler.cpp:4701
#, kde-format
msgid "Warning! Executing startup procedure manually..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4734
+#: ekos/scheduler/scheduler.cpp:4749
#, kde-format
msgid "Startup procedure terminated."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4747
+#: ekos/scheduler/scheduler.cpp:4762
#, kde-format
msgid "Manual shutdown procedure completed successfully."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4753
+#: ekos/scheduler/scheduler.cpp:4768
#, kde-format
msgid "Manual shutdown procedure terminated due to errors."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4766
+#: ekos/scheduler/scheduler.cpp:4781
#, kde-format
msgid "Are you sure you want to execute the shutdown procedure manually?"
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4768
+#: ekos/scheduler/scheduler.cpp:4783
#, kde-format
msgid "Warning! Executing shutdown procedure manually..."
msgstr ""
#. +> trunk5
-#: ekos/scheduler/scheduler.cpp:4819
+#: ekos/scheduler/scheduler.cpp:4834
#, kde-format
msgid "Shutdown procedure terminated."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:38
#, kde-format
msgid "Object && Sequence Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:71 ekos/scheduler/scheduler.ui:205
#, kde-format
msgid "*"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:107
#, kde-format
msgid "Target coordinates in J2000 Epoch"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:110
#, kde-format
msgid "J2000:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, FITSLabel)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:152
#, kde-format
msgid "Select optional FITS file to be used for alignment. When using FITS, specify the object or the estimated coordinates which are used to slew the mount."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, FITSLabel)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:155
#, kde-format
msgid "FITS File:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, sequenceLabel)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:192
#, kde-format
msgid "Ekos Sequence File"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, sequenceLabel)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:195
#, kde-format
msgid "Sequence:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, loadSequenceB)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:233
#, kde-format
msgid "Load the image sequence queue."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:245
#, kde-format
msgid "Priority:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, prioritySpin)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:252
#, kde-format
msgid "Assigned priority to each job with 1 being the highest priority and 20 being the lowest priority"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_9)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:271
#, kde-format
msgid "Ekos Device Profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:290
#, kde-format
msgid "Select which steps to execute before starting the capture process."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:293
#, kde-format
msgid "Steps:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, trackStepCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:302
#, kde-format
msgid "Slew to the target and track it before proceeding to the next step."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, trackStepCheck)
#. i18n: ectx: property (text), widget (QCheckBox, CheckTrack)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:305 tools/argsettrack.ui:38
#, kde-format
msgid "Track"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, focusStepCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:318
#, kde-format
msgid "Perform autofocusing before proceeding to the next step."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, alignStepCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:334
#, kde-format
msgid "Perform alignment using astrometry solver before proceeding to the next step."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, guideStepCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:350
#, kde-format
msgid "Perform calibration and autoguiding before proceeding to the next step."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, evaluateOnlyB)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:451
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Only evaluate jobs</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, mosaicB)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:482
#, kde-format
msgid "Create mosaic job. You must add a job before creating a mosaic job."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:585
#, kde-format
msgid "Job scheduler list. Click to edit a job. Double click to reset a job status."
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. i18n: ectx: property (text), widget (QTreeWidget, clientTreeWidget)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:601 indi/drivermanager.ui:327
#: oal/observeradd.ui:53 tools/observinglist.cpp:97 tools/observinglist.cpp:101
#, kde-format
msgid "Name"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:617
#, kde-format
msgid "Start Time"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:622
#, kde-format
msgid "End Time"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, queueTable)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:627
#, kde-format
msgid "Est. Duration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, pauseB)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:692
#, kde-format
msgid "Pause Scheduler"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, startupGroup)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:742
#, kde-format
msgid "Job Startup Conditions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, asapConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:768
#, kde-format
msgid "Start the observation job as soon as all the constraints, if any, are met. The best candidate target shall be imaged first."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, asapConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:771
#, kde-format
msgid "ASAP"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, culminationConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:791
#, kde-format
msgid "Start the observation job when the object reaches culmination adjusted for the offset value in minutes. By default, the observation job runs 60 minutes prior to culmination."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, culminationConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:794
#, kde-format
msgid "Cu&lmination Offset"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, culminationOffset)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:804
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Offset in minutes to start imaging before or after culmination time.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, startupTimeConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:843
#, kde-format
msgid "start the job on the specified date and time"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, startupTimeConditionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:846
#, kde-format
msgid "On"
msgstr ""
#. i18n: ectx: property (displayFormat), widget (QDateTimeEdit, startupTimeEdit)
#. i18n: ectx: property (displayFormat), widget (QDateTimeEdit, completionTimeEdit)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:856 ekos/scheduler/scheduler.ui:1158
#, kde-format
msgid "dd/MM/yy hh:mm"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, contraintsGroup)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:884
#, kde-format
msgid "Job Constraints"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, altConstraintCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:910
#, kde-format
msgid "The object's altitude must remain equal or higher than the given value."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, altConstraintCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:913
#, kde-format
msgid "Alt > "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, moonSeparationCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:943
#, kde-format
msgid "The moon separation must remain equal to or higher than the given value."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, moonSeparationCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:946
#, kde-format
msgid "Moon > "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, twilightCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:980
#, kde-format
msgid "Jobs are only executed during astronomical twilight darkness period."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, twilightCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:983
#, kde-format
msgid "Twilight"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, weatherCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:996
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Weather conditions must remain safe. When weather conditions become dangerous, shutdown procedure is initiated.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, completionGroup)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1046
#, kde-format
msgid "Job Completion Conditions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, sequenceCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1067
#, kde-format
msgid "The observation job is completed when the sequence is complete."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, sequenceCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1070
#, kde-format
msgid "Se&quence completion"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, repeatCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1085
#, kde-format
msgid "Repeat for"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, repeatsSpin)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1095
#, kde-format
msgid "Restart job until it is executed this many times."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1105
#, kde-format
msgid "runs"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, loopCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1127
#, kde-format
msgid "Restart the sequence job indefinitely."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, loopCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1130
#, kde-format
msgid "Repeat until ter&minated"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, timeCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1145
#, kde-format
msgid "Terminate the job on the given date and time."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, timeCompletionR)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1148
#, kde-format
msgid "Repeat until"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1196
#, kde-format
msgid ""
"<html><head/><body>"
"<p>One-time startup procedure to be executed before starting Ekos. The script is executed <span style=\" font-weight:600; text-decoration: underline;\">before</span> the startup procedures (e.g. unpark scope), if selected, are executed.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1199
#, kde-format
msgid "Observatory Startup Procedure"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, unparkDomeCheck)
#. i18n: ectx: property (toolTip), widget (QCheckBox, parkDomeCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1228 ekos/scheduler/scheduler.ui:1421
#, kde-format
msgid "Park dome to home position"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, unparkDomeCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1231
#, kde-format
msgid "UnPark Dome"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, unparkMountCheck)
#. i18n: ectx: property (toolTip), widget (QCheckBox, parkMountCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1244 ekos/scheduler/scheduler.ui:1405
#, kde-format
msgid "Park telescope to home position."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, unparkMountCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1247
#, kde-format
msgid "UnPark Mount"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, uncapCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1257
#, kde-format
msgid "Open dust cover"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, uncapCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1260
#, kde-format
msgid "UnCap"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_10)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1344
#, kde-format
msgid ""
"<html><head/><body>"
"<p>One-time shutdown procedure to be executed after all scheduler jobs are completed. The script is executed <span style=\" font-weight:600; text-decoration: underline;\">after</span> the shutdown procedures (e.g. parking), if selected, are completed.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1347
#, kde-format
msgid "Observatory Shutdown Procedure"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, warmCCDCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1376
#, kde-format
msgid "Turn off CCD cooler."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, warmCCDCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1379
#, kde-format
msgid "Warm CCD"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, capCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1389
#, kde-format
msgid "Close dust cover"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, capCheck)
#. +> trunk5
#: ekos/scheduler/scheduler.ui:1392
#, kde-format
msgid "Cap"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:154
#, kde-format
msgid "Evaluating"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:158
#, kde-format
msgid "Scheduled"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:162
#, kde-format
msgid "Running"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:166
#, kde-format
msgid "Invalid"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:179
#, kde-format
msgid "Ekos job failed (%1)"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:184 fitsviewer/fitshistogram.cpp:646
#: indi/indigroup.cpp:37 skycomponents/constellationboundarylines.cpp:290
#, kde-format
msgid "Unknown"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:239
#, kde-format
msgid "Slew complete"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:248
#, kde-format
msgid "Focus complete"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:256
#, kde-format
msgid "Align complete"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:260
#, kde-format
msgid "Repositioning"
msgstr ""
#. +> trunk5
#: ekos/scheduler/schedulerjob.cpp:264
#, kde-format
msgid "Repositioning complete"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:138
#, kde-format
msgid "Could not open file %1. Error %2"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:140 fitsviewer/fitsdata.cpp:151
#: fitsviewer/fitsdata.cpp:160 fitsviewer/fitsdata.cpp:204
#: fitsviewer/fitsdata.cpp:217 fitsviewer/fitsdata.cpp:256
#, kde-format
msgid "FITS Open"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:149
#, kde-format
msgid "FITS file open error (fits_get_img_param): %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:158
#, kde-format
msgid "1D FITS images are not supported in KStars."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:202
#, kde-format
msgid "Bit depth %1 is not supported."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:215
#, kde-format
msgid "Image has invalid dimensions %1x%2"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:254 fitsviewer/fitsdata.cpp:3122
#, kde-format
msgid "Error reading image: %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:2159 fitsviewer/fitsdata.cpp:2166
#: fitsviewer/fitsdata.cpp:2223 fitsviewer/fitsdata.cpp:2230
#: fitsviewer/fitsdata.cpp:2295 fitsviewer/fitsdata.cpp:2332
#, kde-format
msgid "No world coordinate systems found."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:3065
#, kde-format
msgid "Only 8 and 16 bits bayered images supported."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:3065 fitsviewer/fitsdata.cpp:3082
#: fitsviewer/fitsdata.cpp:3122 fitsviewer/fitsdata.cpp:3151
#: fitsviewer/fitsdata.cpp:3174 fitsviewer/fitsdata.cpp:3188
#: fitsviewer/fitsdata.cpp:3225 fitsviewer/fitsdata.cpp:3248
#: fitsviewer/fitsdata.cpp:3262
#, kde-format
msgid "Debayer error"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:3082
#, kde-format
msgid "Unsupported bayer pattern %1."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:3151 fitsviewer/fitsdata.cpp:3188
#: fitsviewer/fitsdata.cpp:3225 fitsviewer/fitsdata.cpp:3262
#, kde-format
msgid "Unable to allocate memory for temporary bayer buffer."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdata.cpp:3174 fitsviewer/fitsdata.cpp:3248
#, kde-format
msgid "Debayer failed (%1)"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdebayer.cpp:58
#, kde-format
msgid "Processing..."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsdebayer.cpp:69
#, kde-format
msgid "Debayer failed."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, FITSDebayerDialog)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:14
#, kde-format
msgid "Image Debayering"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, filterCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:30
#, kde-format
msgid "RGGB"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, filterCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:35
#, kde-format
msgid "GBRG"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, filterCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:40
#, kde-format
msgid "GRBG"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, filterCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:45
#, kde-format
msgid "BGGR"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:53
#, kde-format
msgid "Method:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, methodCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:61
#, kde-format
msgid "Nearest"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, methodCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:66
#, kde-format
msgid "Simple"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, methodCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:71
#, kde-format
msgid "BILinear"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, methodCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:76
#, kde-format
msgid "HQLinear"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, methodCombo)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:81
#, kde-format
msgid "VNG"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:89
#, kde-format
msgid "X Offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:106
#, kde-format
msgid "Y Offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, statusEdit)
#. +> trunk5
#: fitsviewer/fitsdebayer.ui:130 fitsviewer/fitsviewer.cpp:401
#: fitsviewer/fitsviewer.cpp:901
#, kde-format
msgid "Ready."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, fitsHeaderDialog)
#. +> trunk5
#: fitsviewer/fitsheaderdialog.ui:14 fitsviewer/fitstab.cpp:190
#: fitsviewer/fitsviewer.cpp:139
#, kde-format
msgid "FITS Header"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#. +> trunk5
#: fitsviewer/fitsheaderdialog.ui:48
#, kde-format
msgid "Keyword"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#. +> trunk5
#: fitsviewer/fitsheaderdialog.ui:53
#, kde-format
msgid "Value"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, tableWidget)
#. +> trunk5
#: fitsviewer/fitsheaderdialog.ui:58
#, kde-format
msgid "Comment"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:260
#, kde-format
msgid "Intensity"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:261
#, kde-format
msgid "Frequency"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:628
#, kde-format
msgid "Auto Scale"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:631
#, kde-format
msgid "Linear Scale"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:634
#, kde-format
msgid "Logarithmic Scale"
msgstr ""
#. +> trunk5
#: fitsviewer/fitshistogram.cpp:637
#, kde-format
msgid "Square Root Scale"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, FITSHistogramUI)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:32 fitsviewer/fitsviewer.cpp:120
#, kde-format
msgid "Histogram"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, minLabel)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:67
#, kde-format
msgid "Min."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, maxLabel)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:74
#, kde-format
msgid "Max."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, maxLabel_2)
#. i18n: ectx: property (text), widget (QLabel, meanLabel_2)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:120 fitsviewer/fitsviewer.cpp:47
#: fitsviewer/statform.ui:121
#, kde-format
msgid "Median"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, intensityLabel)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:140
#, kde-format
msgid "Intensity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, frequencyLabel)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:147
#, kde-format
msgid "Frequency:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, minLabel_2)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:154
#, kde-format
msgid "Mean"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, FITSScaleGroup)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:181
#, kde-format
msgid "FITS Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, linearR)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:187
#, kde-format
msgid "L&inear"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, logR)
#. +> trunk5
#: fitsviewer/fitshistogramui.ui:197
#, kde-format
msgid "&Logarithmic"
msgstr ""
#. +> trunk5
#: fitsviewer/fitslabel.cpp:192
#, kde-format
msgctxt "Half Flux Radius"
msgid "HFR: %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitslabel.cpp:237 tools/whatsinteresting/wiview.cpp:323
#, kde-format
msgid "Continue Slew"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:49
#, kde-format
msgid "Save Changes to FITS?"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:50
#, kde-format
msgid "The current FITS file has unsaved changes. Would you like to save before closing it?"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:190
#, kde-format
msgid "FITS record error: %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:244
#, kde-format
msgid "Save FITS"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:282
#, kde-format
msgid "FITS file save error: %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitstab.cpp:282
#, kde-format
msgid "FITS Save"
msgstr ""
#. i18n("File saved."), 3);
#. +> trunk5
#: fitsviewer/fitstab.cpp:288
#, kde-format
msgid "File saved to %1"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:194
#, kde-format
msgid "Please hold while loading FITS file..."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:195
#, kde-format
msgid "Loading FITS"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:401
#, kde-format
msgid "Image is saturated!"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:521
#, kde-format
msgid "Cannot zoom in further due to active limited resources mode."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1297
#, kde-format
msgid "Finding stars..."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1302
#, kde-format
msgid "1 star detected."
msgid_plural "%1 stars detected."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1520
#, kde-format
msgid "Zoom In"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1523
#, kde-format
msgid "Zoom Out"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1526
#, kde-format
msgid "Default Zoom"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1529
#, kde-format
msgid "Zoom to Fit"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1534 fitsviewer/fitsviewer.cpp:185
#, kde-format
msgid "Show Cross Hairs"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1538 fitsviewer/fitsviewer.cpp:191
#, kde-format
msgid "Show Pixel Gridlines"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1543 fitsviewer/fitsview.cpp:1652
#, kde-format
msgid "Detect Stars in Image"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1549
#, kde-format
msgid "View Star Profile"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1559 fitsviewer/fitsviewer.cpp:197
#: fitsviewer/fitsviewer.cpp:772
#, kde-format
msgid "Show Equatorial Gridlines"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1565 fitsviewer/fitsviewer.cpp:204
#: fitsviewer/fitsviewer.cpp:774
#, kde-format
msgid "Show Objects in Image"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsview.cpp:1571
#, kde-format
msgid "Center Telescope"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoStretch)
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:46 fitsviewer/opsfits.ui:126
#, kde-format
msgid "Auto Stretch"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:46
#, kde-format
msgid "High Contrast"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:46
#, kde-format
msgid "Equalize"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:47
#, kde-format
msgid "High Pass"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:47 fitsviewer/fitsviewer.cpp:103
#, kde-format
msgid "Rotate Right"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:48 fitsviewer/fitsviewer.cpp:107
#, kde-format
msgid "Rotate Left"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:48 fitsviewer/fitsviewer.cpp:111
#, kde-format
msgid "Flip Horizontal"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:48 fitsviewer/fitsviewer.cpp:116
#, kde-format
msgid "Flip Vertical"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:145
#, kde-format
msgid "Debayer..."
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:149
#, kde-format
msgid "Auto stretch"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, statForm)
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:180 fitsviewer/statform.ui:14
#, kde-format
msgid "Statistics"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:211 fitsviewer/fitsviewer.cpp:784
#, kde-format
msgid ""
"Center Telescope\n"
"*No Telescopes Detected*"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:218
#, kde-format
msgid "Zoom To Fit"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:224
#, kde-format
msgid "View 3D Graph"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:230 fitsviewer/fitsviewer.cpp:874
#, kde-format
msgid "Mark Stars"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:250
#, kde-format
msgid "KStars FITS Viewer"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:363
#, kde-format
msgid "Calibrate"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:492
#, kde-format
msgid "%1 star detected."
msgid_plural "%1 stars detected."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:524
#, kde-format
msgid "Open FITS Image"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:779
#, kde-format
msgid ""
"Center Telescope\n"
"*Ready*"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:790
#, kde-format
msgid ""
"Show Equatorial Gridlines\n"
"*No WCS Info*"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:792
#, kde-format
msgid ""
"Center Telescope\n"
"*No WCS Info*"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:794
#, kde-format
msgid ""
"Show Objects in Image\n"
"*No WCS Info*"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:879
#, kde-format
msgid "Unmark Stars"
msgstr ""
#. +> trunk5
#: fitsviewer/fitsviewer.cpp:895
#, kde-format
msgid "Processing %1..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, FITSViewerGroup)
#. +> trunk5
#: fitsviewer/opsfits.ui:37
#, kde-format
msgid "Look && Feel"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_useFITSViewer)
#. +> trunk5
#: fitsviewer/opsfits.ui:43
#, kde-format
msgid "Automatically display received images in the FITS Viewer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useFITSViewer)
#. +> trunk5
#: fitsviewer/opsfits.ui:46
#, kde-format
msgid "Use FITS Viewer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_singlePreviewFITS)
#. i18n: ectx: whatsthis, entry (singlePreviewFITS), group (FITSViewer)
#. +> trunk5
#: fitsviewer/opsfits.ui:53 kstars.kcfg:1360
#, kde-format
msgid "Display all captured FITS images in a single tab instead of multiple tabs per image."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_singlePreviewFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:62
#, kde-format
msgid "Single Preview Tab"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_singleWindowCapturedFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:72
#, kde-format
msgid "Display captured FITS images from all cameras in a single FITS Viewer window instead of a dedicated window to each camera."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_singleWindowCapturedFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:78
#, kde-format
msgid "Single Window Capture"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_singleWindowOpenedFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:88
#, kde-format
msgid "Display opened FITS images in a single FITS Viewer window instead of a dedicated window to each file."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_singleWindowOpenedFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:94
#, kde-format
msgid "Single Window Open"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_independentWindowFITS)
#. +> trunk5
#: fitsviewer/opsfits.ui:104
#, kde-format
msgid "Make FITS Viewer window independent from KStars"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: fitsviewer/opsfits.ui:117
#, kde-format
msgid "Processing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AutoStretch)
#. +> trunk5
#: fitsviewer/opsfits.ui:123
#, kde-format
msgid "Always apply auto stretch to images in FITS Viewer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_LimitedResourcesMode)
#. +> trunk5
#: fitsviewer/opsfits.ui:133
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Enable limited resource mode to turn off any resource-intensive operations:</p>"
"<ul style=\"margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;\">"
"<li style=\" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">Auto Debayer</span>: Bayered images will not be debayered. Only grayscale images are shown.</li>"
"<li style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">Auto WCS</span>: World Coordinate System data will not be processed. WCS maps sky coordinates to image coordinates. Equatorial grid lines, object identification, and telescope slew within an image are disabled.</li>"
"<li style=\" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">3D Cube</span>: RGB images will not be processed. Only grayscale images are shown.</li>"
"</ul>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_LimitedResourcesMode)
#. +> trunk5
#: fitsviewer/opsfits.ui:136
#, kde-format
msgid "Limited Resources Mode"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AutoDebayer)
#. +> trunk5
#: fitsviewer/opsfits.ui:143
#, kde-format
msgid "Automatically debayer captured image if it contains a bayer pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoDebayer)
#. +> trunk5
#: fitsviewer/opsfits.ui:146
#, kde-format
msgid "Auto Debayer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AutoWCS)
#. +> trunk5
#: fitsviewer/opsfits.ui:156
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Automatically load World-Coordinate-System (WCS) data when opening a FITS file.</p>"
"<p><span style=\" font-weight:600;\">Warning: Only enable this option on very fast machines as it can lead to unpredictable behavior resulting in crashes on slower machines.</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoWCS)
#. +> trunk5
#: fitsviewer/opsfits.ui:159
#, kde-format
msgid "Auto WCS"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_Auto3DCube)
#. +> trunk5
#: fitsviewer/opsfits.ui:166
#, kde-format
msgid "Process 3D (RGB) FITS images. If unchecked, only first channel is processed."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_Auto3DCube)
#. +> trunk5
#: fitsviewer/opsfits.ui:169
#, kde-format
msgid "3D Cube"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, widthLabel)
#. +> trunk5
#: fitsviewer/statform.ui:20
#, kde-format
msgid "Width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, heightLabel)
#. +> trunk5
#: fitsviewer/statform.ui:34
#, kde-format
msgid "Height:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, minLabel)
#. +> trunk5
#: fitsviewer/statform.ui:48
#, kde-format
msgid "Min:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, maxLabel)
#. +> trunk5
#: fitsviewer/statform.ui:62
#, kde-format
msgid "Max:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bitPixLabel)
#. +> trunk5
#: fitsviewer/statform.ui:76
#, kde-format
msgid "Bitpix:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, stdDevLabel)
#. +> trunk5
#: fitsviewer/statform.ui:90
#, kde-format
msgid "Standard Deviation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, stdDevLabel)
#. +> trunk5
#: fitsviewer/statform.ui:93
#, kde-format
msgid "Std. dev:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, meanLabel)
#. +> trunk5
#: fitsviewer/statform.ui:107
#, kde-format
msgid "Mean:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, HFRLabel)
#. +> trunk5
#: fitsviewer/statform.ui:135
#, kde-format
msgid "Half-Flux Radius"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, HFRLabel)
#. +> trunk5
#: fitsviewer/statform.ui:138
#, kde-format
msgctxt "Half Flux Radius"
msgid "HFR:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, HFRLabel_2)
#. +> trunk5
#: fitsviewer/statform.ui:152
#, kde-format
msgid "Signal to Noise Ratio"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, HFRLabel_2)
#. +> trunk5
#: fitsviewer/statform.ui:155
#, kde-format
msgctxt "Half Flux Radius"
msgid "SNR:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, displayGroup)
#. +> trunk5
#: hips/hipsmanager.cpp:96 indi/opsindi.ui:338
#, kde-format
msgid "Display"
msgstr ""
#. +> trunk5
#: hips/hipsmanager.cpp:100
#, kde-format
msgid "Cache"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
#. +> trunk5
#: hips/hipsmanager.cpp:104 tools/altvstime.ui:46
#, kde-format
msgid "Sources"
msgstr ""
#. +> trunk5
#: hips/opships.cpp:67
#, kde-format
msgid "HiPS Update"
msgstr ""
#. +> trunk5
#: hips/opships.cpp:67
#, kde-format
msgid "Downloading HiPS sources..."
msgstr ""
#. +> trunk5
#: hips/opships.cpp:140
#, kde-format
msgid "Error downloading HiPS sources: %1"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_HIPSNetCache)
#. +> trunk5
#: hips/opshipscache.ui:17 hips/opshipscache.ui:27
#, kde-format
msgid "Cache space on hard disk used to store HiPS images."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: hips/opshipscache.ui:20
#, kde-format
msgid "Disk"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: hips/opshipscache.ui:43 hips/opshipscache.ui:89
#, kde-format
msgid "MB"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_HIPSMemoryCache)
#. +> trunk5
#: hips/opshipscache.ui:63 hips/opshipscache.ui:73
#, kde-format
msgid "Cache space in RAM used to store HiPS images."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: hips/opshipscache.ui:66
#, kde-format
msgid "Memory:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HIPSShowGrid)
#. +> trunk5
#: hips/opshipsdisplay.ui:17
#, kde-format
msgid "Show HiPS Grid"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HIPSBiLinearInterpolation)
#. +> trunk5
#: hips/opshipsdisplay.ui:24
#, kde-format
msgid "Linear Interpolation"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:152 indi/clientmanagerlite.cpp:159
#: indi/clientmanagerlite.cpp:166 indi/clientmanagerlite.cpp:173
#, kde-format
msgid "Couldn't connect to the Web Manager"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:190 indi/clientmanagerlite.cpp:222
#: indi/clientmanagerlite.cpp:230
#, kde-format
msgid "Invalid response from Web Manager"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:241 indi/clientmanagerlite.cpp:248
#: indi/clientmanagerlite.cpp:259 kstarslite/qml/indi/INDIControlPanel.qml:128
#, kde-format, kde-kuit-format
msgid "Web Manager Status:"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:243 kstarslite/qml/indi/INDIControlPanel.qml:138
#, kde-format, kde-kuit-format
msgid "Active Profile:"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:819
#, kde-format
msgid "JPEG (*.jpeg);;JPG (*.jpg);;PNG (*.png);;BMP (*.bmp)"
msgstr ""
#. +> trunk5
#: indi/clientmanagerlite.cpp:1119
#, kde-format
msgid "Unable to find dcraw and cjpeg. Please install the required tools to convert CR2 to JPEG."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DriverManager)
#. +> trunk5
#: indi/drivermanager.cpp:98 indi/drivermanager.ui:14 indi/indidriver.cpp:100
#, kde-format, kde-kuit-format
msgid "Device Manager"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:274
#, kde-format
msgid "Driver %1 is already running, do you want to restart it?"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:336 indi/indidriver.cpp:320
#, kde-format, kde-kuit-format
msgid "Cannot start INDI server: port error."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:422
#, kde-format
msgid "Connection to INDI server locally on port %1 failed."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:590 indi/indidriver.cpp:302
#, kde-format, kde-kuit-format
msgid "Invalid port entry: %1"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:627
#, kde-format
msgid "Connection to INDI host at %1 on port %2 lost. Server disconnected."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:650
#, kde-format
msgid "Connection to INDI host at %1 on port %2 encountered an error: %3."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:702
#, kde-format
msgid "Invalid host port %1"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:744
#, kde-format
msgid "Connection to INDI server at host %1 with port %2 failed."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:943 indi/indidriver.cpp:498
#, kde-format, kde-kuit-format
msgid ""
"Unable to find INDI Drivers directory: %1\n"
"Please make sure to set the correct path in KStars configuration"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:984 indi/indidriver.cpp:540
#, kde-format, kde-kuit-format
msgid "Failed to open INDI Driver file: %1"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, driverComboBox)
#. i18n: ectx: property (text), widget (QPushButton, NoneButton)
#. +> trunk5
#: indi/drivermanager.cpp:1275 indi/indidriver.cpp:747 kstarsactions.cpp:1640
#: kstarsinit.cpp:688 kstarsinit.cpp:689 oal/equipmentwriter.ui:197
#: oal/log.cpp:337 tools/exporteyepieceview.cpp:68 tools/eyepiecefield.cpp:112
#: tools/obslistwizard.ui:183
#, kde-format, kde-kuit-format
msgid "None"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1351 indi/indidriver.cpp:808
#, kde-format, kde-kuit-format
msgid "Add Host"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1362 indi/indidriver.cpp:824
#, kde-format, kde-kuit-format
msgid "Error: the port number is invalid."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1375 indi/indidriver.cpp:834
#, kde-format, kde-kuit-format
msgid "Host: %1 Port: %2 already exists."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1400 indi/indidriver.cpp:855
#, kde-format, kde-kuit-format
msgid "Modify Host"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1445 indi/indidriver.cpp:902
#, kde-format, kde-kuit-format
msgid "You need to disconnect the client before removing it."
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1450 indi/indidriver.cpp:907
#, kde-format, kde-kuit-format
msgid "Are you sure you want to remove the %1 client?"
msgstr ""
#. +> trunk5
#: indi/drivermanager.cpp:1477 indi/indidriver.cpp:932
#, kde-format, kde-kuit-format
msgid ""
"Unable to write to file 'indihosts.xml'\n"
"Any changes to INDI hosts configurations will not be saved."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, LocalTab)
#. +> trunk5
#: indi/drivermanager.ui:39
#, kde-format
msgid "Local/Server"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, localTreeWidget)
#. +> trunk5
#: indi/drivermanager.ui:61
#, kde-format
msgid "Device"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, localTreeWidget)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: indi/drivermanager.ui:71 indi/drivermanager.ui:129
#, kde-format
msgid "Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, localTreeWidget)
#. +> trunk5
#: indi/drivermanager.ui:76
#, kde-format
msgid "Version"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, localTreeWidget)
#. i18n: ectx: property (text), widget (QTreeWidget, clientTreeWidget)
#. +> trunk5
#: indi/drivermanager.ui:81 indi/drivermanager.ui:332
#, kde-format
msgid "Port"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, serverLogBox)
#. +> trunk5
#: indi/drivermanager.ui:95
#, kde-format
msgid "Server Log"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, serverR)
#. +> trunk5
#: indi/drivermanager.ui:169
#, kde-format
msgid "Server"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, runServiceB)
#. +> trunk5
#: indi/drivermanager.ui:209
#, kde-format
msgid "Run Service"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, stopServiceB)
#. +> trunk5
#: indi/drivermanager.ui:216
#, kde-format
msgid "Stop Service"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, h)
#. +> trunk5
#: indi/drivermanager.ui:276
#, kde-format
msgid "Hosts"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addB)
#. i18n: ectx: property (text), widget (QPushButton, addButton)
#. +> trunk5
#: indi/drivermanager.ui:297
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:95
#: kstarslite/qml/dialogs/helpers/LocationEdit.qml:382 tools/flagmanager.ui:133
#, kde-format, kde-kuit-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, modifyB)
#. +> trunk5
#: indi/drivermanager.ui:304
#, kde-format
msgid "Modify..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5
#: indi/drivermanager.ui:340
#, kde-format
msgid "Connection"
msgstr ""
#. +> trunk5
#: indi/guimanager.cpp:65 kstarslite/qml/modules/tutorial/TutorialPopup.qml:68
#, kde-format, kde-kuit-format
msgid "Close"
msgstr ""
#. +> trunk5
#: indi/guimanager.cpp:134
#, kde-format
msgid "No INDI devices currently running. To run devices, please select devices from the Device Manager in the devices menu."
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1068
#, kde-format
msgid "Video Recording Stopped"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1073
#, kde-format
msgid "Video Recording Started"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1283
#, kde-format
msgid "%1 file saved to %2"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1288
#, kde-format
msgid "Image file is received"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1320
#, kde-format
msgid "Cannot open %1: %2"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1343
#, kde-format
msgid "Cannot unpack_thumb %1: %2"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1355
#, kde-format
msgid "Cannot write %s %1: %2"
msgstr ""
#. +> trunk5
#: indi/indiccd.cpp:1423
#, kde-format
msgid "%1 Preview"
msgstr ""
#. +> trunk5
#: indi/indidevice.cpp:284
#, kde-format
msgctxt "INDI message shown in status bar"
msgid "%1"
msgstr ""
#. +> trunk5
#: indi/indidevice.cpp:287
#, kde-format
msgctxt "Message shown in INDI control panel"
msgid "%1"
msgstr ""
#. +> trunk5
#: indi/indidome.cpp:104
#, kde-format
msgid "Dome parking is in progress"
msgstr ""
#. +> trunk5
#: indi/indidome.cpp:109
#, kde-format
msgid "Dome unparking is in progress"
msgstr ""
#. +> trunk5
#: indi/indidome.cpp:114
#, kde-format
msgid "Dome parked"
msgstr ""
#. +> trunk5
#: indi/indidome.cpp:126
#, kde-format
msgid "Dome unparked"
msgstr ""
#. +> trunk5
#: indi/indielement.cpp:351
#, kde-format
msgid "INDI DATA STREAM"
msgstr ""
#. +> trunk5
#: indi/indielement.cpp:628
#, kde-format
msgid "Cannot open file %1 for reading"
msgstr ""
#. +> trunk5
#: indi/indilistener.cpp:463
#, kde-format
msgid "INDI Server Message"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useTimeUpdate)
#. +> trunk5
#: indi/indiproperty.cpp:234 indi/opsindi.ui:199 tools/observinglist.cpp:103
#, kde-format
msgid "Time"
msgstr ""
#. +> trunk5
#: indi/indiproperty.cpp:315
#, kde-format
msgid "Enable binary data transfer from this property to KStars and vice-versa."
msgstr ""
#. +> trunk5
#: indi/indiproperty.cpp:322
#, kde-format
msgid "Upload"
msgstr ""
#. +> trunk5
#: indi/indistd.cpp:215 indi/indistd.cpp:218
#, kde-format
msgid "GPS Location"
msgstr ""
#. +> trunk5
#: indi/indistd.cpp:382
#, kde-format
msgid "Data file saved to %1"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:160
#, kde-format
msgid "Mount is slewing to target location"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:164
#, kde-format
msgid "Mount arrived at target location"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:231
#, kde-format
msgid "Mount parking failed"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:236
#, kde-format
msgid "Mount parking is in progress"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:242
#, kde-format
msgid "Mount unparking is in progress"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:247
#, kde-format
msgid "Mount parked"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:260
#, kde-format
msgid "Mount unparked"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:277
#, kde-format
msgid "Mount motion was aborted"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:301 indi/inditelescope.cpp:307
#, kde-format
msgid "Mount is manually moving"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:591
#, kde-format
msgid "Requested altitude %1 is outside the specified altitude limit boundary (%2,%3)."
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:594 indi/inditelescope.cpp:603
#, kde-format
msgid "Telescope Motion"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:602
#, kde-format
msgid "Requested altitude is below the horizon. Are you sure you want to proceed?"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:1034
#, kde-format
msgid "Parked"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:1038
#, kde-format
msgid "Parking"
msgstr ""
#. +> trunk5
#: indi/inditelescope.cpp:1046
#, kde-format
msgid "Moving %1"
msgstr ""
#. +> trunk5
#: indi/indiwebmanager.cpp:156
#, kde-format
msgid "Driver %1 failed to start on the remote INDI server!"
msgstr ""
#. i18n: ectx: label, entry (indiServerIsInternal), group (indi)
#. +> trunk5
#: indi/opsindi.cpp:45 kstars.kcfg:210
#, kde-format
msgid "Internal or External INDI Server?"
msgstr ""
#. +> trunk5
#: indi/opsindi.cpp:47
#, kde-format
msgid "Internal or External INDI Drivers?"
msgstr ""
#. +> trunk5
#: indi/opsindi.cpp:90 indi/opsindi.cpp:110
#, kde-format
msgid "You need to restart KStars for this change to take effect."
msgstr ""
#. +> trunk5
#: indi/opsindi.cpp:96
#, kde-format
msgid "FITS Default Directory"
msgstr ""
#. +> trunk5
#: indi/opsindi.cpp:104
#, kde-format
msgid "INDI Drivers Directory"
msgstr ""
#. +> trunk5
#: indi/opsindi.cpp:132
#, kde-format
msgid "%1 is not a valid INDI server binary!"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, videoLabel_2)
#. i18n: ectx: property (toolTip), widget (QLabel, videoLabel_3)
#. +> trunk5
#: indi/opsindi.ui:32 indi/opsindi.ui:63
#, kde-format
msgid "Default INDI video port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, videoLabel_2)
#. +> trunk5
#: indi/opsindi.ui:35
#, kde-format
msgid "INDI Server:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, videoLabel_3)
#. +> trunk5
#: indi/opsindi.ui:66
#, kde-format
msgid "INDI Drivers Directory:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, fitsLabel)
#. +> trunk5
#: indi/opsindi.ui:112
#, kde-format
msgid "Specify where new FITS images are saved once captured and downloaded"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fitsLabel)
#. +> trunk5
#: indi/opsindi.ui:115
#, kde-format
msgid "Default FITS directory:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, autoGroup)
#. +> trunk5
#: indi/opsindi.ui:159
#, kde-format
msgid "Select time and location synchronization settings between KStars and INDI Devices"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, autoGroup)
#. +> trunk5
#: indi/opsindi.ui:162
#, kde-format
msgid "Time && Location Updates"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_useComputerSource)
#. +> trunk5
#: indi/opsindi.ui:170
#, kde-format
msgid ""
"<html><head/><body>"
"<p>KStars is the master source for time and location settings. All INDI devices time and locations settings are synchronized to KStars settings.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_useComputerSource)
#. +> trunk5
#: indi/opsindi.ui:173
#, kde-format
msgid "KStars Updates All Devices"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_useTimeUpdate)
#. +> trunk5
#: indi/opsindi.ui:193
#, kde-format
msgid "Enable time synchronization upon connection between KStars and INDI"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_useTimeUpdate)
#. +> trunk5
#: indi/opsindi.ui:196
#, kde-format
msgid "Synchronize KStars date and time automatically from the update source."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, kcfg_useDeviceSource)
#. +> trunk5
#: indi/opsindi.ui:209
#, kde-format
msgid ""
"<html><head/><body>"
"<p>GPS/Mount devices are the master source of time and location settings. KStars time and location settings are synchronized with GPS/Mount settings.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_useDeviceSource)
#. +> trunk5
#: indi/opsindi.ui:212
#, kde-format
msgid "GPS && Mount Updates KStars"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_useGeographicUpdate)
#. +> trunk5
#: indi/opsindi.ui:219
#, kde-format
msgid "Enable geographic location synchronization upon connection between KStars and INDI"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_useGeographicUpdate)
#. +> trunk5
#: indi/opsindi.ui:222
#, kde-format
msgid "Synchronize KStars location settings from the update source"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useGeographicUpdate)
#. +> trunk5
#: indi/opsindi.ui:225
#, kde-format
msgid "Location"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox)
#. +> trunk5
#: indi/opsindi.ui:253
#, kde-format
msgid "Specify range of ports that INDI Server will bind to when starting new drivers"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: indi/opsindi.ui:256 kstarslite/qml/indi/INDIControlPanel.qml:192
#, kde-format, kde-kuit-format
msgid "Server Port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: indi/opsindi.ui:279 tools/obslistwizard.ui:757
#, kde-format
msgid "From:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: indi/opsindi.ui:286 tools/obslistwizard.ui:771
#, kde-format
msgid "To:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_showTargetCrosshair)
#. +> trunk5
#: indi/opsindi.ui:344
#, kde-format
msgid "Display the telescope position on the sky map"
msgstr ""
#. i18n: ectx: property (statusTip), widget (QCheckBox, kcfg_showTargetCrosshair)
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_showTargetCrosshair)
#. +> trunk5
#: indi/opsindi.ui:347 indi/opsindi.ui:350
#, kde-format
msgid "Display a telescope marker on the sky map in order to track the telescope motion across the sky."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_showTargetCrosshair)
#. +> trunk5
#: indi/opsindi.ui:353
#, kde-format
msgid "&Telescope crosshair"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_messageNotificationINDI)
#. +> trunk5
#: indi/opsindi.ui:389
#, kde-format
msgid "Show INDI messages as desktop notifications instead of dialogs"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_messageNotificationINDI)
#. +> trunk5
#: indi/opsindi.ui:392
#, kde-format
msgid "Message notifications"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, showLogsB)
#. +> trunk5
#: indi/opsindi.ui:415
#, kde-format
msgid "Show INDI Logs"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, recordingOptions)
#. +> trunk5
#: indi/recordingoptions.ui:14
#, kde-format
msgid "Recording Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, recordDurationR)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, durationSpin)
#. +> trunk5
#: indi/recordingoptions.ui:37 indi/recordingoptions.ui:47
#, kde-format
msgid "Record stream for specified duration in seconds"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: indi/recordingoptions.ui:65
#, kde-format
msgid "Record:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. i18n: ectx: property (toolTip), widget (QLineEdit, recordDirectoryEdit)
#. +> trunk5
#: indi/recordingoptions.ui:91 indi/recordingoptions.ui:115
#, kde-format
msgid ""
"<html><head/><body>\n"
"<p>Set SER video <b>remote</b> directory name. If INDI server is running locally, then a local directory can be selected. However, if you are connected to a remote INDI server, then the directory must be a valid directory on the remote file system where it is saved.</p>"
"\n"
"<p>Record directories may contain some patterns to make them dynamic:</p>"
"\n"
"<ul>\n"
"<li><b>_D_</b> for the date in YYYY-MM-DD.</li>"
"\n"
"<li><b>_H_</b> for time in HH:MM:SS.</li>"
"\n"
"<li><b>_T_</b> for ISO8601 time stamp.</li>"
"\n"
"<li><b>_F_</b> for filter name, if any.</li>"
"\n"
"</ul>"
"\n"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, selectDirB)
#. +> trunk5
#: indi/recordingoptions.ui:134
#, kde-format
msgid "Play/Pause"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, recordFilenameEdit)
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: indi/recordingoptions.ui:154 indi/recordingoptions.ui:212
#, kde-format
msgid ""
"<html><head/><body>\n"
"<p>Set SER video file name. Record files may contain some patterns to make them dynamic:</p>"
"\n"
"<ul>\n"
"<li><b>_D_</b> for the date in YYYY-MM-DD.</li>"
"\n"
"<li><b>_H_</b> for time in HH:MM:SS.</li>"
"\n"
"<li><b>_T_</b> for ISO8601 time stamp.</li>"
"\n"
"<li><b>_F_</b> for filter name, if any.</li>"
"\n"
"</ul>"
"\n"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, recordFramesR)
#. i18n: ectx: property (toolTip), widget (QSpinBox, framesSpin)
#. +> trunk5
#: indi/recordingoptions.ui:163 indi/recordingoptions.ui:173
#, kde-format
msgid "Record stream until this many frames are captured"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, recordFramesR)
#. +> trunk5
#: indi/recordingoptions.ui:166
#, kde-format
msgid "Frames"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, recordUntilStoppedR)
#. +> trunk5
#: indi/recordingoptions.ui:191
#, kde-format
msgid "Record stream until manually stopped"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, recordUntilStoppedR)
#. +> trunk5
#: indi/recordingoptions.ui:194
#, kde-format
msgid "Until Stopped"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: indi/recordingoptions.ui:215
#, kde-format
msgid "File name"
msgstr ""
#. +> trunk5
#: indi/servermanager.cpp:93
#, kde-format
msgid "Error making FIFO file %1: %2."
msgstr ""
#. +> trunk5
#: indi/servermanager.cpp:132
#, kde-format
msgid "INDI server failed to start: %1"
msgstr ""
#. +> trunk5
#: indi/servermanager.cpp:196
#, kde-format
msgid "Driver %1 was not found on the system. Please make sure the package that provides the '%1' binary is installed."
msgstr ""
#. +> trunk5
#: indi/servermanager.cpp:311
#, kde-format
msgid "KStars detected INDI driver %1 crashed. Please check INDI server log in the Device Manager."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, streamForm)
#. +> trunk5
#: indi/streamform.ui:20
#, kde-format
msgid "Video Stream"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, recordB)
#. +> trunk5
#: indi/streamform.ui:58 indi/streamwg.cpp:184 indi/streamwg.cpp:194
#, kde-format
msgid "Start recording"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, optionsB)
#. +> trunk5
#: indi/streamform.ui:86
#, kde-format
msgid "Recording options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, resetFrameB)
#. +> trunk5
#: indi/streamform.ui:114
#, kde-format
msgid "Reset frame"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: indi/streamform.ui:143
#, kde-format
msgid "FPS:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, instFPS)
#. +> trunk5
#: indi/streamform.ui:156
#, kde-format
msgid "Instant FPS"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, avgFPS)
#. +> trunk5
#: indi/streamform.ui:184
#, kde-format
msgid "Average FPS"
msgstr ""
#. +> trunk5
#: indi/streamwg.cpp:57
#, kde-format
msgid "SER Record Directory"
msgstr ""
#. +> trunk5
#: indi/streamwg.cpp:82
#, kde-format
msgid "%1 Live Video"
msgstr ""
#. +> trunk5
#: indi/streamwg.cpp:179 indi/streamwg.cpp:220
#, kde-format
msgid "Stop recording"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, telescopeWizard)
#. +> trunk5
#: indi/telescopewizard.ui:31
#, kde-format
msgid "Telescope Wizard"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, cancelB)
#. +> trunk5
#: indi/telescopewizard.ui:64
#, kde-format
msgid "&Cancel"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, backB)
#. +> trunk5
#: indi/telescopewizard.ui:90
#, kde-format
msgid "&Back"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, nextB)
#. +> trunk5
#: indi/telescopewizard.ui:97
#, kde-format
msgid "&Next"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, intoPageLabel)
#. +> trunk5
#: indi/telescopewizard.ui:163
#, kde-format
msgid ""
"Welcome to the <b>KStars Telescope Setup Wizard!</b>\n"
"<br>"
"<br>"
"\n"
"This Wizard will help you to connect to your telescope and control it from KStars. You will be asked to verify some basic information.\n"
"<br>"
"\n"
"<br>"
"You can get extended information on telescope support in KStars by pressing the <tt>help</tt> button at any point during the Wizard.\n"
"<br>"
"<br>"
"\n"
"Please click next to continue."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, modelPageLabel)
#. +> trunk5
#: indi/telescopewizard.ui:199
#, kde-format
msgid ""
"<h3>1. Telescope Model</h3>"
"\n"
"\n"
"Please select your telescope model from the list below. Click next after selecting a model."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5
#: indi/telescopewizard.ui:274
#, kde-format
msgid ""
"<b>Tip</b>\n"
"<br>"
"Some non-Meade telescopes support a subset of the LX200 command set. Select <tt>LX200 Basic</tt> to control such devices."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, telescopePageInfo)
#. +> trunk5
#: indi/telescopewizard.ui:313
#, kde-format
msgid ""
"<h3>2. Align Your Telescope</h3>"
"\n"
"\n"
"You need to align your telescope before you can control it properly from KStars. Please refer to your telescope manual for alignment instructions.\n"
"<br>"
"<br>"
"\n"
"After a successful alignment, connect your telescope's RS232 interface to your computer's serial or USB port.\n"
"<br>"
"<br>"
"<br>"
"Click next to continue."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, localPageLabel)
#. +> trunk5
#: indi/telescopewizard.ui:347
#, kde-format
msgid ""
"<h3>3. Verify Local Settings</h3>"
"\n"
"\n"
"Verify if the following time, date, and location settings are correct. If any of the settings are incorrect, you can correct them via the <tt>Set time</tt> and <tt>Set Location</tt> buttons.\n"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, locationLabel)
#. +> trunk5
#: indi/telescopewizard.ui:410
#, kde-format
msgid "<b>Location</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, timeLabel)
#. +> trunk5
#: indi/telescopewizard.ui:453
#, kde-format
msgid "<b>Time</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, dateLabel)
#. +> trunk5
#: indi/telescopewizard.ui:460
#, kde-format
msgid "<b>Date</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, setTimeB)
#. +> trunk5
#: indi/telescopewizard.ui:477
#, kde-format
msgid "Set Time..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, setLocationB)
#. +> trunk5
#: indi/telescopewizard.ui:484
#, kde-format
msgid "Set Location..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, portPageLabel)
#. +> trunk5
#: indi/telescopewizard.ui:538
#, kde-format
msgid ""
"<h3>4. Determine Connection Port</h3>"
"\n"
"\n"
"Enter the port number your telescope is connected to. If you only have one serial port in your computer, the port is usually <tt>/dev/ttyUSB0</tt>\n"
"<br>"
"<br>"
"If you are unsure about the port number, you can leave the field empty and KStars will try to scan the ports for attached telescopes. Beware that the autoscan process might take a few minutes to complete. "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, portLabel)
#. +> trunk5
#: indi/telescopewizard.ui:575
#, kde-format
msgid "<b>Port:</b>"
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:106
#, kde-format
msgid "Are you sure you want to cancel?"
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:220
#, kde-format
msgid ""
"Please wait while KStars scan communication ports for attached telescopes.\n"
"This process might take few minutes to complete."
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:222 indi/telescopewizardprocess.cpp:229
#: kstarslite/qml/dialogs/helpers/DetailsAddLink.qml:112
#: kstarslite/qml/dialogs/helpers/LocationEdit.qml:446
#: kstarslite/qml/dialogs/helpers/LocationLoading.qml:52
#: kstarslite/qml/modules/tutorial/TutorialExitPopup.qml:41
#, kde-format, kde-kuit-format
msgid "Cancel"
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:228
#, kde-format
msgid "Please wait while KStars tries to connect to your telescope..."
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:343
#, kde-format
msgid "Sorry. KStars failed to detect any attached telescopes, please check your settings and try again."
msgstr ""
#. +> trunk5
#: indi/telescopewizardprocess.cpp:357
#, kde-format
msgid "Telescope Wizard completed successfully."
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:98
#, kde-format
msgid "Rise time: %1"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:99
#, kde-format
msgctxt "the time at which an object falls below the horizon"
msgid "Set time: %1"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:102
#, kde-format
msgid "No rise time: Circumpolar"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:102
#, kde-format
msgid "No set time: Circumpolar"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:104
#, kde-format
msgid "No rise time: Never rises"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:104
#, kde-format
msgid "No set time: Never rises"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:114
#, kde-format
msgid "Transit time: %1"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:144 kspopupmenu.cpp:321 skymapevents.cpp:647
#, kde-format
msgid "Empty sky"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:145 kspopupmenu.cpp:224 kspopupmenu.cpp:507
#, kde-format
msgctxt "Sloan Digital Sky Survey"
msgid "Show SDSS Image"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:146 kspopupmenu.cpp:225 kspopupmenu.cpp:508
#, kde-format
msgctxt "Digitized Sky Survey"
msgid "Show DSS Image"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:216
#, kde-format
msgid "%1<sup>m</sup>, %2"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:242
#, kde-format
msgid "Solar system object"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:267
#, kde-format
msgid "satellite"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:272
#, kde-format
msgid "Velocity: %1 km/s"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:273
#, kde-format
msgid "Altitude: %1 km"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:274
#, kde-format
msgid "Range: %1 km"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:279 kspopupmenu.cpp:344
#, kde-format
msgid "Center && Track"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:282 kspopupmenu.cpp:354
#, kde-format
msgid "Angular Distance To... ["
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:283 kspopupmenu.cpp:355
#, kde-format
msgid "Starhop from here to... "
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:287 kspopupmenu.cpp:365
#, kde-format
msgid "Remove Label"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:289 kspopupmenu.cpp:369
#, kde-format
msgid "Attach Label"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:307
#, kde-format
msgid "supernova"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:340
#, kde-format
msgid "Select this object"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:359 tools/obslistpopupmenu.cpp:65
#, kde-format
msgctxt "Show Detailed Information Dialog"
msgid "Details"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:376
#, kde-format
msgid "Remove From Observing WishList"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:378
#, kde-format
msgid "Add to Observing WishList"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:385
#, kde-format
msgid "Remove Trail"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:387
#, kde-format
msgid "Add Trail"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:390
#, kde-format
msgid "Simulate eyepiece view"
msgstr ""
#. i18n( "Print Xplanet view" ) );
#. +> trunk5
#: kspopupmenu.cpp:400
#, kde-format
msgid "View in XPlanet"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:408
#, kde-format
msgid "View in What's Interesting"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:420
#, kde-format
msgid "Add flag..."
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:426
#, kde-format
msgid "Edit flag"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:427
#, kde-format
msgid "Delete flag"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:435
#, kde-format
msgid "Edit flag..."
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:436
#, kde-format
msgid "Delete flag..."
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:493
#, kde-format
msgid "Image Resources"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:521
#, kde-format
msgid "Information Resources"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:609
#, kde-format
msgid "Set As Parking Position"
msgstr ""
#. +> trunk5
#: kspopupmenu.cpp:619
#, kde-format
msgid "Center Crosshair"
msgstr ""
#. +> trunk5
#: kstars.cpp:71 main.cpp:89
#, kde-format
msgid "KStars"
msgstr ""
#. +> trunk5
#: kstars.cpp:335 kstarsactions.cpp:1435 skymap.cpp:366
#, kde-format
msgid "Stop &Tracking"
msgstr ""
#. +> trunk5
#: kstars.cpp:343 kstarsactions.cpp:1572 kstarsinit.cpp:252
#, kde-format
msgid "Switch to star globe view (Equatorial &Coordinates)"
msgstr ""
#. +> trunk5
#: kstars.cpp:344 kstarsactions.cpp:1563 kstarsinit.cpp:253
#, kde-format
msgid "Switch to horizonal view (Horizontal &Coordinates)"
msgstr ""
#. i18n: ectx: label, entry (PositionTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:9
#, kde-format
msgid "Position of the time InfoBox."
msgstr ""
#. i18n: ectx: whatsthis, entry (PositionTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:10
#, kde-format
msgid "The screen coordinates of the Time InfoBox."
msgstr ""
#. i18n: ectx: label, entry (PositionFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:14
#, kde-format
msgid "Position of the focus InfoBox."
msgstr ""
#. i18n: ectx: whatsthis, entry (PositionFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:15
#, kde-format
msgid "The screen coordinates of the Focus InfoBox."
msgstr ""
#. i18n: ectx: label, entry (PositionGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:19
#, kde-format
msgid "Position of the geographic InfoBox."
msgstr ""
#. i18n: ectx: whatsthis, entry (PositionGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:20
#, kde-format
msgid "The screen coordinates of the Geographic Location InfoBox."
msgstr ""
#. i18n: ectx: label, entry (ShadeTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:24
#, kde-format
msgid "Is the time InfoBox in the \"shaded\" state?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShadeTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:25
#, kde-format
msgid "If true, the Time InfoBox will show only its top line of data."
msgstr ""
#. i18n: ectx: label, entry (ShadeFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:29
#, kde-format
msgid "Is the focus InfoBox in the \"shaded\" state?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShadeFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:30
#, kde-format
msgid "If true, the Focus InfoBox will show only its top line of data."
msgstr ""
#. i18n: ectx: label, entry (ShadeGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:34
#, kde-format
msgid "Is the geographic InfoBox in the \"shaded\" state?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShadeGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:35
#, kde-format
msgid "If true, the Geographic Location InfoBox will show only its top line of data."
msgstr ""
#. i18n: ectx: label, entry (ShowInfoBoxes), group (GUI)
#. +> trunk5
#: kstars.kcfg:39
#, kde-format
msgid "Meta-option to toggle display of all InfoBoxes"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowInfoBoxes), group (GUI)
#. +> trunk5
#: kstars.kcfg:40
#, kde-format
msgid "Toggles display of all three InfoBoxes."
msgstr ""
#. i18n: ectx: label, entry (ShowTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:44
#, kde-format
msgid "Display the time InfoBox?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:45
#, kde-format
msgid "Toggles display of the Time InfoBox."
msgstr ""
#. i18n: ectx: label, entry (ShowFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:49
#, kde-format
msgid "Display the focus InfoBox?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:50
#, kde-format
msgid "Toggles display of the Focus InfoBox."
msgstr ""
#. i18n: ectx: label, entry (ShowGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:54
#, kde-format
msgid "Display the geographic InfoBox?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:55
#, kde-format
msgid "Toggles display of the Geographic Location InfoBox."
msgstr ""
#. i18n: ectx: label, entry (StickyTimeBox), group (GUI)
#. i18n: ectx: label, entry (StickyFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:59 kstars.kcfg:66
#, kde-format
msgid "Time InfoBox anchor flag"
msgstr ""
#. i18n: ectx: whatsthis, entry (StickyTimeBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:60
#, kde-format
msgid "Is the Time InfoBox anchored to a window edge? 0 = not anchored; 1 = anchored to right edge; 2 = anchored to bottom edge; 3 = anchored to bottom and right edges."
msgstr ""
#. i18n: ectx: whatsthis, entry (StickyFocusBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:67
#, kde-format
msgid "Is the Focus InfoBox anchored to a window edge? 0 = not anchored; 1 = anchored to right edge; 2 = anchored to bottom edge; 3 = anchored to bottom and right edges."
msgstr ""
#. i18n: ectx: label, entry (StickyGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:73
#, kde-format
msgid "Geographic InfoBox anchor flag"
msgstr ""
#. i18n: ectx: whatsthis, entry (StickyGeoBox), group (GUI)
#. +> trunk5
#: kstars.kcfg:74
#, kde-format
msgid "Is the Geographic Location InfoBox anchored to a window edge? 0 = not anchored; 1 = anchored to right edge; 2 = anchored to bottom edge; 3 = anchored to bottom and right edges."
msgstr ""
#. i18n: ectx: label, entry (ShowStatusBar), group (GUI)
#. +> trunk5
#: kstars.kcfg:80
#, kde-format
msgid "Display the statusbar?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowStatusBar), group (GUI)
#. +> trunk5
#: kstars.kcfg:81
#, kde-format
msgid "Toggle display of the status bar."
msgstr ""
#. i18n: ectx: label, entry (ShowAltAzField), group (GUI)
#. +> trunk5
#: kstars.kcfg:85
#, kde-format
msgid "Display Alt/Az coordinates in the statusbar?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowAltAzField), group (GUI)
#. +> trunk5
#: kstars.kcfg:86
#, kde-format
msgid "Toggle display of the Horizontal coordinates of the mouse cursor in the status bar."
msgstr ""
#. i18n: ectx: label, entry (ShowRADecField), group (GUI)
#. +> trunk5
#: kstars.kcfg:90
#, kde-format
msgid "Display RA/Dec coordinates in the statusbar?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowRADecField), group (GUI)
#. +> trunk5
#: kstars.kcfg:91
#, kde-format
msgid "Toggle display of the Equatorial coordinates of the mouse cursor at the current epoch in the status bar."
msgstr ""
#. i18n: ectx: label, entry (ShowJ2000RADecField), group (GUI)
#. +> trunk5
#: kstars.kcfg:95
#, kde-format
msgid "Display J2000.0 RA/Dec coordinates in the statusbar?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowJ2000RADecField), group (GUI)
#. +> trunk5
#: kstars.kcfg:96
#, kde-format
msgid "Toggle display of the Equatorial coordinates of the mouse cursor at the standard epoch in the status bar."
msgstr ""
#. i18n: ectx: label, entry (ShowSensorFOV), group (GUI)
#. +> trunk5
#: kstars.kcfg:100
#, kde-format
msgid "Display CCD sensor angular size on the sky map?"
msgstr ""
#. i18n: ectx: label, entry (WindowWidth), group (GUI)
#. +> trunk5
#: kstars.kcfg:104
#, kde-format
msgid "Width of main window, in pixels"
msgstr ""
#. i18n: ectx: label, entry (WindowHeight), group (GUI)
#. +> trunk5
#: kstars.kcfg:108
#, kde-format
msgid "Height of main window, in pixels"
msgstr ""
#. i18n: ectx: label, entry (RunStartupWizard), group (GUI)
#. +> trunk5
#: kstars.kcfg:112
#, kde-format
msgid "Run Startup Wizard when KStars launches?"
msgstr ""
#. i18n: ectx: label, entry (CurrentTheme), group (GUI)
#. +> trunk5
#: kstars.kcfg:116
#, kde-format
msgid "Current application theme"
msgstr ""
#. i18n: ectx: label, entry (CatalogFile), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:123
#, kde-format
msgid "Filenames of defined custom object catalogs."
msgstr ""
#. i18n: ectx: whatsthis, entry (CatalogFile), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:124
#, kde-format
msgid "List of the filenames of custom object catalogs."
msgstr ""
#. i18n: ectx: label, entry (ShowCatalog), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:127
#, kde-format
msgid "List of toggles for displaying custom object catalogs."
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCatalog), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:128
#, kde-format
msgid "List of integers toggling display of each custom object catalog (any nonzero value indicates the objects in that catalog will be displayed)."
msgstr ""
#. i18n: ectx: label, entry (ShowCatalogNames), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:131
#, kde-format
msgid "List for displaying custom object catalogs."
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCatalogNames), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:132
#, kde-format
msgid "List of names for which custom catalogs are to be displayed."
msgstr ""
#. i18n: ectx: label, entry (ResolveNamesOnline), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:135
#, kde-format
msgid "Resolve names using online services."
msgstr ""
#. i18n: ectx: whatsthis, entry (ResolveNamesOnline), group (Catalogs)
#. +> trunk5
#: kstars.kcfg:136
#, kde-format
msgid "Names of objects entered into the find dialog are resolved using online services and stored in the database. This option also toggles the display of such resolved objects on the sky map."
msgstr ""
#. i18n: ectx: label, entry (INDIWindowWidth), group (indi)
#. +> trunk5
#: kstars.kcfg:143
#, kde-format
msgid "INDI window width"
msgstr ""
#. i18n: ectx: label, entry (INDIWindowHeight), group (indi)
#. +> trunk5
#: kstars.kcfg:147
#, kde-format
msgid "INDI window height"
msgstr ""
#. i18n: ectx: label, entry (useGeographicUpdate), group (indi)
#. +> trunk5
#: kstars.kcfg:151
#, kde-format
msgid "Automatically updates geographic location?"
msgstr ""
#. i18n: ectx: label, entry (useTimeUpdate), group (indi)
#. +> trunk5
#: kstars.kcfg:155
#, kde-format
msgid "Automatically updates time and date?"
msgstr ""
#. i18n: ectx: label, entry (independentWindowINDI), group (indi)
#. +> trunk5
#: kstars.kcfg:159
#, kde-format
msgid "Make INDI Control Panel window independent of KStars main window"
msgstr ""
#. i18n: ectx: label, entry (showTargetCrosshair), group (indi)
#. +> trunk5
#: kstars.kcfg:163
#, kde-format
msgid "Draw crosshairs at telescope position in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (showTargetCrosshair), group (indi)
#. +> trunk5
#: kstars.kcfg:164
#, kde-format
msgid "Toggle display of crosshairs centered at telescope's pointed position in the KStars sky map."
msgstr ""
#. i18n: ectx: label, entry (showINDIMessages), group (indi)
#. +> trunk5
#: kstars.kcfg:168
#, kde-format
msgid "Display INDI messages in the statusbar?"
msgstr ""
#. i18n: ectx: whatsthis, entry (showINDIMessages), group (indi)
#. +> trunk5
#: kstars.kcfg:169
#, kde-format
msgid "Toggle display of INDI messages in the KStars statusbar."
msgstr ""
#. i18n: ectx: label, entry (messageNotificationINDI), group (indi)
#. +> trunk5
#: kstars.kcfg:173
#, kde-format
msgid "INDI message notifications"
msgstr ""
#. i18n: ectx: whatsthis, entry (messageNotificationINDI), group (indi)
#. +> trunk5
#: kstars.kcfg:174
#, kde-format
msgid "Show INDI messages as desktop notifications instead of dialogs."
msgstr ""
#. i18n: ectx: label, entry (useComputerSource), group (indi)
#. +> trunk5
#: kstars.kcfg:178
#, kde-format
msgid "Use computer time and location for synchronization?"
msgstr ""
#. i18n: ectx: label, entry (useDeviceSource), group (indi)
#. +> trunk5
#: kstars.kcfg:182
#, kde-format
msgid "Use device time and location for synchronization?"
msgstr ""
#. i18n: ectx: label, entry (fitsDir), group (indi)
#. +> trunk5
#: kstars.kcfg:186
#, kde-format
msgid "FITS Default directory"
msgstr ""
#. i18n: ectx: whatsthis, entry (fitsDir), group (indi)
#. +> trunk5
#: kstars.kcfg:187
#, kde-format
msgid "The default location of saved FITS files"
msgstr ""
#. i18n: ectx: label, entry (serverPortStart), group (indi)
#. +> trunk5
#: kstars.kcfg:191
#, kde-format
msgid "INDI Server Start Port"
msgstr ""
#. i18n: ectx: whatsthis, entry (serverPortStart), group (indi)
#. +> trunk5
#: kstars.kcfg:192
#, kde-format
msgid "INDI server will attempt to bind with ports starting from this port"
msgstr ""
#. i18n: ectx: label, entry (serverPortEnd), group (indi)
#. +> trunk5
#: kstars.kcfg:196
#, kde-format
msgid "INDI Server Final Port"
msgstr ""
#. i18n: ectx: whatsthis, entry (serverPortEnd), group (indi)
#. +> trunk5
#: kstars.kcfg:197
#, kde-format
msgid "INDI server will attempt to bind with ports ending with this port"
msgstr ""
#. i18n: ectx: label, entry (filterAlias), group (indi)
#. +> trunk5
#: kstars.kcfg:201
#, kde-format
msgid "Aliases for filter wheel slots."
msgstr ""
#. i18n: ectx: whatsthis, entry (filterAlias), group (indi)
#. +> trunk5
#: kstars.kcfg:202
#, kde-format
msgid "List of the aliases for filter wheel slots."
msgstr ""
#. i18n: ectx: label, entry (indiServer), group (indi)
#. i18n: ectx: whatsthis, entry (indiServer), group (indi)
#. +> trunk5
#: kstars.kcfg:205 kstars.kcfg:206
#, kde-format
msgid "PATH to indiserver binary"
msgstr ""
#. i18n: ectx: label, entry (indiDriversDir), group (indi)
#. i18n: ectx: whatsthis, entry (indiDriversDir), group (indi)
#. +> trunk5
#: kstars.kcfg:214 kstars.kcfg:215
#, kde-format
msgid "PATH to indi drivers directory"
msgstr ""
#. i18n: ectx: label, entry (indiDriversAreInternal), group (indi)
#. i18n: ectx: label, entry (AstrometrySolverIsInternal), group (Align)
#. +> trunk5
#: kstars.kcfg:219 kstars.kcfg:1824
#, kde-format
msgid "Internal or External Astrometry Solver?"
msgstr ""
#. i18n: ectx: label, entry (streamWindowWidth), group (indi)
#. +> trunk5
#: kstars.kcfg:223
#, kde-format
msgid "Video streaming window width"
msgstr ""
#. i18n: ectx: label, entry (streamWindowHeight), group (indi)
#. +> trunk5
#: kstars.kcfg:227
#, kde-format
msgid "Video streaming window height"
msgstr ""
#. i18n: ectx: label, entry (INDIMountLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:231
#, kde-format
msgid "Enable INDI Mount logging"
msgstr ""
#. i18n: ectx: label, entry (INDIFocuserLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:235
#, kde-format
msgid "Enable INDI Focuser logging"
msgstr ""
#. i18n: ectx: label, entry (INDICCDLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:239
#, kde-format
msgid "Enable INDI CCD logging"
msgstr ""
#. i18n: ectx: label, entry (INDIFilterWheelLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:243
#, kde-format
msgid "Enable INDI Filter Wheel logging"
msgstr ""
#. i18n: ectx: label, entry (INDIDomeLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:247
#, kde-format
msgid "Enable INDI Dome logging"
msgstr ""
#. i18n: ectx: label, entry (INDIDetectorLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:251
#, kde-format
msgid "Enable INDI Detector logging"
msgstr ""
#. i18n: ectx: label, entry (INDIWeatherLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:255
#, kde-format
msgid "Enable INDI Weather logging"
msgstr ""
#. i18n: ectx: label, entry (INDIAuxiliaryLogging), group (indi)
#. +> trunk5
#: kstars.kcfg:259
#, kde-format
msgid "Enable INDI Auxiliary logging"
msgstr ""
#. i18n: ectx: label, entry (CityName), group (Location)
#. +> trunk5
#: kstars.kcfg:266
#, kde-format
msgid "City name of geographic location."
msgstr ""
#. i18n: ectx: whatsthis, entry (CityName), group (Location)
#. +> trunk5
#: kstars.kcfg:267
#, kde-format
msgid "The City name of the current geographic location."
msgstr ""
#. i18n: ectx: label, entry (ProvinceName), group (Location)
#. +> trunk5
#: kstars.kcfg:271
#, kde-format
msgid "Province name of geographic location."
msgstr ""
#. i18n: ectx: whatsthis, entry (ProvinceName), group (Location)
#. +> trunk5
#: kstars.kcfg:272
#, kde-format
msgid "The Province name of the current geographic location. This is the name of the state for locations in the U. S."
msgstr ""
#. i18n: ectx: label, entry (CountryName), group (Location)
#. +> trunk5
#: kstars.kcfg:276
#, kde-format
msgid "Country name of geographic location."
msgstr ""
#. i18n: ectx: whatsthis, entry (CountryName), group (Location)
#. +> trunk5
#: kstars.kcfg:277
#, kde-format
msgid "The Country name of the current geographic location."
msgstr ""
#. i18n: ectx: label, entry (Longitude), group (Location)
#. +> trunk5
#: kstars.kcfg:281
#, kde-format
msgid "Geographic Longitude, in degrees."
msgstr ""
#. i18n: ectx: whatsthis, entry (Longitude), group (Location)
#. +> trunk5
#: kstars.kcfg:282
#, kde-format
msgid "The longitude of the current geographic location, in decimal degrees."
msgstr ""
#. i18n: ectx: label, entry (Latitude), group (Location)
#. +> trunk5
#: kstars.kcfg:286
#, kde-format
msgid "Geographic Latitude, in degrees."
msgstr ""
#. i18n: ectx: whatsthis, entry (Latitude), group (Location)
#. +> trunk5
#: kstars.kcfg:287
#, kde-format
msgid "The latitude of the current geographic location, in decimal degrees."
msgstr ""
#. i18n: ectx: label, entry (Elevation), group (Location)
#. +> trunk5
#: kstars.kcfg:291
#, kde-format
msgid "Elevation above sea level of geographic location, in meters."
msgstr ""
#. i18n: ectx: label, entry (TimeZone), group (Location)
#. +> trunk5
#: kstars.kcfg:295
#, kde-format
msgid "Time Zone offset of geographic location, in hours."
msgstr ""
#. i18n: ectx: label, entry (DST), group (Location)
#. +> trunk5
#: kstars.kcfg:299
#, kde-format
msgid "Two-letter code for daylight savings time rule used by geographic location."
msgstr ""
#. i18n: ectx: whatsthis, entry (DST), group (Location)
#. +> trunk5
#: kstars.kcfg:300
#, kde-format
msgid "Two-letter code that determines the dates on which daylight savings time begins and ends (you can view the rules by pressing the \"Explain DST Rules\" button in the Geographic Location window)."
msgstr ""
#. i18n: ectx: label, entry (UseAnimatedSlewing), group (View)
#. +> trunk5
#: kstars.kcfg:307
#, kde-format
msgid "Use animated slewing effects when changing focus position?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAnimatedSlewing), group (View)
#. +> trunk5
#: kstars.kcfg:308
#, kde-format
msgid "If true, focus changes will cause the sky to visibly spin to the new position. Otherwise, the display will \"snap\" instantly to the new position."
msgstr ""
#. i18n: ectx: label, entry (FOVNames), group (View)
#. +> trunk5
#: kstars.kcfg:312
#, kde-format
msgid "Name of selected FOV indicators"
msgstr ""
#. i18n: ectx: whatsthis, entry (FOVNames), group (View)
#. +> trunk5
#: kstars.kcfg:313
#, kde-format
msgid "The names of the currently selected field-of-view indicators. The list of defined FOV indicator names is listed in the \"Settings|FOV Symbols\" menu."
msgstr ""
#. i18n: ectx: label, entry (FadePlanetTrails), group (View)
#. +> trunk5
#: kstars.kcfg:317
#, kde-format
msgid "Fade planet trails to background color?"
msgstr ""
#. i18n: ectx: whatsthis, entry (FadePlanetTrails), group (View)
#. +> trunk5
#: kstars.kcfg:318
#, kde-format
msgid "If true, trails attached to solar system bodies will fade into the background sky color."
msgstr ""
#. i18n: ectx: label, entry (FocusRA), group (View)
#. +> trunk5
#: kstars.kcfg:322
#, kde-format
msgid "Right Ascension of focus position"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusRA), group (View)
#. +> trunk5
#: kstars.kcfg:323
#, kde-format
msgid "The right ascension of the initial focus position of the sky map, in decimal hours. This value is volatile; it is reset whenever the program shuts down."
msgstr ""
#. i18n: ectx: label, entry (FocusDec), group (View)
#. +> trunk5
#: kstars.kcfg:327
#, kde-format
msgid "Declination of focus position"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusDec), group (View)
#. +> trunk5
#: kstars.kcfg:328
#, kde-format
msgid "The declination of the initial focus position of the sky map, in decimal degrees. This value is volatile; it is reset whenever the program shuts down."
msgstr ""
#. i18n: ectx: label, entry (FocusObject), group (View)
#. +> trunk5
#: kstars.kcfg:332
#, kde-format
msgid "Name of focused object"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusObject), group (View)
#. +> trunk5
#: kstars.kcfg:333
#, kde-format
msgid "The name of the object that should be centered and tracked on startup. If no object should be centered, set to \"nothing\". This value is volatile; it is reset whenever the program shuts down."
msgstr ""
#. i18n: ectx: label, entry (IsTracking), group (View)
#. +> trunk5
#: kstars.kcfg:337
#, kde-format
msgid "Is tracking engaged?"
msgstr ""
#. i18n: ectx: whatsthis, entry (IsTracking), group (View)
#. +> trunk5
#: kstars.kcfg:338
#, kde-format
msgid "True if the skymap should track on its initial position on startup. This value is volatile; it is reset whenever the program shuts down."
msgstr ""
#. i18n: ectx: label, entry (HideOnSlew), group (View)
#. +> trunk5
#: kstars.kcfg:342
#, kde-format
msgid "Hide objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideOnSlew), group (View)
#. +> trunk5
#: kstars.kcfg:343
#, kde-format
msgid "Toggle whether KStars should hide some objects while the display is moving, for smoother motion."
msgstr ""
#. i18n: ectx: label, entry (HideCBounds), group (View)
#. +> trunk5
#: kstars.kcfg:347
#, kde-format
msgid "Hide constellation boundaries while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideCBounds), group (View)
#. +> trunk5
#: kstars.kcfg:348
#, kde-format
msgid "Toggle whether constellation boundaries are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideCLines), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideCLines)
#. +> trunk5
#: kstars.kcfg:352 options/opsadvanced.ui:767
#, kde-format
msgid "Hide constellation lines while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideCLines), group (View)
#. +> trunk5
#: kstars.kcfg:353
#, kde-format
msgid "Toggle whether constellation lines are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (SkyCulture), group (View)
#. +> trunk5
#: kstars.kcfg:357
#, kde-format
msgid "Sky culture"
msgstr ""
#. i18n: ectx: whatsthis, entry (SkyCulture), group (View)
#. +> trunk5
#: kstars.kcfg:358
#, kde-format
msgid "Choose sky culture."
msgstr ""
#. i18n: ectx: label, entry (HideCNames), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideCNames)
#. +> trunk5
#: kstars.kcfg:362 options/opsadvanced.ui:741
#, kde-format
msgid "Hide constellation names while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideCNames), group (View)
#. +> trunk5
#: kstars.kcfg:363
#, kde-format
msgid "Toggle whether constellation names are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideGrids), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideGrids)
#. +> trunk5
#: kstars.kcfg:367 options/opsadvanced.ui:807
#, kde-format
msgid "Hide coordinate grids while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideGrids), group (View)
#. +> trunk5
#: kstars.kcfg:368
#, kde-format
msgid "Toggle whether the coordinate grids are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:372
#, kde-format
msgid "Hide Milky Way contour while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:373
#, kde-format
msgid "Toggle whether the Milky Way contour is hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideIC), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideIC)
#. +> trunk5
#: kstars.kcfg:377 options/opsadvanced.ui:780
#, kde-format
msgid "Hide IC objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideIC), group (View)
#. +> trunk5
#: kstars.kcfg:378
#, kde-format
msgid "Toggle whether IC objects are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideMessier), group (View)
#. +> trunk5
#: kstars.kcfg:382
#, kde-format
msgid "Hide Messier objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideMessier), group (View)
#. +> trunk5
#: kstars.kcfg:383
#, kde-format
msgid "Toggle whether Messier objects are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideNGC), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideNGC)
#. +> trunk5
#: kstars.kcfg:387 options/opsadvanced.ui:754
#, kde-format
msgid "Hide NGC objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideNGC), group (View)
#. +> trunk5
#: kstars.kcfg:388
#, kde-format
msgid "Toggle whether NGC objects are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideOther), group (View)
#. +> trunk5
#: kstars.kcfg:392
#, kde-format
msgid "Hide extra objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideOther), group (View)
#. +> trunk5
#: kstars.kcfg:393
#, kde-format
msgid "Toggle whether extra objects are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HidePlanets), group (View)
#. +> trunk5
#: kstars.kcfg:397
#, kde-format
msgid "Hide solar system objects while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HidePlanets), group (View)
#. +> trunk5
#: kstars.kcfg:398
#, kde-format
msgid "Toggle whether solar system objects are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideStars), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_HideStars)
#. +> trunk5
#: kstars.kcfg:402 options/opsadvanced.ui:662
#, kde-format
msgid "Hide faint stars while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideStars), group (View)
#. +> trunk5
#: kstars.kcfg:403
#, kde-format
msgid "Toggle whether faint stars are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (HideLabels), group (View)
#. +> trunk5
#: kstars.kcfg:407
#, kde-format
msgid "Hide object name labels while moving?"
msgstr ""
#. i18n: ectx: whatsthis, entry (HideLabels), group (View)
#. +> trunk5
#: kstars.kcfg:408
#, kde-format
msgid "Toggle whether name labels are hidden while the display is in motion."
msgstr ""
#. i18n: ectx: label, entry (ShowAsteroids), group (View)
#. +> trunk5
#: kstars.kcfg:412
#, kde-format
msgid "Draw asteroids in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowAsteroids), group (View)
#. +> trunk5
#: kstars.kcfg:413
#, kde-format
msgid "Toggle whether asteroids are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowAsteroidNames), group (View)
#. +> trunk5
#: kstars.kcfg:417
#, kde-format
msgid "Label asteroid names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowAsteroidNames), group (View)
#. +> trunk5
#: kstars.kcfg:418
#, kde-format
msgid "Toggle whether asteroid name labels are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowComets), group (View)
#. +> trunk5
#: kstars.kcfg:422
#, kde-format
msgid "Draw comets in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowComets), group (View)
#. +> trunk5
#: kstars.kcfg:423
#, kde-format
msgid "Toggle whether comets are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowCometComas), group (View)
#. +> trunk5
#: kstars.kcfg:427
#, kde-format
msgid "Draw comet comas in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCometComas), group (View)
#. +> trunk5
#: kstars.kcfg:428
#, kde-format
msgid "Toggle whether comet comas are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowCometNames), group (View)
#. +> trunk5
#: kstars.kcfg:432
#, kde-format
msgid "Label comet names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCometNames), group (View)
#. +> trunk5
#: kstars.kcfg:433
#, kde-format
msgid "Toggle whether comet name labels are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:437
#, kde-format
msgid "Draw supernovae in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:438
#, kde-format
msgid "Toggle whether supernovae are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowSupernovaNames), group (View)
#. +> trunk5
#: kstars.kcfg:442
#, kde-format
msgid "Label Supernova Names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSupernovaNames), group (View)
#. +> trunk5
#: kstars.kcfg:443
#, kde-format
msgid "Toggle whether supernova name labels are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (MagnitudeLimitShowSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:447
#, kde-format
msgid "Set magnitude limit for supernovae to be shown on the skymap"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagnitudeLimitShowSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:448
#, kde-format
msgid "Set magnitude limit for supernovae to be shown on the skymap."
msgstr ""
#. i18n: ectx: label, entry (ShowSupernovaAlerts), group (View)
#. +> trunk5
#: kstars.kcfg:452
#, kde-format
msgid "Show supernova alerts?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSupernovaAlerts), group (View)
#. +> trunk5
#: kstars.kcfg:453
#, kde-format
msgid "Toggle supernova alerts."
msgstr ""
#. i18n: ectx: label, entry (MagnitudeLimitAlertSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:457
#, kde-format
msgid "Set magnitude limit for supernovae to be alerted"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagnitudeLimitAlertSupernovae), group (View)
#. +> trunk5
#: kstars.kcfg:458
#, kde-format
msgid "Set magnitude limit for supernovae to be alerted."
msgstr ""
#. i18n: ectx: label, entry (ShowCBounds), group (View)
#. +> trunk5
#: kstars.kcfg:462
#, kde-format
msgid "Draw constellation boundaries in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCBounds), group (View)
#. +> trunk5
#: kstars.kcfg:463
#, kde-format
msgid "Toggle whether constellation boundaries are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowHighlightedCBound), group (View)
#. +> trunk5
#: kstars.kcfg:467
#, kde-format
msgid "Highlight the central constellation boundary in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowHighlightedCBound), group (View)
#. +> trunk5
#: kstars.kcfg:468
#, kde-format
msgid "Toggle whether constellation boundary containing the central focus point is highlighted in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowCLines), group (View)
#. +> trunk5
#: kstars.kcfg:472
#, kde-format
msgid "Draw constellation lines in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCLines), group (View)
#. +> trunk5
#: kstars.kcfg:473
#, kde-format
msgid "Toggle whether constellation lines are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowConstellationArt), group (View)
#. +> trunk5
#: kstars.kcfg:477
#, kde-format
msgid "Draw constellation art in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowConstellationArt), group (View)
#. +> trunk5
#: kstars.kcfg:478
#, kde-format
msgid "Toggle whether constellation art drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowCNames), group (View)
#. +> trunk5
#: kstars.kcfg:482
#, kde-format
msgid "Draw constellation names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowCNames), group (View)
#. +> trunk5
#: kstars.kcfg:483
#, kde-format
msgid "Toggle whether constellation name labels are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowDeepSky), group (View)
#. +> trunk5
#: kstars.kcfg:487
#, kde-format
msgid "Draw \"deep sky\" objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowDeepSky), group (View)
#. +> trunk5
#: kstars.kcfg:488
#, kde-format
msgid "Toggle whether deep-sky objects are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowEcliptic), group (View)
#. +> trunk5
#: kstars.kcfg:492
#, kde-format
msgid "Draw ecliptic line in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowEcliptic), group (View)
#. +> trunk5
#: kstars.kcfg:493
#, kde-format
msgid "Toggle whether the ecliptic line is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowEquator), group (View)
#. +> trunk5
#: kstars.kcfg:497
#, kde-format
msgid "Draw equator line in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowEquator), group (View)
#. +> trunk5
#: kstars.kcfg:498
#, kde-format
msgid "Toggle whether the equator line is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (AutoSelectGrid), group (View)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AutoSelectGrid)
#. +> trunk5
#: kstars.kcfg:502 options/opsguides.ui:265
#, kde-format
msgid "Draw grids according to active coordinate system?"
msgstr ""
#. i18n: ectx: whatsthis, entry (AutoSelectGrid), group (View)
#. +> trunk5
#: kstars.kcfg:503
#, kde-format
msgid "Coordinate grids will automatically change according to active coordinate system."
msgstr ""
#. i18n: ectx: label, entry (ShowEquatorialGrid), group (View)
#. +> trunk5
#: kstars.kcfg:507
#, kde-format
msgid "Draw equatorial coordinate grid in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowEquatorialGrid), group (View)
#. +> trunk5
#: kstars.kcfg:508
#, kde-format
msgid "Toggle whether the equatorial coordinate grid is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowHorizontalGrid), group (View)
#. +> trunk5
#: kstars.kcfg:512
#, kde-format
msgid "Draw horizontal coordinate grid in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowHorizontalGrid), group (View)
#. +> trunk5
#: kstars.kcfg:513
#, kde-format
msgid "Toggle whether the horizontal coordinate grid is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowLocalMeridian), group (View)
#. +> trunk5
#: kstars.kcfg:517
#, kde-format
msgid "Draw local meridian line in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowLocalMeridian), group (View)
#. +> trunk5
#: kstars.kcfg:518
#, kde-format
msgid "Toggle whether the local meridian line is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowGround), group (View)
#. +> trunk5
#: kstars.kcfg:522
#, kde-format
msgid "Draw opaque ground in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowGround), group (View)
#. +> trunk5
#: kstars.kcfg:523
#, kde-format
msgid "Toggle whether the region below the horizon is opaque."
msgstr ""
#. i18n: ectx: label, entry (ShowHorizon), group (View)
#. +> trunk5
#: kstars.kcfg:527
#, kde-format
msgid "Draw horizon line in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowHorizon), group (View)
#. +> trunk5
#: kstars.kcfg:528
#, kde-format
msgid "Toggle whether the horizon line is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowFlags), group (View)
#. +> trunk5
#: kstars.kcfg:532
#, kde-format
msgid "Draw flags in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowFlags), group (View)
#. +> trunk5
#: kstars.kcfg:533
#, kde-format
msgid "Toggle whether flags are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowIC), group (View)
#. +> trunk5
#: kstars.kcfg:537
#, kde-format
msgid "Draw IC objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowIC), group (View)
#. +> trunk5
#: kstars.kcfg:538
#, kde-format
msgid "Toggle whether IC objects are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowNGC), group (View)
#. +> trunk5
#: kstars.kcfg:542
#, kde-format
msgid "Draw NGC objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowNGC), group (View)
#. +> trunk5
#: kstars.kcfg:543
#, kde-format
msgid "Toggle whether NGC objects are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMessier), group (View)
#. +> trunk5
#: kstars.kcfg:547
#, kde-format
msgid "Draw Messier objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMessier), group (View)
#. +> trunk5
#: kstars.kcfg:548
#, kde-format
msgid "Toggle whether Messier objects are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMessierImages), group (View)
#. +> trunk5
#: kstars.kcfg:552
#, kde-format
msgid "Draw Messier object images in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMessierImages), group (View)
#. +> trunk5
#: kstars.kcfg:553
#, kde-format
msgid "Toggle whether Messier objects are rendered as images in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowOther), group (View)
#. +> trunk5
#: kstars.kcfg:557
#, kde-format
msgid "Draw extra deep-sky objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowOther), group (View)
#. +> trunk5
#: kstars.kcfg:558
#, kde-format
msgid "Toggle whether extra objects are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:562
#, kde-format
msgid "Draw Milky Way contour in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:563
#, kde-format
msgid "Toggle whether the Milky Way contour is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (FillMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:567
#, kde-format
msgid "Fill Milky Way contour? (false means use outline only)"
msgstr ""
#. i18n: ectx: whatsthis, entry (FillMilkyWay), group (View)
#. +> trunk5
#: kstars.kcfg:568
#, kde-format
msgid "Toggle whether the Milky Way contour is filled. When this option is false, the Milky Way is shown as an outline."
msgstr ""
#. i18n: ectx: label, entry (ShowSolarSystem), group (View)
#. +> trunk5
#: kstars.kcfg:572
#, kde-format
msgid "Meta-option for all planets in the sky map."
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSolarSystem), group (View)
#. +> trunk5
#: kstars.kcfg:573
#, kde-format
msgid "Meta-option to control whether all major planets (and the Sun and Moon) are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowPlanetImages), group (View)
#. +> trunk5
#: kstars.kcfg:577
#, kde-format
msgid "Draw planets as images in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowPlanetImages), group (View)
#. +> trunk5
#: kstars.kcfg:578
#, kde-format
msgid "Toggle whether major planets (and the Sun and Moon) are rendered as images in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowPlanetNames), group (View)
#. +> trunk5
#: kstars.kcfg:582
#, kde-format
msgid "Label planet names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowPlanetNames), group (View)
#. +> trunk5
#: kstars.kcfg:583
#, kde-format
msgid "Toggle whether major planets (and the Sun and Moon) are labeled in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowSun), group (View)
#. +> trunk5
#: kstars.kcfg:587
#, kde-format
msgid "Draw Sun in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSun), group (View)
#. +> trunk5
#: kstars.kcfg:588
#, kde-format
msgid "Toggle whether the Sun is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMoon), group (View)
#. +> trunk5
#: kstars.kcfg:592
#, kde-format
msgid "Draw Moon in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMoon), group (View)
#. +> trunk5
#: kstars.kcfg:593
#, kde-format
msgid "Toggle whether the Moon is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMercury), group (View)
#. +> trunk5
#: kstars.kcfg:597
#, kde-format
msgid "Draw Mercury in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMercury), group (View)
#. +> trunk5
#: kstars.kcfg:598
#, kde-format
msgid "Toggle whether Mercury is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowVenus), group (View)
#. +> trunk5
#: kstars.kcfg:602
#, kde-format
msgid "Draw Venus in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowVenus), group (View)
#. +> trunk5
#: kstars.kcfg:603
#, kde-format
msgid "Toggle whether Venus is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowMars), group (View)
#. +> trunk5
#: kstars.kcfg:607
#, kde-format
msgid "Draw Mars in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowMars), group (View)
#. +> trunk5
#: kstars.kcfg:608
#, kde-format
msgid "Toggle whether Mars is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowJupiter), group (View)
#. +> trunk5
#: kstars.kcfg:612
#, kde-format
msgid "Draw Jupiter in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowJupiter), group (View)
#. +> trunk5
#: kstars.kcfg:613
#, kde-format
msgid "Toggle whether Jupiter is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowSaturn), group (View)
#. +> trunk5
#: kstars.kcfg:617
#, kde-format
msgid "Draw Saturn in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSaturn), group (View)
#. +> trunk5
#: kstars.kcfg:618
#, kde-format
msgid "Toggle whether Saturn is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowUranus), group (View)
#. +> trunk5
#: kstars.kcfg:622
#, kde-format
msgid "Draw Uranus in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowUranus), group (View)
#. +> trunk5
#: kstars.kcfg:623
#, kde-format
msgid "Toggle whether Uranus is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowNeptune), group (View)
#. +> trunk5
#: kstars.kcfg:627
#, kde-format
msgid "Draw Neptune in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowNeptune), group (View)
#. +> trunk5
#: kstars.kcfg:628
#, kde-format
msgid "Toggle whether Neptune is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowPluto), group (View)
#. +> trunk5
#: kstars.kcfg:632
#, kde-format
msgid "Draw Pluto in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowPluto), group (View)
#. +> trunk5
#: kstars.kcfg:633
#, kde-format
msgid "Toggle whether Pluto is drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowStars), group (View)
#. +> trunk5
#: kstars.kcfg:637
#, kde-format
msgid "Draw stars in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowStars), group (View)
#. +> trunk5
#: kstars.kcfg:638
#, kde-format
msgid "Toggle whether stars are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowStarMagnitudes), group (View)
#. +> trunk5
#: kstars.kcfg:642
#, kde-format
msgid "Label star magnitudes in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowStarMagnitudes), group (View)
#. +> trunk5
#: kstars.kcfg:643
#, kde-format
msgid "Toggle whether star magnitude (brightness) labels are shown in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowStarNames), group (View)
#. +> trunk5
#: kstars.kcfg:647
#, kde-format
msgid "Label star names in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowStarNames), group (View)
#. +> trunk5
#: kstars.kcfg:648
#, kde-format
msgid "Toggle whether star name labels are shown in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowDeepSkyMagnitudes), group (View)
#. +> trunk5
#: kstars.kcfg:652
#, kde-format
msgid "Label deep-sky object magnitudes in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowDeepSkyMagnitudes), group (View)
#. +> trunk5
#: kstars.kcfg:653
#, kde-format
msgid "Toggle whether deep-sky object magnitude (brightness) labels are shown in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowDeepSkyNames), group (View)
#. +> trunk5
#: kstars.kcfg:657
#, kde-format
msgid "Label deep-sky objects in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowDeepSkyNames), group (View)
#. +> trunk5
#: kstars.kcfg:658
#, kde-format
msgid "Toggle whether deep-sky object name labels are shown in the sky map."
msgstr ""
#. i18n: ectx: label, entry (SlewTimeScale), group (View)
#. +> trunk5
#: kstars.kcfg:662
#, kde-format
msgid "Minimum timescale for forced-slewing mode"
msgstr ""
#. i18n: ectx: whatsthis, entry (SlewTimeScale), group (View)
#. +> trunk5
#: kstars.kcfg:663
#, kde-format
msgid "The timescale above which slewing mode is forced on at all times."
msgstr ""
#. i18n: ectx: label, entry (BoxBGMode), group (View)
#. +> trunk5
#: kstars.kcfg:667
#, kde-format
msgid "InfoBoxes Background fill mode"
msgstr ""
#. i18n: ectx: whatsthis, entry (BoxBGMode), group (View)
#. +> trunk5
#: kstars.kcfg:668
#, kde-format
msgid "The background fill mode for the on-screen information boxes: 0=\"no BG\"; 1=\"semi-transparent BG\"; 2=\"opaque BG\""
msgstr ""
#. i18n: ectx: label, entry (Projection), group (View)
#. +> trunk5
#: kstars.kcfg:672
#, kde-format
msgid "Mapping projection algorithm"
msgstr ""
#. i18n: ectx: whatsthis, entry (Projection), group (View)
#. +> trunk5
#: kstars.kcfg:673
#, kde-format
msgid "Algorithm for the mapping projection."
msgstr ""
#. i18n: ectx: label, entry (UseAbbrevConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:677
#, kde-format
msgid "Use abbreviated constellation names?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAbbrevConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:678
#, kde-format
msgid "Use official IAU abbreviations for constellation names."
msgstr ""
#. i18n: ectx: label, entry (UseLatinConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:682
#, kde-format
msgid "Use Latin constellation names?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseLatinConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:683
#, kde-format
msgid "Use Latin constellation names."
msgstr ""
#. i18n: ectx: label, entry (UseLocalConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:687
#, kde-format
msgid "Use localized constellation names?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseLocalConstellNames), group (View)
#. +> trunk5
#: kstars.kcfg:688
#, kde-format
msgid "Use localized constellation names (if localized names are not available, default to Latin names)."
msgstr ""
#. i18n: ectx: label, entry (UseAltAz), group (View)
#. +> trunk5
#: kstars.kcfg:692
#, kde-format
msgid "Use horizontal coordinate system?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAltAz), group (View)
#. +> trunk5
#: kstars.kcfg:693
#, kde-format
msgid "Display the sky with horizontal coordinates (when false, equatorial coordinates will be used)."
msgstr ""
#. i18n: ectx: label, entry (UseAutoLabel), group (View)
#. +> trunk5
#: kstars.kcfg:697
#, kde-format
msgid "Automatically label focused object?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAutoLabel), group (View)
#. +> trunk5
#: kstars.kcfg:698
#, kde-format
msgid "Toggle whether a centered object automatically gets a name label attached."
msgstr ""
#. i18n: ectx: label, entry (UseAutoTrail), group (View)
#. +> trunk5
#: kstars.kcfg:702 tools/scriptbuilder.cpp:703
#, kde-format
msgid "Automatically add trail to centered solar system body?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAutoTrail), group (View)
#. +> trunk5
#: kstars.kcfg:703
#, kde-format
msgid "Toggle whether a centered solar system object automatically gets a trail attached, as long as it remains centered."
msgstr ""
#. i18n: ectx: label, entry (UseHoverLabel), group (View)
#. +> trunk5
#: kstars.kcfg:707
#, kde-format
msgid "Add temporary label on mouse hover?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseHoverLabel), group (View)
#. +> trunk5
#: kstars.kcfg:708
#, kde-format
msgid "Toggle whether the object under the mouse cursor gets a transient name label."
msgstr ""
#. i18n: ectx: label, entry (UseRefraction), group (View)
#. +> trunk5
#: kstars.kcfg:712
#, kde-format
msgid "Correct positions for atmospheric refraction?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseRefraction), group (View)
#. +> trunk5
#: kstars.kcfg:713
#, kde-format
msgid "Toggle whether object positions are corrected for the effects of atmospheric refraction (only applies when horizontal coordinates are used)."
msgstr ""
#. i18n: ectx: label, entry (UseRelativistic), group (View)
#. +> trunk5
#: kstars.kcfg:717
#, kde-format
msgid "Apply relativistic corrections due to the bending of light in sun's gravitational field"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseRelativistic), group (View)
#. +> trunk5
#: kstars.kcfg:718
#, kde-format
msgid "Toggle whether corrections due to bending of light around the sun are taken into account"
msgstr ""
#. i18n: ectx: label, entry (UseAntialias), group (View)
#. +> trunk5
#: kstars.kcfg:722
#, kde-format
msgid "Use antialiasing when drawing the screen?"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseAntialias), group (View)
#. +> trunk5
#: kstars.kcfg:723
#, kde-format
msgid "Toggle whether the sky is rendered using antialiasing. Lines and shapes are smoother with antialiasing, but rendering the screen will take more time."
msgstr ""
#. i18n: ectx: label, entry (ZoomFactor), group (View)
#. +> trunk5
#: kstars.kcfg:727
#, kde-format
msgid "Zoom Factor, in pixels per radian"
msgstr ""
#. i18n: ectx: whatsthis, entry (ZoomFactor), group (View)
#. +> trunk5
#: kstars.kcfg:728
#, kde-format
msgid "The zoom level, measured in pixels per radian."
msgstr ""
#. i18n: ectx: label, entry (ZoomScrollFactor), group (View)
#. +> trunk5
#: kstars.kcfg:734
#, kde-format
msgid "Zoom scroll sensitivity."
msgstr ""
#. i18n: ectx: whatsthis, entry (ZoomScrollFactor), group (View)
#. +> trunk5
#: kstars.kcfg:735
#, kde-format
msgid "When zooming in or out, change zoom speed factor by this multiplier."
msgstr ""
#. i18n: ectx: label, entry (MagLimitAsteroid), group (View)
#. +> trunk5
#: kstars.kcfg:741
#, kde-format
msgid "Faint limit for asteroids"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitAsteroid), group (View)
#. +> trunk5
#: kstars.kcfg:742
#, kde-format
msgid "The faint magnitude limit for drawing asteroids."
msgstr ""
#. i18n: ectx: label, entry (MagLimitAsteroidDownload), group (View)
#. +> trunk5
#: kstars.kcfg:746
#, kde-format
msgid "Maximum magnitude for asteroids to be downloaded from JPL."
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitAsteroidDownload), group (View)
#. +> trunk5
#: kstars.kcfg:747
#, kde-format
msgid "The maximum magnitude (visibility) to filter the asteroid data download from JPL."
msgstr ""
#. i18n: ectx: label, entry (AsteroidLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:751
#, kde-format
msgid "Label density for asteroid names"
msgstr ""
#. i18n: ectx: whatsthis, entry (AsteroidLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:752
#, kde-format
msgid "Controls the relative number of asteroid name labels drawn in the map."
msgstr ""
#. i18n: ectx: label, entry (MagLimitDrawDeepSky), group (View)
#. +> trunk5
#: kstars.kcfg:756
#, kde-format
msgid "Faint limit for deep-sky objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitDrawDeepSky), group (View)
#. +> trunk5
#: kstars.kcfg:757
#, kde-format
msgid "The faint magnitude limit for drawing deep-sky objects, when fully zoomed in."
msgstr ""
#. i18n: ectx: label, entry (MagLimitDrawDeepSkyZoomOut), group (View)
#. +> trunk5
#: kstars.kcfg:761
#, kde-format
msgid "Faint limit for deep-sky objects when zoomed out"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitDrawDeepSkyZoomOut), group (View)
#. +> trunk5
#: kstars.kcfg:762
#, kde-format
msgid "The faint magnitude limit for drawing deep-sky objects, when fully zoomed out."
msgstr ""
#. i18n: ectx: label, entry (ShowUnknownMagObjects), group (View)
#. +> trunk5
#: kstars.kcfg:766
#, kde-format
msgid "Show deep-sky objects of unknown magnitude"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowUnknownMagObjects), group (View)
#. +> trunk5
#: kstars.kcfg:767
#, kde-format
msgid "When enabled, objects whose magnitudes are unknown, or not available to KStars, are drawn irrespective of the faint limits set."
msgstr ""
#. i18n: ectx: label, entry (MagLimitDrawStar), group (View)
#. +> trunk5
#: kstars.kcfg:772
#, kde-format
msgid "Faint limit for stars"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitDrawStar), group (View)
#. +> trunk5
#: kstars.kcfg:773
#, kde-format
msgid "The faint magnitude limit for drawing stars, when fully zoomed in."
msgstr ""
#. i18n: ectx: label, entry (StarDensity), group (View)
#. +> trunk5
#: kstars.kcfg:777
#, kde-format
msgid "Density of stars in the field of view"
msgstr ""
#. i18n: ectx: whatsthis, entry (StarDensity), group (View)
#. +> trunk5
#: kstars.kcfg:778
#, kde-format
msgid "Sets the density of stars in the field of view"
msgstr ""
#. i18n: ectx: label, entry (MagLimitDrawStarZoomOut), group (View)
#. +> trunk5
#: kstars.kcfg:783
#, kde-format
msgid "Faint limit for stars when zoomed out"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitDrawStarZoomOut), group (View)
#. +> trunk5
#: kstars.kcfg:784
#, kde-format
msgid "The faint magnitude limit for drawing stars, when fully zoomed out."
msgstr ""
#. i18n: ectx: label, entry (MagLimitHideStar), group (View)
#. +> trunk5
#: kstars.kcfg:789
#, kde-format
msgid "Faint limit for stars when slewing"
msgstr ""
#. i18n: ectx: whatsthis, entry (MagLimitHideStar), group (View)
#. +> trunk5
#: kstars.kcfg:790
#, kde-format
msgid "The faint magnitude limit for drawing stars, when the map is in motion (only applicable if faint stars are set to be hidden while the map is in motion)."
msgstr ""
#. i18n: ectx: label, entry (StarLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:794
#, kde-format
msgid "Relative density for star name labels and/or magnitudes"
msgstr ""
#. i18n: ectx: whatsthis, entry (StarLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:795
#, kde-format
msgid "The relative density for drawing star name and magnitude labels."
msgstr ""
#. i18n: ectx: label, entry (DeepSkyLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:799
#, kde-format
msgid "Relative density for deep-sky object name labels and/or magnitudes"
msgstr ""
#. i18n: ectx: whatsthis, entry (DeepSkyLabelDensity), group (View)
#. +> trunk5
#: kstars.kcfg:800
#, kde-format
msgid "The relative density for drawing deep-sky object name and magnitude labels."
msgstr ""
#. i18n: ectx: label, entry (DeepSkyLongLabels), group (View)
#. +> trunk5
#: kstars.kcfg:804
#, kde-format
msgid "Show long names in deep-sky object name labels?"
msgstr ""
#. i18n: ectx: whatsthis, entry (DeepSkyLongLabels), group (View)
#. +> trunk5
#: kstars.kcfg:805
#, kde-format
msgid "If true, long names (common names) for deep-sky objects are shown in the labels."
msgstr ""
#. i18n: ectx: label, entry (MaxRadCometName), group (View)
#. +> trunk5
#: kstars.kcfg:809
#, kde-format
msgid "Maximum distance from Sun for labeling comets, in AU"
msgstr ""
#. i18n: ectx: whatsthis, entry (MaxRadCometName), group (View)
#. +> trunk5
#: kstars.kcfg:810
#, kde-format
msgid "The maximum solar distance for drawing comets."
msgstr ""
#. i18n: ectx: label, entry (UseGL), group (View)
#. +> trunk5
#: kstars.kcfg:814
#, kde-format
msgid "Switch to OpenGL backend"
msgstr ""
#. i18n: ectx: whatsthis, entry (UseGL), group (View)
#. +> trunk5
#: kstars.kcfg:815
#, kde-format
msgid "Use experimental OpenGL backend (deprecated)."
msgstr ""
#. i18n: ectx: label, entry (RunClock), group (View)
#. +> trunk5
#: kstars.kcfg:819
#, kde-format
msgid "Run clock"
msgstr ""
#. i18n: ectx: whatsthis, entry (RunClock), group (View)
#. +> trunk5
#: kstars.kcfg:820
#, kde-format
msgid "The state of the clock (running or not)"
msgstr ""
#. i18n: ectx: label, entry (ObsListSymbol), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:826
#, kde-format
msgid "Use symbols to label observing list objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListSymbol), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:827
#, kde-format
msgid "Objects in the observing list will be highlighted with a symbol in the map."
msgstr ""
#. i18n: ectx: label, entry (ObsListText), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:831
#, kde-format
msgid "Use text to label observing list objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListText), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:832
#, kde-format
msgid "Objects in the observing list will be highlighted with a colored name label in the map."
msgstr ""
#. i18n: ectx: label, entry (ObsListPreferDSS), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:836
#, kde-format
msgid "Prefer Digitized Sky Survey imagery in the observing list"
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListPreferDSS), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:837
#, kde-format
msgid "The observing list will prefer DSS imagery while downloading imagery."
msgstr ""
#. i18n: ectx: label, entry (ObsListPreferSDSS), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:841
#, kde-format
msgid "Prefer Sloan Digital Sky Survey imagery in the observing list"
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListPreferSDSS), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:842
#, kde-format
msgid "The observing list will prefer SDSS imagery while downloading imagery."
msgstr ""
#. i18n: ectx: label, entry (ObsListDemoteHole), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:846
#, kde-format
msgid "While sorting by percentage altitude in the observing list, demote objects present in the Dobsonian hole"
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListDemoteHole), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:847
#, kde-format
msgid "Check this if you use a large Dobsonian telescope. Sorting by percentage current altitude is an easy way of determining what objects are well-placed for observation. However, when using a large Dobsonian telescope, objects close to the zenith are hard to observe. Since tracking there corresponds to a rotation in azimuth, it is both counterintuitive and requires the observer to frequently move the ladder. The region around the zenith where this is particularly frustrating is called the Dobsonian hole. This checkbox makes the observing list consider objects present in the hole as unfit for observation."
msgstr ""
#. i18n: ectx: label, entry (ObsListHoleSize), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:851
#, kde-format
msgid "This is the angular distance from the zenith, in degrees, below which you can easily point your telescope."
msgstr ""
#. i18n: ectx: whatsthis, entry (ObsListHoleSize), group (ObservingList)
#. +> trunk5
#: kstars.kcfg:852
#, kde-format
msgid "This specifies the angular radius of the Dobsonian hole, i.e. the region where a large Dobsonian telescope cannot be pointed easily."
msgstr ""
#. i18n: ectx: label, entry (ColorSchemeFile), group (Colors)
#. i18n: ectx: whatsthis, entry (ColorSchemeFile), group (Colors)
#. +> trunk5
#: kstars.kcfg:858 kstars.kcfg:859
#, kde-format
msgid "The name of the color scheme"
msgstr ""
#. i18n: ectx: label, entry (StarColorMode), group (Colors)
#. +> trunk5
#: kstars.kcfg:863
#, kde-format
msgid "Mode for rendering stars"
msgstr ""
#. i18n: ectx: whatsthis, entry (StarColorMode), group (Colors)
#. +> trunk5
#: kstars.kcfg:864
#, kde-format
msgid "The method for rendering stars: 0=\"realistic colors\"; 1=\"solid red\"; 2=\"solid black\"; 3=\"solid white\"; 4=\"solid real colors\""
msgstr ""
#. i18n: ectx: label, entry (StarColorIntensity), group (Colors)
#. +> trunk5
#: kstars.kcfg:869
#, kde-format
msgid "Saturation level of star colors"
msgstr ""
#. i18n: ectx: whatsthis, entry (StarColorIntensity), group (Colors)
#. +> trunk5
#: kstars.kcfg:870
#, kde-format
msgid "The color saturation level of stars (only applicable when using \"realistic colors\" mode)."
msgstr ""
#. i18n: ectx: label, entry (AngularRulerColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:875
#, kde-format
msgid "Color of angular distance ruler"
msgstr ""
#. i18n: ectx: whatsthis, entry (AngularRulerColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:876
#, kde-format
msgid "The color for the angular-distance measurement ruler."
msgstr ""
#. i18n: ectx: label, entry (BoxBGColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:880
#, kde-format
msgid "Background color of InfoBoxes"
msgstr ""
#. i18n: ectx: whatsthis, entry (BoxBGColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:881
#, kde-format
msgid "The background color of the on-screen information boxes."
msgstr ""
#. i18n: ectx: label, entry (BoxGrabColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:885
#, kde-format
msgid "Text color of InfoBoxes when grabbed with mouse"
msgstr ""
#. i18n: ectx: whatsthis, entry (BoxGrabColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:886
#, kde-format
msgid "The text color for the on-screen information boxes, when activated by a mouse click."
msgstr ""
#. i18n: ectx: label, entry (BoxTextColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:890
#, kde-format
msgid "Text color of InfoBoxes"
msgstr ""
#. i18n: ectx: whatsthis, entry (BoxTextColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:891
#, kde-format
msgid "The normal text color of the on-screen information boxes."
msgstr ""
#. i18n: ectx: label, entry (CBoundColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:895
#, kde-format
msgid "Color of constellation boundaries"
msgstr ""
#. i18n: ectx: whatsthis, entry (CBoundColor), group (Colors)
#. i18n: ectx: whatsthis, entry (CBoundHighColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:896 kstars.kcfg:901
#, kde-format
msgid "The color for the constellation boundary lines."
msgstr ""
#. i18n: ectx: label, entry (CBoundHighColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:900
#, kde-format
msgid "Color of highlighted constellation boundary"
msgstr ""
#. i18n: ectx: label, entry (CLineColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:905
#, kde-format
msgid "Color of constellation lines"
msgstr ""
#. i18n: ectx: whatsthis, entry (CLineColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:906
#, kde-format
msgid "The color for the constellation figure lines."
msgstr ""
#. i18n: ectx: label, entry (CNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:910
#, kde-format
msgid "Color of constellation names"
msgstr ""
#. i18n: ectx: whatsthis, entry (CNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:911
#, kde-format
msgid "The color for the constellation names."
msgstr ""
#. i18n: ectx: label, entry (CompassColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:915
#, kde-format
msgid "Color of cardinal compass labels along horizon"
msgstr ""
#. i18n: ectx: whatsthis, entry (CompassColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:916
#, kde-format
msgid "The color for the cardinal compass point labels."
msgstr ""
#. i18n: ectx: label, entry (EclipticColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:920
#, kde-format
msgid "Color of ecliptic line"
msgstr ""
#. i18n: ectx: whatsthis, entry (EclipticColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:921
#, kde-format
msgid "The color for the ecliptic line."
msgstr ""
#. i18n: ectx: label, entry (EquatorColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:925
#, kde-format
msgid "Color of equator line"
msgstr ""
#. i18n: ectx: whatsthis, entry (EquatorColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:926
#, kde-format
msgid "The color for the equator line."
msgstr ""
#. i18n: ectx: label, entry (EquatorialGridColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:930
#, kde-format
msgid "Color of equatorial coordinate grid lines"
msgstr ""
#. i18n: ectx: whatsthis, entry (EquatorialGridColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:931
#, kde-format
msgid "The color for the equatorial coordinate grid lines."
msgstr ""
#. i18n: ectx: label, entry (HorizontalGridColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:935
#, kde-format
msgid "Color of horizontal coordinate grid lines"
msgstr ""
#. i18n: ectx: whatsthis, entry (HorizontalGridColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:936
#, kde-format
msgid "The color for the horizontal coordinate grid lines."
msgstr ""
#. i18n: ectx: label, entry (SpecialObjectColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:940
#, kde-format
msgid "Color of objects with extra links available"
msgstr ""
#. i18n: ectx: whatsthis, entry (SpecialObjectColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:941
#, kde-format
msgid "The color for objects which have extra URL links available."
msgstr ""
#. i18n: ectx: label, entry (HorizonColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:945
#, kde-format
msgid "Color of horizon line"
msgstr ""
#. i18n: ectx: whatsthis, entry (HorizonColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:946
#, kde-format
msgid "The color for the horizon line and opaque ground."
msgstr ""
#. i18n: ectx: label, entry (LocalMeridianColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:950
#, kde-format
msgid "Color of local meridian line"
msgstr ""
#. i18n: ectx: whatsthis, entry (LocalMeridianColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:951
#, kde-format
msgid "The color for the local meridian line."
msgstr ""
#. i18n: ectx: label, entry (MessierColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:955
#, kde-format
msgid "Color of Messier objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (MessierColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:956
#, kde-format
msgid "The color for Messier object symbols."
msgstr ""
#. i18n: ectx: label, entry (NGCColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:960
#, kde-format
msgid "Color of NGC objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (NGCColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:961
#, kde-format
msgid "The color for NGC object symbols."
msgstr ""
#. i18n: ectx: label, entry (ICColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:965
#, kde-format
msgid "Color of IC objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (ICColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:966
#, kde-format
msgid "The color for IC object symbols."
msgstr ""
#. i18n: ectx: label, entry (MilkyWayWColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:970
#, kde-format
msgid "Color of Milky Way contour"
msgstr ""
#. i18n: ectx: whatsthis, entry (MilkyWayWColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:971
#, kde-format
msgid "The color for the Milky Way contour."
msgstr ""
#. i18n: ectx: label, entry (StarNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:975
#, kde-format
msgid "Color of star name labels"
msgstr ""
#. i18n: ectx: whatsthis, entry (StarNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:976
#, kde-format
msgid "The color for star name labels."
msgstr ""
#. i18n: ectx: label, entry (DeepSkyNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:980
#, kde-format
msgid "Color of deep-sky object name labels"
msgstr ""
#. i18n: ectx: whatsthis, entry (DeepSkyNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:981
#, kde-format
msgid "The color for deep-sky object name labels."
msgstr ""
#. i18n: ectx: label, entry (PlanetNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:985
#, kde-format
msgid "Color of planet name labels"
msgstr ""
#. i18n: ectx: whatsthis, entry (PlanetNameColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:986
#, kde-format
msgid "The color for solar system object labels."
msgstr ""
#. i18n: ectx: label, entry (PlanetTrailColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:990
#, kde-format
msgid "Color of planet trails"
msgstr ""
#. i18n: ectx: whatsthis, entry (PlanetTrailColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:991
#, kde-format
msgid "The color for solar system object trails."
msgstr ""
#. i18n: ectx: label, entry (SkyColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:995
#, kde-format
msgid "Color of sky"
msgstr ""
#. i18n: ectx: whatsthis, entry (SkyColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:996
#, kde-format
msgid "The color for the sky background."
msgstr ""
#. i18n: ectx: label, entry (ArtificialHorizonColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1000
#, kde-format
msgid "Color Artificial Horizon"
msgstr ""
#. i18n: ectx: whatsthis, entry (ArtificialHorizonColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1001
#, kde-format
msgid "The color for the artificial horizon region."
msgstr ""
#. i18n: ectx: label, entry (TelescopeTargetColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1005
#, kde-format
msgid "Color of telescope symbols"
msgstr ""
#. i18n: ectx: whatsthis, entry (TelescopeTargetColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1006
#, kde-format
msgid "The color for telescope target symbols."
msgstr ""
#. i18n: ectx: label, entry (VisibleSatColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1010
#, kde-format
msgid "Color of visible satellites"
msgstr ""
#. i18n: ectx: whatsthis, entry (VisibleSatColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1011
#, kde-format
msgid "Color of visible satellites."
msgstr ""
#. i18n: ectx: label, entry (SatColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1015
#, kde-format
msgid "Color of invisible satellites"
msgstr ""
#. i18n: ectx: whatsthis, entry (SatColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1016
#, kde-format
msgid "Color of invisible satellites."
msgstr ""
#. i18n: ectx: label, entry (SatLabelColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1020
#, kde-format
msgid "Color of satellites labels"
msgstr ""
#. i18n: ectx: whatsthis, entry (SatLabelColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1021
#, kde-format
msgid "Color of satellites labels."
msgstr ""
#. i18n: ectx: label, entry (SupernovaColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1025
#, kde-format
msgid "Color of supernovae"
msgstr ""
#. i18n: ectx: whatsthis, entry (SupernovaColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1026
#, kde-format
msgid "Color of supernova"
msgstr ""
#. i18n: ectx: label, entry (UserLabelColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1030
#, kde-format
msgid "Color of user-added labels"
msgstr ""
#. i18n: ectx: whatsthis, entry (UserLabelColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1031
#, kde-format
msgid "The color for user-added object labels."
msgstr ""
#. i18n: ectx: label, entry (RAGuideColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1035
#, kde-format
msgid "Color of RA Guide Error"
msgstr ""
#. i18n: ectx: whatsthis, entry (RAGuideColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1036
#, kde-format
msgid "The color for RA Guide Error bar in Ekos guide module."
msgstr ""
#. i18n: ectx: label, entry (DEGuideColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1040
#, kde-format
msgid "Color of DEC Guide Error"
msgstr ""
#. i18n: ectx: whatsthis, entry (DEGuideColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1041
#, kde-format
msgid "The color for DEC Guide Error bar in Ekos guide module."
msgstr ""
#. i18n: ectx: label, entry (SolverFOVColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1045
#, kde-format
msgid "Color of solver FOV box"
msgstr ""
#. i18n: ectx: whatsthis, entry (SolverFOVColor), group (Colors)
#. +> trunk5
#: kstars.kcfg:1046
#, kde-format
msgid "The color for solver FOV box in Ekos alignment module."
msgstr ""
#. i18n: ectx: label, entry (xplanetIsInternal), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1052 xplanet/opsxplanet.cpp:29
#, kde-format
msgid "Internal or External XPlanet?"
msgstr ""
#. i18n: ectx: label, entry (XplanetPath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1056
#, kde-format
msgid "Path to xplanet binary"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetPath), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_XplanetPath)
#. +> trunk5
#: kstars.kcfg:1057 xplanet/opsxplanet.ui:148
#, kde-format
msgid "Xplanet binary path"
msgstr ""
#. i18n: ectx: label, entry (XplanetTitle), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1061
#, kde-format
msgid "Window title"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetTitle), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QLineEdit, kcfg_XplanetTitle)
#. +> trunk5
#: kstars.kcfg:1062 xplanet/opsxplanet.ui:53
#, kde-format
msgid "Set the window’s title."
msgstr ""
#. i18n: ectx: label, entry (XplanetWidth), group (Xplanet)
#. i18n: ectx: whatsthis, entry (XplanetWidth), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1066 kstars.kcfg:1067
#, kde-format
msgid "Width of xplanet window"
msgstr ""
#. i18n: ectx: label, entry (XplanetHeight), group (Xplanet)
#. i18n: ectx: whatsthis, entry (XplanetHeight), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1071 kstars.kcfg:1072
#, kde-format
msgid "Height of xplanet window"
msgstr ""
#. i18n: ectx: label, entry (XplanetLabel), group (Xplanet)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_XplanetLabel)
#. +> trunk5
#: kstars.kcfg:1076 xplanet/opsxplanet.ui:674
#, kde-format
msgid "Show label"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLabel), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1077
#, kde-format
msgid "If true, display a label in the upper right corner."
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelLocalTime), group (Xplanet)
#. i18n: ectx: label, entry (XplanetLabelGMT), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1081 kstars.kcfg:1086
#, kde-format
msgid "Show GMT label"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLabelLocalTime), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1082
#, kde-format
msgid "Show local time."
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLabelGMT), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1087
#, kde-format
msgid "Show GMT instead of local time."
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelString), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1091
#, kde-format
msgid "Planet string"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLabelString), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1092
#, kde-format, no-c-format
msgid "Specify the text of the first line of the label. By default, it says something like \"Looking at Earth\". Any instances of %t will be replaced by the target name, and any instances of %o will be replaced by the origin name."
msgstr ""
#. i18n: ectx: label, entry (XplanetFontSize), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1096
#, kde-format
msgid "Font Size"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetFontSize), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_XplanetFontSize)
#. +> trunk5
#: kstars.kcfg:1097 xplanet/opsxplanet.ui:549
#, kde-format
msgid "Specify the point size."
msgstr ""
#. i18n: ectx: label, entry (XplanetColor), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_XplanetColor)
#. +> trunk5
#: kstars.kcfg:1101 xplanet/opsxplanet.ui:563
#, kde-format
msgid "Label color"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetColor), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_XplanetColor)
#. +> trunk5
#: kstars.kcfg:1102 xplanet/opsxplanet.ui:566
#, kde-format
msgid "Set the color for the label."
msgstr ""
#. i18n: ectx: label, entry (XplanetDateFormat), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1106
#, kde-format
msgid "Date format"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetDateFormat), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1107
#, kde-format, no-c-format
msgid "Specify the format for the date/time label. This format string is passed to strftime(3). The default is \"%c %Z\", which shows the date, time, and time zone in the locale’s appropriate date and time representation."
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelTL), group (Xplanet)
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_XplanetLabelTL)
#. +> trunk5
#: kstars.kcfg:1111 xplanet/opsxplanet.ui:580
#, kde-format
msgid "Top left"
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelTR), group (Xplanet)
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_XplanetLabelTR)
#. +> trunk5
#: kstars.kcfg:1115 xplanet/opsxplanet.ui:604
#, kde-format
msgid "Top right"
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelBR), group (Xplanet)
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_XplanetLabelBR)
#. +> trunk5
#: kstars.kcfg:1119 xplanet/opsxplanet.ui:614
#, kde-format
msgid "Bottom right"
msgstr ""
#. i18n: ectx: label, entry (XplanetLabelBL), group (Xplanet)
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_XplanetLabelBL)
#. +> trunk5
#: kstars.kcfg:1123 xplanet/opsxplanet.ui:590
#, kde-format
msgid "Bottom left"
msgstr ""
#. i18n: ectx: label, entry (XplanetGlare), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1127
#, kde-format
msgid "Sun Glare"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetGlare), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1128
#, kde-format
msgid "Draw a glare around the sun with a radius of the specified value larger than the Sun. The default value is 28."
msgstr ""
#. i18n: ectx: label, entry (XplanetRandom), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1132
#, kde-format
msgid "Random latitude and longitude"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetRandom), group (Xplanet)
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_XplanetRandom)
#. +> trunk5
#: kstars.kcfg:1133 xplanet/opsxplanet.ui:832
#, kde-format
msgid "Place the observer above a random latitude and longitude"
msgstr ""
#. i18n: ectx: label, entry (XplanetLatLong), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1137
#, kde-format
msgid "Latitude-Longitude"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLatLong), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1138
#, kde-format
msgid "Place the observer above the specified longitude and latitude"
msgstr ""
#. i18n: ectx: label, entry (XplanetLatitude), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_XplanetLatitude)
#. +> trunk5
#: kstars.kcfg:1142 xplanet/opsxplanet.ui:784
#, kde-format
msgid "Latitude in degrees"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLatitude), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1143
#, kde-format
msgid "Render the target body as seen from above the specified latitude (in degrees). The default value is 0."
msgstr ""
#. i18n: ectx: label, entry (XplanetLongitude), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_XplanetLongitude)
#. +> trunk5
#: kstars.kcfg:1147 xplanet/opsxplanet.ui:807
#, kde-format
msgid "Longitude in degrees"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetLongitude), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1148
#, kde-format
msgid "Place the observer above the specified longitude (in degrees). Longitude is positive going east, negative going west (for the earth and moon), so for example Los Angeles is at -118 or 242. The default value is 0."
msgstr ""
#. i18n: ectx: label, entry (XplanetProjection), group (Xplanet)
#. i18n: ectx: attribute (title), widget (QWidget, XplanetTabProjection)
#. +> trunk5
#: kstars.kcfg:1152 xplanet/opsxplanet.ui:855
#, kde-format
msgid "Projection"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetProjection), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1153
#, kde-format
msgid "The default is no projection. Multiple bodies will not be shown if this option is specified, although shadows will still be drawn."
msgstr ""
#. i18n: ectx: label, entry (XplanetWait), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1157
#, kde-format
msgid "Update view"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetWait), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1158
#, kde-format
msgid "If true, update view."
msgstr ""
#. i18n: ectx: label, entry (XplanetWaitValue), group (Xplanet)
#. i18n: ectx: whatsthis, entry (XplanetWaitValue), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_XplanetWaitValue)
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_XplanetWaitValue)
#. +> trunk5
#: kstars.kcfg:1162 kstars.kcfg:1163 xplanet/opsxplanet.ui:236
#: xplanet/opsxplanet.ui:239
#, kde-format
msgid "Number of seconds to wait before updating"
msgstr ""
#. i18n: ectx: label, entry (XplanetBackground), group (Xplanet)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_XplanetBackground)
#. +> trunk5
#: kstars.kcfg:1167 xplanet/opsxplanet.ui:914
#, kde-format
msgid "Use background"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetBackground), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1168
#, kde-format
msgid "Use a file as the background image, with the planet to be superimposed upon it. This option is only meaningful with the -projection option. A color may also be supplied."
msgstr ""
#. i18n: ectx: label, entry (XplanetBackgroundImage), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1172
#, kde-format
msgid "Use background image"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetBackgroundImage), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1173
#, kde-format
msgid "Use a file as the background image."
msgstr ""
#. i18n: ectx: label, entry (XplanetBackgroundImagePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1177
#, kde-format
msgid "Background image path"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetBackgroundImagePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1178
#, kde-format
msgid "The path of the background image."
msgstr ""
#. i18n: ectx: label, entry (XplanetBackgroundColor), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1182
#, kde-format
msgid "Use background color"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetBackgroundColor), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1183
#, kde-format
msgid "Use a color as the background."
msgstr ""
#. i18n: ectx: label, entry (XplanetBackgroundColorValue), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_XplanetBackgroundColorValue)
#. +> trunk5
#: kstars.kcfg:1187 xplanet/opsxplanet.ui:957
#, kde-format
msgid "Background color"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetBackgroundColorValue), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1188
#, kde-format
msgid "The color of the background."
msgstr ""
#. i18n: ectx: label, entry (XplanetMagnitude), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1192
#, kde-format
msgid "Base magnitude"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetMagnitude), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_XplanetMagnitude)
#. +> trunk5
#: kstars.kcfg:1193 xplanet/opsxplanet.ui:297
#, kde-format
msgid "A star of the specified magnitude will have a pixel brightness of 1. The default value is 10. Stars will be drawn more brightly if this number is larger."
msgstr ""
#. i18n: ectx: label, entry (XplanetArcFile), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1197
#, kde-format
msgid "Arc file"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetArcFile), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1198
#, kde-format
msgid "If checked, use an arc file to be plotted against the background stars."
msgstr ""
#. i18n: ectx: label, entry (XplanetArcFilePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1202
#, kde-format
msgid "Path to arc file"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetArcFilePath), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QLineEdit, kcfg_XplanetArcFilePath)
#. +> trunk5
#: kstars.kcfg:1203 xplanet/opsxplanet.ui:342
#, kde-format
msgid "Specify an arc file to be plotted against the background stars."
msgstr ""
#. i18n: ectx: label, entry (XplanetConfigFile), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1207
#, kde-format
msgid "Config file"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetConfigFile), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1208
#, kde-format
msgid "If checked, use a config file."
msgstr ""
#. i18n: ectx: label, entry (XplanetConfigFilePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1212
#, kde-format
msgid "Path to config file"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetConfigFilePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1213
#, kde-format
msgid "Use the specified configuration file."
msgstr ""
#. i18n: ectx: label, entry (XplanetFOV), group (Xplanet)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_XplanetFOV)
#. +> trunk5
#: kstars.kcfg:1217 xplanet/opsxplanet.ui:214
#, kde-format
msgid "Use kstars's FOV"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetFOV), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_XplanetFOV)
#. +> trunk5
#: kstars.kcfg:1218 xplanet/opsxplanet.ui:211
#, kde-format
msgid "If checked, use kstars's FOV."
msgstr ""
#. i18n: ectx: label, entry (XplanetMarkerFile), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1222
#, kde-format
msgid "Use marker file"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetMarkerFile), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_XplanetMarkerFile)
#. +> trunk5
#: kstars.kcfg:1223 xplanet/opsxplanet.ui:700
#, kde-format
msgid "If checked, use the specified marker file."
msgstr ""
#. i18n: ectx: label, entry (XplanetMarkerFilePath), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_XplanetMarkerFilePath)
#. +> trunk5
#: kstars.kcfg:1227 xplanet/opsxplanet.ui:710
#, kde-format
msgid "Marker file path"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetMarkerFilePath), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1228
#, kde-format
msgid "Specify a file containing user-defined marker data to display against the background stars."
msgstr ""
#. i18n: ectx: label, entry (XplanetMarkerBounds), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1232
#, kde-format
msgid "Write marker bounds"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetMarkerBounds), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1233
#, kde-format
msgid "If checked, write coordinates of the bounding box for each marker in a file."
msgstr ""
#. i18n: ectx: label, entry (XplanetMarkerBoundsPath), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_XplanetMarkerBoundsPath)
#. +> trunk5
#: kstars.kcfg:1237 xplanet/opsxplanet.ui:733
#, kde-format
msgid "Marker bounds file path"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetMarkerBoundsPath), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QLineEdit, kcfg_XplanetMarkerBoundsPath)
#. +> trunk5
#: kstars.kcfg:1238 xplanet/opsxplanet.ui:736
#, kde-format
msgid "Write coordinates of the bounding box for each marker to this file."
msgstr ""
#. i18n: ectx: label, entry (XplanetStarmap), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1242
#, kde-format
msgid "Star map"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetStarmap), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_XplanetStarmap)
#. +> trunk5
#: kstars.kcfg:1243 xplanet/opsxplanet.ui:307
#, kde-format
msgid "If checked, use star map file to draw the background stars."
msgstr ""
#. i18n: ectx: label, entry (XplanetStarmapPath), group (Xplanet)
#. i18n: ectx: whatsthis, entry (XplanetStarmapPath), group (Xplanet)
#. i18n: ectx: property (toolTip), widget (QLineEdit, kcfg_XplanetStarmapPath)
#. i18n: ectx: property (whatsThis), widget (QLineEdit, kcfg_XplanetStarmapPath)
#. +> trunk5
#: kstars.kcfg:1247 kstars.kcfg:1248 xplanet/opsxplanet.ui:323
#: xplanet/opsxplanet.ui:326
#, kde-format
msgid "Star map file path"
msgstr ""
#. i18n: ectx: label, entry (XplanetQuality), group (Xplanet)
#. +> trunk5
#: kstars.kcfg:1252
#, kde-format
msgid "Output file quality"
msgstr ""
#. i18n: ectx: whatsthis, entry (XplanetQuality), group (Xplanet)
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_XplanetQuality)
#. +> trunk5
#: kstars.kcfg:1253 xplanet/opsxplanet.ui:415
#, kde-format
msgid "This option is only used when creating JPEG images. The quality can range from 0 to 100. The default value is 80."
msgstr ""
#. i18n: ectx: label, entry (ShowSatellites), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1259
#, kde-format
msgid "Draw satellites in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSatellites), group (Satellites)
#. i18n: ectx: whatsthis, entry (ShowVisibleSatellites), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1260 kstars.kcfg:1265
#, kde-format
msgid "Toggle whether satellite tracks are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowVisibleSatellites), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1264
#, kde-format
msgid "Draw only visible satellites in the sky map"
msgstr ""
#. i18n: ectx: label, entry (DrawSatellitesLikeStars), group (Satellites)
#. i18n: ectx: whatsthis, entry (DrawSatellitesLikeStars), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1269 kstars.kcfg:1270
#, kde-format
msgid "If selected, satellites will be draw like stars, otherwise, draw satellites as small colored square."
msgstr ""
#. i18n: ectx: label, entry (ShowSatellitesLabels), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1274
#, kde-format
msgid "Draw satellite labels?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowSatellitesLabels), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1275
#, kde-format
msgid "Toggle whether satellite labels are drawn in the sky map."
msgstr ""
#. i18n: ectx: label, entry (SelectedSatellites), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1279
#, kde-format
msgid "Selected satellites."
msgstr ""
#. i18n: ectx: whatsthis, entry (SelectedSatellites), group (Satellites)
#. +> trunk5
#: kstars.kcfg:1280
#, kde-format
msgid "List of selected satellites."
msgstr ""
#. i18n: ectx: label, entry (AlwaysRecomputeCoordinates), group (General)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AlwaysRecomputeCoordinates)
#. +> trunk5
#: kstars.kcfg:1285 options/opsadvanced.ui:94
#, kde-format
msgid "Always recompute coordinates"
msgstr ""
#. i18n: ectx: whatsthis, entry (AlwaysRecomputeCoordinates), group (General)
#. +> trunk5
#: kstars.kcfg:1286
#, kde-format
msgid "Checking this option causes recomputation of current equatorial coordinates from catalog coordinates (i.e. application of precession, nutation and aberration corrections) for every redraw of the map. This makes processing slower when there are many stars to handle, but is more likely to be bug free. There are known bugs in the rendering of stars when this recomputation is avoided."
msgstr ""
#. i18n: ectx: label, entry (DefaultDSSImageSize), group (General)
#. +> trunk5
#: kstars.kcfg:1290
#, kde-format
msgid "Default size for DSS images"
msgstr ""
#. i18n: ectx: whatsthis, entry (DefaultDSSImageSize), group (General)
#. +> trunk5
#: kstars.kcfg:1291
#, kde-format
msgid "The default size for DSS images downloaded from the internet."
msgstr ""
#. i18n: ectx: label, entry (DSSPadding), group (General)
#. +> trunk5
#: kstars.kcfg:1295
#, kde-format
msgid "Additional padding around DSS Images of deep-sky objects"
msgstr ""
#. i18n: ectx: whatsthis, entry (DSSPadding), group (General)
#. +> trunk5
#: kstars.kcfg:1296
#, kde-format
msgid "To include parts of the star field, we add some extra padding around DSS images of deep-sky objects. This option configures the total (both sides) padding added to either dimension of the field."
msgstr ""
#. i18n: ectx: label, entry (VerboseLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1300
#, kde-format
msgid "Enable Verbose Logging"
msgstr ""
#. i18n: ectx: whatsthis, entry (VerboseLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1301
#, kde-format
msgid "Checking this option causes KStars to generate verbose debug information for diagnostic purposes. This may cause slowdown of KStars."
msgstr ""
#. i18n: ectx: label, entry (RegularLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1305
#, kde-format
msgid "Enable Regular Logging"
msgstr ""
#. i18n: ectx: whatsthis, entry (RegularLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1306
#, kde-format
msgid "Checking this option causes KStars to generate regular debug information."
msgstr ""
#. i18n: ectx: label, entry (DisableLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1310
#, kde-format
msgid "Disable Verbose Logging"
msgstr ""
#. i18n: ectx: whatsthis, entry (DisableLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1311
#, kde-format
msgid "Checking this option causes KStars to stop generating ANY debug information."
msgstr ""
#. i18n: ectx: label, entry (LogToDefault), group (General)
#. +> trunk5
#: kstars.kcfg:1315
#, kde-format
msgid "Log debug message to default output"
msgstr ""
#. i18n: ectx: whatsthis, entry (LogToDefault), group (General)
#. +> trunk5
#: kstars.kcfg:1316
#, kde-format
msgid "Checking this option causes KStars log debug messages to the default output used by the platform (e.g. Standard Error)."
msgstr ""
#. i18n: ectx: label, entry (LogToFile), group (General)
#. +> trunk5
#: kstars.kcfg:1320
#, kde-format
msgid "Log debug message to a log file"
msgstr ""
#. i18n: ectx: whatsthis, entry (LogToFile), group (General)
#. +> trunk5
#: kstars.kcfg:1321
#, kde-format
msgid "Checking this option causes KStars log debug messages to a log file as specified."
msgstr ""
#. i18n: ectx: whatsthis, entry (FITSLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1325
#, kde-format
msgid "Log FITS Data activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (INDILogging), group (General)
#. +> trunk5
#: kstars.kcfg:1329
#, kde-format
msgid "Log INDI devices activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (CaptureLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1333
#, kde-format
msgid "Log Ekos Capture Module activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1337
#, kde-format
msgid "Log Ekos Focus Module activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (GuideLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1341
#, kde-format
msgid "Log Ekos Guide Module activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (AlignmentLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1345
#, kde-format
msgid "Log Ekos Alignment Module activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (MountLogging), group (General)
#. +> trunk5
#: kstars.kcfg:1349
#, kde-format
msgid "Log Ekos Mount Module activity."
msgstr ""
#. i18n: ectx: label, entry (useFITSViewer), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1355
#, kde-format
msgid "Display every image captured in a FITS Viewer window."
msgstr ""
#. i18n: ectx: label, entry (singlePreviewFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1359
#, kde-format
msgid "Preview FITS in a single tab?"
msgstr ""
#. i18n: ectx: label, entry (singleWindowCapturedFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1364
#, kde-format
msgid "Display all captured FITS in one window?"
msgstr ""
#. i18n: ectx: whatsthis, entry (singleWindowCapturedFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1365
#, kde-format
msgid "Display all captured FITS images in a single FITS Viewer window. By default each camera create its own FITS Viewer instance"
msgstr ""
#. i18n: ectx: label, entry (singleWindowOpenedFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1369
#, kde-format
msgid "Display all opened FITS in one window?"
msgstr ""
#. i18n: ectx: whatsthis, entry (singleWindowOpenedFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1370
#, kde-format
msgid "Display all opened FITS images in a single FITS Viewer window."
msgstr ""
#. i18n: ectx: label, entry (independentWindowFITS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1374
#, kde-format
msgid "Make FITS Viewer window independent of KStars main window"
msgstr ""
#. i18n: ectx: label, entry (AutoDebayer), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1378
#, kde-format
msgid "Automatically debayer a FITS image if it is contains a bayer pattern"
msgstr ""
#. i18n: ectx: label, entry (Auto3DCube), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1382
#, kde-format
msgid "Process 3D FITS Cube (RGB). If false, only first channel is processed."
msgstr ""
#. i18n: ectx: label, entry (AutoWCS), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1386
#, kde-format
msgid "Automatically process World-Coordinate-System (WCS) data when loading a FITS file."
msgstr ""
#. i18n: ectx: label, entry (LimitedResourcesMode), group (FITSViewer)
#. +> trunk5
#: kstars.kcfg:1390
#, kde-format
msgid "Conserve CPU and memory by disabling all resource-intensive features in FITS Viewer"
msgstr ""
#. i18n: ectx: label, entry (BortleClass), group (WISettings)
#. +> trunk5
#: kstars.kcfg:1396
#, kde-format
msgid "Bortle dark-sky rating"
msgstr ""
#. i18n: ectx: label, entry (TelescopeCheck), group (WISettings)
#. +> trunk5
#: kstars.kcfg:1400
#, kde-format
msgid "Availability of telescope"
msgstr ""
#. i18n: ectx: label, entry (BinocularsCheck), group (WISettings)
#. +> trunk5
#: kstars.kcfg:1404
#, kde-format
msgid "Availability of binoculars"
msgstr ""
#. i18n: ectx: label, entry (BinocularsAperture), group (WISettings)
#. +> trunk5
#: kstars.kcfg:1408
#, kde-format
msgid "Aperture of available binocular"
msgstr ""
#. i18n: ectx: label, entry (ScopeListIndex), group (WISettings)
#. +> trunk5
#: kstars.kcfg:1412
#, kde-format
msgid "Index of selected scope from list of scopes"
msgstr ""
#. i18n: ectx: label, entry (EkosWindowWidth), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1418
#, kde-format
msgid "Ekos window width"
msgstr ""
#. i18n: ectx: label, entry (EkosWindowHeight), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1422
#, kde-format
msgid "Ekos window height"
msgstr ""
#. i18n: ectx: label, entry (EkosLeftIcons), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1430
#, kde-format
msgid "Ekos modules icons are placed to the left of pages"
msgstr ""
#. i18n: ectx: label, entry (independentWindowEkos), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1434
#, kde-format
msgid "Make Ekos window independent of KStars main window"
msgstr ""
#. i18n: ectx: label, entry (profile), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1438
#, kde-format
msgid "Ekos drivers profile"
msgstr ""
#. i18n: ectx: label, entry (neverLoadConfig), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1442
#, kde-format
msgid "Never load device configuration?"
msgstr ""
#. i18n: ectx: label, entry (loadConfigOnConnection), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1446
#, kde-format
msgid "Load device configuration upon successful connection?"
msgstr ""
#. i18n: ectx: label, entry (loadDefaultConfig), group (Ekos)
#. +> trunk5
#: kstars.kcfg:1450
#, kde-format
msgid "Always load device default configuration upon successful connection?"
msgstr ""
#. i18n: ectx: label, entry (shutterfulCCDs), group (DarkLibrary)
#. +> trunk5
#: kstars.kcfg:1460
#, kde-format
msgid "List of CCDs with mechanical or electronic shutters."
msgstr ""
#. i18n: ectx: label, entry (shutterlessCCDs), group (DarkLibrary)
#. +> trunk5
#: kstars.kcfg:1463
#, kde-format
msgid "List of CCDs without mechanical or electronic shutters."
msgstr ""
#. i18n: ectx: label, entry (MinimumAltLimit), group (Mount)
#. +> trunk5
#: kstars.kcfg:1468
#, kde-format
msgid "Default minimum mount altitude limit"
msgstr ""
#. i18n: ectx: label, entry (MaximumAltLimit), group (Mount)
#. +> trunk5
#: kstars.kcfg:1473
#, kde-format
msgid "Default maximum mount altitude limit."
msgstr ""
#. i18n: ectx: whatsthis, entry (MaximumAltLimit), group (Mount)
#. +> trunk5
#: kstars.kcfg:1474
#, kde-format
msgid "Maximum telescope altitude limit. If the telescope is above this limit, it will be commanded to stop."
msgstr ""
#. i18n: ectx: label, entry (EnableAltitudeLimits), group (Mount)
#. +> trunk5
#: kstars.kcfg:1478
#, kde-format
msgid "Enable mount altitude limits."
msgstr ""
#. i18n: ectx: label, entry (DefaultCaptureCCD), group (Capture)
#. +> trunk5
#: kstars.kcfg:1484
#, kde-format
msgid "Default capture module CCD."
msgstr ""
#. i18n: ectx: label, entry (DefaultObserver), group (Capture)
#. +> trunk5
#: kstars.kcfg:1487
#, kde-format
msgid "Default observer full name."
msgstr ""
#. i18n: ectx: label, entry (SyncFOVPA), group (Capture)
#. +> trunk5
#: kstars.kcfg:1490
#, kde-format
msgid "Sync FOV indicator Position Angle with Rotator Settings Position Angle"
msgstr ""
#. i18n: ectx: label, entry (PAMultiplier), group (Capture)
#. +> trunk5
#: kstars.kcfg:1494
#, kde-format
msgid "Position angle multiplier"
msgstr ""
#. i18n: ectx: label, entry (PAOffset), group (Capture)
#. +> trunk5
#: kstars.kcfg:1498
#, kde-format
msgid "Position angle offset"
msgstr ""
#. i18n: ectx: label, entry (GuideDeviation), group (Capture)
#. +> trunk5
#: kstars.kcfg:1502
#, kde-format
msgid "Default maximum permittable guide deviation"
msgstr ""
#. i18n: ectx: whatsthis, entry (GuideDeviation), group (Capture)
#. +> trunk5
#: kstars.kcfg:1503
#, kde-format
msgid "If guide deviation exceeds this limit, the exposure will be automatically aborted and only resumed when the deviation is within this limit."
msgstr ""
#. i18n: ectx: label, entry (HFRDeviation), group (Capture)
#. +> trunk5
#: kstars.kcfg:1507
#, kde-format
msgid "Default maximum permittable HFR deviation"
msgstr ""
#. i18n: ectx: whatsthis, entry (HFRDeviation), group (Capture)
#. +> trunk5
#: kstars.kcfg:1508
#, kde-format
msgid "If HFR deviation exceeds this limit, the autofocus routine will be automatically started."
msgstr ""
#. i18n: ectx: label, entry (EnforceGuideDeviation), group (Capture)
#. +> trunk5
#: kstars.kcfg:1512
#, kde-format
msgid "Enforce guiding deviation limit."
msgstr ""
#. i18n: ectx: label, entry (EnforceAutofocus), group (Capture)
#. +> trunk5
#: kstars.kcfg:1516
#, kde-format
msgid "Enforce Autofocus HFR limit."
msgstr ""
#. i18n: ectx: label, entry (EnforceRefocusEveryN), group (Capture)
#. +> trunk5
#: kstars.kcfg:1520
#, kde-format
msgid "Enforce Refocus Every N Minutes."
msgstr ""
#. i18n: ectx: label, entry (RefocusEveryN), group (Capture)
#. +> trunk5
#: kstars.kcfg:1524
#, kde-format
msgid "Number of minute between forced refocus attempts"
msgstr ""
#. i18n: ectx: whatsthis, entry (RefocusEveryN), group (Capture)
#. +> trunk5
#: kstars.kcfg:1525
#, kde-format
msgid "Sets the time interval before forced autofocus attempts during a capture sequence."
msgstr ""
#. i18n: ectx: label, entry (AutoMeridianHours), group (Capture)
#. +> trunk5
#: kstars.kcfg:1529
#, kde-format
msgid "Default hour angle to perform meridian flip"
msgstr ""
#. i18n: ectx: whatsthis, entry (AutoMeridianHours), group (Capture)
#. +> trunk5
#: kstars.kcfg:1530
#, kde-format
msgid "If the target hour angle exceeds this value, Ekos will command a meridian flip and if successful it will resume guiding and capture operations."
msgstr ""
#. i18n: ectx: label, entry (AutoMeridianFlip), group (Capture)
#. +> trunk5
#: kstars.kcfg:1533
#, kde-format
msgid "Flips the mount when reaching the meridian, if supported."
msgstr ""
#. i18n: ectx: label, entry (ResetMountModelAfterMeridian), group (Capture)
#. +> trunk5
#: kstars.kcfg:1537
#, kde-format
msgid "Reset mount model after meridian flip."
msgstr ""
#. i18n: ectx: label, entry (CalibrationADUValue), group (Capture)
#. +> trunk5
#: kstars.kcfg:1541
#, kde-format
msgid "Desired flat field ADU"
msgstr ""
#. i18n: ectx: whatsthis, entry (CalibrationADUValue), group (Capture)
#. +> trunk5
#: kstars.kcfg:1542
#, kde-format
msgid "If set, Ekos will capture a few flat images to determine the optimal exposure time to achieve the desired ADU value."
msgstr ""
#. i18n: ectx: label, entry (CalibrationADUValueTolerance), group (Capture)
#. +> trunk5
#: kstars.kcfg:1546
#, kde-format
msgid "ADU Value tolerance"
msgstr ""
#. i18n: ectx: whatsthis, entry (CalibrationADUValueTolerance), group (Capture)
#. +> trunk5
#: kstars.kcfg:1547
#, kde-format
msgid "Maximum difference between measured and target ADU values to deem the value as acceptable."
msgstr ""
#. i18n: ectx: label, entry (CalibrationFlatSourceIndex), group (Capture)
#. +> trunk5
#: kstars.kcfg:1551
#, kde-format
msgid "Index of flat source option."
msgstr ""
#. i18n: ectx: label, entry (CalibrationFlatDurationIndex), group (Capture)
#. +> trunk5
#: kstars.kcfg:1555
#, kde-format
msgid "Index of flat duration option."
msgstr ""
#. i18n: ectx: label, entry (CalibrationWallAz), group (Capture)
#. +> trunk5
#: kstars.kcfg:1559
#, kde-format
msgid "Azimuth of calibration wall location."
msgstr ""
#. i18n: ectx: label, entry (CalibrationWallAlt), group (Capture)
#. +> trunk5
#: kstars.kcfg:1563
#, kde-format
msgid "Altitude of calibration wall location."
msgstr ""
#. i18n: ectx: label, entry (MaxTemperatureDiff), group (Capture)
#. +> trunk5
#: kstars.kcfg:1567
#, kde-format
msgid "Maximum acceptable difference between requested and measured temperature set point."
msgstr ""
#. i18n: ectx: label, entry (RememberJobProgress), group (Capture)
#. +> trunk5
#: kstars.kcfg:1571
#, kde-format
msgid "When starting a new capture job, check if files were previously captured and resume capture afterwards."
msgstr ""
#. i18n: ectx: label, entry (HFRThresholdPercentage), group (Capture)
#. +> trunk5
#: kstars.kcfg:1575
#, kde-format
msgid "Increase autofocus HFR value by this percentage gain and store it in Capture Module."
msgstr ""
#. i18n: ectx: label, entry (SaveHFRToFile), group (Capture)
#. +> trunk5
#: kstars.kcfg:1579
#, kde-format
msgid "When saving a sequence file, save current HFR threshold value. By default, zero value is used."
msgstr ""
#. i18n: ectx: label, entry (AutoStretch), group (Capture)
#. +> trunk5
#: kstars.kcfg:1591
#, kde-format
msgid "Perform auto stretch on captured images in FITS Viewer."
msgstr ""
#. i18n: ectx: label, entry (useSummaryPreview), group (Capture)
#. +> trunk5
#: kstars.kcfg:1595
#, kde-format
msgid "Display every image captured sequence image in the Ekos summary screen preview window."
msgstr ""
#. i18n: ectx: label, entry (DefaultFocusCCD), group (Focus)
#. +> trunk5
#: kstars.kcfg:1601
#, kde-format
msgid "Default focus module CCD."
msgstr ""
#. i18n: ectx: label, entry (DefaultFocusFocuser), group (Focus)
#. +> trunk5
#: kstars.kcfg:1604
#, kde-format
msgid "Default focus module focuser."
msgstr ""
#. i18n: ectx: label, entry (FocusTicks), group (Focus)
#. +> trunk5
#: kstars.kcfg:1607
#, kde-format
msgid "Default Focuser step ticks"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusTicks), group (Focus)
#. +> trunk5
#: kstars.kcfg:1608
#, kde-format
msgid "Step size of the absolute focuser. The step size TICKS should be adjusted so that when the focuser moves TICKS steps, the difference in HFR is more than 0.1 pixels. Lower the value when you are close to optimal focus."
msgstr ""
#. i18n: ectx: label, entry (FocusTolerance), group (Focus)
#. +> trunk5
#: kstars.kcfg:1616
#, kde-format
msgid "Default Focuser tolerance value"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusTolerance), group (Focus)
#. +> trunk5
#: kstars.kcfg:1617
#, kde-format
msgid "The tolerance specifies the percentage difference between the current focusing position and the minimum obtained during the focusing run. Adjustment of this value is necessary to prevent the focusing algorithm from oscillating back and forth."
msgstr ""
#. i18n: ectx: label, entry (FocusMaxTravel), group (Focus)
#. +> trunk5
#: kstars.kcfg:1621
#, kde-format
msgid "Maximum Focus Travel Distance"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusMaxTravel), group (Focus)
#. +> trunk5
#: kstars.kcfg:1622
#, kde-format
msgid "Set the maximum travel distance of an absolute focuser."
msgstr ""
#. i18n: ectx: label, entry (FocusExposure), group (Focus)
#. +> trunk5
#: kstars.kcfg:1626
#, kde-format
msgid "Default Focuser exposure value"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusExposure), group (Focus)
#. +> trunk5
#: kstars.kcfg:1627
#, kde-format
msgid "Specifies exposure value of CCD when performing focusing. Lower this value to avoid saturation of bright stars which adversely affects HFR measurement. Increase the value if no stars are detected."
msgstr ""
#. i18n: ectx: label, entry (FocusBoxSize), group (Focus)
#. +> trunk5
#: kstars.kcfg:1631
#, kde-format
msgid "Default Focuser star selection box size"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusBoxSize), group (Focus)
#. +> trunk5
#: kstars.kcfg:1632
#, kde-format
msgid "Set box size to select a focus star."
msgstr ""
#. i18n: ectx: label, entry (FocusXBin), group (Focus)
#. +> trunk5
#: kstars.kcfg:1636
#, kde-format
msgid "Default CCD X binning in focus mode"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusXBin), group (Focus)
#. +> trunk5
#: kstars.kcfg:1637
#, kde-format
msgid "Set horizontal binning of CCD camera while in focus mode."
msgstr ""
#. i18n: ectx: label, entry (FocusYBin), group (Focus)
#. +> trunk5
#: kstars.kcfg:1641
#, kde-format
msgid "Default CCD Y binning in focus mode"
msgstr ""
#. i18n: ectx: whatsthis, entry (FocusYBin), group (Focus)
#. +> trunk5
#: kstars.kcfg:1642
#, kde-format
msgid "Set vertical binning of CCD camera while in focus mode."
msgstr ""
#. i18n: ectx: label, entry (FocusSubFrame), group (Focus)
#. +> trunk5
#: kstars.kcfg:1646
#, kde-format
msgid "Subframe the focus star during the autofocus procedure."
msgstr ""
#. i18n: ectx: label, entry (FocusUseFullField), group (Focus)
#. +> trunk5
#: kstars.kcfg:1650
#, kde-format
msgid "Use full frame field to measure HFR."
msgstr ""
#. i18n: ectx: label, entry (FocusAutoStarEnabled), group (Focus)
#. +> trunk5
#: kstars.kcfg:1654
#, kde-format
msgid "Automatically select a star to focus."
msgstr ""
#. i18n: ectx: label, entry (SuspendGuiding), group (Focus)
#. +> trunk5
#: kstars.kcfg:1658
#, kde-format
msgid "Suspend guiding while autofocus in progress."
msgstr ""
#. i18n: ectx: label, entry (UseFocusDarkFrame), group (Focus)
#. +> trunk5
#: kstars.kcfg:1662
#, kde-format
msgid "Take a dark frame and subtract it before running autofocus operation."
msgstr ""
#. i18n: ectx: label, entry (FocusEffect), group (Focus)
#. +> trunk5
#: kstars.kcfg:1666
#, kde-format
msgid "Image filter to be applied to focus image upon loading."
msgstr ""
#. i18n: ectx: label, entry (FocusThreshold), group (Focus)
#. +> trunk5
#: kstars.kcfg:1670
#, kde-format
msgid "Relative percentage strength of centroid edge pixel strength to average pixel value."
msgstr ""
#. i18n: ectx: label, entry (FocusDetection), group (Focus)
#. +> trunk5
#: kstars.kcfg:1674
#, kde-format
msgid "Star detection algorithm"
msgstr ""
#. i18n: ectx: label, entry (FocusAlgorithm), group (Focus)
#. +> trunk5
#: kstars.kcfg:1678
#, kde-format
msgid "Focus process algorithm"
msgstr ""
#. i18n: ectx: label, entry (FocusFramesCount), group (Focus)
#. +> trunk5
#: kstars.kcfg:1682
#, kde-format
msgid "Number of focus frames to average for HFR calculations."
msgstr ""
#. i18n: ectx: label, entry (DefaultAlignCCD), group (Align)
#. +> trunk5
#: kstars.kcfg:1688
#, kde-format
msgid "Default align module CCD."
msgstr ""
#. i18n: ectx: label, entry (DefaultAlignFW), group (Align)
#. +> trunk5
#: kstars.kcfg:1691
#, kde-format
msgid "Default align module Filter Wheel."
msgstr ""
#. i18n: ectx: label, entry (AlignExposure), group (Align)
#. +> trunk5
#: kstars.kcfg:1694
#, kde-format
msgid "Default alignment exposure value"
msgstr ""
#. i18n: ectx: whatsthis, entry (AlignExposure), group (Align)
#. +> trunk5
#: kstars.kcfg:1695
#, kde-format
msgid "Specifies exposure value of CCD in seconds when performing plate solving."
msgstr ""
#. i18n: ectx: label, entry (SolverBinningIndex), group (Align)
#. +> trunk5
#: kstars.kcfg:1699
#, kde-format
msgid "Default CCD binning index while in alignment mode"
msgstr ""
#. i18n: ectx: whatsthis, entry (SolverBinningIndex), group (Align)
#. +> trunk5
#: kstars.kcfg:1700
#, kde-format
msgid "Set binning index of CCD camera while in alignment mode. Default values 0-3 corresponding to 1x1 to 4x4 binning"
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometrySolverVerbose), group (Align)
#. +> trunk5
#: kstars.kcfg:1704
#, kde-format
msgid "Display detailed verbose messages of the astrometry solver process while in progress."
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometryUseRotator), group (Align)
#. +> trunk5
#: kstars.kcfg:1708
#, kde-format
msgid "Use rotator when performing load and slew."
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometryRotatorThreshold), group (Align)
#. +> trunk5
#: kstars.kcfg:1712
#, kde-format
msgid "Threshold between measured and FITS position angles in arcminutes to consider the load and slew operation successful."
msgstr ""
#. i18n: ectx: label, entry (SolverType), group (Align)
#. +> trunk5
#: kstars.kcfg:1716
#, kde-format
msgid "Set solver type (online, offline, remote)."
msgstr ""
#. i18n: ectx: label, entry (SolverScopeType), group (Align)
#. +> trunk5
#: kstars.kcfg:1720
#, kde-format
msgid "Index of telescope type to be used when solving an image. 0 for Primary, 1 for Guide"
msgstr ""
#. i18n: ectx: label, entry (SolverGotoOption), group (Align)
#. +> trunk5
#: kstars.kcfg:1724
#, kde-format
msgid "Action to take if solver if successful (Sync, Slew to Target, or None)"
msgstr ""
#. i18n: ectx: label, entry (AstrometrySolverWCS), group (Align)
#. +> trunk5
#: kstars.kcfg:1728
#, kde-format
msgid "World Coordinate System (WCS). WCS is used to encode RA/DEC coordinates in captured CCD images."
msgstr ""
#. i18n: ectx: label, entry (AstrometrySolverOverlay), group (Align)
#. +> trunk5
#: kstars.kcfg:1732
#, kde-format
msgid "Display received FITS images unto solver FOV rectangle in the sky map."
msgstr ""
#. i18n: ectx: label, entry (AstrometryDifferentialSlewing), group (Align)
#. +> trunk5
#: kstars.kcfg:1736
#, kde-format
msgid "Do not use Sync when Slew to Target is selected. Use differential slewing to correct for discrepancies."
msgstr ""
#. i18n: ectx: label, entry (SolverAccuracyThreshold), group (Align)
#. +> trunk5
#: kstars.kcfg:1740
#, kde-format
msgid "Accuracy threshold in arcseconds between solution and target coordinates."
msgstr ""
#. i18n: ectx: label, entry (LockAlignFilterIndex), group (Align)
#. +> trunk5
#: kstars.kcfg:1744
#, kde-format
msgid "Use specified filter index when performing astrometry regardless of current filter settings."
msgstr ""
#. i18n: ectx: label, entry (AlignDarkFrame), group (Align)
#. +> trunk5
#: kstars.kcfg:1748
#, kde-format
msgid "Take a dark frame and subtract it before running astrometry operation."
msgstr ""
#. i18n: ectx: label, entry (SettlingTime), group (Align)
#. +> trunk5
#: kstars.kcfg:1752
#, kde-format
msgid "Time to wait in milliseconds after telescope slewing is complete before starting the next capture."
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseNoFITS2FITS), group (Align)
#. +> trunk5
#: kstars.kcfg:1756
#, kde-format
msgid "Do not sanitize FITS. This option should only be checked if astrometry.net version is 0.67 or earlier. Uncheck for any versions greater than 0.67."
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseResort), group (Align)
#. +> trunk5
#: kstars.kcfg:1760
#, kde-format
msgid "Check this option if your image does not have much nebulosity. If it does have strong nebulosity, uncheck it."
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseNoVerify), group (Align)
#. +> trunk5
#: kstars.kcfg:1764
#, kde-format
msgid "This will prevent the solver from looking at an already existing WCS Header before blindly trying to solve the image. It is recommended to keep it checked."
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseImageScale), group (Align)
#. +> trunk5
#: kstars.kcfg:1768
#, kde-format
msgid "Set image scale to speed up solver as it does not have to search index files of different image scales."
msgstr ""
#. i18n: ectx: label, entry (AstrometryImageScaleLow), group (Align)
#. +> trunk5
#: kstars.kcfg:1772
#, kde-format
msgid "Lower image scale."
msgstr ""
#. i18n: ectx: label, entry (AstrometryImageScaleHigh), group (Align)
#. +> trunk5
#: kstars.kcfg:1775
#, kde-format
msgid "Upper image scale."
msgstr ""
#. i18n: ectx: label, entry (AstrometryAutoUpdateImageScale), group (Align)
#. +> trunk5
#: kstars.kcfg:1778
#, kde-format
msgid "Automatically update image scale when CCD or Mount parameters are updated."
msgstr ""
#. i18n: ectx: label, entry (AstrometryImageScaleUnits), group (Align)
#. +> trunk5
#: kstars.kcfg:1782
#, kde-format
msgid "Image scale units in arcminutes (aw), degrees (dw), or arcsec per pixel (app)"
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseDownsample), group (Align)
#. +> trunk5
#: kstars.kcfg:1786
#, kde-format
msgid "Downsample the image to shrink its size and speed up the solver."
msgstr ""
#. i18n: ectx: label, entry (AstrometryDownsample), group (Align)
#. +> trunk5
#: kstars.kcfg:1790
#, kde-format
msgid "Downsample factor"
msgstr ""
#. i18n: ectx: label, entry (AstrometryUsePosition), group (Align)
#. +> trunk5
#: kstars.kcfg:1794
#, kde-format
msgid "Set estimated position to speed up astrometry solver as it does not have to search in other areas of the sky."
msgstr ""
#. i18n: ectx: label, entry (AstrometryPositionRA), group (Align)
#. +> trunk5
#: kstars.kcfg:1798
#, kde-format
msgid "User supplied Right Ascension value in degrees to be passed to the solver."
msgstr ""
#. i18n: ectx: label, entry (AstrometryPositionDE), group (Align)
#. +> trunk5
#: kstars.kcfg:1801
#, kde-format
msgid "User supplied declination value in degrees to be passed to the solver."
msgstr ""
#. i18n: ectx: label, entry (AstrometryAutoUpdatePosition), group (Align)
#. +> trunk5
#: kstars.kcfg:1804
#, kde-format
msgid "Automatically update position coordinates when mounts completes slewing."
msgstr ""
#. i18n: ectx: label, entry (AstrometryRadius), group (Align)
#. +> trunk5
#: kstars.kcfg:1808
#, kde-format
msgid "The Search Radius for the Estimated Telescope/Image Field Position in degrees."
msgstr ""
#. i18n: ectx: label, entry (AstrometryDetectParity), group (Align)
#. +> trunk5
#: kstars.kcfg:1812
#, kde-format
msgid "Detect parity and reuse it to speed up solver."
msgstr ""
#. i18n: ectx: label, entry (AstrometryCustomOptions), group (Align)
#. +> trunk5
#: kstars.kcfg:1816
#, kde-format
msgid "Additional optional astrometry.net options"
msgstr ""
#. i18n: ectx: label, entry (AstrometrySolverBinary), group (Align)
#. +> trunk5
#: kstars.kcfg:1819
#, kde-format
msgid "astrometry.net solve-field binary"
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometrySolverBinary), group (Align)
#. +> trunk5
#: kstars.kcfg:1820
#, kde-format
msgid "Path to astrometry.net solver location."
msgstr ""
#. i18n: ectx: label, entry (AstrometryWCSInfo), group (Align)
#. +> trunk5
#: kstars.kcfg:1828
#, kde-format
msgid "astrometry.net wcsinfo binary"
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometryWCSInfo), group (Align)
#. +> trunk5
#: kstars.kcfg:1829
#, kde-format
msgid "Path to astrometry.net wcsinfo location."
msgstr ""
#. i18n: ectx: label, entry (AstrometryConfFile), group (Align)
#. +> trunk5
#: kstars.kcfg:1837
#, kde-format
msgid "astrometry.net configuration file"
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometryConfFile), group (Align)
#. +> trunk5
#: kstars.kcfg:1838
#, kde-format
msgid "Path to astrometry.net file location."
msgstr ""
#. i18n: ectx: label, entry (AstrometryConfFileIsInternal), group (Align)
#. +> trunk5
#: kstars.kcfg:1842
#, kde-format
msgid "Internal or External Astrometry.net Conf File?"
msgstr ""
#. i18n: ectx: label, entry (AstrometryAPIKey), group (Align)
#. +> trunk5
#: kstars.kcfg:1846
#, kde-format
msgid "astrometry.net API Key"
msgstr ""
#. i18n: ectx: whatsthis, entry (AstrometryAPIKey), group (Align)
#. +> trunk5
#: kstars.kcfg:1847
#, kde-format
msgid "Key to access astrometry.net online web services. You must register with astrometry.net to obtain a key."
msgstr ""
#. i18n: ectx: label, entry (AstrometryAPIURL), group (Align)
#. +> trunk5
#: kstars.kcfg:1851
#, kde-format
msgid "astrometry.net API URL"
msgstr ""
#. i18n: ectx: label, entry (AstrometryUseJPEG), group (Align)
#. +> trunk5
#: kstars.kcfg:1855
#, kde-format
msgid "Use JPEG format, instead of FITS, to upload images to the astrometry.net online service."
msgstr ""
#. i18n: ectx: label, entry (AstrometryTimeout), group (Align)
#. +> trunk5
#: kstars.kcfg:1859
#, kde-format
msgid "Timeout in seconds to wait for astrometry solver to complete."
msgstr ""
#. i18n: ectx: label, entry (DefaultGuideCCD), group (Guide)
#. +> trunk5
#: kstars.kcfg:1865
#, kde-format
msgid "Default guide module CCD."
msgstr ""
#. i18n: ectx: label, entry (DefaultST4Driver), group (Guide)
#. +> trunk5
#: kstars.kcfg:1868
#, kde-format
msgid "Default guide module ST4 Driver."
msgstr ""
#. i18n: ectx: label, entry (GuideExposure), group (Guide)
#. +> trunk5
#: kstars.kcfg:1871
#, kde-format
msgid "Guider exposure duration in seconds."
msgstr ""
#. i18n: ectx: label, entry (GuiderType), group (Guide)
#. +> trunk5
#: kstars.kcfg:1875
#, kde-format
msgid "Which guider process to utilize for guiding (0 Internal Guider, 1 PHD2, 2 lin_guider)"
msgstr ""
#. i18n: ectx: label, entry (GuideAlgorithm), group (Guide)
#. +> trunk5
#: kstars.kcfg:1879
#, kde-format
msgid "Which Algorithm to use track guide square (0 smart, 1 fast, 2 threshold, 3 no threshold)."
msgstr ""
#. i18n: ectx: label, entry (PHD2Host), group (Guide)
#. +> trunk5
#: kstars.kcfg:1883
#, kde-format
msgid "Host name of external PHD2 service"
msgstr ""
#. i18n: ectx: label, entry (PHD2Port), group (Guide)
#. +> trunk5
#: kstars.kcfg:1887
#, kde-format
msgid "PHD2 Event Monitoring Port"
msgstr ""
#. i18n: ectx: label, entry (LinGuiderHost), group (Guide)
#. +> trunk5
#: kstars.kcfg:1891
#, kde-format
msgid "Host name of external lin_guider service"
msgstr ""
#. i18n: ectx: label, entry (LinGuiderPort), group (Guide)
#. +> trunk5
#: kstars.kcfg:1895
#, kde-format
msgid "Lin_guider Event Monitoring Port"
msgstr ""
#. i18n: ectx: label, entry (GuideScopeType), group (Guide)
#. +> trunk5
#: kstars.kcfg:1899
#, kde-format
msgid "Index of telescope type to be used when guiding. 0 for Primary, 1 for Guide"
msgstr ""
#. i18n: ectx: label, entry (CalibrationPulseDuration), group (Guide)
#. +> trunk5
#: kstars.kcfg:1903
#, kde-format
msgid "Pulse duration in milliseconds used for guiding pulses during calibration stage."
msgstr ""
#. i18n: ectx: label, entry (GuideSquareSizeIndex), group (Guide)
#. +> trunk5
#: kstars.kcfg:1907
#, kde-format
msgid "Guide square size index (0 to 4) corresponding to pixel sizes (8 to 128)."
msgstr ""
#. i18n: ectx: label, entry (ImageGuidingEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1911
#, kde-format
msgid "Use Image Guiding algorithms instead of classical centroid guiding."
msgstr ""
#. i18n: ectx: label, entry (GuideRegionAxis), group (Guide)
#. +> trunk5
#: kstars.kcfg:1915
#, kde-format
msgid "Region Axis Index (0 to 4) corresponding to NxN partition size used Image Guiding (64 to 1024)."
msgstr ""
#. i18n: ectx: label, entry (GuideAutoStarEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1919
#, kde-format
msgid "Automatically select calibration star and perform calibration."
msgstr ""
#. i18n: ectx: label, entry (GuideRemoteImagesEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1927
#, kde-format
msgid "When using external guiders, enable reception of remote images in Ekos guide module. By default, remote images are disabled."
msgstr ""
#. i18n: ectx: label, entry (AutoModeIterations), group (Guide)
#. +> trunk5
#: kstars.kcfg:1931
#, kde-format
msgid "Number of automode iterations for calibration process."
msgstr ""
#. i18n: ectx: label, entry (TwoAxisEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1935
#, kde-format
msgid "Use both axes to perform calibration."
msgstr ""
#. i18n: ectx: label, entry (RapidGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1939
#, kde-format
msgid "Use driver side Rapid Guide to perform guiding."
msgstr ""
#. i18n: ectx: label, entry (GuideDarkFrameEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1943
#, kde-format
msgid "Take dark frame for autoguider images."
msgstr ""
#. i18n: ectx: label, entry (GuideSubframeEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1947
#, kde-format
msgid "Subframe guide image around selected region"
msgstr ""
#. i18n: ectx: label, entry (DitherPixels), group (Guide)
#. +> trunk5
#: kstars.kcfg:1951
#, kde-format
msgid "How many pixels to move between subsequent exposures under auto dithering mode."
msgstr ""
#. i18n: ectx: label, entry (DitherFrames), group (Guide)
#. +> trunk5
#: kstars.kcfg:1955
#, kde-format
msgid "Dither after this many frames."
msgstr ""
#. i18n: ectx: label, entry (DitherThreshold), group (Guide)
#. +> trunk5
#: kstars.kcfg:1963
#, kde-format
msgid "Maximum distance (pixels) for guiding to be considered settled."
msgstr ""
#. i18n: ectx: label, entry (DitherTimeout), group (Guide)
#. +> trunk5
#: kstars.kcfg:1967
#, kde-format
msgid "Time limit (seconds) on dithering to settle down."
msgstr ""
#. i18n: ectx: label, entry (DitherMaxIterations), group (Guide)
#. +> trunk5
#: kstars.kcfg:1971
#, kde-format
msgid "How many dithering attempts to undertake before giving up."
msgstr ""
#. i18n: ectx: label, entry (DitherNoGuidingPulse), group (Guide)
#. +> trunk5
#: kstars.kcfg:1975
#, kde-format
msgid "Pulse length in milliseconds used for non-guiding dither."
msgstr ""
#. i18n: ectx: label, entry (DitherFailAbortsAutoGuide), group (Guide)
#. +> trunk5
#: kstars.kcfg:1979
#, kde-format
msgid "If dithering fails then abort autoguide."
msgstr ""
#. i18n: ectx: label, entry (DitherEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1983
#, kde-format
msgid "Use Auto Dithering when guiding."
msgstr ""
#. i18n: ectx: label, entry (DitherNoGuiding), group (Guide)
#. +> trunk5
#: kstars.kcfg:1987
#, kde-format
msgid "Perform dithering even when not guiding."
msgstr ""
#. i18n: ectx: label, entry (AOLimit), group (Guide)
#. +> trunk5
#: kstars.kcfg:1991
#, kde-format
msgid "The Adaptive Optics unit is utilized if the guiding deviation is less than this limit in arcseconds. Once exceeded, mechanical guiding is utilized."
msgstr ""
#. i18n: ectx: label, entry (RAGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1995
#, kde-format
msgid "Enable autoguiding in the RA axis."
msgstr ""
#. i18n: ectx: label, entry (DECGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:1999
#, kde-format
msgid "Enable autoguiding in the DEC axis."
msgstr ""
#. i18n: ectx: label, entry (NorthDECGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:2003
#, kde-format
msgid "Enable North autoguiding in the DEC axis."
msgstr ""
#. i18n: ectx: label, entry (SouthDECGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:2007
#, kde-format
msgid "Enable South autoguiding in the DEC axis."
msgstr ""
#. i18n: ectx: label, entry (EastRAGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:2011
#, kde-format
msgid "Enable East autoguiding in the RA axis."
msgstr ""
#. i18n: ectx: label, entry (WestRAGuideEnabled), group (Guide)
#. +> trunk5
#: kstars.kcfg:2015
#, kde-format
msgid "Enable West autoguiding in the RA axis."
msgstr ""
#. i18n: ectx: label, entry (GuiderAccuracyThreshold), group (Guide)
#. +> trunk5
#: kstars.kcfg:2052
#, kde-format
msgid "Accuracy threshold for the Guide Graphs."
msgstr ""
#. i18n: ectx: label, entry (RADisplayedOnGuideGraph), group (Guide)
#. +> trunk5
#: kstars.kcfg:2056
#, kde-format
msgid "Display the RA Plot on the Guide Drift Graphics."
msgstr ""
#. i18n: ectx: label, entry (DEDisplayedOnGuideGraph), group (Guide)
#. +> trunk5
#: kstars.kcfg:2060
#, kde-format
msgid "Display the DEC Plot on the Guide Drift Graphics."
msgstr ""
#. i18n: ectx: label, entry (RACorrDisplayedOnGuideGraph), group (Guide)
#. +> trunk5
#: kstars.kcfg:2064
#, kde-format
msgid "Display the RA Corrections Plot on the Guide Drift Graphics."
msgstr ""
#. i18n: ectx: label, entry (DECorrDisplayedOnGuideGraph), group (Guide)
#. +> trunk5
#: kstars.kcfg:2068
#, kde-format
msgid "Display the DEC Corrections Plot on the Guide Drift Graphics."
msgstr ""
#. i18n: ectx: whatsthis, entry (SchedulerLogging), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2074
#, kde-format
msgid "Log Ekos Scheduler Module activity."
msgstr ""
#. i18n: ectx: whatsthis, entry (SortSchedulerJobs), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2078
#, kde-format
msgid "Sort scheduler jobs by priority and altitude."
msgstr ""
#. i18n: ectx: label, entry (StopEkosAfterShutdown), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2082
#, kde-format
msgid "After shutdown procedure is successfully executed, shutdown INDI and Ekos."
msgstr ""
#. i18n: ectx: label, entry (ShutdownScriptTerminatesINDI), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2086
#, kde-format
msgid "Whether shutdown script, if exists, terminates INDI server in the process."
msgstr ""
#. i18n: ectx: label, entry (PreemptiveShutdown), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2090
#, kde-format
msgid "Perform pre-emptive shutdown if no jobs are due for a number of hours."
msgstr ""
#. i18n: ectx: label, entry (ResetMountModelOnAlignFail), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2094
#, kde-format
msgid "Reset mount model in case of alignment failure."
msgstr ""
#. i18n: ectx: label, entry (PreemptiveShutdownTime), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2098
#, kde-format
msgid "Maximum number of hours before the next job is due to trigger a pre-emptive shutdown."
msgstr ""
#. i18n: ectx: label, entry (LeadTime), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2102
#, kde-format
msgid "Minimum time between jobs in minutes."
msgstr ""
#. i18n: ectx: label, entry (PreDawnTime), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2106
#, kde-format
msgid "Do not permit jobs to be scheduled or executed past this many minutes before dawn."
msgstr ""
#. i18n: ectx: label, entry (TelescopeFocalLength), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2110
#, kde-format
msgid "Telescope focal length in millimeters."
msgstr ""
#. i18n: ectx: label, entry (CameraPixelWidth), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2114
#, kde-format
msgid "Camera pixel size width in micrometers."
msgstr ""
#. i18n: ectx: label, entry (CameraPixelHeight), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2118
#, kde-format
msgid "Camera pixel size height in micrometers."
msgstr ""
#. i18n: ectx: label, entry (CameraWidth), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2122
#, kde-format
msgid "Camera Width in pixels."
msgstr ""
#. i18n: ectx: label, entry (CameraHeight), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2126
#, kde-format
msgid "Camera Height in pixels."
msgstr ""
#. i18n: ectx: label, entry (CameraRotation), group (Scheduler)
#. +> trunk5
#: kstars.kcfg:2130
#, kde-format
msgid "Position angle of the camera with respect to north."
msgstr ""
#. i18n: ectx: label, entry (LastServer), group (INDI Lite)
#. +> trunk5
#: kstars.kcfg:2136
#, kde-format
msgid "The address of last used server"
msgstr ""
#. i18n: ectx: label, entry (LastServerPort), group (INDI Lite)
#. +> trunk5
#: kstars.kcfg:2139
#, kde-format
msgid "The port of last used server"
msgstr ""
#. i18n: ectx: label, entry (LastWebManagerPort), group (INDI Lite)
#. +> trunk5
#: kstars.kcfg:2143
#, kde-format
msgid "The port of last used Web Manager"
msgstr ""
#. i18n: ectx: label, entry (HIPSMemoryCache), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2149
#, kde-format
msgid "RAM cache size in MB used to store cached HIPS images."
msgstr ""
#. i18n: ectx: label, entry (HIPSNetCache), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2153
#, kde-format
msgid "Hard disk cache size in MB used to store cached HIPS images."
msgstr ""
#. i18n: ectx: label, entry (HIPSSource), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2157
#, kde-format
msgid "HIPS source catalog title."
msgstr ""
#. i18n: ectx: label, entry (HIPSBiLinearInterpolation), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2161
#, kde-format
msgid "Use Bilinear interpolation when rendering HiPS images?"
msgstr ""
#. i18n: ectx: label, entry (HIPSShowGrid), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2165
#, kde-format
msgid "Show HiPS grid on the sky map."
msgstr ""
#. i18n: ectx: label, entry (ShowHIPS), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2169
#, kde-format
msgid "Draw HiPS sources in the sky map?"
msgstr ""
#. i18n: ectx: whatsthis, entry (ShowHIPS), group (HIPS)
#. +> trunk5
#: kstars.kcfg:2170
#, kde-format
msgid "Toggle whether the HIPS sources are drawn in the sky map."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Western"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ANDROMEDA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ANTLIA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "APUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AQUARIUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AQUILA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:9
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARIES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:10
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AURIGA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:11
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BOOTES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:12
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAELUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:13
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAMELOPARDALIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:14
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CANCER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:15
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CANES VENATICI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:16
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CANIS MAJOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:17
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CANIS MINOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:18
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAPRICORNUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:19
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CARINA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:20
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CASSIOPEIA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:21
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CENTAURUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:22
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CEPHEUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:23
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CETUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:24
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHAMAELEON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:25
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CIRCINUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:26
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COLUMBA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:27
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COMA BERENICES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:28
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CORONA AUSTRALIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:29
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CORONA BOREALIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:30
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CORVUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:31
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CRATER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:32
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CRUX"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:33
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CYGNUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:34
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DELPHINUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:35
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DORADO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:36
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRACO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:37
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EQUULEUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:38
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ERIDANUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:39
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FORNAX"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:40
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GEMINI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:41
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GRUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:42
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HERCULES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:43
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOROLOGIUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:44
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HYDRA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:45
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HYDRUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:46
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "INDUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:47
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LACERTA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:48
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:49
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEO MINOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:50
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEPUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:51
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LIBRA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:52
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LUPUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:53
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LYNX"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:54
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LYRA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:55
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MENSA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:56
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MICROSCOPIUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:57
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MONOCEROS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:58
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MUSCA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:59
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORMA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:60
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OCTANS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:61
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OPHIUCHUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:62
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ORION"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:63
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PAVO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:64
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PEGASUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:65
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PERSEUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:66
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PHOENIX"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:67
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PICTOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:68
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PISCES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:69
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PISCIS AUSTRINUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:70
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PUPPIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:71
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PYXIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:72
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RETICULUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:73
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SAGITTA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:74
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SAGITTARIUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:75
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SCORPIUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:76
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SCULPTOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:77
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SCUTUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:78
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SERPENS CAPUT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:79
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SERPENS CAUDA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:80
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEXTANS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:81
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TAURUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:82
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TELESCOPIUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:83
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TRIANGULUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:84
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TRIANGULUM AUSTRALE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:85
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TUCANA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:86
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "URSA MAJOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:87
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "URSA MINOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:88
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VELA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:89
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VIRGO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:90
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VOLANS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:91
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VULPECULA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:92
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Chinese"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:93 kstars_i18n.cpp:443
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORTHERN DIPPER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:94
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CURVED ARRAY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:95
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COILED THONG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:96
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WINGS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:97
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHARIOT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:98
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TAIL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:99
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WINNOWING BASKET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:100 kstars_i18n.cpp:501
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DIPPER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:101
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:102 kstars_i18n.cpp:421
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THREE STEPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:103
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "IMPERIAL GUARDS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:104
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HORN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:105
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WILLOW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:106
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "IMPERIAL PASSAGEWAY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:107
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KITCHEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:108
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIVER TURTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:109
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STOMACH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:110
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GREAT GENERAL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:111
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WALL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:112
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEGS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:113
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROOT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:114
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RAMPARTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:115
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLYING CORRIDOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:116
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OUTER FENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:117
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FORD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:118
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEVEN EXCELLENCIES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:119
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MARKET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:120
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE CHARIOTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:121 kstars_i18n.cpp:346
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROLLED TONGUE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:122 kstars_i18n.cpp:204
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:123 kstars_i18n.cpp:378
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOILET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:124
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SCREEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:125
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SOLDIERS' MARKET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:126
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SQUARE GRANARY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:127
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THREE STARS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:128
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FOUR CHANNELS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:129
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WELL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:130
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SOUTH RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:131
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORTH RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:132
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE FEUDAL KINGS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:133
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ORCHARD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:134
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MEADOWS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:135
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CIRCULAR GRANARY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:136
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PURPLE PALACE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:137
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EXTENDED NET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:138
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARSENAL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:139
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOOK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:140
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SUPREME PALACE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:141
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JADE WELL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:142
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LANCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:143 kstars_i18n.cpp:193
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BOAT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:144 kstars_i18n.cpp:340
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MAUSOLEUM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:145 kstars_i18n.cpp:271
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DOG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:146
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EARTH GOD'S TEMPLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:147
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BOW AND ARROW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:148
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PESTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:149 kstars_i18n.cpp:304
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MORTAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:150
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROOFTOP"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:151
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THUNDERBOLT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:152
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHARIOT YARD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:153
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GOOD GOURD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:154
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROTTEN GOURD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:155
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ENCAMPMENT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:156
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THUNDER AND LIGHTNING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:157
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PALACE GATE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:158
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPTINESS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:159
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WEAVING GIRL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:160
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GIRL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:161
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OX"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:162
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HEART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:163
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROOM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:164
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SPRING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:165
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ESTABLISHMENT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:166
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLAIL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:167
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SPEAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:168 kstars_i18n.cpp:281
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIGHT FLAG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:169 kstars_i18n.cpp:278
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEFT FLAG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:170
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRUMSTICK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:171
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BOND"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:172
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WOMAN'S BED"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:173
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WESTERN DOOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:174
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EASTERN DOOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:175
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FARMLAND"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:176
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:177
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GHOSTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:178
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "XUANYUAN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:179
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TRIPOD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:180
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NECK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:181
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ZAOFU"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:182
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MARKET OFFICER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:183
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Egyptian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:184
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BULL'S FORELEG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:185
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWO POLES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:186
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LION"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:187
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWO JAWS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:188
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SAH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:189
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BIRD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:190
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:191
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TRIANGLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:192
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FERRY BOAT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:194
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CROCODILE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:195
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SELKIS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:196
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PROW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:197
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HORUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:198
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SHEEPFOLD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:199
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GIANT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:200
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HIPPOPOTAMUS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:201
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLOCK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:202
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PAIR OF STARS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:203
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KHANUWY FISH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:205
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JAW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:206
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MOORING POST"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:207
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KENEMET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:208
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHEMATY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:209
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WATY BEKETY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:210
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SHEEP"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:211
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STARS OF WATER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:212
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Inuit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:213
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWO SUNBEAMS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:214
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWO PLACED FAR APART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:215
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DOGS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:216
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COLLARBONES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:217
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LAMP STAND"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:218
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CARIBOU"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:219
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWO IN FRONT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:220
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BREASTBONE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:221
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RUNNERS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:222
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BLUBBER CONTAINER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:223
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE ONE BEHIND"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:224
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Korean"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:225
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOLY KETTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:226
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FARM OF CAPITAL CITY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:227
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DIGNITY OF KING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:228
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NOMINATION"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:229
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GATE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:230
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EQUALITY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:231 kstars_i18n.cpp:232 kstars_i18n.cpp:444
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HELPER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:233
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "POSITION OF HOLY KING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:234
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NECK OF DRAGON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:235
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BEHEADING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:236
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JUDGE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:237
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLUTTERING FLAG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:238
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JAVELIN OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:239
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEAT FOR LONGEVITY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:240
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OAR FOR VISITOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:241
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MILK OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:242
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOUSE OF QUEEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:243
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ANCIENT CHARIOT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:244
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CARRIAGE FOR KING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:245
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GENERAL OF CAVALRY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:246
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAVALRY OF EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:247
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GENERAL OF MOBILE TROOPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:248
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EAST ROAD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:249
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GATE BOLT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:250
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DOOR LOCK AND KEY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:251
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PENALTY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:252
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROYAL HALL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:253 kstars_i18n.cpp:430
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHAMBERLAIN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:254
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SUN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:255
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WEST ROAD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:256
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEAT OF EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:257
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE TROOPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:258
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIVER OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:259
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PRAYER FOR PROGENY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:260
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FISH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:261
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FORECAST"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:262
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "YARD FOR EMPRESSES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:263
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOLY PALACE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:264
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WINNOW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:265
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OUTER PESTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:266
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHAFF"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:267
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HEAD OF TOWN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:268
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BUILD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:269
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FOWL OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:270
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SHRINE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:272
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORTHEASTERN NATIONS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:273
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OLD FARMER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:274
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SNAPPING TURTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:275
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROAD FOR EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:276
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE WEAVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:277
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIVER ADJOINING TOWER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:279
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRUM OF RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:280
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRUMSTICK OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:282
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COW LEADING MAN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:283
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BANK SPREAD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:284
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BASKET FOR SILKWORM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:285
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR CART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:286
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FERRY OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:287
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FRUIT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:288
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEED"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:289
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STORAGE FOR LADY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:290
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COURT LADY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:291
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JUDGE FAULT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:292
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AMEND FAULT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:293
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GRANT LIFE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:294
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PUNISH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:295
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPTY HOUSE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:296
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WEEP"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:297
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SOB"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:298
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CASTLE WITH RAMPART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:299
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOOK FOR DRESS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:300
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GROOM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:301
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHARIOTEER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:302
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HUMAN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:303
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "INNER PESTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:305
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WAREHOUSE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:306
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOMB"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:307
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COVER OF HOUSE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:308
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BROKEN MORTAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:309
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CLIMBING SERPENT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:310
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PALACE OF EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:311
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DETACHED PALACE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:312
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICIAL FOR MATERIALS SUPPLY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:313
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LIGHTNING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:314
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RAMPART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:315
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TROOPS OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:316
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VILLAGE FOR PATROL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:317
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NET OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:318
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STABLE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:319
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EASTERN WALL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:320 kstars_i18n.cpp:419
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CIVIL ENGINEER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:321
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THUNDERBOLTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:322
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CLOUDS AND RAIN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:323
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HIGHWAY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:324
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WHIP"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:325
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR CHARIOT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:326
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SIDE ROAD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:327
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARMORY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:328
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SOUTHERN GATE OF EMPERATOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:329
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OUTER FOLDING SCREEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:330
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOILET OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:331
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARCHITECT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:332
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPERATOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:333
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WATCHTOWER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:334
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEFT ELM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:335
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIGHT ELM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:336
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STOREHOUSE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:337
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STACK OF CEREALS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:338
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SHIP OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:339 kstars_i18n.cpp:381
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STORE OF WATER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:341
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HEAP OF CORPSES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:342
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STOMACH OF TIGER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:343
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STORE OF MILLET FOR RELIGIOUS SERVICE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:344
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STOREHOUSE FOR CEREALS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:345
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WHETSTONE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:347
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SHAMAN OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:348
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EAR AND EYE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:349
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MOON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:350 kstars_i18n.cpp:353
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HILL OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:351
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CONSPIRACY OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:352
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FODDER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:354
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GARAGE FOR CHARIOT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:355
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "POND FOR FISH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:356 kstars_i18n.cpp:357 kstars_i18n.cpp:358
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PILLAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:359
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PUDDLE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:360
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KINGS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:361
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GATEWAY OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:362
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLAGE OF SAAM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:363
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VILLAGE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:364
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BELVEDERE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:365
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GENERAL OF BORDER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:366
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CELEBRATION OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:367
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLAG OF EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:368
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NINE TERRITORIES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:369
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GARDEN OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:370
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SETTLED FLAG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:371
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FORECAST CALAMITY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:372
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SCOUT OF THREE TROOPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:373
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SAAM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:374
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EXPEDITIONARY FORCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:375
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WELL FOR MILITARY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:376
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WELL OF JADE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:377 kstars_i18n.cpp:432
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FOLDING SCREEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:379
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ARROW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:380
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PILED BRUSHWOOD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:382
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORTHERN RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:383
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE LORDS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:384
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WINE GLASS OF THE SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:385
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EASTERN WELL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:386
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLOOD CONTROL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:387
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BALANCE OF WATER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:388
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FOUR SPIRITS OF THE RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:389
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SOUTHERN RIVER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:390
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TWIN GATE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:391
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BOW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:392
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "STAR OF WOLF"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:393
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WILD FOWLS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:394
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MARKET FOR ARMY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:395
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GRANDCHILDREN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:396
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:397
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GROWN-UP"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:398
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OLD MAN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:399
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BEACON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:400
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EYE OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:401
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PILE OF DEAD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:402
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GREEN RIDGE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:403
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OUTER KITCHEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:404
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DOG OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:405
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SPIRIT OF GURYOUNG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:406
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLAG OF WINE OFFICER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:407
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER OF KITCHEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:408
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EQUALITY AND FAIR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:409
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPEROR HEONWON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:410
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAPITAL OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:411
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHIEF OF FARMING"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:412
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER OF TOMB"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:413
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOMB OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:414
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WING OF RED BIRD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:415
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EASTERN POTTERY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:416
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CHARIOT OF EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:417
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SAND FOR LIFE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:418
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GATEWAY FOR TROOPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:420
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GUARDIAN KNIGHT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:422
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE FEUDAL LORDS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:423
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SANGJIIN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:424
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LOW FENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:425 kstars_i18n.cpp:426
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TALL FENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:427
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NINE LORDS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:428
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DUNG OF TIGER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:429
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CROWN PRINCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:431
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIVE EMPERORS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:433 kstars_i18n.cpp:441 kstars_i18n.cpp:442
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THREE MINISTERS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:434
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR AUDIENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:435
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GRAVE FRONT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:436
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OBSERVATORY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:437
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FEMALE OFFICER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:438
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WIDE LODGING AREA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:439
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EIGHT CEREALS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:440
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ADVANCE GUARD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:445
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VIRTUE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:446
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPEROR'S GOD OF WAR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:447
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMPEROR'S GOD OF WEATHER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:448
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "INNER KITCHEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:449
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FLAP OF FLAG"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:450
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MINISTER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:451
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GENERAL AND MINISTER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:452
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JAIL OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:453
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SIX DEPARTMENTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:454
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "INNER STAIRWAY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:455
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SPEAR OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:456
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "COVER FOR EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:457
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PLACE FOR FIVE EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:458
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "YEARS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:459
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KITCHEN OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:460
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NORTH POLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:461
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WOUND LODGE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:462
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SINGLE-LOG BRIDGE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:463
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "GREAT EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:464
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR OPINION"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:465
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PILLAR OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:466
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SECRETARY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:467
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MAID"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:468
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DESK OF WOMAN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:469
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JUDGE PRISON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:470 kstars_i18n.cpp:471
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "PURPLE FENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:472
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ORDER OF SKY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:473
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEVEN MINISTERS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:474
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THREAD STRAW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:475 kstars_i18n.cpp:476
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MARKET FENCE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:477
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FEUDAL LORD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:478
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEAT FOR EMPEROR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:479
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROYAL FAMILY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:480
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HEAD OF FAMILY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:481
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RECORD OF FAMILY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:482
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR FAMILY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:483
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOWER IN MARKET"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:484
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MEASURE CEREAL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:485
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CEREAL MEASURE REGULATION"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:486
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EUNUCH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:487
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR CHARIOTS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:488
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MEASURE AMOUNT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:489
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BUTCHERY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:490
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "OFFICER FOR JEWEL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:491
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ROYAL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:492
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LORD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:493
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LEFT EXECUTOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:494
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RIGHT EXECUTOR"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:495
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CROSSBEAM FOR HEO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:496
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THREADING COINS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:497
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Lakota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:498
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HAND"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:499
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SNAKE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:500
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIREPLACE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:502
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RACE TRACK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:503
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ANIMAL"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:504
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ELK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:505
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SEVEN LITTLE GIRLS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:506
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DRIED WILLOW"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:507
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "SALAMANDER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:508
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TURTLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:509
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THUNDERBIRD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:510
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BEAR'S LODGE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:511
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Maori"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:512
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TAKI-O-AUTAHI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:513
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TE TAURA-O-TE-WAKA-O-TAMARERETI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:514
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TAU-TORO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:515
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE GREAT BOAT OF TAMA RERETI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:516
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MATAKAREHU"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:517
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Navaro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:518
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MAN WITH FEET APART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:519
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LIZARD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:520
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DILYEHE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:521
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIRST BIG ONE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:522
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "RABBIT TRACKS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:523
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FIRST SLIM ONE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:524
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Norse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:525
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AURVANDIL'S TOE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:526
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WOLF'S MOUTH"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:527
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE FISHERMEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:528
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "WOMAN'S CART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:529
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MAN'S CART"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:530
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE ASAR BATTLEFIELD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:531
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Polynesian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:532
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "BAILER"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:533
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CAT'S CRADLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:534
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VOICE OF JOY"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:535
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "THE SEVEN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:536
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "MAUI'S FISHHOOK"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:537
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "NAVIGATOR'S TRIANGLE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:538
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KITE OF KAWELO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:539
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FRIGATE BIRD"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:540
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "CARED FOR BY MOON"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:541
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "DOLPHIN"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:542
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Tupi-Guarani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:543
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "EMA (GUIRA-NHANDU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:544
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOMEM VELHO (TUIVAE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:545
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "ANTA DO NORTE (TAPI'I)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:546
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VEADO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:547
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "JOYKEXO"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:548
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "VESPEIRO (EIXU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:549
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "QUEIXADA DA ANTA (TAPI'I RAINHYKA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:550
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "C Tongan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:551
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FATANALUA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:552
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "AE E'UVEA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:553
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "LUA TANGATA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:554
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "KAPAKUA'O'TAFAHI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:555
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TU'ULALUPE"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:556
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOLOA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:557
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TUINGA IKA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:558
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOLOALAHI"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:559
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "HOUMATOLOA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:560
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "TOLOATONGA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:561
#, kde-kuit-format
msgctxt "Constellation name (optional)"
msgid "FUNGASIA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:561
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Western"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:562
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Chinese"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:563
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Egyptian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:564
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Inuit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:565
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Korean"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:566
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Lakota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:567
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Maori"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:568
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Navaro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:569
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Norse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:570
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Polynesian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:571
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Tupi-Guarani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:572
#, kde-kuit-format
msgctxt "Sky Culture"
msgid "Tongan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:573
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "100 Mile House"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:574
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Aabenraa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:575
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Aachen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:576
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Aalborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:577
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Aarhus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:578
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Abakan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:579
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Abbotsford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:580
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Aberdeen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:581
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Aberdeen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:582
#, kde-kuit-format
msgctxt "City in Scotland United Kingdom"
msgid "Aberdeen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:583
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Aberdeen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:584
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Aberdeen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:585
#, kde-kuit-format
msgctxt "City in Ivory coast"
msgid "Abidjan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:586
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Abilene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:587
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Abilene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:588
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Abuja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:589
#, kde-kuit-format
msgctxt "City in Mexico"
msgid "Acapulco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:590
#, kde-kuit-format
msgctxt "City in Ghana"
msgid "Accra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:591
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Ada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:592
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Adak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:593
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Adams"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:594
#, kde-kuit-format
msgctxt "City in Pitcairn Islands"
msgid "Adamstown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:595
#, kde-kuit-format
msgctxt "City in Ethiopia"
msgid "Addis Ababa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:596
#, kde-kuit-format
msgctxt "City in South Australia Australia"
msgid "Adelaide"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:597
#, kde-kuit-format
msgctxt "City in Yemen"
msgid "Aden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:598
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Afton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:599
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Afton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:600
#, kde-kuit-format
msgctxt "City in Niger"
msgid "Agadez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:601
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Agadir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:602
#, kde-kuit-format
msgctxt "City in Guam"
msgid "Agana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:603
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Aginskoe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:604
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Ahwahnee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:605
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Aiken"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:606
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Ainsworth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:607
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Airdrie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:608
#, kde-kuit-format
msgctxt "City in Corse du Sud France"
msgid "Ajaccio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:609
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Ajo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:610
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Akron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:611
#, kde-kuit-format
msgctxt "City in Libya"
msgid "Al Jawf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:612
#, kde-kuit-format
msgctxt "City in Bahrain"
msgid "Al Manamah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:613
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Alameda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:614
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Alamo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:615
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Alamogordo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:616
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Albacete"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:617
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Albany"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:618
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Albany"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:619
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Albany"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:620
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Albion"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:621
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Albuquerque"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:622
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Alcalá de Henares"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:623
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Alcoa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:624
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Aldermaston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:625
#, kde-kuit-format
msgctxt "City in Nunavut Canada"
msgid "Alert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:626
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Alessandria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:627
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Alexander City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:628
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Alexandria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:629
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Alexandria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:630
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Alexandria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:631
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Alexis Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:632
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Algiers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:633
#, kde-kuit-format
msgctxt "City in Canada"
msgid "Algonquin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:634
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Alhambra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:635
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Alicante"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:636
#, kde-kuit-format
msgctxt "City in Northern Territory Australia"
msgid "Alice Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:637
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Allegheny Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:638
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Allentown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:639
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Alliance"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:640
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Alma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:641
#, kde-kuit-format
msgctxt "City in Kazakhstan"
msgid "Alma Ata"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:642
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Almería"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:643
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Alonsa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:644
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Alpharetta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:645
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Alpine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:646
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Altenstadt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:647
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Altoona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:648
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Alytus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:649
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Amami Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:650
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Amarillo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:651
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Ambler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:652
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Amchitka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:653
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "American Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:654
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Ames"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:655
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Amherst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:656
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Amherst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:657
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Amherst Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:658
#, kde-kuit-format
msgctxt "City in Somme France"
msgid "Amiens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:659
#, kde-kuit-format
msgctxt "City in Cape Verde"
msgid "Amilcar Cabral"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:660
#, kde-kuit-format
msgctxt "City in Jordan"
msgid "Amman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:661
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Amos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:662
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Amqui"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:663
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Amsterdam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:664
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Anaconda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:665
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Anadyr"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:666
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Anaheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:667
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Anahim Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:668
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Anchorage"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:669
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Ancona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:670
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Anderson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:671
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Anderson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:672
#, kde-kuit-format
msgctxt "City in Guam"
msgid "Anderson AFB"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:673
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Andong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:674
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Andria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:675
#, kde-kuit-format
msgctxt "City in Palau"
msgid "Angaur Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:676
#, kde-kuit-format
msgctxt "City in Turkey"
msgid "Ankara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:677
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Ann Arbor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:678
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Annabah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:679
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Annapolis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:680
#, kde-kuit-format
msgctxt "City in Haute-Savoie France"
msgid "Annecy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:681
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Annette Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:682
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Anniston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:683
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Ansbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:684
#, kde-kuit-format
msgctxt "City in Madagascar"
msgid "Antananarivo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:685
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Antigonish"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:686
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Antlers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:687
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Antofagasta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:688
#, kde-kuit-format
msgctxt "City in Madagascar"
msgid "Antsirabe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:689
#, kde-kuit-format
msgctxt "City in Belgium"
msgid "Antwerp"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:690
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Anzac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:691
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Aosta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:692
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Appleton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:693
#, kde-kuit-format
msgctxt "City in Jordan"
msgid "Aqaba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:694
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Arborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:695
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Arcade-Arden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:696
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Arcetri"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:697
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Archenhold"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:698
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Ardmore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:699
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Arecibo Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:700
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Arese"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:701
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Arezzo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:702
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Argentia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:703
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Argyle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:704
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Arica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:705
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Arkadelphia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:706
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Arkhangelsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:707
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Arlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:708
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Arlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:709
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Arlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:710
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Arlington Heights"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:711
#, kde-kuit-format
msgctxt "City in Northern Ireland United Kingdom"
msgid "Armagh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:712
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Armour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:713
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Armstrong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:714
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Arnold's Cove"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:715
#, kde-kuit-format
msgctxt "City in Gran Canaria Spain"
msgid "Arrecife"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:716
#, kde-kuit-format
msgctxt "City in Uganda"
msgid "Arua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:717
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Arvada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:718
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Ash Fork"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:719
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Ashern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:720
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Asheville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:721
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Ashland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:722
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Ashland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:723
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Ashland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:724
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Ashley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:725
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Asiago"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:726
#, kde-kuit-format
msgctxt "City in Eritrea"
msgid "Asmera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:727
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Aspen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:728
#, kde-kuit-format
msgctxt "City in Eritrea"
msgid "Assab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:729
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Assiniboia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:730
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Astoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:731
#, kde-kuit-format
msgctxt "City in Paraguay"
msgid "Asunción"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:732
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Aswan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:733
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Asyut"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:734
#, kde-kuit-format
msgctxt "City in Greece"
msgid "Atenas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:735
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Athabasca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:736
#, kde-kuit-format
msgctxt "City in Greece"
msgid "Athens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:737
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Athens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:738
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Athens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:739
#, kde-kuit-format
msgctxt "City in Leinster Ireland"
msgid "Athlone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:740
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Atikokan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:741
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Atkinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:742
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Atlanta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:743
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Atlantic City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:744
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Atmore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:745
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Attleboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:746
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Auburn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:747
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Auburn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:748
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Auckland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:749
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Auden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:750
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Augsburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:751
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Augusta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:752
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Augusta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:753
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Augusta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:754
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Aurora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:755
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Aurora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:756
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Aurora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:757
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Austin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:758
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Austin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:759
#, kde-kuit-format
msgctxt "City in New South Wales Australia"
msgid "Avalon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:760
#, kde-kuit-format
msgctxt "City in Victoria Australia"
msgid "Avalon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:761
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Aviano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:762
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Avon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:763
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Ayase"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:764
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Aztec"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:765
#, kde-kuit-format
msgctxt "City in Palau"
msgid "Babelthuap Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:766
#, kde-kuit-format
msgctxt "City in Philippines"
msgid "Bacolod"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:767
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Badajoz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:768
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Badalona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:769
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Baddeck"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:770
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Baden-Baden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:771
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Badger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:772
#, kde-kuit-format
msgctxt "City in Guinea Bissau"
msgid "Bafata"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:773
#, kde-kuit-format
msgctxt "City in Iraq"
msgid "Baghdad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:774
#, kde-kuit-format
msgctxt "City in United Arab Emirates"
msgid "Bahrain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:775
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Baie Verte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:776
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Baie-Comeau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:777
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Baie-Saint-Paul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:778
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Baker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:779
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Bakersfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:780
#, kde-kuit-format
msgctxt "City in Panama"
msgid "Balboa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:781
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Baldwin Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:782
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Bali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:783
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Baltimore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:784
#, kde-kuit-format
msgctxt "City in Mali"
msgid "Bamako"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:785
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bamberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:786
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Bancroft"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:787
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Bandar Abbass"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:788
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Bandar Lengeh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:789
#, kde-kuit-format
msgctxt "City in Brunei"
msgid "Bandar Seri Begawan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:790
#, kde-kuit-format
msgctxt "City in Turkey"
msgid "Bandirma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:791
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Banff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:792
#, kde-kuit-format
msgctxt "City in India"
msgid "Bangalore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:793
#, kde-kuit-format
msgctxt "City in Central African Republic"
msgid "Bangassou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:794
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Bangkok"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:795
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Bangor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:796
#, kde-kuit-format
msgctxt "City in Central African Republic"
msgid "Bangui"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:797
#, kde-kuit-format
msgctxt "City in Gambia"
msgid "Banjul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:798
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Bar Harbor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:799
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Baraboo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:800
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Barcelona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:801
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Bari"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:802
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Barkerville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:803
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Barletta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:804
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Barnaul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:805
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Barnesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:806
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Barrage Manic-3"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:807
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Barrage Manic-5"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:808
#, kde-kuit-format
msgctxt "City in Colombia"
msgid "Barranquilla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:809
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Barre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:810
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Barrie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:811
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Barron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:812
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Barrow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:813
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Barry's Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:814
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Barstow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:815
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Bartlesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:816
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Barton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:817
#, kde-kuit-format
msgctxt "City in Iraq"
msgid "Basrah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:818
#, kde-kuit-format
msgctxt "City in Haute-Corse France"
msgid "Bastia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:819
#, kde-kuit-format
msgctxt "City in Equatorial Guinea"
msgid "Bata"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:820
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Batesburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:821
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Bathurst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:822
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Baton Rouge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:823
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Battle Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:824
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Bay Bulls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:825
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Bay City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:826
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Bay St. Louis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:827
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Bayonne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:828
#, kde-kuit-format
msgctxt "City in Pyrénées atlantiques France"
msgid "Bayonne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:829
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Baytown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:830
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Be'er Sheva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:831
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:832
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Beardmore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:833
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Beatty"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:834
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Beaufort"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:835
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Beaumont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:836
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Beaupre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:837
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Beauval"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:838
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Beaver"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:839
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Beaverlodge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:840
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Beavermouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:841
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Beaverton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:842
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Beckley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:843
#, kde-kuit-format
msgctxt "City in China"
msgid "Beijing"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:844
#, kde-kuit-format
msgctxt "City in Mozambique"
msgid "Beira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:845
#, kde-kuit-format
msgctxt "City in Lebanon"
msgid "Beirut"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:846
#, kde-kuit-format
msgctxt "City in Portugal"
msgid "Beja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:847
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Belem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:848
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Belen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:849
#, kde-kuit-format
msgctxt "City in Northern Ireland United Kingdom"
msgid "Belfast"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:850
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Belgorod"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:851
#, kde-kuit-format
msgctxt "City in Yugoslavia"
msgid "Belgrade"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:852
#, kde-kuit-format
msgctxt "City in Belize"
msgid "Belize City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:853
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Belleterre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:854
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Belleville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:855
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Belleville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:856
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Bellevue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:857
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Bellevue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:858
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Bellflower"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:859
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Bellingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:860
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Bellows Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:861
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Ben Guerir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:862
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Bend"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:863
#, kde-kuit-format
msgctxt "City in Somalia"
msgid "Bender Cassim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:864
#, kde-kuit-format
msgctxt "City in Victoria Australia"
msgid "Bendigo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:865
#, kde-kuit-format
msgctxt "City in Libya"
msgid "Benghazi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:866
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Bennington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:867
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Benton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:868
#, kde-kuit-format
msgctxt "City in Somalia"
msgid "Berbera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:869
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Bergamo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:870
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Bergen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:871
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bergisch-Gladbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:872
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Berkeley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:873
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Berlin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:874
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Berlin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:875
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Bern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:876
#, kde-kuit-format
msgctxt "City in Doubs France"
msgid "Besançon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:877
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Bethel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:878
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Bethesda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:879
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Bethlehem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:880
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Bettendorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:881
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Bettles Field"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:882
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Biddeford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:883
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Big Bear Solar Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:884
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Big Delta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:885
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Big Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:886
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Big River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:887
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Biggar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:888
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Bila Tserkva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:889
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Bilbao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:890
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Billings"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:891
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Biloxi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:892
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Binghamton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:893
#, kde-kuit-format
msgctxt "City in Central African Republic"
msgid "Birao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:894
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Birmingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:895
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Birmingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:896
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Birobidzhan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:897
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Biruni"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:898
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Bismarck"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:899
#, kde-kuit-format
msgctxt "City in Guinea Bissau"
msgid "Bissau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:900
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Bissett"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:901
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bitburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:902
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Blaavands huk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:903
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Black Birch"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:904
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Blackpool"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:905
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Blackwell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:906
#, kde-kuit-format
msgctxt "City in Malawi"
msgid "Blantyre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:907
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Bleien"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:908
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Blind River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:909
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Bloomfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:910
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Bloomington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:911
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Bloomington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:912
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Bloomington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:913
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Blue River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:914
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Bluefield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:915
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Bluff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:916
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Bnei Brak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:917
#, kde-kuit-format
msgctxt "City in Burkina Faso"
msgid "Bobo-Dioulasso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:918
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Boca Raton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:919
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bochum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:920
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Bodo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:921
#, kde-kuit-format
msgctxt "City in Chungbuk Korea"
msgid "Boeun"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:922
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Bogalusa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:923
#, kde-kuit-format
msgctxt "City in Colombia"
msgid "Bogotá"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:924
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Boise"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:925
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Boise City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:926
#, kde-kuit-format
msgctxt "City in Ghana"
msgid "Bolgatanga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:927
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Bologna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:928
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Bolzano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:929
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Bonavista"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:930
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bonn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:931
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Bonnyville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:932
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Boone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:933
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Booneville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:934
#, kde-kuit-format
msgctxt "City in Gironde France"
msgid "Bordeaux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:935
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Bordentown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:936
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Borinquen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:937
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Borowiec"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:938
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Boscobel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:939
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Bosscha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:940
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Bossier City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:941
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Boston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:942
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Boston Bar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:943
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bottrop"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:944
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Boulder"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:945
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Boulder City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:946
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Boulder Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:947
#, kde-kuit-format
msgctxt "City in Pas-de-Calais France"
msgid "Boulogne-sur-mer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:948
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Bountiful"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:949
#, kde-kuit-format
msgctxt "City in Cher France"
msgid "Bourges"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:950
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Bowie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:951
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Bowling Green"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:952
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Bowman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:953
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Bowmanville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:954
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Boyden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:955
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Bozeman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:956
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Bracebridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:957
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Bradford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:958
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Brampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:959
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Brandon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:960
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Brandon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:961
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Brantford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:962
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Brasilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:963
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Bratsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:964
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Brattleboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:965
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Braunschweig"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:966
#, kde-kuit-format
msgctxt "City in Congo"
msgid "Brazzaville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:967
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bremen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:968
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Bremerhaven"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:969
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Bremerton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:970
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Brent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:971
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Brera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:972
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Brescia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:973
#, kde-kuit-format
msgctxt "City in Finistère France"
msgid "Brest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:974
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Bridgeport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:975
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Bridgeton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:976
#, kde-kuit-format
msgctxt "City in Barbados"
msgid "Bridgetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:977
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Brilliant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:978
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Brindisi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:979
#, kde-kuit-format
msgctxt "City in Queensland Australia"
msgid "Brisbane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:980
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Bristol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:981
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Bristol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:982
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Bristol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:983
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Bristol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:984
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Bristol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:985
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Brize Norton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:986
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Brockton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:987
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Brockville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:988
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Broken Arrow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:989
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Brookings"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:990
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Brookings"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:991
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Brookline"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:992
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Brooklyn Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:993
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Brooks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:994
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Brookside Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:995
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Brownsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:996
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Brunswick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:997
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Brunswick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:998
#, kde-kuit-format
msgctxt "City in Brabant Belgium"
msgid "Brussels"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:999
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Bryansk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1000
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Buan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1001
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Buchans"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1002
#, kde-kuit-format
msgctxt "City in Romania"
msgid "Bucharest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1003
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Buckeburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1004
#, kde-kuit-format
msgctxt "City in Pest Hungary"
msgid "Budapest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1005
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Buena Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1006
#, kde-kuit-format
msgctxt "City in Argentina"
msgid "Buenos Aires"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1007
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Buffalo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1008
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Buffalo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1009
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Buffalo Narrows"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1010
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Bujumburo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1011
#, kde-kuit-format
msgctxt "City in Rwanda"
msgid "Bukavu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1012
#, kde-kuit-format
msgctxt "City in Zimbabwe"
msgid "Bulawayo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1013
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Burbank"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1014
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Burgeo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1015
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Burgos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1016
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1017
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1018
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1019
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1020
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1021
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Burlington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1022
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Burns"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1023
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Burns Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1024
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Bururi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1025
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Burwash"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1026
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Busan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1027
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Butte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1028
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Butterworth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1029
#, kde-kuit-format
msgctxt "City in Chungnam Korea"
msgid "Buyeo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1030
#, kde-kuit-format
msgctxt "City in Armenia"
msgid "Byurakan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1031
#, kde-kuit-format
msgctxt "City in Békés Hungary"
msgid "Békéscsaba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1032
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Cabano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1033
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Cadillac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1034
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Cadomin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1035
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Cadotte Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1036
#, kde-kuit-format
msgctxt "City in Calvados France"
msgid "Caen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1037
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Cagliari"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1038
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Cairo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1039
#, kde-kuit-format
msgctxt "City in Pas-de-Calais France"
msgid "Calais"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1040
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Calar Alto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1041
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Caldwell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1042
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Caledonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1043
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Calgary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1044
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Caliente"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1045
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Caliper Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1046
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Calling Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1047
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Calvert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1048
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Cambridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1049
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Cambridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1050
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Cambridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1051
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Camden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1052
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Campbell River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1053
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Campbellton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1054
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Campobasso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1055
#, kde-kuit-format
msgctxt "City in ACT Australia"
msgid "Canberra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1056
#, kde-kuit-format
msgctxt "City in Alpes Maritimes France"
msgid "Cannes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1057
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Canoga Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1058
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Canora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1059
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Canso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1060
#, kde-kuit-format
msgctxt "City in China"
msgid "Canton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1061
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Canton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1062
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Cantonsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1063
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Cap-Chat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1064
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Cap-aux-Meules"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1065
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Cape Canaveral"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1066
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Cape Girardeau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1067
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Cape May"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1068
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Cape Town"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1069
#, kde-kuit-format
msgctxt "City in Venezuela"
msgid "Caracas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1070
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Carbonado"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1071
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Carbondale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1072
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Carbonear"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1073
#, kde-kuit-format
msgctxt "City in Wales United Kingdom"
msgid "Cardiff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1074
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Carleton Place"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1075
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Carlton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1076
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Carlyle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1077
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Carman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1078
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Carmichael"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1079
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Carrizozo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1080
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Carrollton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1081
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Carson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1082
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Carson City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1083
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Cartagena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1084
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Cartersville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1085
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Cary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1086
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Casa Grande"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1087
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Casablanca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1088
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Caserta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1089
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Casper"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1090
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Casselman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1091
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Castellon de la Plana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1092
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Castlegar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1093
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Castlerock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1094
#, kde-kuit-format
msgctxt "City in St. Lucia"
msgid "Castries"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1095
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Catania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1096
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Catanzaro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1097
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Cave Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1098
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Cavendish"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1099
#, kde-kuit-format
msgctxt "City in French Guiana"
msgid "Cayenne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1100
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Cedar City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1101
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Cedar Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1102
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Cedar Rapids"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1103
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Central Islip"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1104
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Centreville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1105
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Cerritos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1106
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Cerro Calán"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1107
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Cerro Tololo Int'l Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1108
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Ceuta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1109
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Ch'ongjin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1110
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Chagrin Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1111
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Champaign"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1112
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Chandler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1113
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Channel-Port aux Basques"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1114
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Chapais"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1115
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Chapel Hill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1116
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Chapleau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1117
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Chard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1118
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Charleston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1119
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Charleston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1120
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Charlevoix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1121
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Charlotte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1122
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Charlottesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1123
#, kde-kuit-format
msgctxt "City in Prince Edward Island Canada"
msgid "Charlottetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1124
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Chatham-Kent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1125
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Chattanooga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1126
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Cheboksary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1127
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Cheltenham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1128
#, kde-kuit-format
msgctxt "City in Ural Russia"
msgid "Chelyabinsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1129
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Chemnitz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1130
#, kde-kuit-format
msgctxt "City in India"
msgid "Chennai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1131
#, kde-kuit-format
msgctxt "City in Chungbuk Korea"
msgid "Cheongju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1132
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Cheorwon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1133
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Cheraw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1134
#, kde-kuit-format
msgctxt "City in Manche France"
msgid "Cherbourg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1135
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Cherkasy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1136
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Cherkessk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1137
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Chernihiv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1138
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Chernivtsi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1139
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Cherokee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1140
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Chesapeake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1141
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Chester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1142
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Chester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1143
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Cheticamp"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1144
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Chetwynd"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1145
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Cheyenne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1146
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Chiang Mai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1147
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Chibougamau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1148
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Chicago"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1149
#, kde-kuit-format
msgctxt "City in Peru"
msgid "Chiclayo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1150
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Chicopee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1151
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Chignik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1152
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Chillicothe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1153
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Chillicothe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1154
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Chillicothe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1155
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Chilliwack"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1156
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Chingola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1157
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Chino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1158
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Chino Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1159
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Chinook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1160
#, kde-kuit-format
msgctxt "City in Somalia"
msgid "Chisimayu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1161
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Chita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1162
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Chitose"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1163
#, kde-kuit-format
msgctxt "City in Bangladesh"
msgid "Chittagong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1164
#, kde-kuit-format
msgctxt "City in Zimbabwe"
msgid "Chitungwiza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1165
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Christchurch"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1166
#, kde-kuit-format
msgctxt "City in Bornholm Denmark"
msgid "Christiansoe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1167
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Christmas Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1168
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Chula Vista"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1169
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Chuncheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1170
#, kde-kuit-format
msgctxt "City in Chungbuk Korea"
msgid "Chungju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1171
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Chupungryeong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1172
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Churchill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1173
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Chute-des-Passes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1174
#, kde-kuit-format
msgctxt "City in Micronesia"
msgid "Chuuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1175
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Cicero"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1176
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Cincinnati"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1177
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Circle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1178
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Circleville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1179
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Ciudad Real"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1180
#, kde-kuit-format
msgctxt "City in Eure-et-Loir France"
msgid "Civry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1181
#, kde-kuit-format
msgctxt "City in Nièvre France"
msgid "Clamecy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1182
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Claremont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1183
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Clarenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1184
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Claresholm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1185
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Clark"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1186
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Clark's Harbour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1187
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Clarksburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1188
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Clarksdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1189
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Clarksville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1190
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Clayhurst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1191
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Claymont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1192
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Clear"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1193
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Clear Lake City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1194
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Clearlake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1195
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Clearwater"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1196
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Clearwater"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1197
#, kde-kuit-format
msgctxt "City in Puy-de-Dôme France"
msgid "Clermont-Ferrand"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1198
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Cleveland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1199
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Cleveland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1200
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Clifton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1201
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Clinton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1202
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Clinton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1203
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Cloppenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1204
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Cloud Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1205
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Clova"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1206
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Clovis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1207
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Coaticook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1208
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Cochrane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1209
#, kde-kuit-format
msgctxt "City in Turks and Caicos Islands"
msgid "Cockburn Town"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1210
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Cockeysville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1211
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Cocos Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1212
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Cody"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1213
#, kde-kuit-format
msgctxt "City in Portugal"
msgid "Coimbra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1214
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Cold Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1215
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Cold Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1216
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Colinet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1217
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "College Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1218
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Collegedale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1219
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Cologne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1220
#, kde-kuit-format
msgctxt "City in Sri Lanka"
msgid "Colombo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1221
#, kde-kuit-format
msgctxt "City in Panama"
msgid "Colon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1222
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Colorado Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1223
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Columbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1224
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Columbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1225
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Columbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1226
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Columbia Station"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1227
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Columbus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1228
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Columbus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1229
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Columbus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1230
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Columbus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1231
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Como"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1232
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Comox"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1233
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Compton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1234
#, kde-kuit-format
msgctxt "City in Guinea"
msgid "Conakry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1235
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Concepcion"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1236
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Concord"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1237
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Concord"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1238
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Condon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1239
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Consort"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1240
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Conway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1241
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Conway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1242
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Coonabarabran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1243
#, kde-kuit-format
msgctxt "City in Denmark"
msgid "Copenhagen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1244
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Coralville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1245
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Corbin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1246
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Cordova"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1247
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Corinth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1248
#, kde-kuit-format
msgctxt "City in Munster Ireland"
msgid "Cork"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1249
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Corner Brook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1250
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Corning"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1251
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Cornwall"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1252
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Coronation"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1253
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Corpus Christi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1254
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Cortez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1255
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Corvallis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1256
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Cosenza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1257
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Costa Mesa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1258
#, kde-kuit-format
msgctxt "City in Bénin"
msgid "Cotonou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1259
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Cottbus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1260
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Couer d'Alene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1261
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Council Bluffs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1262
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Courtenay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1263
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Coventry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1264
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Covington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1265
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Cranbrook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1266
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Cranford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1267
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Cranston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1268
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Crawford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1269
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Crawford Hill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1270
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Crestwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1271
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Crestwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1272
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Creve Coeur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1273
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Cripple Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1274
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Crocker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1275
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Crofton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1276
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Crowsnest Pass"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1277
#, kde-kuit-format
msgctxt "City in Philippines"
msgid "Cubi Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1278
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Cuenca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1279
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Culgoora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1280
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Culver City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1281
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Cumberland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1282
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Cut Bank"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1283
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Cypress River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1284
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Cáceres"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1285
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Cádiz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1286
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Córdoba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1287
#, kde-kuit-format
msgctxt "City in Bangladesh"
msgid "Dacca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1288
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Daegu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1289
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Daegwallyeong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1290
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Daejeon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1291
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "Dakar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1292
#, kde-kuit-format
msgctxt "City in Western sahara"
msgid "Dakhla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1293
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Dallas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1294
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Dalsbruk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1295
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Daly City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1296
#, kde-kuit-format
msgctxt "City in Syria"
msgid "Damascus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1297
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Damecuta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1298
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Danbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1299
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Daniel's Harbour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1300
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Danielson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1301
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Danville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1302
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Danville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1303
#, kde-kuit-format
msgctxt "City in South Korea"
msgid "Danyang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1304
#, kde-kuit-format
msgctxt "City in Togo"
msgid "Dapaong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1305
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Dar es Salaam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1306
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Darmstadt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1307
#, kde-kuit-format
msgctxt "City in Northern Territory Australia"
msgid "Darwin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1308
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Dauphin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1309
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Davenport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1310
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Davidson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1311
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Dawson Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1312
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Dayton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1313
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Dayton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1314
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Daytona Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1315
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "De Aar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1316
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "DeMotte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1317
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Deadhorse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1318
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Deadwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1319
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Dearborn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1320
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Dearborn Heights"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1321
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Dearborn Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1322
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Death Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1323
#, kde-kuit-format
msgctxt "City in Hajdú-Bihar Hungary"
msgid "Debrecen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1324
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Decataur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1325
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Decimomannu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1326
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Deep River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1327
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Deer Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1328
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Dekalb"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1329
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Del Rio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1330
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Delavan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1331
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Delhi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1332
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Delta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1333
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Delta Junction"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1334
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Demmitt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1335
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Denali National Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1336
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Denton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1337
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Denver"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1338
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Derby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1339
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Derby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1340
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Derry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1341
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Des Moines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1342
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Des Plaines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1343
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Desbiens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1344
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Dessau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1345
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Detroit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1346
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Devils Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1347
#, kde-kuit-format
msgctxt "City in Saudi Arabia"
msgid "Dhahran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1348
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Diamond Bar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1349
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Diamond Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1350
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Dickinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1351
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Dickinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1352
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Diego Garcia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1353
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Digby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1354
#, kde-kuit-format
msgctxt "City in Côte d'or France"
msgid "Dijon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1355
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Dillingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1356
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Dillon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1357
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Dillon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1358
#, kde-kuit-format
msgctxt "City in Turkey"
msgid "Diyarbakir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1359
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Djakarta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1360
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Djerba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1361
#, kde-kuit-format
msgctxt "City in Djibouti"
msgid "Djibouti"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1362
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Dnipropetropsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1363
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Doaktown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1364
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Dodge City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1365
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Dodoma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1366
#, kde-kuit-format
msgctxt "City in Qatar"
msgid "Doha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1367
#, kde-kuit-format
msgctxt "City in Gyengnam Korea"
msgid "Dokdo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1368
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Dolbeau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1369
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Dome Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1370
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Dominion Radio Astrophysical Obs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1371
#, kde-kuit-format
msgctxt "City in Ulster Ireland"
msgid "Donegal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1372
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Donets'k"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1373
#, kde-kuit-format
msgctxt "City in Gyeonggi Korea"
msgid "Dongducheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1374
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Donghae"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1375
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Dore Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1376
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Dortmund"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1377
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Dorval-Lodge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1378
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Dothan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1379
#, kde-kuit-format
msgctxt "City in Cameroon"
msgid "Douala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1380
#, kde-kuit-format
msgctxt "City in Isle of Man"
msgid "Douglas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1381
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Dover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1382
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Dover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1383
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Dover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1384
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Dover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1385
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Downey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1386
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Dr. Remeis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1387
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Drammen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1388
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Drayton Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1389
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Dresden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1390
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Driftwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1391
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Drumheller"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1392
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Drummondville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1393
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Druvar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1394
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Dryden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1395
#, kde-kuit-format
msgctxt "City in United Arab Emirates"
msgid "Dubai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1396
#, kde-kuit-format
msgctxt "City in Leinster Ireland"
msgid "Dublin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1397
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Dubreuilville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1398
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Dubrovnik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1399
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Dubuque"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1400
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Dudinka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1401
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Duisburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1402
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Duluth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1403
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Duncan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1404
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Dundalk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1405
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Dunedin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1406
#, kde-kuit-format
msgctxt "City in Pas-de-Calais France"
msgid "Dunkirk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1407
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Dunlap"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1408
#, kde-kuit-format
msgctxt "City in Leinster Ireland"
msgid "Dunsink"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1409
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Durango"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1410
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Durban"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1411
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Durham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1412
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Dutch Harbor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1413
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Dwingeloo Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1414
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Dyer Observatory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1415
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Düsseldorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1416
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Eagan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1417
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Eagle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1418
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Eagle River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1419
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Ear Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1420
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Earlton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1421
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "East Boston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1422
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "East Brunswick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1423
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "East Lansing"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1424
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "East Las Vegas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1425
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "East London"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1426
#, kde-kuit-format
msgctxt "City in California USA"
msgid "East Los Angeles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1427
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "East Orange"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1428
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "East Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1429
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "East St. Louis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1430
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "East Stroudsburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1431
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "East Wenatchee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1432
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Eastampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1433
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Eastport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1434
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Eatonton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1435
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Eau Claire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1436
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Ebro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1437
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Eddystone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1438
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Edina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1439
#, kde-kuit-format
msgctxt "City in Scotland United Kingdom"
msgid "Edinburgh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1440
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Edmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1441
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Edmonds"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1442
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Edmonton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1443
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Edmundston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1444
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Edna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1445
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Edson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1446
#, kde-kuit-format
msgctxt "City in Vanuatu"
msgid "Efate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1447
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Effelsberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1448
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Effingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1449
#, kde-kuit-format
msgctxt "City in Heves Hungary"
msgid "Eger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1450
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Egvekinot"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1451
#, kde-kuit-format
msgctxt "City in Ural Russia"
msgid "Ekaterinburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1452
#, kde-kuit-format
msgctxt "City in Western sahara"
msgid "El Aaiun"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1453
#, kde-kuit-format
msgctxt "City in California USA"
msgid "El Cajon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1454
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "El Dorado"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1455
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "El Fasher"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1456
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "El Mirage"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1457
#, kde-kuit-format
msgctxt "City in California USA"
msgid "El Monte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1458
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "El Obeid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1459
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "El Paso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1460
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "El fayum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1461
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Elbow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1462
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Elche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1463
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Eldorado"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1464
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Eldridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1465
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Elgin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1466
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Elizabeth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1467
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Elizabeth City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1468
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Elizabethtown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1469
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Elk City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1470
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Elk Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1471
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Elkhart"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1472
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Elkins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1473
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Elko"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1474
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Elliot Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1475
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Elmira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1476
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Elsmere"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1477
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Elva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1478
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Elverson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1479
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Elyria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1480
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Emerson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1481
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Enfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1482
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Englee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1483
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Englewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1484
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Enid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1485
#, kde-kuit-format
msgctxt "City in Uganda"
msgid "Entebbe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1486
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Ephrata"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1487
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Erding"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1488
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Erfurt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1489
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Erickson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1490
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Erie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1491
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Eriksdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1492
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Erlangen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1493
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Esbjerg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1494
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Escondido"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1495
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Esfahan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1496
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Espanola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1497
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Espoo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1498
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Essen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1499
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Essex Junction"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1500
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Esterhazy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1501
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Estevan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1502
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Eston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1503
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Euclid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1504
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Eudora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1505
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Eugene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1506
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Eureka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1507
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Eureka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1508
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Eureka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1509
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Evanston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1510
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Evanston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1511
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Evansville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1512
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Everett"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1513
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Evergreen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1514
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Ewa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1515
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Exeter"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1516
#, kde-kuit-format
msgctxt "City in Mauritania"
msgid "F'Dérik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1517
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Fabra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1518
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Fair Haven"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1519
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Fairbanks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1520
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Fairfax"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1521
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Fairfax"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1522
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fairfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1523
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Fairfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1524
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Fairmont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1525
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Fairmont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1526
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Fairview"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1527
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Faith"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1528
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Falcon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1529
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Falcon Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1530
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Fall River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1531
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Fallon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1532
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Falmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1533
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Fargo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1534
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Farmington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1535
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Farnborough"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1536
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Fayetteville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1537
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Fayetteville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1538
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Ferrara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1539
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Ferriday"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1540
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Fes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1541
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Finningley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1542
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Fisher"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1543
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Fitchburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1544
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Flagstaff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1545
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Flint"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1546
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Florala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1547
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Florence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1548
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Florence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1549
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Florence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1550
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Florissant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1551
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Flower Mound"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1552
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Foggia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1553
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Foleyet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1554
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Folsom"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1555
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Fond du Lac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1556
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Ford Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1557
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Forestville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1558
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Forli`"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1559
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Forrest City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1560
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Forsyth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1561
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Fort Collins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1562
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Fort Dodge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1563
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Fort Frances"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1564
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Fort Greely"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1565
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Fort Lauderdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1566
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Fort McMurray"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1567
#, kde-kuit-format
msgctxt "City in Northwest Territories Canada"
msgid "Fort McPherson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1568
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Fort Myers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1569
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Fort Nelson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1570
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Fort Payne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1571
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Fort Qu'Appelle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1572
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Fort Richardson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1573
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Fort Riley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1574
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Fort Salonga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1575
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Fort Saskatchewan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1576
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Fort Scott"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1577
#, kde-kuit-format
msgctxt "City in Northwest Territories Canada"
msgid "Fort Simpson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1578
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Fort Skala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1579
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Fort Smith"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1580
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Fort St. James"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1581
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Fort St. John"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1582
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Fort Wayne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1583
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Fort Worth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1584
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Fort Yukon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1585
#, kde-kuit-format
msgctxt "City in Martinique France"
msgid "Fort-de-France"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1586
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fountain Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1587
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Fox Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1588
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Fox Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1589
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Framingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1590
#, kde-kuit-format
msgctxt "City in Gabon"
msgid "Franceville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1591
#, kde-kuit-format
msgctxt "City in Botswana"
msgid "Francistown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1592
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Franeker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1593
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Frankfort"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1594
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Frankfurt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1595
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Franklin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1596
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Franklin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1597
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Fraser Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1598
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Fraserdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1599
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Fred Lawrence Whipple Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1600
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Fredericia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1601
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Frederick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1602
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Fredericksburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1603
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Fredericktown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1604
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Fredericton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1605
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Frederikshavn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1606
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Frederiksvaerk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1607
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Freehold"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1608
#, kde-kuit-format
msgctxt "City in Bahamas"
msgid "Freeport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1609
#, kde-kuit-format
msgctxt "City in Sierra Leone"
msgid "Freetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1610
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Freiburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1611
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fremont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1612
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Fremont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1613
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fremont Peak Observatory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1614
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "French River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1615
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fresno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1616
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Fruitland Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1617
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Fujigane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1618
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Fukuoka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1619
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Fullerton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1620
#, kde-kuit-format
msgctxt "City in Madeira Portugal"
msgid "Funchal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1621
#, kde-kuit-format
msgctxt "City in Mittelfranken Germany"
msgid "Fürth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1622
#, kde-kuit-format
msgctxt "City in India"
msgid "GMRT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1623
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Gabes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1624
#, kde-kuit-format
msgctxt "City in Botswana"
msgid "Gaborone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1625
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Gadsden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1626
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Gainesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1627
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Gainesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1628
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Gaithersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1629
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Galena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1630
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Gallup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1631
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Galveston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1632
#, kde-kuit-format
msgctxt "City in Connacht Ireland"
msgid "Galway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1633
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Gander"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1634
#, kde-kuit-format
msgctxt "City in Incheon Korea"
msgid "Ganghwa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1635
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Gangneung"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1636
#, kde-kuit-format
msgctxt "City in Mali"
msgid "Gao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1637
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Gardaia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1638
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Garden City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1639
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Garden Grove"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1640
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Garland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1641
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Garland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1642
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Garrison"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1643
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Gars am Inn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1644
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Gary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1645
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Gaspe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1646
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Gassaway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1647
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Gastonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1648
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Gatineau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1649
#, kde-kuit-format
msgctxt "City in India"
msgid "Gauribidanur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1650
#, kde-kuit-format
msgctxt "City in Niger"
msgid "Gaya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1651
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Gdansk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1652
#, kde-kuit-format
msgctxt "City in Falster Denmark"
msgid "Gedser"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1653
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Geilenkirchen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1654
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Gelsenkirchen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1655
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Geneva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1656
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Genoa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1657
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Geochang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1658
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Geoje"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1659
#, kde-kuit-format
msgctxt "City in Chungnam Korea"
msgid "Geomsan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1660
#, kde-kuit-format
msgctxt "City in Ascension Island"
msgid "Georgetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1661
#, kde-kuit-format
msgctxt "City in Cayman Islands"
msgid "Georgetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1662
#, kde-kuit-format
msgctxt "City in Guyana"
msgid "Georgetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1663
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Georgetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1664
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Gera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1665
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Geraldton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1666
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Gerona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1667
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Ghost Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1668
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Gibraltar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1669
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Gift Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1670
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Gijón"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1671
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Gila Bend"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1672
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Gillette"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1673
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Gimli"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1674
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Gitega"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1675
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Gladstone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1676
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Glasgow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1677
#, kde-kuit-format
msgctxt "City in Scotland United Kingdom"
msgid "Glasgow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1678
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Glendale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1679
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Glendale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1680
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Glendora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1681
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Glenns Ferry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1682
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Glens Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1683
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Glenwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1684
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Glenwood Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1685
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Glovertown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1686
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Goderich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1687
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Godthaab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1688
#, kde-kuit-format
msgctxt "City in Greenland"
msgid "Godthåb"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1689
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Gogama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1690
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Goheung"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1691
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Gold River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1692
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Golden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1693
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Goldfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1694
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Goldsboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1695
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Goldstone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1696
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Goose Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1697
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Gore Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1698
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Gorham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1699
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Gornergrat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1700
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Gorno-Altaysk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1701
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Gothenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1702
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Govenlock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1703
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Granada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1704
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Granada Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1705
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Granby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1706
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Grand Bank"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1707
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Grand Bend"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1708
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Grand Falls-Windsor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1709
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Grand Falls/Grand-Sault"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1710
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Grand Forks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1711
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Grand Forks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1712
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Grand Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1713
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Grand Junction"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1714
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Grand Prairie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1715
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Grand Rapids"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1716
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Grande Cache"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1717
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Grande Prairie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1718
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Grande-Vallee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1719
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Granger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1720
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Grangeville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1721
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Granite Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1722
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Grants Pass"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1723
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Grass Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1724
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Great Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1725
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Great Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1726
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Greeley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1727
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Green Bank Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1728
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Green Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1729
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Green River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1730
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Green River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1731
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Greenbelt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1732
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Greensboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1733
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Greenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1734
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Greenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1735
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Greenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1736
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Greenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1737
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Greenwich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1738
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Greenwich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1739
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Greenwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1740
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Greenwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1741
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Grenaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1742
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Grenfell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1743
#, kde-kuit-format
msgctxt "City in Isère France"
msgid "Grenoble"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1744
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Gresham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1745
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Groningen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1746
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Grosseto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1747
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Groton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1748
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Grouard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1749
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Groveton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1750
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Grozny"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1751
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Guadalajara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1752
#, kde-kuit-format
msgctxt "City in Cuba"
msgid "Guantanamo Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1753
#, kde-kuit-format
msgctxt "City in Guatemala"
msgid "Guatemala City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1754
#, kde-kuit-format
msgctxt "City in Ecuador"
msgid "Guayaquil"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1755
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Guelph"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1756
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Gulfport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1757
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Gulkana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1758
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Gull Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1759
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Gumi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1760
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Gunsan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1761
#, kde-kuit-format
msgctxt "City in India"
msgid "Gurushikhar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1762
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Guthrie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1763
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Guysborough"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1764
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Gwangju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1765
#, kde-kuit-format
msgctxt "City in Zimbabwe"
msgid "Gweru"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1766
#, kde-kuit-format
msgctxt "City in Győr-Moson-Sopron Hungary"
msgid "Győr"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1767
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Gönsdorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1768
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Göttingen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1769
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Gütersloh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1770
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Haapsalu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1771
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Haarlem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1772
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Haderslev"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1773
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Hadong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1774
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Haenam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1775
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Hagen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1776
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Hagerstown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1777
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Haifa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1778
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Haiku"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1779
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Hailey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1780
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Haines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1781
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Haleakala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1782
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Halifax"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1783
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Halle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1784
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Hamburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1785
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Hamden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1786
#, kde-kuit-format
msgctxt "City in Bermuda"
msgid "Hamilton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1787
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Hamilton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1788
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Hamilton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1789
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Hamm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1790
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Hammond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1791
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Hampden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1792
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Hampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1793
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Hana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1794
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Hancock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1795
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Hankinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1796
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Hanna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1797
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Hannah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1798
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Hannibal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1799
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Hannover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1800
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Hanstholm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1801
#, kde-kuit-format
msgctxt "City in French Polynesia"
msgid "Hao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1802
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Hapcheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1803
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Happy Valley - Goose Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1804
#, kde-kuit-format
msgctxt "City in Zimbabwe"
msgid "Harare"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1805
#, kde-kuit-format
msgctxt "City in Liberia"
msgid "Harbel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1806
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Harbour Breton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1807
#, kde-kuit-format
msgctxt "City in Liberia"
msgid "Harper"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1808
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Harper Woods"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1809
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Harpers Ferry"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1810
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Harrington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1811
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Harrisburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1812
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Harrisburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1813
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Harrison"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1814
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Harrisonburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1815
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Hartford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1816
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Hartrao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1817
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Harvard Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1818
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Harvey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1819
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Hassi Messaoud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1820
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Hastings"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1821
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Hat Creek Radio Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1822
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Hat Yai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1823
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Hattiesburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1824
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Hauula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1825
#, kde-kuit-format
msgctxt "City in Cuba"
msgid "Havana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1826
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Havre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1827
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Hawkesbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1828
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Hawthorne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1829
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Hawthorne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1830
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Haystack Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1831
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Hayward"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1832
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Hazard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1833
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Head-Smashed-In Buffalo Jump"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1834
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Hearst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1835
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Heidelberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1836
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Heilbronn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1837
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Helena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1838
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Helgoland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1839
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Helsingoer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1840
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Helsinki"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1841
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Helwan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1842
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Henderson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1843
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Henderson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1844
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Hendersonville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1845
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Herndon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1846
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Herne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1847
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Herning"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1848
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Herstmonceux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1849
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Heuksando"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1850
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Hialeah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1851
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Hickory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1852
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Hida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1853
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "High Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1854
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "High Prairie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1855
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "High River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1856
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Highland Lakes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1857
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Highmore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1858
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Hill City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1859
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Hilleroed"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1860
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Hillsboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1861
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Hillsboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1862
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Hilo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1863
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Hinnerup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1864
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Hinton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1865
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Hjoerring"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1866
#, kde-kuit-format
msgctxt "City in Tasmania Australia"
msgid "Hobart"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1867
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Hobbs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1868
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Hobro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1869
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Holbaek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1870
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Holbrook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1871
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Hollis Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1872
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Holliston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1873
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Holly Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1874
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Hollywood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1875
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Hollywood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1876
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Holon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1877
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Holstebro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1878
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Holyoke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1879
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Holyrood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1880
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Homer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1881
#, kde-kuit-format
msgctxt "City in China"
msgid "Hong Kong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1882
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Hongcheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1883
#, kde-kuit-format
msgctxt "City in Guadalcanal Solomon Islands"
msgid "Honiara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1884
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Honington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1885
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Honolulu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1886
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Hooker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1887
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Hooper Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1888
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Hope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1889
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Hopkinsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1890
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Hornepayne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1891
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Horsens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1892
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Hospit. de Llobregat, L'"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1893
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Hot Springs National Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1894
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Houma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1895
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Houston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1896
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Huambo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1897
#, kde-kuit-format
msgctxt "City in Peru"
msgid "Huancayo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1898
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Hudson's Hope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1899
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Huelva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1900
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Huesca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1901
#, kde-kuit-format
msgctxt "City in Belgium"
msgid "Humain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1902
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Humboldt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1903
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Humboldt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1904
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Hungnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1905
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Huntington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1906
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Huntington Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1907
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Huntington Station"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1908
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Huntsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1909
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Huntsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1910
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Hurley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1911
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Huron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1912
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Hutchinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1913
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Hutchinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1914
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Hvar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1915
#, kde-kuit-format
msgctxt "City in Andhra Pradesh India"
msgid "Hyderabad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1916
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Hyltebruk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1917
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Ibadan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1918
#, kde-kuit-format
msgctxt "City in Gyeonggi Korea"
msgid "Icheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1919
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Idaho Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1920
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Ignace"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1921
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Ile-a-la-Crosse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1922
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Imsil"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1923
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Incheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1924
#, kde-kuit-format
msgctxt "City in Turkey"
msgid "Incirlik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1925
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Independence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1926
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Independence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1927
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Indianapolis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1928
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Ine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1929
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Inglewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1930
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Ingonish"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1931
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Innisfail"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1932
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Innsbruck"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1933
#, kde-kuit-format
msgctxt "City in Northwest Territories Canada"
msgid "Inuvik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1934
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Invercargill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1935
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Iowa City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1936
#, kde-kuit-format
msgctxt "City in Queensland Australia"
msgid "Ipswich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1937
#, kde-kuit-format
msgctxt "City in Nunavut Canada"
msgid "Iqaluit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1938
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Irkutsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1939
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Iron River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1940
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Iroquois Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1941
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Irvine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1942
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Irving"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1943
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Irvington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1944
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Ischia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1945
#, kde-kuit-format
msgctxt "City in Pakistan"
msgid "Islamabad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1946
#, kde-kuit-format
msgctxt "City in Turkey"
msgid "Istanbul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1947
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Istrana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1948
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Itapetinga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1949
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Ivano-Frankivs'k"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1950
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Ivanovo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1951
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "Izaña"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1952
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Izhevsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1953
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "J. Horrocks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1954
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Jackson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1955
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Jackson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1956
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Jackson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1957
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Jacksonville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1958
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Jacksonville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1959
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Jakarta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1960
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Jaluit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1961
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Jamestown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1962
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Janesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1963
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Jangheung"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1964
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Jangsu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1965
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Jasper"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1966
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Jatiluhur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1967
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Jaén"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1968
#, kde-kuit-format
msgctxt "City in Chungbuk Korea"
msgid "Jecheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1969
#, kde-kuit-format
msgctxt "City in Saudi Arabia"
msgid "Jeddah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1970
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Jefferson City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1971
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Jeju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1972
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Jena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1973
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Jensen Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1974
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Jeongeup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1975
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Jeonju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1976
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Jerez de la Frontera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1977
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Jersey City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1978
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Jerusalem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1979
#, kde-kuit-format
msgctxt "City in Uganda"
msgid "Jinja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1980
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Jinju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1981
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Jodrell Bank"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1982
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Johannesburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1983
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Johnson City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1984
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Johnston Atoll"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1985
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Johnstown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1986
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Joliet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1987
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Joliette"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1988
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Jonesboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1989
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Joplin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1990
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Julian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1991
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Juneau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1992
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Jõgeva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1993
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Jõhvi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1994
#, kde-kuit-format
msgctxt "City in Afghanistan"
msgid "Kabul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1995
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Kabwe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1996
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Kaduna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1997
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kaena Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1998
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Kaesong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:1999
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kahului"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2000
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kailua Kona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2001
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Kairouan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2002
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Kaiserslautern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2003
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kaladar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2004
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Kalamazoo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2005
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kalapana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2006
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kalaupapa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2007
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Kaliningrad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2008
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Kalispell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2009
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kallaste"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2010
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Kaluga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2011
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Kalundborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2012
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Kamloops"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2013
#, kde-kuit-format
msgctxt "City in Uganda"
msgid "Kampala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2014
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Kamsack"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2015
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kamuela"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2016
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Kanab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2017
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kaneohe Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2018
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Kankakee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2019
#, kde-kuit-format
msgctxt "City in Guinea"
msgid "Kankan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2020
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Kannapolis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2021
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Kano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2022
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Kansas City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2023
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Kansas City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2024
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Kanzelhoehe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2025
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "Kaolack"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2026
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kapaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2027
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kapalua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2028
#, kde-kuit-format
msgctxt "City in Somogy Hungary"
msgid "Kaposvár"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2029
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kapuskasing"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2030
#, kde-kuit-format
msgctxt "City in Pakistan"
msgid "Karachi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2031
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Karlsruhe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2032
#, kde-kuit-format
msgctxt "City in Malawi"
msgid "Karonga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2033
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Kaslo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2034
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Kassel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2035
#, kde-kuit-format
msgctxt "City in Nepal"
msgid "Kathmandu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2036
#, kde-kuit-format
msgctxt "City in Namibia"
msgid "Katima Mulilo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2037
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kaunakakai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2038
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Kaunas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2039
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Kazabazua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2040
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Kazan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2041
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Keahole"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2042
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Kearney"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2043
#, kde-kuit-format
msgctxt "City in Bács-Kiskun Hungary"
msgid "Kecskemét"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2044
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Keene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2045
#, kde-kuit-format
msgctxt "City in Iceland"
msgid "Keflavik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2046
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kehra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2047
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Keila"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2048
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kekaha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2049
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Kelowna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2050
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Kelso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2051
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Kemerovo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2052
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Kenai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2053
#, kde-kuit-format
msgctxt "City in Sierra Leone"
msgid "Kenema"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2054
#, kde-kuit-format
msgctxt "City in Munster Ireland"
msgid "Kenmar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2055
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Kennebunk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2056
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Kenner"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2057
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kenora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2058
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Kenosha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2059
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Kentville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2060
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Kerrobert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2061
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Ketchikan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2062
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Kettering"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2063
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Khabarovsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2064
#, kde-kuit-format
msgctxt "City in Greece"
msgid "Khaniá"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2065
#, kde-kuit-format
msgctxt "City in Ural Russia"
msgid "Khanty-Mansiysk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2066
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Kharkiv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2067
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "Khartoum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2068
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Kherson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2069
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Khmel'nyts'kyi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2070
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Kiel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2071
#, kde-kuit-format
msgctxt "City in Rwanda"
msgid "Kigali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2072
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Kikino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2073
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Kili"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2074
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kilingi-Nõmme"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2075
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Killarney"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2076
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Kimball"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2077
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Kimch'aek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2078
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kincardine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2079
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Kindersley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2080
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "King George"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2081
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "King Salmon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2082
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Kingman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2083
#, kde-kuit-format
msgctxt "City in Queensland Australia"
msgid "Kings Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2084
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Kingsport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2085
#, kde-kuit-format
msgctxt "City in Jamaica"
msgid "Kingston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2086
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kingston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2087
#, kde-kuit-format
msgctxt "City in Congo (Democratic Republic)"
msgid "Kinshasa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2088
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kiosk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2089
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kirkland Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2090
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Kirovohrad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2091
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Kiruna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2092
#, kde-kuit-format
msgctxt "City in Dem rep of Congo"
msgid "Kisangani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2093
#, kde-kuit-format
msgctxt "City in Somalia"
msgid "Kismayu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2094
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Kiso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2095
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Kissimmee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2096
#, kde-kuit-format
msgctxt "City in Kenya"
msgid "Kisumu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2097
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Kit Carson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2098
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Kitchener"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2099
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Kitt Peak Nat'l. Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2100
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Kitwe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2101
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kiviõli"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2102
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Klaipėda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2103
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Klamath Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2104
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Kleena Kleene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2105
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Knightdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2106
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Knoxville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2107
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Koblenz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2108
#, kde-kuit-format
msgctxt "City in India"
msgid "Kodaikanal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2109
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Kodiak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2110
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Koege"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2111
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kohala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2112
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kohtla-Järve"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2113
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Koko Head"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2114
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Kokomo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2115
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Kolding"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2116
#, kde-kuit-format
msgctxt "City in India"
msgid "Kolkata"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2117
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Koloa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2118
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2119
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Korat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2120
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Korsoer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2121
#, kde-kuit-format
msgctxt "City in Micronesia"
msgid "Kosrae"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2122
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Kostroma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2123
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Kota Kinabalu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2124
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Kotzebue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2125
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Krasnodar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2126
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Krasnoyarsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2127
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Krefeld"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2128
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Kristiansand"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2129
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Kuala Lumpur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2130
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Kuching"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2131
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Kuffner"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2132
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kunda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2133
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Kuopio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2134
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Kure Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2135
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kuressaare"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2136
#, kde-kuit-format
msgctxt "City in Ural Russia"
msgid "Kurgan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2137
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Kursk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2138
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Kutina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2139
#, kde-kuit-format
msgctxt "City in Kuwait"
msgid "Kuwait City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2140
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Kwajalein Atoll"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2141
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Kwasan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2142
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Kyiv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2143
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Kyle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2144
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Kyoto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2145
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Kyzyl"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2146
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Kärdla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2147
#, kde-kuit-format
msgctxt "City in Italy"
msgid "L'Aquila"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2148
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "L'Etape"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2149
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "L'viv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2150
#, kde-kuit-format
msgctxt "City in Spain"
msgid "La Coruña"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2151
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "La Crosse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2152
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "La Grande"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2153
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "La Grange"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2154
#, kde-kuit-format
msgctxt "City in Cuba"
msgid "La Habana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2155
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "La Loche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2156
#, kde-kuit-format
msgctxt "City in California USA"
msgid "La Mesa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2157
#, kde-kuit-format
msgctxt "City in Canary Islands Spain"
msgid "La Palma Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2158
#, kde-kuit-format
msgctxt "City in Bolivia"
msgid "La Paz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2159
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "La Pocatiere"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2160
#, kde-kuit-format
msgctxt "City in Charente-Maritime France"
msgid "La Rochelle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2161
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "La Sarre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2162
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "La Scie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2163
#, kde-kuit-format
msgctxt "City in Chile"
msgid "La Silla Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2164
#, kde-kuit-format
msgctxt "City in Italy"
msgid "La Spezia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2165
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "La Tuque"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2166
#, kde-kuit-format
msgctxt "City in California USA"
msgid "La Verne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2167
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "LaPeer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2168
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Labrieville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2169
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Lac La Biche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2170
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Lac du Bonnet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2171
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Lac-Megantic"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2172
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Lachute"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2173
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Laconia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2174
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Lafayette"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2175
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Lafayette"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2176
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Lagos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2177
#, kde-kuit-format
msgctxt "City in Pakistan"
msgid "Lahore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2178
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Lahr"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2179
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Lahti"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2180
#, kde-kuit-format
msgctxt "City in Azores Portugal"
msgid "Lajes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2181
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Lake Charles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2182
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Lake City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2183
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Lake Louise"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2184
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Lake Oswego"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2185
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Lake Villa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2186
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Lake Village"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2187
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Lakeland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2188
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Lakewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2189
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Lakewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2190
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Lakewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2191
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Lakota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2192
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Lamar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2193
#, kde-kuit-format
msgctxt "City in Gabon"
msgid "Lambarene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2194
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Lampedusa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2195
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Lanai City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2196
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Lancaster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2197
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Lancaster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2198
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Lander"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2199
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Lansing"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2200
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Laramie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2201
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Laredo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2202
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Largo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2203
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Las Campanas Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2204
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Las Cruces"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2205
#, kde-kuit-format
msgctxt "City in Gran Canaria Spain"
msgid "Las Palmas de Gran Canaria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2206
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Las Vegas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2207
#, kde-kuit-format
msgctxt "City in ACT Australia"
msgid "Latham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2208
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Latina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2209
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Laurel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2210
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Laurel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2211
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Laurel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2212
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Lausanne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2213
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Laval"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2214
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Lawrence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2215
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Lawrence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2216
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Lawton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2217
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Layton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2218
#, kde-kuit-format
msgctxt "City in Seine-maritime France"
msgid "Le Havre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2219
#, kde-kuit-format
msgctxt "City in Haute-Loire France"
msgid "Le-Puy-en-Velay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2220
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Leader"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2221
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Leamington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2222
#, kde-kuit-format
msgctxt "City in Western Australia Australia"
msgid "Learmonth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2223
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Leavenworth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2224
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Leavenworth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2225
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Lebanon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2226
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Lebanon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2227
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Lebanon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2228
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Lebel-sur-Quevillon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2229
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Lecce"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2230
#, kde-kuit-format
msgctxt "City in Lecco Italy"
msgid "Lecco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2231
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Leck"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2232
#, kde-kuit-format
msgctxt "City in Lebanon"
msgid "Lee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2233
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Leeds"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2234
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Leeuwarden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2235
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Leganés"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2236
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Leicester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2237
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Leiden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2238
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Leiden Sur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2239
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Leipzig"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2240
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Lemmon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2241
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Lemvig"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2242
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Leopold Figl"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2243
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Les Escoumins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2244
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Lethbridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2245
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Leverkusen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2246
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Lewes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2247
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Lewisburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2248
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Lewiston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2249
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Lewiston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2250
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Lewiston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2251
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Lewistown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2252
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Lexington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2253
#, kde-kuit-format
msgctxt "City in Spain"
msgid "León"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2254
#, kde-kuit-format
msgctxt "City in Tibet China"
msgid "Lhasa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2255
#, kde-kuit-format
msgctxt "City in Gabon"
msgid "Libreville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2256
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Lick Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2257
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Lihue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2258
#, kde-kuit-format
msgctxt "City in Nord France"
msgid "Lille"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2259
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Lillooet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2260
#, kde-kuit-format
msgctxt "City in Malawi"
msgid "Lilongwe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2261
#, kde-kuit-format
msgctxt "City in Peru"
msgid "Lima"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2262
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Lima"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2263
#, kde-kuit-format
msgctxt "City in Haute-Vienne France"
msgid "Limoges"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2264
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Lincoln"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2265
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Lincoln"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2266
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Lincoln"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2267
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Lindbergh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2268
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Lindenhurst"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2269
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Linz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2270
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Lipetsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2271
#, kde-kuit-format
msgctxt "City in Portugal"
msgid "Lisbon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2272
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Lisbon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2273
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Listowel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2274
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Litchville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2275
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Little Rock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2276
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Littleton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2277
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Liverpool"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2278
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Liverpool"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2279
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Livingston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2280
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Livingston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2281
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Livingstone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2282
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Livonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2283
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Livorno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2284
#, kde-kuit-format
msgctxt "City in Slovenia"
msgid "Ljubljana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2285
#, kde-kuit-format
msgctxt "City in Venezuela"
msgid "Llano del Hato"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2286
#, kde-kuit-format
msgctxt "City in Botswana"
msgid "Lobatsi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2287
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Lockwood Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2288
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Logan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2289
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Logroño"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2290
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Loiano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2291
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Loksa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2292
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Lolo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2293
#, kde-kuit-format
msgctxt "City in Slovakia"
msgid "Lomnicky stit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2294
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Lompoc"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2295
#, kde-kuit-format
msgctxt "City in Togo"
msgid "Lomé"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2296
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "London"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2297
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "London"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2298
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Long Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2299
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Longview"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2300
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Longview"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2301
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Lorain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2302
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Lordsburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2303
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Los Alamos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2304
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Los Altos Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2305
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Los Angeles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2306
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Louisbourg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2307
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Louisville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2308
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Louisville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2309
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Louxor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2310
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Loveland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2311
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Lovelock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2312
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Lowell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2313
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Lowell Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2314
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Lowther"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2315
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Luanda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2316
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Lubbock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2317
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Lucca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2318
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Ludwigshafen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2319
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Luena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2320
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Lugans'k"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2321
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Lugo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2322
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Luleå"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2323
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Lund"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2324
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Lunenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2325
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Lusaka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2326
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Luts'k"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2327
#, kde-kuit-format
msgctxt "City in Luxembourg"
msgid "Luxembourg City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2328
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Lynchburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2329
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Lynden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2330
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Lynn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2331
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Lynn Haven"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2332
#, kde-kuit-format
msgctxt "City in Rhône France"
msgid "Lyon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2333
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Lytton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2334
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Lérida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2335
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Lübeck"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2336
#, kde-kuit-format
msgctxt "City in Pyungbuk Korea"
msgid "Maando"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2337
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Maardu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2338
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Maastricht"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2339
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Mabou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2340
#, kde-kuit-format
msgctxt "City in China"
msgid "Macao"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2341
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Machern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2342
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Mackay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2343
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Mackenzie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2344
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Macon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2345
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Madelia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2346
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Madison"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2347
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Madison"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2348
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Madison"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2349
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Madrid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2350
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Magadan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2351
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Magdalena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2352
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Magdeburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2353
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Magnolia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2354
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mahlow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2355
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mainz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2356
#, kde-kuit-format
msgctxt "City in Venezuela"
msgid "Maiquetia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2357
#, kde-kuit-format
msgctxt "City in Madagascar"
msgid "Majunga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2358
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Majuro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2359
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Makhachkala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2360
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Makiivka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2361
#, kde-kuit-format
msgctxt "City in Gabon"
msgid "Makokou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2362
#, kde-kuit-format
msgctxt "City in Equatorial Guinea"
msgid "Malabo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2363
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Malchin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2364
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Malchow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2365
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Malden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2366
#, kde-kuit-format
msgctxt "City in Maldives"
msgid "Male"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2367
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Malmö"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2368
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Maloelap"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2369
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Malone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2370
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Mammamattawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2371
#, kde-kuit-format
msgctxt "City in Mayotte France"
msgid "Mamoudzou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2372
#, kde-kuit-format
msgctxt "City in Nicaragua"
msgid "Managua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2373
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Manaus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2374
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Manchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2375
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Manchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2376
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Manchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2377
#, kde-kuit-format
msgctxt "City in Myanmar"
msgid "Mandalay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2378
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Mandan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2379
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Manebach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2380
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Mangum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2381
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Manhattan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2382
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Manhattan Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2383
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Manigotagan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2384
#, kde-kuit-format
msgctxt "City in Philippines"
msgid "Manila"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2385
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Manitouwadge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2386
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Manitowoc"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2387
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Maniwaki"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2388
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mannheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2389
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Manning"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2390
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mansfeld"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2391
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Mansfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2392
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Manton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2393
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Mantorville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2394
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Manyberries"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2395
#, kde-kuit-format
msgctxt "City in Swaziland"
msgid "Manzini"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2396
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Maple Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2397
#, kde-kuit-format
msgctxt "City in Mozambique"
msgid "Maputo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2398
#, kde-kuit-format
msgctxt "City in Jeju Korea"
msgid "Marado"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2399
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Marathon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2400
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Marbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2401
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Mariana Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2402
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Marienberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2403
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Marietta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2404
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Marijampolė"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2405
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Marion"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2406
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Markersbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2407
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Markersdorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2408
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Markkleeberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2409
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Markneukirchen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2410
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Markranstät"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2411
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Marlow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2412
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Marlton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2413
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Marquette"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2414
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Marrakech"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2415
#, kde-kuit-format
msgctxt "City in Bouches-du-rhône France"
msgid "Marseille"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2416
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Marshall"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2417
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Martinsburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2418
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Martinsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2419
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Marystown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2420
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Masan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2421
#, kde-kuit-format
msgctxt "City in Lesotho"
msgid "Maseru"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2422
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Mashpee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2423
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Mason City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2424
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Massa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2425
#, kde-kuit-format
msgctxt "City in Eritrea"
msgid "Massawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2426
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Massen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2427
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Matachewan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2428
#, kde-kuit-format
msgctxt "City in Dem rep of Congo"
msgid "Matadi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2429
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Matagami"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2430
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Matane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2431
#, kde-kuit-format
msgctxt "City in Swaziland"
msgid "Matsapha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2432
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Mattawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2433
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Mauldin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2434
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Mauna Kea Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2435
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Mayaguez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2436
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Maykop"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2437
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Maysville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2438
#, kde-kuit-format
msgctxt "City in Swaziland"
msgid "Mbabane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2439
#, kde-kuit-format
msgctxt "City in Dem rep of Congo"
msgid "Mbandaka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2440
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Mbeya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2441
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "McAdam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2442
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "McAlester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2443
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "McAllen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2444
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "McBride"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2445
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "McCook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2446
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "McCormick Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2447
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "McDonald Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2448
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "McGill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2449
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "McGrath"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2450
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "McKeesport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2451
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "McLennan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2452
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "McLeod Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2453
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "McNary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2454
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "McNary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2455
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Meadow Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2456
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Meat Cove"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2457
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Medenine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2458
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Medford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2459
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Medford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2460
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Medicine Hat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2461
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Medingen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2462
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meerane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2463
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meinersdorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2464
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meiningen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2465
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meiän"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2466
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Meknès"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2467
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Melbourne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2468
#, kde-kuit-format
msgctxt "City in Victoria Australia"
msgid "Melbourne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2469
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Melfort"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2470
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Melilla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2471
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Melita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2472
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Melksham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2473
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mellenbach-Glasbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2474
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mellensee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2475
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mellingen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2476
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Melrose Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2477
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Memphis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2478
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Mena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2479
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mengersgereuth-Hämern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2480
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Menongue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2481
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Menteroda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2482
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Meredith"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2483
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Meriden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2484
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Meridian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2485
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Meridianville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2486
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Merkers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2487
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Merrimack"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2488
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Merritt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2489
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Merritt Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2490
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Merschwitz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2491
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Merseburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2492
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Merzdorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2493
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Mesa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2494
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Mesquite"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2495
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Messina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2496
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Metagama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2497
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Metairie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2498
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Metsähovi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2499
#, kde-kuit-format
msgctxt "City in Moselle France"
msgid "Metz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2500
#, kde-kuit-format
msgctxt "City in Hauts-de-Seine France"
msgid "Meudon (observatory)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2501
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meuselbach-Schwarzmühle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2502
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meuselwitz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2503
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Mexico"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2504
#, kde-kuit-format
msgctxt "City in Mexico"
msgid "Mexico City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2505
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Meyenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2506
#, kde-kuit-format
msgctxt "City in Swaziland"
msgid "Mhlume"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2507
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Miami"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2508
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Miami Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2509
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Mica Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2510
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Michendorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2511
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Midas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2512
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Middelburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2513
#, kde-kuit-format
msgctxt "City in Fyn Denmark"
msgid "Middelfart"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2514
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Middlebury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2515
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Middleton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2516
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Middletown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2517
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Midland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2518
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Midland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2519
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Midnapore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2520
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Midway Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2521
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Midwest City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2522
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mieäste"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2523
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Milan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2524
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Milbank"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2525
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mildenau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2526
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Milford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2527
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Milford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2528
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Milford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2529
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Milford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2530
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Mili"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2531
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Milk River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2532
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Milkau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2533
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Milledgeville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2534
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Miller"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2535
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Millinocket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2536
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Millville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2537
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Milpitas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2538
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Milwaukee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2539
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Mine Hill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2540
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Minneapolis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2541
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Minnedosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2542
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Minnetonka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2543
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Minot"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2544
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Minto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2545
#, kde-kuit-format
msgctxt "City in St-Pierre and Miquelon France"
msgid "Miquelon Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2546
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Miramar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2547
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Miramichi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2548
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Mirnyi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2549
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Miryang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2550
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Mishawaka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2551
#, kde-kuit-format
msgctxt "City in Borsod-Abaúj-Zemplén Hungary"
msgid "Miskolc"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2552
#, kde-kuit-format
msgctxt "City in Libya"
msgid "Misratah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2553
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Mississauga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2554
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Missoula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2555
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Mitchell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2556
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Mitzpe Ramon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2557
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Mizusawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2558
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Mobile"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2559
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Mobridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2560
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Modena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2561
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Modesto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2562
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Moenkopi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2563
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Moers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2564
#, kde-kuit-format
msgctxt "City in Somalia"
msgid "Mogadishu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2565
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Mokpo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2566
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Moline"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2567
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Molokai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2568
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Molonglo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2569
#, kde-kuit-format
msgctxt "City in Kenya"
msgid "Mombasa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2570
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Moncton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2571
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Monroe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2572
#, kde-kuit-format
msgctxt "City in Liberia"
msgid "Monrovia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2573
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Mont-Joli"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2574
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Mont-Laurier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2575
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Mont-Tremblant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2576
#, kde-kuit-format
msgctxt "City in Prince Edward Island Canada"
msgid "Montague"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2577
#, kde-kuit-format
msgctxt "City in Monaco"
msgid "Monte Carlo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2578
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Montebello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2579
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Montebello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2580
#, kde-kuit-format
msgctxt "City in Jamaica"
msgid "Montego Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2581
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Monterey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2582
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Monterey Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2583
#, kde-kuit-format
msgctxt "City in Uruguay"
msgid "Montevideo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2584
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Montgomery"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2585
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Monticello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2586
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Monticello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2587
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Monticello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2588
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Montmagny"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2589
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Montour Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2590
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Montpelier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2591
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Montpelier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2592
#, kde-kuit-format
msgctxt "City in Herault France"
msgid "Montpellier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2593
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Montreal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2594
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Montreal Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2595
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Montreal River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2596
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Moore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2597
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Moose Jaw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2598
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Moose River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2599
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Moosomin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2600
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Moosonee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2601
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Morden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2602
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Morehead"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2603
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Morgan City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2604
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Morgantown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2605
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Morogoro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2606
#, kde-kuit-format
msgctxt "City in Uganda"
msgid "Moroto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2607
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Morristown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2608
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Morristown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2609
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Morrow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2610
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Morón"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2611
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Moscow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2612
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Moscow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2613
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Moses Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2614
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Mosselbaai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2615
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Mount Ekar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2616
#, kde-kuit-format
msgctxt "City in Antarctica"
msgid "Mount Erebus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2617
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Mount Evans Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2618
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Mount Forest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2619
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Mount Graham Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2620
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Mount John"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2621
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Mount Lemmon Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2622
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Mount Mario"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2623
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Mount Palomar Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2624
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Mount Pleasant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2625
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Mount Stromlo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2626
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Mount Vernon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2627
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Mount Wilson Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2628
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Mountain Brook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2629
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Mountain View"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2630
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Mountain View"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2631
#, kde-kuit-format
msgctxt "City in Ulster Ireland"
msgid "Moville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2632
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Muan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2633
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Mullard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2634
#, kde-kuit-format
msgctxt "City in India"
msgid "Mumbai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2635
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Muncie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2636
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Muncy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2637
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Mungyeong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2638
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Munich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2639
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Murcia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2640
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Murdochville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2641
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Murfreesboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2642
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Murmansk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2643
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Murray"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2644
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Muskegon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2645
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Muskogee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2646
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Mustvee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2647
#, kde-kuit-format
msgctxt "City in Zimbabwe"
msgid "Mutare"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2648
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Muyinga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2649
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Mwanza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2650
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Mykolaiv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2651
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Myrtle Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2652
#, kde-kuit-format
msgctxt "City in Malawi"
msgid "Mzuzu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2653
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Málaga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2654
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Móstoles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2655
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Mõisaküla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2656
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mönchengladbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2657
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Mülheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2658
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Münster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2659
#, kde-kuit-format
msgctxt "City in Chad"
msgid "N'djamina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2660
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Naalehu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2661
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Naestved"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2662
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Nagasaki"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2663
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Nagoya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2664
#, kde-kuit-format
msgctxt "City in India"
msgid "Nagpur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2665
#, kde-kuit-format
msgctxt "City in India"
msgid "Naini Tal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2666
#, kde-kuit-format
msgctxt "City in Kenya"
msgid "Nairobi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2667
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Nakina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2668
#, kde-kuit-format
msgctxt "City in Lolland Denmark"
msgid "Nakskov"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2669
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Nakusp"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2670
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Nal'chik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2671
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Namhae"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2672
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Namibe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2673
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Namorik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2674
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Nampa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2675
#, kde-kuit-format
msgctxt "City in Mozambique"
msgid "Nampula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2676
#, kde-kuit-format
msgctxt "City in Jeonbuk Korea"
msgid "Namwon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2677
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Nanaimo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2678
#, kde-kuit-format
msgctxt "City in Cher France"
msgid "Nancay (observatory)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2679
#, kde-kuit-format
msgctxt "City in Fiji"
msgid "Nandi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2680
#, kde-kuit-format
msgctxt "City in Loire-atlantique France"
msgid "Nantes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2681
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Napa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2682
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Naperville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2683
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Napierville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2684
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Naples"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2685
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Naples"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2686
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Narva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2687
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Narva-Jõesuu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2688
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Nashua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2689
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Nashville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2690
#, kde-kuit-format
msgctxt "City in Bahamas"
msgid "Nassau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2691
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Nassau Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2692
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Natal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2693
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Natchez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2694
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Nazko"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2695
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Našice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2696
#, kde-kuit-format
msgctxt "City in Zambia"
msgid "Ndola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2697
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Needles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2698
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Needles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2699
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Nelson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2700
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Nenana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2701
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Neponsit"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2702
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Neuss"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2703
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Nevada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2704
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "New Albany"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2705
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "New Bedford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2706
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "New Britian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2707
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "New Brunswick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2708
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "New Carlisle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2709
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "New Carrollton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2710
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "New Castle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2711
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "New Castle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2712
#, kde-kuit-format
msgctxt "City in New South Wales Australia"
msgid "New Castle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2713
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "New Castle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2714
#, kde-kuit-format
msgctxt "City in India"
msgid "New Delhi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2715
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "New Glasgow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2716
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "New Hampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2717
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "New Hartford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2718
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "New Haven"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2719
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "New Iberia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2720
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "New London"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2721
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "New Meadows"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2722
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "New Orleans"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2723
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "New Rochelle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2724
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "New Rockford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2725
#, kde-kuit-format
msgctxt "City in California USA"
msgid "New Washoe City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2726
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "New York"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2727
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Newark"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2728
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Newark"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2729
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Newcastle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2730
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Newell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2731
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Newmarket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2732
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Newport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2733
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Newport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2734
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Newport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2735
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Newport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2736
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Newport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2737
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Newport Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2738
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Newport News"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2739
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Newton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2740
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Newton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2741
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Ngozi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2742
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Niagara Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2743
#, kde-kuit-format
msgctxt "City in Niger"
msgid "Niamey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2744
#, kde-kuit-format
msgctxt "City in Alpes Maritimes France"
msgid "Nice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2745
#, kde-kuit-format
msgctxt "City in Cyprus"
msgid "Nicosia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2746
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Nijmegen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2747
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Nipawin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2748
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Nipigon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2749
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Nitro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2750
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Nizhnii Novgorod"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2751
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Nobeyama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2752
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Nogales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2753
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Nome"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2754
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Norco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2755
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Nordegg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2756
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Norfolk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2757
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Norfolk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2758
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Norman"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2759
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "North Battleford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2760
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "North Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2761
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "North Bellmore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2762
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "North Cape May"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2763
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "North Charleston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2764
#, kde-kuit-format
msgctxt "City in California USA"
msgid "North Hollywood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2765
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "North Las Vegas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2766
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "North Liberty Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2767
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "North Little Rock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2768
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "North Olmstead"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2769
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "North Platte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2770
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Northfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2771
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Northport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2772
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Northrop Strip"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2773
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Northway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2774
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Norton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2775
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Norton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2776
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Norwalk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2777
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Norwalk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2778
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Norway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2779
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Nottingham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2780
#, kde-kuit-format
msgctxt "City in Mauritania"
msgid "Nouakchott"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2781
#, kde-kuit-format
msgctxt "City in New Caledonia France"
msgid "Noumea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2782
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Novara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2783
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Novgorod"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2784
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Novi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2785
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Novosibirsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2786
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Nuremberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2787
#, kde-kuit-format
msgctxt "City in Fyn Denmark"
msgid "Nyborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2788
#, kde-kuit-format
msgctxt "City in Falster Denmark"
msgid "Nykoebing Falster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2789
#, kde-kuit-format
msgctxt "City in Szabolcs-Szatmár-Bereg Hungary"
msgid "Nyíregyháza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2790
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Oak Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2791
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Oak Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2792
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Oak Ridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2793
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Oak Ridge Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2794
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Oakfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2795
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Oakland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2796
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Oakley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2797
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Oakville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2798
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Oberhausen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2799
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Oberlin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2800
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Oberpfaffenhofen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2801
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Obs. Astronomico de Madrid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2802
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Obs. Milan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2803
#, kde-kuit-format
msgctxt "City in Alpes de Haute Provence France"
msgid "Observatoire de Haute Provence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2804
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Ocala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2805
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Ocean City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2806
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Ocean Grove"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2807
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Oceanside"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2808
#, kde-kuit-format
msgctxt "City in Fyn Denmark"
msgid "Odense"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2809
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Odessa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2810
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Odessa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2811
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Offenbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2812
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Ogallala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2813
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Ogden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2814
#, kde-kuit-format
msgctxt "City in Lecco Italy"
msgid "Oggiono"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2815
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Ohakea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2816
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Okayama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2817
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Okinawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2818
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Oklahoma City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2819
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Olathe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2820
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Olbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2821
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Oldenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2822
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Oldendorf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2823
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Olds"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2824
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Olean"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2825
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Olympia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2826
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Omaha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2827
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Omsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2828
#, kde-kuit-format
msgctxt "City in Namibia"
msgid "Ondangwa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2829
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Onsala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2830
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Ontario"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2831
#, kde-kuit-format
msgctxt "City in Flandre occidentale Belgium"
msgid "Oostende"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2832
#, kde-kuit-format
msgctxt "City in India"
msgid "Ooty"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2833
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Opelika"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2834
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Opheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2835
#, kde-kuit-format
msgctxt "City in Portugal"
msgid "Oporto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2836
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Oran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2837
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Orange"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2838
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Orange"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2839
#, kde-kuit-format
msgctxt "City in Vaucluse France"
msgid "Orange"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2840
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Orange Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2841
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Orangeburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2842
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Orel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2843
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Orem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2844
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Orenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2845
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Orense"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2846
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Orillia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2847
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Orlando"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2848
#, kde-kuit-format
msgctxt "City in Loiret France"
msgid "Orleans"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2849
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Osaka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2850
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Osborne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2851
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Oshkosh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2852
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Osijek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2853
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Oslo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2854
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Osnabrück"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2855
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Osoyoos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2856
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Otranto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2857
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Ottawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2858
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Ottumwa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2859
#, kde-kuit-format
msgctxt "City in Burkina Faso"
msgid "Ouagadougou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2860
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Ouarzazate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2861
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Oulu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2862
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Outlook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2863
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Overland Park"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2864
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Oviedo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2865
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Owen Sound"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2866
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Owens Valley Radio Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2867
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Owensboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2868
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Oxford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2869
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Oxford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2870
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Oxford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2871
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Oxnard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2872
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Oyen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2873
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Oymiakon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2874
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Ozark"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2875
#, kde-kuit-format
msgctxt "City in Korea"
msgid "P'yongyang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2876
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Paauilo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2877
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Pacific"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2878
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Pacific Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2879
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Paderborn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2880
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Padova"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2881
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Paducah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2882
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Pagan Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2883
#, kde-kuit-format
msgctxt "City in Samoa"
msgid "Pago Pago"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2884
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Paide"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2885
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Palana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2886
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Paldiski"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2887
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Palembang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2888
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Palencia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2889
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Palermo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2890
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Palm City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2891
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Palma de Mallorca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2892
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Palmdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2893
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Palmer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2894
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Palo Alto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2895
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Pamplona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2896
#, kde-kuit-format
msgctxt "City in Panama"
msgid "Panama City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2897
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Panama City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2898
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Panevėžys"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2899
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Pantelleria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2900
#, kde-kuit-format
msgctxt "City in French Polynesia"
msgid "Papeete"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2901
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Paradis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2902
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Paradise"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2903
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Parent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2904
#, kde-kuit-format
msgctxt "City in Christmas Island Kiribati"
msgid "Paris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2905
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Paris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2906
#, kde-kuit-format
msgctxt "City in Paris France"
msgid "Paris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2907
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Park Rapids"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2908
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Park View"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2909
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Parkersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2910
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Parkes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2911
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Parma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2912
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Parma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2913
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Parrsboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2914
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Parry Sound"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2915
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Parsons"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2916
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Pasadena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2917
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Pasadena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2918
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Pascagoula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2919
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Paterson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2920
#, kde-kuit-format
msgctxt "City in Pyrénées atlantiques France"
msgid "Pau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2921
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Pawtucket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2922
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Peace River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2923
#, kde-kuit-format
msgctxt "City in Western Australia Australia"
msgid "Pearce"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2924
#, kde-kuit-format
msgctxt "City in Russia"
msgid "Pechory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2925
#, kde-kuit-format
msgctxt "City in China"
msgid "Peking"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2926
#, kde-kuit-format
msgctxt "City in Mozambique"
msgid "Pemba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2927
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Pemberton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2928
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Pembina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2929
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Pembroke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2930
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Penang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2931
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Pendleton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2932
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Pensacola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2933
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Penticton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2934
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Penza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2935
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Peoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2936
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Perkins Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2937
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Perm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2938
#, kde-kuit-format
msgctxt "City in Pyrénées Orientales France"
msgid "Perpignan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2939
#, kde-kuit-format
msgctxt "City in Western Australia Australia"
msgid "Perth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2940
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Perth Amboy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2941
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Peru"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2942
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Perugia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2943
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Pesaro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2944
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Pescara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2945
#, kde-kuit-format
msgctxt "City in Pakistan"
msgid "Peshawar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2946
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Petach Tikva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2947
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Peterbell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2948
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Peterborough"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2949
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Petersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2950
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Petersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2951
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Petropavlovsk-Kamchatskiy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2952
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Petrozavodsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2953
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Pevek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2954
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Pforzheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2955
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Phenix City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2956
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Philadelphia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2957
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Philip"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2958
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Phoenix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2959
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Phuket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2960
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Piacenza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2961
#, kde-kuit-format
msgctxt "City in Hautes-Pyrénées France"
msgid "Pic du Midi (observatory)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2962
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Picayune"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2963
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Pickle Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2964
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Pico Rivera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2965
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Pico de Veleta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2966
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Pierce"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2967
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Pierre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2968
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Pilot Hill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2969
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Pine Bluff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2970
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Pine City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2971
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Pine Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2972
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Pisa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2973
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Pittsburgh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2974
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Pittsfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2975
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Piwnice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2976
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Placerville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2977
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Plainfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2978
#, kde-kuit-format
msgctxt "City in Mauritius"
msgid "Plaisance"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2979
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Plano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2980
#, kde-kuit-format
msgctxt "City in Hautes Alpes France"
msgid "Plateau de Bure (observatory)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2981
#, kde-kuit-format
msgctxt "City in Alpes Maritimes France"
msgid "Plateau de Calern (observatory)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2982
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Plattsburgh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2983
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Plymouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2984
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Plymouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2985
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Plymouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2986
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Plymouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2987
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Pocatello"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2988
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Pocomoke City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2989
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "Podor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2990
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Pohang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2991
#, kde-kuit-format
msgctxt "City in Micronesia"
msgid "Pohnpei"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2992
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Point Hope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2993
#, kde-kuit-format
msgctxt "City in Congo"
msgid "Pointe Noire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2994
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Pointe au Baril Station"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2995
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Pointe-aux-Anglais"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2996
#, kde-kuit-format
msgctxt "City in Guadeloupe France"
msgid "Pointe-à-Pitre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2997
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Polson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2998
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Poltava"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:2999
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Pomona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3000
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Pompano Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3001
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Ponca City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3002
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Ponce"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3003
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Pontevedra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3004
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Pontiac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3005
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Poplar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3006
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Poplar Bluff"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3007
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Pori"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3008
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Port Alberni"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3009
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Port Allen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3010
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Port Arthur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3011
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Port Colborne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3012
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Port Dover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3013
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Port Elizabeth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3014
#, kde-kuit-format
msgctxt "City in Gabon"
msgid "Port Gentil"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3015
#, kde-kuit-format
msgctxt "City in Nigeria"
msgid "Port Harcourt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3016
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Port Hawkesbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3017
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Port Huron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3018
#, kde-kuit-format
msgctxt "City in Papua New Guinea"
msgid "Port Moresby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3019
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Port Renfrew"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3020
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Port Salerno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3021
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "Port Soudan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3022
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Port Sulphur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3023
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Port au Choix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3024
#, kde-kuit-format
msgctxt "City in Trinidad and Tobago"
msgid "Port of Spain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3025
#, kde-kuit-format
msgctxt "City in Haiti"
msgid "Port-au-Prince"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3026
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Portage la Prairie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3027
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Portland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3028
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Portland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3029
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Portneuf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3030
#, kde-kuit-format
msgctxt "City in Bénin"
msgid "Porto Novo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3031
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Portsmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3032
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Portsmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3033
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Portsmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3034
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Portsmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3035
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Potchefstroom"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3036
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Potenza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3037
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Potomac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3038
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Potsdam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3039
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Pottstown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3040
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Poughkeepsie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3041
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Powell River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3042
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Poznan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3043
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Požega"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3044
#, kde-kuit-format
msgctxt "City in Czechia"
msgid "Prague"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3045
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Prato"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3046
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Pratt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3047
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Prescott"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3048
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Preston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3049
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Pretoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3050
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Primghar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3051
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Prince Albert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3052
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Prince George"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3053
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Prince Rupert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3054
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Princeton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3055
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Princeton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3056
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Princeton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3057
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Princeton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3058
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Princeton Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3059
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Procida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3060
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Proctor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3061
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Prosser"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3062
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Providence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3063
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Provideniya Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3064
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Provo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3065
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Provost"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3066
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Prudhoe Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3067
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Pskov"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3068
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Pueblo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3069
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Puerto Montt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3070
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Puerto Real"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3071
#, kde-kuit-format
msgctxt "City in Gran Canaria Spain"
msgid "Puerto del Rosario"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3072
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Pula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3073
#, kde-kuit-format
msgctxt "City in Russia"
msgid "Pulkovo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3074
#, kde-kuit-format
msgctxt "City in Maharashtra India"
msgid "Pune"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3075
#, kde-kuit-format
msgctxt "City in China"
msgid "Purple Mountain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3076
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Putnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3077
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Puyallup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3078
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Pärnu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3079
#, kde-kuit-format
msgctxt "City in Baranya Hungary"
msgid "Pécs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3080
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Põltsamaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3081
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Põlva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3082
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Püssi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3083
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Quakertown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3084
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Quebec"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3085
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Quesnel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3086
#, kde-kuit-format
msgctxt "City in Philippines"
msgid "Quezon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3087
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Quincy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3088
#, kde-kuit-format
msgctxt "City in Ecuador"
msgid "Quito"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3089
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Qustantinah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3090
#, kde-kuit-format
msgctxt "City in Spain"
msgid "R.M. Aller de S. de Compostela"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3091
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Ra'anana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3092
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Rabat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3093
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Racine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3094
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Radisson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3095
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Rainy River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3096
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Rakvere"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3097
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Raleigh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3098
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Ramat Gan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3099
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Ramstein"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3100
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Rancho Palos Verdes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3101
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Randers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3102
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Randolph"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3103
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Rangeley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3104
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Ranger Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3105
#, kde-kuit-format
msgctxt "City in Myanmar"
msgid "Rangoon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3106
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Rapid City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3107
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Rapla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3108
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Rastede"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3109
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Ravenna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3110
#, kde-kuit-format
msgctxt "City in Pakistan"
msgid "Rawalpindi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3111
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Rawlins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3112
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Raymore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3113
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Reading"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3114
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Recife"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3115
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Recklinghausen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3116
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Red Deer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3117
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Red Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3118
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Redding"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3119
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Redondo Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3120
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Redwood City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3121
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Regensburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3122
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Reggio di Calabria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3123
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Regina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3124
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Regway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3125
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Rehovot"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3126
#, kde-kuit-format
msgctxt "City in Marne France"
msgid "Reims"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3127
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Remscheid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3128
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Renfrew"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3129
#, kde-kuit-format
msgctxt "City in Ille-et-vilaine France"
msgid "Rennes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3130
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Rennie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3131
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Reno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3132
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Reseda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3133
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Revelstoke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3134
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Rexburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3135
#, kde-kuit-format
msgctxt "City in Iceland"
msgid "Reykjavik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3136
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Rhinelander"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3137
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Ribe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3138
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Richardson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3139
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Richibucto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3140
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Richland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3141
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Richmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3142
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Richmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3143
#, kde-kuit-format
msgctxt "City in New South Wales Australia"
msgid "Richmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3144
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Richmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3145
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Richmond"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3146
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Rifle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3147
#, kde-kuit-format
msgctxt "City in Latvia"
msgid "Riga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3148
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Rimini"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3149
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Rimouski"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3150
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Ringkoebing"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3151
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Ringsted"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3152
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "Rio de Janeiro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3153
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Riverside"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3154
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Riverton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3155
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Riviere-Eternite"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3156
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Riviere-du-Loup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3157
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Rivne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3158
#, kde-kuit-format
msgctxt "City in Saudi Arabia"
msgid "Riyadh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3159
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Roanoke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3160
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Roberval"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3161
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Robinson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3162
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Robledo de Chavela"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3163
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Roblin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3164
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Rochdale Lanc"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3165
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Rochebaucourt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3166
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Rochester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3167
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Rochester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3168
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Rochester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3169
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Rochester Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3170
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Rock Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3171
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Rock Hill"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3172
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Rock Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3173
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Rockford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3174
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Rockland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3175
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Rockport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3176
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Rockville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3177
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Rockwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3178
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Rocky Harbour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3179
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Rocky Mount"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3180
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Rocky Mountain House"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3181
#, kde-kuit-format
msgctxt "City in Bornholm Denmark"
msgid "Roenne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3182
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Rogers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3183
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Rollet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3184
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Rome"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3185
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "Roosevelt Roads"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3186
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "Roque de los Muchachos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3187
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Rosemead"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3188
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Rosetown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3189
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Roseville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3190
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Roseville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3191
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Roskilde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3192
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Rosthern"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3193
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Rostock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3194
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Rostov na Donu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3195
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Roswell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3196
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Roswell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3197
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Rota Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3198
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Rotterdam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3199
#, kde-kuit-format
msgctxt "City in Seine-maritime France"
msgid "Rouen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3200
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Roundup"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3201
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Rouyn-Noranda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3202
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Rovaniemi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3203
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Rovinj"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3204
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Rowland Heights"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3205
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Royal Oak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3206
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Ruby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3207
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Rugby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3208
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Rumford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3209
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Russell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3210
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Russell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3211
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Ruston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3212
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Rutherford Appleton Lab."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3213
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Rutland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3214
#, kde-kuit-format
msgctxt "City in Burundi"
msgid "Ruyigi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3215
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Ryazan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3216
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Räpina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3217
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Saarbrücken"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3218
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Sabadell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3219
#, kde-kuit-format
msgctxt "City in Ahmadi Kuwait"
msgid "Sabahiya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3220
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Sable Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3221
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Saco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3222
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Sacramento"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3223
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Saganaga Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3224
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Saginaw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3225
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Saginaw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3226
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saguenay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3227
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Saint John"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3228
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Basile-de-Tableau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3229
#, kde-kuit-format
msgctxt "City in Loire France"
msgid "Saint-Etienne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3230
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Felicien"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3231
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Georges"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3232
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Hubert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3233
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Hyacinthe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3234
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Jerome"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3235
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Saint-Michel-des-Saints"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3236
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Saint-Quentin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3237
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Sainte-Adele"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3238
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Saipan Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3239
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Salaberry-de-Valleyfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3240
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Salamanca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3241
#, kde-kuit-format
msgctxt "City in Victoria Australia"
msgid "Sale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3242
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Salem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3243
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Salem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3244
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Salem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3245
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Salem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3246
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Salerno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3247
#, kde-kuit-format
msgctxt "City in Nógrád Hungary"
msgid "Salgótarján"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3248
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Salina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3249
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Salina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3250
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Salinas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3251
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Salisbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3252
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Sallisaw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3253
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Salmon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3254
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Salmon Arm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3255
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Salt Lake City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3256
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Salton City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3257
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Salzburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3258
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Salzgitter"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3259
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Samara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3260
#, kde-kuit-format
msgctxt "City in Iraq"
msgid "Samarrah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3261
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "San Angelo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3262
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "San Antonio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3263
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Bernardino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3264
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Diego"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3265
#, kde-kuit-format
msgctxt "City in Spain"
msgid "San Fernando"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3266
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Francisco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3267
#, kde-kuit-format
msgctxt "City in Costa Rica"
msgid "San Jose"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3268
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Jose"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3269
#, kde-kuit-format
msgctxt "City in Puerto Rico USA"
msgid "San Juan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3270
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Leandro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3271
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Mateo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3272
#, kde-kuit-format
msgctxt "City in California USA"
msgid "San Pedro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3273
#, kde-kuit-format
msgctxt "City in Mexico"
msgid "San Pedro Martir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3274
#, kde-kuit-format
msgctxt "City in El Salvador"
msgid "San Salvador"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3275
#, kde-kuit-format
msgctxt "City in Spain"
msgid "San Sebastián"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3276
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "San Sebastián de la Gomera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3277
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Sancheong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3278
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Sanders"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3279
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Sandersville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3280
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Sandhurst Surrey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3281
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Sandpoint"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3282
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Sanford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3283
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Ana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3284
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Barbara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3285
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Clara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3286
#, kde-kuit-format
msgctxt "City in Bolivia"
msgid "Santa Cruz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3287
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "Santa Cruz de Tenerife"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3288
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "Santa Cruz de la Palma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3289
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Santa Fe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3290
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Maria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3291
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Santa Maria Capua Vetere"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3292
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Monica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3293
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Santa Rosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3294
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Santa Rosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3295
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Santander"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3296
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Santiago"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3297
#, kde-kuit-format
msgctxt "City in Dominican Republic"
msgid "Santo Domingo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3298
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Sapporo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3299
#, kde-kuit-format
msgctxt "City in Bosnia and Herzegovina"
msgid "Sarajevo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3300
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Saransk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3301
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Sarasota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3302
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Saratov"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3303
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Sargent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3304
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sarnia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3305
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Saskatoon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3306
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Sassari"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3307
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Satif"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3308
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Saue"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3309
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Sault St. Marie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3310
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sault Ste. Marie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3311
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Savannah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3312
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Savant Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3313
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Savona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3314
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Scarborough"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3315
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Schauinsland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3316
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Schaumburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3317
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Schenectady"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3318
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Schuyler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3319
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Schwerin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3320
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Scottsdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3321
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Scranton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3322
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Seabrook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3323
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Seaford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3324
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Seal Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3325
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Seattle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3326
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Sebastian"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3327
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Sechelt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3328
#, kde-kuit-format
msgctxt "City in Mali"
msgid "Segou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3329
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Segovia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3330
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Selma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3331
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Selter"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3332
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Senneterre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3333
#, kde-kuit-format
msgctxt "City in Jeju Korea"
msgid "Seogwipo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3334
#, kde-kuit-format
msgctxt "City in Jeju Korea"
msgid "Seongsanpo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3335
#, kde-kuit-format
msgctxt "City in Chungnam Korea"
msgid "Seosan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3336
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Seoul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3337
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Sept-Iles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3338
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Sevastopol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3339
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Sevilla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3340
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Seward"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3341
#, kde-kuit-format
msgctxt "City in Madina Saudi Arabia"
msgid "Sewerqia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3342
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Seymour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3343
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Sfax"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3344
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Shabaqua Corners"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3345
#, kde-kuit-format
msgctxt "City in China"
msgid "Shanghai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3346
#, kde-kuit-format
msgctxt "City in Munster Ireland"
msgid "Shannon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3347
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Shaunavon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3348
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Shawinigan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3349
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Shawnee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3350
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Sheboygan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3351
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Sheet Harbour"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3352
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Sheffield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3353
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Shelby"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3354
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Shelbyville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3355
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Sheldon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3356
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Shell Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3357
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Shemya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3358
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Sherbrooke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3359
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Sherbrooke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3360
#, kde-kuit-format
msgctxt "City in Wyoming USA"
msgid "Sheridan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3361
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Shippagan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3362
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Shiraz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3363
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Shoshone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3364
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Shreveport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3365
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Shungnak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3366
#, kde-kuit-format
msgctxt "City in Malaysia"
msgid "Sibu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3367
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Siding Spring"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3368
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Siegen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3369
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Siena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3370
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Sigonella"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3371
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Silkeborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3372
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Sillamäe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3373
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Silver Dollar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3374
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Silver Spring"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3375
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Simferopol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3376
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Simi Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3377
#, kde-kuit-format
msgctxt "City in Swaziland"
msgid "Simunye"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3378
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Sindi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3379
#, kde-kuit-format
msgctxt "City in Singapore"
msgid "Singapore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3380
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Sinuiju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3381
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Sioux City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3382
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Sioux Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3383
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sioux Lookout"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3384
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sioux Narrows"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3385
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Siracusa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3386
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Sisak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3387
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Sitka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3388
#, kde-kuit-format
msgctxt "City in Myanmar"
msgid "Sittwe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3389
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Skagen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3390
#, kde-kuit-format
msgctxt "City in Slovakia"
msgid "Skalnate Pleso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3391
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Skibotn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3392
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Skive"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3393
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Skokie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3394
#, kde-kuit-format
msgctxt "City in Macedonia"
msgid "Skopje"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3395
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Slagelse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3396
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Slate Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3397
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Slave Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3398
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Slidell"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3399
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Smiths Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3400
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Smoky Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3401
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Smolensk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3402
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Smooth Rock Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3403
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Smyrna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3404
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Sochi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3405
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Soda Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3406
#, kde-kuit-format
msgctxt "City in Denmark"
msgid "Soeborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3407
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Soenderborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3408
#, kde-kuit-format
msgctxt "City in Bulgaria"
msgid "Sofia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3409
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Sokcho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3410
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Solingen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3411
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Somerset"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3412
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Somerset"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3413
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Somerville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3414
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Somerville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3415
#, kde-kuit-format
msgctxt "City in Greenland"
msgid "Sondrestrom"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3416
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Sonnenberg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3417
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Sonoma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3418
#, kde-kuit-format
msgctxt "City in Győr-Moson-Sopron Hungary"
msgid "Sopron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3419
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Soria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3420
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Souris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3421
#, kde-kuit-format
msgctxt "City in Prince Edward Island Canada"
msgid "Souris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3422
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Sousse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3423
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "South Bend"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3424
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "South Brook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3425
#, kde-kuit-format
msgctxt "City in California USA"
msgid "South Gate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3426
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "South Kauai VORTAC"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3427
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Southampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3428
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Southampton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3429
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Southfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3430
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Southington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3431
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Soweto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3432
#, kde-kuit-format
msgctxt "City in Angola"
msgid "Soyo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3433
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Sparks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3434
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Spartanburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3435
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Spenard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3436
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Spencer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3437
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Spirit River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3438
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Spiritwood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3439
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Split"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3440
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Spokane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3441
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Sprague"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3442
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Springdale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3443
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3444
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3445
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3446
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3447
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3448
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Springfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3449
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Spuzzum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3450
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Squamish"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3451
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "St. Alban's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3452
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "St. Albans"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3453
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "St. Bride's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3454
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "St. Catharines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3455
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "St. Charles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3456
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "St. Clair Shores"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3457
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "St. Cloud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3458
#, kde-kuit-format
msgctxt "City in Virgin Islands"
msgid "St. Croix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3459
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "St. David's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3460
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "St. George"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3461
#, kde-kuit-format
msgctxt "City in Antigua and Barbuda"
msgid "St. John's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3462
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "St. John's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3463
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "St. Joseph"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3464
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "St. Louis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3465
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "St. Louis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3466
#, kde-kuit-format
msgctxt "City in Mexico"
msgid "St. María Tonantzintla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3467
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "St. Michales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3468
#, kde-kuit-format
msgctxt "City in Loire-atlantique France"
msgid "St. Nazaire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3469
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "St. Paul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3470
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "St. Paul"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3471
#, kde-kuit-format
msgctxt "City in Guernsey United Kingdom"
msgid "St. Peter Port"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3472
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "St. Peter's"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3473
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "St. Petersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3474
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "St. Petersburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3475
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "St. Stephen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3476
#, kde-kuit-format
msgctxt "City in Virgin Islands"
msgid "St. Thomas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3477
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "St. Thomas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3478
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "St. Walburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3479
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Stamford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3480
#, kde-kuit-format
msgctxt "City in Falkland Islands"
msgid "Stanley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3481
#, kde-kuit-format
msgctxt "City in Slovakia"
msgid "Stara Lesna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3482
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Staten Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3483
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Statesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3484
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Stavanger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3485
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Stavropol'"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3486
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Steamboat Springs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3487
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Steinbach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3488
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Stephenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3489
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Sterling"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3490
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Sterling"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3491
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Sterling Heights"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3492
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Stettler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3493
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Steubenville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3494
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Stockert"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3495
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Stockholm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3496
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Stockholm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3497
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Stockton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3498
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Stony Brook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3499
#, kde-kuit-format
msgctxt "City in Bas-Rhin France"
msgid "Strasbourg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3500
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Stratford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3501
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Stratford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3502
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Struer"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3503
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Sturtevant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3504
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Stuttgart"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3505
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sudbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3506
#, kde-kuit-format
msgctxt "City in Egypt"
msgid "Suez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3507
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Suffolk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3508
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Sugadaira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3509
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sultan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3510
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Summerford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3511
#, kde-kuit-format
msgctxt "City in Prince Edward Island Canada"
msgid "Summerside"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3512
#, kde-kuit-format
msgctxt "City in South Carolina USA"
msgid "Sumter"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3513
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Sumy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3514
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Sun Valley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3515
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Suncheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3516
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Sundridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3517
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Sunnyvale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3518
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Sunrise"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3519
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Superior"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3520
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Surrey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3521
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Sussex"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3522
#, kde-kuit-format
msgctxt "City in South Africa"
msgid "Sutherland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3523
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Sutton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3524
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Suure-Jaani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3525
#, kde-kuit-format
msgctxt "City in Gyeonggi Korea"
msgid "Suwon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3526
#, kde-kuit-format
msgctxt "City in Fyn Denmark"
msgid "Svendborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3527
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Swan Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3528
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Swan River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3529
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Swannanoa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3530
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Swift Current"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3531
#, kde-kuit-format
msgctxt "City in New South Wales Australia"
msgid "Sydney"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3532
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Sydney"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3533
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Syktyvkar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3534
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Syracuse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3535
#, kde-kuit-format
msgctxt "City in Csongrád Hungary"
msgid "Szeged"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3536
#, kde-kuit-format
msgctxt "City in Tolna Hungary"
msgid "Szekszárd"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3537
#, kde-kuit-format
msgctxt "City in Jász-Nagykun-Szolnok Hungary"
msgid "Szolnok"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3538
#, kde-kuit-format
msgctxt "City in Vas Hungary"
msgid "Szombathely"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3539
#, kde-kuit-format
msgctxt "City in Fejér Hungary"
msgid "Székesfehérvár"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3540
#, kde-kuit-format
msgctxt "City in Brazil"
msgid "São Paulo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3541
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Taber"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3542
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Tabriz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3543
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Tachie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3544
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Tacoma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3545
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Tadoussac"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3546
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Taebaek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3547
#, kde-kuit-format
msgctxt "City in French Polynesia"
msgid "Tahiti"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3548
#, kde-kuit-format
msgctxt "City in Hong Kong"
msgid "Tai Tam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3549
#, kde-kuit-format
msgctxt "City in Taiwan"
msgid "Taipei"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3550
#, kde-kuit-format
msgctxt "City in Ghana"
msgid "Takoradi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3551
#, kde-kuit-format
msgctxt "City in Peru"
msgid "Talara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3552
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Tallahassee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3553
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Tallinn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3554
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Tamanrasset"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3555
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Tambov"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3556
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "Tampa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3557
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Tampere"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3558
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Tamsalu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3559
#, kde-kuit-format
msgctxt "City in Morocco"
msgid "Tangier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3560
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Taora Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3561
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Tapa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3562
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Taranto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3563
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Tarragona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3564
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Tartu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3565
#, kde-kuit-format
msgctxt "City in Uzbekistan"
msgid "Tashkent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3566
#, kde-kuit-format
msgctxt "City in Komárom-Esztergom Hungary"
msgid "Tatabánya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3567
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Tataouine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3568
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Taylor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3569
#, kde-kuit-format
msgctxt "City in Honduras"
msgid "Tegucigalpa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3570
#, kde-kuit-format
msgctxt "City in Iran"
msgid "Tehran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3571
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "Teignmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3572
#, kde-kuit-format
msgctxt "City in Israel"
msgid "Tel Aviv"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3573
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Temiskaming Shores"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3574
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Tempe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3575
#, kde-kuit-format
msgctxt "City in Singapore"
msgid "Tengah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3576
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Tenino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3577
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Tern Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3578
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Terni"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3579
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Ternopil'"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3580
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Terrace Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3581
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Terrassa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3582
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Terre Haute"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3583
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Terrenceville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3584
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Teruel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3585
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Tete Jaune Cache"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3586
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "Texarkana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3587
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Texarkana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3588
#, kde-kuit-format
msgctxt "City in Lesotho"
msgid "Teyateayneng"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3589
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "The Pas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3590
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Thessalon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3591
#, kde-kuit-format
msgctxt "City in Greece"
msgid "Thessaloníki"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3592
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Thetford Mines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3593
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Thibodaux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3594
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "Thies"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3595
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Thisted"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3596
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Thomasville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3597
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Thornton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3598
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Thousand Oaks"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3599
#, kde-kuit-format
msgctxt "City in Greenland"
msgid "Thule"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3600
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Thunder Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3601
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Tifton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3602
#, kde-kuit-format
msgctxt "City in Prince Edward Island Canada"
msgid "Tignish"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3603
#, kde-kuit-format
msgctxt "City in Cameroon"
msgid "Tiko"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3604
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Tilburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3605
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Tillson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3606
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Timmins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3607
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Tinak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3608
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Tindouf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3609
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Tinian Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3610
#, kde-kuit-format
msgctxt "City in Algeria"
msgid "Tlemcen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3611
#, kde-kuit-format
msgctxt "City in Madagascar"
msgid "Toamasina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3612
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Tobermory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3613
#, kde-kuit-format
msgctxt "City in Libya"
msgid "Tobruk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3614
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Toender"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3615
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Tofino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3616
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Tokyo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3617
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Toledo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3618
#, kde-kuit-format
msgctxt "City in Toledo Spain"
msgid "Toledo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3619
#, kde-kuit-format
msgctxt "City in Madagascar"
msgid "Toliara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3620
#, kde-kuit-format
msgctxt "City in Mali"
msgid "Tombouctou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3621
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Tombstone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3622
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Tomsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3623
#, kde-kuit-format
msgctxt "City in Gyeongnam Korea"
msgid "Tongyeong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3624
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Topeka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3625
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Tornio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3626
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Toronto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3627
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Torrance"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3628
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Torrington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3629
#, kde-kuit-format
msgctxt "City in Haute-Garonne France"
msgid "Toulouse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3630
#, kde-kuit-format
msgctxt "City in Indre-et-Loire France"
msgid "Tours"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3631
#, kde-kuit-format
msgctxt "City in Queensland Australia"
msgid "Townsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3632
#, kde-kuit-format
msgctxt "City in Japan"
msgid "Toyokawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3633
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Tozeur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3634
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Trapani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3635
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Traverse City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3636
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Trento"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3637
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Trenton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3638
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Trepassey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3639
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Treviso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3640
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Trieste"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3641
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Trinidad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3642
#, kde-kuit-format
msgctxt "City in Libya"
msgid "Tripoli"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3643
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Trois-Rivieres"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3644
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Tromsø"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3645
#, kde-kuit-format
msgctxt "City in Norway"
msgid "Trondheim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3646
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Troy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3647
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Troy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3648
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Troy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3649
#, kde-kuit-format
msgctxt "City in Aube France"
msgid "Troyes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3650
#, kde-kuit-format
msgctxt "City in Micronesia"
msgid "Truk Atoll"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3651
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Truro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3652
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Truth or Consequences"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3653
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Tucker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3654
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Tucson"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3655
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Tucumcari"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3656
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Tula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3657
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Tulsa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3658
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Tumbler Ridge"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3659
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Tunis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3660
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Tupelo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3661
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Turin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3662
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Turku"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3663
#, kde-kuit-format
msgctxt "City in Alabama USA"
msgid "Tuscaloosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3664
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Tver'"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3665
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Twin Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3666
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Two Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3667
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Tyler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3668
#, kde-kuit-format
msgctxt "City in Ural Russia"
msgid "Tyumen'"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3669
#, kde-kuit-format
msgctxt "City in Faroe Islands Denmark"
msgid "Tórshavn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3670
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Tõrva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3671
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Türi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3672
#, kde-kuit-format
msgctxt "City in Washington, DC USA"
msgid "US Naval Observatory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3673
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Ubon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3674
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Ucluelet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3675
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Udine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3676
#, kde-kuit-format
msgctxt "City in Thailand"
msgid "Udon-Thani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3677
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Uelzen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3678
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Ufa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3679
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Uiseong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3680
#, kde-kuit-format
msgctxt "City in Indonesia"
msgid "Ujung Pandang"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3681
#, kde-kuit-format
msgctxt "City in Belgium"
msgid "Ukkel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3682
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Ulan-Ude"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3683
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Uljin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3684
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Ulleungdo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3685
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Ulm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3686
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Ulsan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3687
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Unalaska"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3688
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Uni. de Barcelona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3689
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Union City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3690
#, kde-kuit-format
msgctxt "City in Tennessee USA"
msgid "Union City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3691
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Unity"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3692
#, kde-kuit-format
msgctxt "City in Missouri USA"
msgid "University City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3693
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Upolu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3694
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Upolu Point"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3695
#, kde-kuit-format
msgctxt "City in Sweden"
msgid "Uppsala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3696
#, kde-kuit-format
msgctxt "City in Australia"
msgid "Uppsala Sur"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3697
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Upsala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3698
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Urbana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3699
#, kde-kuit-format
msgctxt "City in Siberia Russia"
msgid "Ust'-Ordynsky"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3700
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Utica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3701
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Utirik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3702
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Utrecht"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3703
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Uzhhorod"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3704
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Vacaville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3705
#, kde-kuit-format
msgctxt "City in India"
msgid "Vainu Bappu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3706
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Val Marie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3707
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Val-d'Or"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3708
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Valdez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3709
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Valdosta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3710
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Vale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3711
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Valentine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3712
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Valga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3713
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Valhalla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3714
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Valladolid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3715
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Vallee-Jonction"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3716
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Vallejo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3717
#, kde-kuit-format
msgctxt "City in Malta"
msgid "Valletta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3718
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Valleyview"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3719
#, kde-kuit-format
msgctxt "City in Chile"
msgid "Valparaiso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3720
#, kde-kuit-format
msgctxt "City in Tenerife Spain"
msgid "Valverde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3721
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Valéncia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3722
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Van Buren"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3723
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Van Nuys"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3724
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Vancouver"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3725
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Vancouver"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3726
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Vandans"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3727
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Vanderhoof"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3728
#, kde-kuit-format
msgctxt "City in Morbihan France"
msgid "Vannes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3729
#, kde-kuit-format
msgctxt "City in Finland"
msgid "Vantaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3730
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Varaždin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3731
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Varde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3732
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Varsovia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3733
#, kde-kuit-format
msgctxt "City in Vatican"
msgid "Vaticano"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3734
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Vaughn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3735
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Vegreville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3736
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Vejle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3737
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Venice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3738
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Venice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3739
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Ventura"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3740
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Vermilion"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3741
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Vermilion Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3742
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Vermillion"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3743
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Vernal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3744
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Verner"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3745
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Vernon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3746
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Verona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3747
#, kde-kuit-format
msgctxt "City in New Mexico USA"
msgid "Very Large Array"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3748
#, kde-kuit-format
msgctxt "City in Veszprém Hungary"
msgid "Veszprém"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3749
#, kde-kuit-format
msgctxt "City in Jylland Denmark"
msgid "Viborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3750
#, kde-kuit-format
msgctxt "City in Italy"
msgid "Vicenza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3751
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Vicksburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3752
#, kde-kuit-format
msgctxt "City in Seychelles"
msgid "Victoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3753
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Victoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3754
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Victoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3755
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Victoriaville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3756
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Vienna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3757
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Vigo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3758
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Viljandi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3759
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Ville-Marie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3760
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Vilna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3761
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Vilnius"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3762
#, kde-kuit-format
msgctxt "City in New Jersey USA"
msgid "Vineland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3763
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Vinkovci"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3764
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Vinnytsia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3765
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Virden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3766
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Virginia Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3767
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Virovitica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3768
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Visalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3769
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Vitoria-Gasteiz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3770
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Vladikavkaz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3771
#, kde-kuit-format
msgctxt "City in Central Region Russia"
msgid "Vladimir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3772
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Vladivostok"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3773
#, kde-kuit-format
msgctxt "City in South Region Russia"
msgid "Volgograd"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3774
#, kde-kuit-format
msgctxt "City in North-West Region Russia"
msgid "Vologda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3775
#, kde-kuit-format
msgctxt "City in Austria"
msgid "Vols"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3776
#, kde-kuit-format
msgctxt "City in Zealand Denmark"
msgid "Vordingborg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3777
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Võhma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3778
#, kde-kuit-format
msgctxt "City in Estonia"
msgid "Võru"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3779
#, kde-kuit-format
msgctxt "City in Indiana USA"
msgid "Wabash"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3780
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Waco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3781
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "Wad Medani"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3782
#, kde-kuit-format
msgctxt "City in Sudan"
msgid "Wadi-Halfa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3783
#, kde-kuit-format
msgctxt "City in Kuwait"
msgid "Wafra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3784
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Wahiawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3785
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Waialua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3786
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Waikola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3787
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Wailuku"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3788
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Waimea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3789
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Wainwright"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3790
#, kde-kuit-format
msgctxt "City in Hawaii USA"
msgid "Waipahu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3791
#, kde-kuit-format
msgctxt "City in US Territory"
msgid "Wake Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3792
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Wakefield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3793
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Waldoboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3794
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Walker"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3795
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Walla Walla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3796
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Wallace"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3797
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Wallowa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3798
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Walnut Creek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3799
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Waltham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3800
#, kde-kuit-format
msgctxt "City in Namibia"
msgid "Walvis Bay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3801
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Wandering River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3802
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Wando"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3803
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Warner Robins"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3804
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Warren"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3805
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Warren"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3806
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Warren"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3807
#, kde-kuit-format
msgctxt "City in Poland"
msgid "Warsaw"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3808
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Warwick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3809
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Wasagaming"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3810
#, kde-kuit-format
msgctxt "City in Oregon USA"
msgid "Wasco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3811
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Waseca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3812
#, kde-kuit-format
msgctxt "City in DC USA"
msgid "Washington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3813
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Washington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3814
#, kde-kuit-format
msgctxt "City in Quebec Canada"
msgid "Waswanipi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3815
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Waterbury"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3816
#, kde-kuit-format
msgctxt "City in Munster Ireland"
msgid "Waterford"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3817
#, kde-kuit-format
msgctxt "City in Iowa USA"
msgid "Waterloo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3818
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Waterloo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3819
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Watertown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3820
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Watertown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3821
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Waterville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3822
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Watrous"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3823
#, kde-kuit-format
msgctxt "City in Illinois USA"
msgid "Waukegan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3824
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Waukesha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3825
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Wausau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3826
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Wauwatosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3827
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Wawa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3828
#, kde-kuit-format
msgctxt "City in Georgia USA"
msgid "Waycross"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3829
#, kde-kuit-format
msgctxt "City in Nebraska USA"
msgid "Wayne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3830
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Waynesboro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3831
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Waynesburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3832
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Weirs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3833
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Weirton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3834
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Wellington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3835
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Wells"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3836
#, kde-kuit-format
msgctxt "City in Utah USA"
msgid "Wendover"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3837
#, kde-kuit-format
msgctxt "City in Newfoundland Canada"
msgid "Wesleyville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3838
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "West Allis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3839
#, kde-kuit-format
msgctxt "City in California USA"
msgid "West Covina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3840
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "West Haven"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3841
#, kde-kuit-format
msgctxt "City in California USA"
msgid "West Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3842
#, kde-kuit-format
msgctxt "City in Arkansas USA"
msgid "West Memphis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3843
#, kde-kuit-format
msgctxt "City in Florida USA"
msgid "West Palm Beach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3844
#, kde-kuit-format
msgctxt "City in Maine USA"
msgid "Westbrook"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3845
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Westerbork"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3846
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Westerly"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3847
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Westland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3848
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Westlock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3849
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Westminster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3850
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Westminster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3851
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Westminster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3852
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Westport"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3853
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Wetaskiwin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3854
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Weyburn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3855
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Weymouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3856
#, kde-kuit-format
msgctxt "City in Maryland USA"
msgid "Wheaton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3857
#, kde-kuit-format
msgctxt "City in West Virginia USA"
msgid "Wheeling"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3858
#, kde-kuit-format
msgctxt "City in New Zealand"
msgid "Whenuapai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3859
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Whidbey Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3860
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Whistler"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3861
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "White Plains"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3862
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "White River"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3863
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Whitecourt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3864
#, kde-kuit-format
msgctxt "City in Yukon Canada"
msgid "Whitehorse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3865
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Whitney"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3866
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Whittier"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3867
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Whycocomagh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3868
#, kde-kuit-format
msgctxt "City in Kansas USA"
msgid "Wichita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3869
#, kde-kuit-format
msgctxt "City in Texas USA"
msgid "Wichita Falls"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3870
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Wickenburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3871
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Wiesbaden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3872
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Wilcox Solar Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3873
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Wilder"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3874
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Wilkes-Barre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3875
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Willcox"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3876
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Willemstad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3877
#, kde-kuit-format
msgctxt "City in British Columbia Canada"
msgid "Williams Lake"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3878
#, kde-kuit-format
msgctxt "City in North Dakota USA"
msgid "Williston"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3879
#, kde-kuit-format
msgctxt "City in Delaware USA"
msgid "Wilmington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3880
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Wilmington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3881
#, kde-kuit-format
msgctxt "City in Idaho USA"
msgid "Winchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3882
#, kde-kuit-format
msgctxt "City in Kentucky USA"
msgid "Winchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3883
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Winchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3884
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Winchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3885
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Winchester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3886
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Windam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3887
#, kde-kuit-format
msgctxt "City in Namibia"
msgid "Windhoek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3888
#, kde-kuit-format
msgctxt "City in Khomas Hochland Namibia"
msgid "Windhoek"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3889
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Windsor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3890
#, kde-kuit-format
msgctxt "City in Ontario Canada"
msgid "Windsor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3891
#, kde-kuit-format
msgctxt "City in Nevada USA"
msgid "Winnemucca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3892
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Winner"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3893
#, kde-kuit-format
msgctxt "City in Montana USA"
msgid "Winnett"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3894
#, kde-kuit-format
msgctxt "City in Louisiana USA"
msgid "Winnfield"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3895
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Winnipeg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3896
#, kde-kuit-format
msgctxt "City in Manitoba Canada"
msgid "Winnipegosis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3897
#, kde-kuit-format
msgctxt "City in Minnesota USA"
msgid "Winona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3898
#, kde-kuit-format
msgctxt "City in Mississippi USA"
msgid "Winona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3899
#, kde-kuit-format
msgctxt "City in Vermont USA"
msgid "Winooski"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3900
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Winsted"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3901
#, kde-kuit-format
msgctxt "City in North Carolina USA"
msgid "Winston-Salem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3902
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Witten"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3903
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Wolfsburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3904
#, kde-kuit-format
msgctxt "City in Netherlands"
msgid "Wolphaartsdijk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3905
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Wolseley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3906
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Wonju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3907
#, kde-kuit-format
msgctxt "City in Korea"
msgid "Wonsan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3908
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Woodland Hills"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3909
#, kde-kuit-format
msgctxt "City in New Brunswick Canada"
msgid "Woodstock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3910
#, kde-kuit-format
msgctxt "City in New Hampshire USA"
msgid "Woodsville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3911
#, kde-kuit-format
msgctxt "City in Oklahoma USA"
msgid "Woodward"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3912
#, kde-kuit-format
msgctxt "City in Rhode Island USA"
msgid "Woonsocket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3913
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Woonsocket"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3914
#, kde-kuit-format
msgctxt "City in Massachusetts USA"
msgid "Worcester"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3915
#, kde-kuit-format
msgctxt "City in Alberta Canada"
msgid "Worsley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3916
#, kde-kuit-format
msgctxt "City in Marshall Islands"
msgid "Wotje"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3917
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Wuppertal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3918
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Wurzburg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3919
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Wynnewood"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3920
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Wynyard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3921
#, kde-kuit-format
msgctxt "City in Michigan USA"
msgid "Wyoming"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3922
#, kde-kuit-format
msgctxt "City in Virginia USA"
msgid "Wytheville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3923
#, kde-kuit-format
msgctxt "City in Washington USA"
msgid "Yakima"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3924
#, kde-kuit-format
msgctxt "City in Alaska USA"
msgid "Yakutat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3925
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Yakutsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3926
#, kde-kuit-format
msgctxt "City in Connecticut USA"
msgid "Yale Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3927
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Yalta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3928
#, kde-kuit-format
msgctxt "City in Ivory coast"
msgid "Yamoussoukro"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3929
#, kde-kuit-format
msgctxt "City in Gyeonggi Korea"
msgid "Yangpyeong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3930
#, kde-kuit-format
msgctxt "City in South Dakota USA"
msgid "Yankton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3931
#, kde-kuit-format
msgctxt "City in Cameroon"
msgid "Yaounde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3932
#, kde-kuit-format
msgctxt "City in Micronesia"
msgid "Yap Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3933
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "Yardley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3934
#, kde-kuit-format
msgctxt "City in Nova Scotia Canada"
msgid "Yarmouth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3935
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Yebes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3936
#, kde-kuit-format
msgctxt "City in Liberia"
msgid "Yekepa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3937
#, kde-kuit-format
msgctxt "City in Northwest Territories Canada"
msgid "Yellowknife"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3938
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Yeongcheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3939
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Yeongdeok"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3940
#, kde-kuit-format
msgctxt "City in Gyeongbuk Korea"
msgid "Yeongju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3941
#, kde-kuit-format
msgctxt "City in Gangwon Korea"
msgid "Yeongwol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3942
#, kde-kuit-format
msgctxt "City in Jeonnam Korea"
msgid "Yeosu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3943
#, kde-kuit-format
msgctxt "City in Wisconsin USA"
msgid "Yerkes Obs."
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3944
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Yonkers"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3945
#, kde-kuit-format
msgctxt "City in United Kingdom"
msgid "York"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3946
#, kde-kuit-format
msgctxt "City in Pennsylvania USA"
msgid "York"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3947
#, kde-kuit-format
msgctxt "City in Saskatchewan Canada"
msgid "Yorkton"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3948
#, kde-kuit-format
msgctxt "City in New York USA"
msgid "Yorktown Heights"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3949
#, kde-kuit-format
msgctxt "City in Volga Region Russia"
msgid "Yoshkar Ola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3950
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Youngstown"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3951
#, kde-kuit-format
msgctxt "City in California USA"
msgid "Yuba City"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3952
#, kde-kuit-format
msgctxt "City in Arizona USA"
msgid "Yuma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3953
#, kde-kuit-format
msgctxt "City in Colorado USA"
msgid "Yuma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3954
#, kde-kuit-format
msgctxt "City in Hambuk Korea"
msgid "Yupojin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3955
#, kde-kuit-format
msgctxt "City in Far East Russia"
msgid "Yuzhno-Sakhalinsk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3956
#, kde-kuit-format
msgctxt "City in Croatia"
msgid "Zadar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3957
#, kde-kuit-format
msgctxt "City in Zala Hungary"
msgid "Zalaegerszeg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3958
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Zamora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3959
#, kde-kuit-format
msgctxt "City in Ohio USA"
msgid "Zanesville"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3960
#, kde-kuit-format
msgctxt "City in Tanzania"
msgid "Zanzibar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3961
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Zaporizhia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3962
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Zaragoza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3963
#, kde-kuit-format
msgctxt "City in Tunisia"
msgid "Zarzis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3964
#, kde-kuit-format
msgctxt "City in Wielkopolska Poland"
msgid "Zduny"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3965
#, kde-kuit-format
msgctxt "City in Russia"
msgid "Zelenchukskaya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3966
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Zhovkva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3967
#, kde-kuit-format
msgctxt "City in Ukraine"
msgid "Zhytomyr"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3968
#, kde-kuit-format
msgctxt "City in Senegal"
msgid "Ziguinchor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3969
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Zimmerwald"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3970
#, kde-kuit-format
msgctxt "City in Malawi"
msgid "Zomba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3971
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Zorneding"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3972
#, kde-kuit-format
msgctxt "City in Germany"
msgid "Zwickau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3973
#, kde-kuit-format
msgctxt "City in Switzerland"
msgid "Zürich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3974
#, kde-kuit-format
msgctxt "City in Spain"
msgid "Ávila"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3975
#, kde-kuit-format
msgctxt "City in Lithuania"
msgid "Šiauliai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3976
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "ACT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3977
#, kde-kuit-format
msgctxt "Region/state in Kuwait"
msgid "Ahmadi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3978
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Alabama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3979
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Alaska"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3980
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Alberta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3981
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Alpes Maritimes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3982
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Alpes de Haute Provence"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3983
#, kde-kuit-format
msgctxt "Region/state in India"
msgid "Andhra Pradesh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3984
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Arizona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3985
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Arkansas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3986
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Aube"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3987
#, kde-kuit-format
msgctxt "Region/state in Portugal"
msgid "Azores"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3988
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Baranya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3989
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Bas-Rhin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3990
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Bornholm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3991
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Borsod-Abaúj-Zemplén"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3992
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Bouches-du-rhône"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3993
#, kde-kuit-format
msgctxt "Region/state in Belgium"
msgid "Brabant"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3994
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "British Columbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3995
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Bács-Kiskun"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3996
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Békés"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3997
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "California"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3998
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Calvados"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:3999
#, kde-kuit-format
msgctxt "Region/state in Spain"
msgid "Canary Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4000
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "Central Region"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4001
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Charente-Maritime"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4002
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Cher"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4003
#, kde-kuit-format
msgctxt "Region/state in Kiribati"
msgid "Christmas Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4004
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Chungbuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4005
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Chungnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4006
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Colorado"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4007
#, kde-kuit-format
msgctxt "Region/state in Ireland"
msgid "Connacht"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4008
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Connecticut"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4009
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Corse du Sud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4010
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Csongrád"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4011
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Côte d'or"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4012
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "DC"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4013
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Delaware"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4014
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Doubs"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4015
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Eure-et-Loir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4016
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Falster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4017
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "Far East"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4018
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Faroe Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4019
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Fejér"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4020
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Finistère"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4021
#, kde-kuit-format
msgctxt "Region/state in Belgium"
msgid "Flandre occidentale"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4022
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Florida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4023
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Fyn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4024
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Gangwon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4025
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Georgia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4026
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Gironde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4027
#, kde-kuit-format
msgctxt "Region/state in Spain"
msgid "Gran Canaria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4028
#, kde-kuit-format
msgctxt "Region/state in Solomon Islands"
msgid "Guadalcanal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4029
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Guadeloupe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4030
#, kde-kuit-format
msgctxt "Region/state in United Kingdom"
msgid "Guernsey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4031
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Gyengnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4032
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Gyeongbuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4033
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Gyeonggi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4034
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Gyeongnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4035
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Győr-Moson-Sopron"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4036
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Hajdú-Bihar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4037
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Hambuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4038
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Haute-Corse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4039
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Haute-Garonne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4040
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Haute-Loire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4041
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Haute-Savoie"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4042
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Haute-Vienne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4043
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Hautes Alpes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4044
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Hautes-Pyrénées"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4045
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Hauts-de-Seine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4046
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Hawaii"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4047
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Herault"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4048
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Heves"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4049
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Idaho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4050
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Ille-et-vilaine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4051
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Illinois"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4052
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Incheon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4053
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Indiana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4054
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Indre-et-Loire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4055
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Iowa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4056
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Isère"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4057
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Jeju"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4058
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Jeonbuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4059
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Jeonnam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4060
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Jylland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4061
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Jász-Nagykun-Szolnok"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4062
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Kansas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4063
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Kentucky"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4064
#, kde-kuit-format
msgctxt "Region/state in Namibia"
msgid "Khomas Hochland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4065
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Komárom-Esztergom"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4066
#, kde-kuit-format
msgctxt "Region/state in Italy"
msgid "Lecco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4067
#, kde-kuit-format
msgctxt "Region/state in Ireland"
msgid "Leinster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4068
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Loire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4069
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Loire-atlantique"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4070
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Loiret"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4071
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Lolland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4072
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Louisiana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4073
#, kde-kuit-format
msgctxt "Region/state in Portugal"
msgid "Madeira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4074
#, kde-kuit-format
msgctxt "Region/state in Saudi Arabia"
msgid "Madina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4075
#, kde-kuit-format
msgctxt "Region/state in India"
msgid "Maharashtra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4076
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Maine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4077
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Manche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4078
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Manitoba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4079
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Marne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4080
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Martinique"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4081
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Maryland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4082
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Massachusetts"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4083
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Mayotte"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4084
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Michigan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4085
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Minnesota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4086
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Mississippi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4087
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Missouri"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4088
#, kde-kuit-format
msgctxt "Region/state in Germany"
msgid "Mittelfranken"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4089
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Montana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4090
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Morbihan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4091
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Moselle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4092
#, kde-kuit-format
msgctxt "Region/state in Ireland"
msgid "Munster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4093
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Nebraska"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4094
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Nevada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4095
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "New Brunswick"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4096
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "New Caledonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4097
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "New Hampshire"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4098
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "New Jersey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4099
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "New Mexico"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4100
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "New South Wales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4101
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "New York"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4102
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Newfoundland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4103
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Nièvre"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4104
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Nord"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4105
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "North Carolina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4106
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "North Dakota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4107
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "North-West Region"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4108
#, kde-kuit-format
msgctxt "Region/state in United Kingdom"
msgid "Northern Ireland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4109
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "Northern Territory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4110
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Northwest Territories"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4111
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Nova Scotia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4112
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Nunavut"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4113
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Nógrád"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4114
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Ohio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4115
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Oklahoma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4116
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Ontario"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4117
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Oregon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4118
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Paris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4119
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Pas-de-Calais"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4120
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Pennsylvania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4121
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Pest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4122
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Prince Edward Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4123
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Puerto Rico"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4124
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Puy-de-Dôme"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4125
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Pyrénées Orientales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4126
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Pyrénées atlantiques"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4127
#, kde-kuit-format
msgctxt "Region/state in Korea"
msgid "Pyungbuk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4128
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Quebec"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4129
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "Queensland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4130
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Rhode Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4131
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Rhône"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4132
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Saskatchewan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4133
#, kde-kuit-format
msgctxt "Region/state in United Kingdom"
msgid "Scotland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4134
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Seine-maritime"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4135
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "Siberia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4136
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Somme"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4137
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Somogy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4138
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "South Australia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4139
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "South Carolina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4140
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "South Dakota"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4141
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "South Region"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4142
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "St-Pierre and Miquelon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4143
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Szabolcs-Szatmár-Bereg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4144
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "Tasmania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4145
#, kde-kuit-format
msgctxt "Region/state in Spain"
msgid "Tenerife"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4146
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Tennessee"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4147
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Texas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4148
#, kde-kuit-format
msgctxt "Region/state in China"
msgid "Tibet"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4149
#, kde-kuit-format
msgctxt "Region/state in Spain"
msgid "Toledo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4150
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Tolna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4151
#, kde-kuit-format
msgctxt "Region/state in Ireland"
msgid "Ulster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4152
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "Ural"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4153
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Utah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4154
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Vas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4155
#, kde-kuit-format
msgctxt "Region/state in France"
msgid "Vaucluse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4156
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Vermont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4157
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Veszprém"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4158
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "Victoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4159
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Virginia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4160
#, kde-kuit-format
msgctxt "Region/state in Russia"
msgid "Volga Region"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4161
#, kde-kuit-format
msgctxt "Region/state in United Kingdom"
msgid "Wales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4162
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Washington"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4163
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Washington, DC"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4164
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "West Virginia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4165
#, kde-kuit-format
msgctxt "Region/state in Australia"
msgid "Western Australia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4166
#, kde-kuit-format
msgctxt "Region/state in Poland"
msgid "Wielkopolska"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4167
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Wisconsin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4168
#, kde-kuit-format
msgctxt "Region/state in USA"
msgid "Wyoming"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4169
#, kde-kuit-format
msgctxt "Region/state in Canada"
msgid "Yukon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4170
#, kde-kuit-format
msgctxt "Region/state in Hungary"
msgid "Zala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4171
#, kde-kuit-format
msgctxt "Region/state in Denmark"
msgid "Zealand"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4172
#, kde-kuit-format
msgctxt "Country name"
msgid "Afghanistan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4173
#, kde-kuit-format
msgctxt "Country name"
msgid "Algeria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4174
#, kde-kuit-format
msgctxt "Country name"
msgid "Angola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4175
#, kde-kuit-format
msgctxt "Country name"
msgid "Antarctica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4176
#, kde-kuit-format
msgctxt "Country name"
msgid "Antigua and Barbuda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4177
#, kde-kuit-format
msgctxt "Country name"
msgid "Argentina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4178
#, kde-kuit-format
msgctxt "Country name"
msgid "Armenia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4179
#, kde-kuit-format
msgctxt "Country name"
msgid "Ascension Island"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4180
#, kde-kuit-format
msgctxt "Country name"
msgid "Australia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4181
#, kde-kuit-format
msgctxt "Country name"
msgid "Austria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4182
#, kde-kuit-format
msgctxt "Country name"
msgid "Bahamas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4183
#, kde-kuit-format
msgctxt "Country name"
msgid "Bahrain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4184
#, kde-kuit-format
msgctxt "Country name"
msgid "Bangladesh"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4185
#, kde-kuit-format
msgctxt "Country name"
msgid "Barbados"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4186
#, kde-kuit-format
msgctxt "Country name"
msgid "Belgium"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4187
#, kde-kuit-format
msgctxt "Country name"
msgid "Belize"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4188
#, kde-kuit-format
msgctxt "Country name"
msgid "Bermuda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4189
#, kde-kuit-format
msgctxt "Country name"
msgid "Bolivia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4190
#, kde-kuit-format
msgctxt "Country name"
msgid "Bosnia and Herzegovina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4191
#, kde-kuit-format
msgctxt "Country name"
msgid "Botswana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4192
#, kde-kuit-format
msgctxt "Country name"
msgid "Brazil"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4193
#, kde-kuit-format
msgctxt "Country name"
msgid "Brunei"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4194
#, kde-kuit-format
msgctxt "Country name"
msgid "Bulgaria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4195
#, kde-kuit-format
msgctxt "Country name"
msgid "Burkina Faso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4196
#, kde-kuit-format
msgctxt "Country name"
msgid "Burundi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4197
#, kde-kuit-format
msgctxt "Country name"
msgid "Bénin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4198
#, kde-kuit-format
msgctxt "Country name"
msgid "Cameroon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4199
#, kde-kuit-format
msgctxt "Country name"
msgid "Canada"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4200
#, kde-kuit-format
msgctxt "Country name"
msgid "Cape Verde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4201
#, kde-kuit-format
msgctxt "Country name"
msgid "Cayman Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4202
#, kde-kuit-format
msgctxt "Country name"
msgid "Central African Republic"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4203
#, kde-kuit-format
msgctxt "Country name"
msgid "Chad"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4204
#, kde-kuit-format
msgctxt "Country name"
msgid "Chile"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4205
#, kde-kuit-format
msgctxt "Country name"
msgid "China"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4206
#, kde-kuit-format
msgctxt "Country name"
msgid "Colombia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4207
#, kde-kuit-format
msgctxt "Country name"
msgid "Congo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4208
#, kde-kuit-format
msgctxt "Country name"
msgid "Congo (Democratic Republic)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4209
#, kde-kuit-format
msgctxt "Country name"
msgid "Costa Rica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4210
#, kde-kuit-format
msgctxt "Country name"
msgid "Croatia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4211
#, kde-kuit-format
msgctxt "Country name"
msgid "Cuba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4212
#, kde-kuit-format
msgctxt "Country name"
msgid "Cyprus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4213
#, kde-kuit-format
msgctxt "Country name"
msgid "Czechia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4214
#, kde-kuit-format
msgctxt "Country name"
msgid "Dem rep of Congo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4215
#, kde-kuit-format
msgctxt "Country name"
msgid "Denmark"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4216
#, kde-kuit-format
msgctxt "Country name"
msgid "Djibouti"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4217
#, kde-kuit-format
msgctxt "Country name"
msgid "Dominican Republic"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4218
#, kde-kuit-format
msgctxt "Country name"
msgid "Ecuador"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4219
#, kde-kuit-format
msgctxt "Country name"
msgid "Egypt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4220
#, kde-kuit-format
msgctxt "Country name"
msgid "El Salvador"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4221
#, kde-kuit-format
msgctxt "Country name"
msgid "Equatorial Guinea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4222
#, kde-kuit-format
msgctxt "Country name"
msgid "Eritrea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4223
#, kde-kuit-format
msgctxt "Country name"
msgid "Estonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4224
#, kde-kuit-format
msgctxt "Country name"
msgid "Ethiopia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4225
#, kde-kuit-format
msgctxt "Country name"
msgid "Falkland Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4226
#, kde-kuit-format
msgctxt "Country name"
msgid "Fiji"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4227
#, kde-kuit-format
msgctxt "Country name"
msgid "Finland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4228
#, kde-kuit-format
msgctxt "Country name"
msgid "France"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4229
#, kde-kuit-format
msgctxt "Country name"
msgid "French Guiana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4230
#, kde-kuit-format
msgctxt "Country name"
msgid "French Polynesia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4231
#, kde-kuit-format
msgctxt "Country name"
msgid "Gabon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4232
#, kde-kuit-format
msgctxt "Country name"
msgid "Gambia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4233
#, kde-kuit-format
msgctxt "Country name"
msgid "Germany"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4234
#, kde-kuit-format
msgctxt "Country name"
msgid "Ghana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4235
#, kde-kuit-format
msgctxt "Country name"
msgid "Greece"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4236
#, kde-kuit-format
msgctxt "Country name"
msgid "Greenland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4237
#, kde-kuit-format
msgctxt "Country name"
msgid "Guam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4238
#, kde-kuit-format
msgctxt "Country name"
msgid "Guatemala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4239
#, kde-kuit-format
msgctxt "Country name"
msgid "Guinea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4240
#, kde-kuit-format
msgctxt "Country name"
msgid "Guinea Bissau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4241
#, kde-kuit-format
msgctxt "Country name"
msgid "Guyana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4242
#, kde-kuit-format
msgctxt "Country name"
msgid "Haiti"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4243
#, kde-kuit-format
msgctxt "Country name"
msgid "Honduras"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4244
#, kde-kuit-format
msgctxt "Country name"
msgid "Hong Kong"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4245
#, kde-kuit-format
msgctxt "Country name"
msgid "Hungary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4246
#, kde-kuit-format
msgctxt "Country name"
msgid "Iceland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4247
#, kde-kuit-format
msgctxt "Country name"
msgid "India"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4248
#, kde-kuit-format
msgctxt "Country name"
msgid "Indonesia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4249
#, kde-kuit-format
msgctxt "Country name"
msgid "Iran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4250
#, kde-kuit-format
msgctxt "Country name"
msgid "Iraq"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4251
#, kde-kuit-format
msgctxt "Country name"
msgid "Ireland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4252
#, kde-kuit-format
msgctxt "Country name"
msgid "Isle of Man"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4253
#, kde-kuit-format
msgctxt "Country name"
msgid "Israel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4254
#, kde-kuit-format
msgctxt "Country name"
msgid "Italy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4255
#, kde-kuit-format
msgctxt "Country name"
msgid "Ivory coast"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4256
#, kde-kuit-format
msgctxt "Country name"
msgid "Jamaica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4257
#, kde-kuit-format
msgctxt "Country name"
msgid "Japan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4258
#, kde-kuit-format
msgctxt "Country name"
msgid "Jordan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4259
#, kde-kuit-format
msgctxt "Country name"
msgid "Kazakhstan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4260
#, kde-kuit-format
msgctxt "Country name"
msgid "Kenya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4261
#, kde-kuit-format
msgctxt "Country name"
msgid "Kiribati"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4262
#, kde-kuit-format
msgctxt "Country name"
msgid "Korea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4263
#, kde-kuit-format
msgctxt "Country name"
msgid "Kuwait"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4264
#, kde-kuit-format
msgctxt "Country name"
msgid "Latvia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4265
#, kde-kuit-format
msgctxt "Country name"
msgid "Lebanon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4266
#, kde-kuit-format
msgctxt "Country name"
msgid "Lesotho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4267
#, kde-kuit-format
msgctxt "Country name"
msgid "Liberia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4268
#, kde-kuit-format
msgctxt "Country name"
msgid "Libya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4269
#, kde-kuit-format
msgctxt "Country name"
msgid "Lithuania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4270
#, kde-kuit-format
msgctxt "Country name"
msgid "Luxembourg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4271
#, kde-kuit-format
msgctxt "Country name"
msgid "Macedonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4272
#, kde-kuit-format
msgctxt "Country name"
msgid "Madagascar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4273
#, kde-kuit-format
msgctxt "Country name"
msgid "Malawi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4274
#, kde-kuit-format
msgctxt "Country name"
msgid "Malaysia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4275
#, kde-kuit-format
msgctxt "Country name"
msgid "Maldives"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4276
#, kde-kuit-format
msgctxt "Country name"
msgid "Mali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4277
#, kde-kuit-format
msgctxt "Country name"
msgid "Malta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4278
#, kde-kuit-format
msgctxt "Country name"
msgid "Marshall Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4279
#, kde-kuit-format
msgctxt "Country name"
msgid "Mauritania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4280
#, kde-kuit-format
msgctxt "Country name"
msgid "Mauritius"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4281
#, kde-kuit-format
msgctxt "Country name"
msgid "Mexico"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4282
#, kde-kuit-format
msgctxt "Country name"
msgid "Micronesia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4283
#, kde-kuit-format
msgctxt "Country name"
msgid "Monaco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4284
#, kde-kuit-format
msgctxt "Country name"
msgid "Morocco"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4285
#, kde-kuit-format
msgctxt "Country name"
msgid "Mozambique"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4286
#, kde-kuit-format
msgctxt "Country name"
msgid "Myanmar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4287
#, kde-kuit-format
msgctxt "Country name"
msgid "Namibia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4288
#, kde-kuit-format
msgctxt "Country name"
msgid "Nepal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4289
#, kde-kuit-format
msgctxt "Country name"
msgid "Netherlands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4290
#, kde-kuit-format
msgctxt "Country name"
msgid "New Zealand"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4291
#, kde-kuit-format
msgctxt "Country name"
msgid "Nicaragua"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4292
#, kde-kuit-format
msgctxt "Country name"
msgid "Niger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4293
#, kde-kuit-format
msgctxt "Country name"
msgid "Nigeria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4294
#, kde-kuit-format
msgctxt "Country name"
msgid "Norway"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4295
#, kde-kuit-format
msgctxt "Country name"
msgid "Pakistan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4296
#, kde-kuit-format
msgctxt "Country name"
msgid "Palau"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4297
#, kde-kuit-format
msgctxt "Country name"
msgid "Panama"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4298
#, kde-kuit-format
msgctxt "Country name"
msgid "Papua New Guinea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4299
#, kde-kuit-format
msgctxt "Country name"
msgid "Paraguay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4300
#, kde-kuit-format
msgctxt "Country name"
msgid "Peru"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4301
#, kde-kuit-format
msgctxt "Country name"
msgid "Philippines"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4302
#, kde-kuit-format
msgctxt "Country name"
msgid "Pitcairn Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4303
#, kde-kuit-format
msgctxt "Country name"
msgid "Poland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4304
#, kde-kuit-format
msgctxt "Country name"
msgid "Portugal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4305
#, kde-kuit-format
msgctxt "Country name"
msgid "Qatar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4306
#, kde-kuit-format
msgctxt "Country name"
msgid "Romania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4307
#, kde-kuit-format
msgctxt "Country name"
msgid "Russia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4308
#, kde-kuit-format
msgctxt "Country name"
msgid "Rwanda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4309
#, kde-kuit-format
msgctxt "Country name"
msgid "Samoa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4310
#, kde-kuit-format
msgctxt "Country name"
msgid "Saudi Arabia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4311
#, kde-kuit-format
msgctxt "Country name"
msgid "Senegal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4312
#, kde-kuit-format
msgctxt "Country name"
msgid "Seychelles"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4313
#, kde-kuit-format
msgctxt "Country name"
msgid "Sierra Leone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4314
#, kde-kuit-format
msgctxt "Country name"
msgid "Singapore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4315
#, kde-kuit-format
msgctxt "Country name"
msgid "Slovakia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4316
#, kde-kuit-format
msgctxt "Country name"
msgid "Slovenia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4317
#, kde-kuit-format
msgctxt "Country name"
msgid "Solomon Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4318
#, kde-kuit-format
msgctxt "Country name"
msgid "Somalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4319
#, kde-kuit-format
msgctxt "Country name"
msgid "South Africa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4320
#, kde-kuit-format
msgctxt "Country name"
msgid "South Korea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4321
#, kde-kuit-format
msgctxt "Country name"
msgid "Spain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4322
#, kde-kuit-format
msgctxt "Country name"
msgid "Sri Lanka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4323
#, kde-kuit-format
msgctxt "Country name"
msgid "St. Lucia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4324
#, kde-kuit-format
msgctxt "Country name"
msgid "Sudan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4325
#, kde-kuit-format
msgctxt "Country name"
msgid "Swaziland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4326
#, kde-kuit-format
msgctxt "Country name"
msgid "Sweden"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4327
#, kde-kuit-format
msgctxt "Country name"
msgid "Switzerland"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4328
#, kde-kuit-format
msgctxt "Country name"
msgid "Syria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4329
#, kde-kuit-format
msgctxt "Country name"
msgid "Taiwan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4330
#, kde-kuit-format
msgctxt "Country name"
msgid "Tanzania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4331
#, kde-kuit-format
msgctxt "Country name"
msgid "Thailand"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4332
#, kde-kuit-format
msgctxt "Country name"
msgid "Togo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4333
#, kde-kuit-format
msgctxt "Country name"
msgid "Trinidad and Tobago"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4334
#, kde-kuit-format
msgctxt "Country name"
msgid "Tunisia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4335
#, kde-kuit-format
msgctxt "Country name"
msgid "Turkey"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4336
#, kde-kuit-format
msgctxt "Country name"
msgid "Turks and Caicos Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4337
#, kde-kuit-format
msgctxt "Country name"
msgid "US Territory"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4338
#, kde-kuit-format
msgctxt "Country name"
msgid "USA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4339
#, kde-kuit-format
msgctxt "Country name"
msgid "Uganda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4340
#, kde-kuit-format
msgctxt "Country name"
msgid "Ukraine"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4341
#, kde-kuit-format
msgctxt "Country name"
msgid "United Arab Emirates"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4342
#, kde-kuit-format
msgctxt "Country name"
msgid "United Kingdom"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4343
#, kde-kuit-format
msgctxt "Country name"
msgid "Uruguay"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4344
#, kde-kuit-format
msgctxt "Country name"
msgid "Uzbekistan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4345
#, kde-kuit-format
msgctxt "Country name"
msgid "Vanuatu"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4346
#, kde-kuit-format
msgctxt "Country name"
msgid "Vatican"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4347
#, kde-kuit-format
msgctxt "Country name"
msgid "Venezuela"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4348
#, kde-kuit-format
msgctxt "Country name"
msgid "Virgin Islands"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4349
#, kde-kuit-format
msgctxt "Country name"
msgid "Western sahara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4350
#, kde-kuit-format
msgctxt "Country name"
msgid "Yemen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4351
#, kde-kuit-format
msgctxt "Country name"
msgid "Yugoslavia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4352
#, kde-kuit-format
msgctxt "Country name"
msgid "Zambia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4353
#, kde-kuit-format
msgctxt "Country name"
msgid "Zimbabwe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4354
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Comet Impact Scars (HST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4355
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Galilean Satellites (HST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4356
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Global Dust Storm (HST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4357
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Jupiter and Io (HST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4358
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show APOD Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4359
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show APOD Image (Radar)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4360
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show APOD Image (Venera lander)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4361
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show Collage of Saturn and moons"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4362
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4363
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (1995)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4364
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (1996)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4365
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (1998)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4366
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (1999)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4367
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (2001)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4368
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (2002)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4369
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (2003)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4370
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (2004)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4371
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (Aurora)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4372
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (detail)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4373
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (Detail)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4374
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (Hubble V)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4375
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (Hubble X)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4376
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (SN 2004dj)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4377
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST Image (stars in M 31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4378
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show HST (Rings and Moons)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4379
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show KPNO AOP Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4380
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show MGS Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4381
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show NASA Mosaic"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4382
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show NOAO Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4383
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show NOAO Image (Halpha)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4384
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show NOAO Image (Optical)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4385
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show SEDS Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4386
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show Spitzer Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4387
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show Sun Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4388
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show Viking Lander Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4389
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Show Voyager 1 Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4390
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Total Eclipse Image"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4391
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Triple Eclipse (HST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4392
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Comet Shoemaker-Levy 9"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4393
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Comet Shoemaker–Levy 9 Wikipedia page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4394
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Daily Solar Images"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4395
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "NASA Eclipse page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4396
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "NASA Mars Missions"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4397
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "NASA Science Mariner missions"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4398
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "NASA Solar System Exploration Page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4399
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "NASA Sun-Earth Days page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4400
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Nine Planets Page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4401
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "SEDS Information Page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4402
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Apollo Program"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4403
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Cassini Mission"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4404
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The \"face\" on Mars"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4405
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Galileo Mission"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4406
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Magellan Mission"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4407
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Mariner 10 Mission"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4408
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Mars Society"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4409
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Voyager Missions"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4410
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "The Whole Mars Catalog"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4411
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Welcome to Mars!"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4412
#, kde-kuit-format
msgctxt "Image/info menu item (should be translated)"
msgid "Wikipedia Page"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4413
#, kde-kuit-format
msgctxt "star name"
msgid "Sirius"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4414
#, kde-kuit-format
msgctxt "star name"
msgid "Canopus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4415
#, kde-kuit-format
msgctxt "star name"
msgid "Arcturus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4416
#, kde-kuit-format
msgctxt "star name"
msgid "Rigel Kentaurus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4417
#, kde-kuit-format
msgctxt "star name"
msgid "Vega"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4418
#, kde-kuit-format
msgctxt "star name"
msgid "Capella"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4419
#, kde-kuit-format
msgctxt "star name"
msgid "Rigel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4420
#, kde-kuit-format
msgctxt "star name"
msgid "Procyon"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4421
#, kde-kuit-format
msgctxt "star name"
msgid "Achernar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4422
#, kde-kuit-format
msgctxt "star name"
msgid "Betelgeuse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4423
#, kde-kuit-format
msgctxt "star name"
msgid "Hadar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4424
#, kde-kuit-format
msgctxt "star name"
msgid "Altair"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4425
#, kde-kuit-format
msgctxt "star name"
msgid "Acrux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4426
#, kde-kuit-format
msgctxt "star name"
msgid "Aldebaran"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4427
#, kde-kuit-format
msgctxt "star name"
msgid "Spica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4428
#, kde-kuit-format
msgctxt "star name"
msgid "Antares"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4429
#, kde-kuit-format
msgctxt "star name"
msgid "Pollux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4430
#, kde-kuit-format
msgctxt "star name"
msgid "Fomalhaut"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4431
#, kde-kuit-format
msgctxt "star name"
msgid "Mimosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4432
#, kde-kuit-format
msgctxt "star name"
msgid "Deneb"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4433
#, kde-kuit-format
msgctxt "star name"
msgid "Regulus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4434
#, kde-kuit-format
msgctxt "star name"
msgid "Adhara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4435
#, kde-kuit-format
msgctxt "star name"
msgid "Castor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4436
#, kde-kuit-format
msgctxt "star name"
msgid "Gacrux"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4437
#, kde-kuit-format
msgctxt "star name"
msgid "Shaula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4438
#, kde-kuit-format
msgctxt "star name"
msgid "Bellatrix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4439
#, kde-kuit-format
msgctxt "star name"
msgid "Alnath"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4440
#, kde-kuit-format
msgctxt "star name"
msgid "Miaplacidus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4441
#, kde-kuit-format
msgctxt "star name"
msgid "Alnilam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4442
#, kde-kuit-format
msgctxt "star name"
msgid "Al Na'ir"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4443
#, kde-kuit-format
msgctxt "star name"
msgid "Alnitak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4444
#, kde-kuit-format
msgctxt "star name"
msgid "Regor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4445
#, kde-kuit-format
msgctxt "star name"
msgid "Alioth"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4446
#, kde-kuit-format
msgctxt "star name"
msgid "Mirfak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4447
#, kde-kuit-format
msgctxt "star name"
msgid "Kaus Australis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4448
#, kde-kuit-format
msgctxt "star name"
msgid "Dubhe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4449
#, kde-kuit-format
msgctxt "star name"
msgid "Wezen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4450
#, kde-kuit-format
msgctxt "star name"
msgid "Alkaid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4451
#, kde-kuit-format
msgctxt "star name"
msgid "Sargas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4452
#, kde-kuit-format
msgctxt "star name"
msgid "Avior"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4453
#, kde-kuit-format
msgctxt "star name"
msgid "Menkalinan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4454
#, kde-kuit-format
msgctxt "star name"
msgid "Alhena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4455
#, kde-kuit-format
msgctxt "star name"
msgid "Peacock"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4456 tools/polarishourangle.cpp:37
#, kde-format, kde-kuit-format
msgctxt "star name"
msgid "Polaris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4457
#, kde-kuit-format
msgctxt "star name"
msgid "Mirzam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4458
#, kde-kuit-format
msgctxt "star name"
msgid "Alphard"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4459
#, kde-kuit-format
msgctxt "star name"
msgid "Hamal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4460
#, kde-kuit-format
msgctxt "star name"
msgid "Al Gieba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4461
#, kde-kuit-format
msgctxt "star name"
msgid "Diphda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4462
#, kde-kuit-format
msgctxt "star name"
msgid "Nunki"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4463
#, kde-kuit-format
msgctxt "star name"
msgid "Menkent"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4464
#, kde-kuit-format
msgctxt "star name"
msgid "Alpheratz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4465
#, kde-kuit-format
msgctxt "star name"
msgid "Saiph"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4466
#, kde-kuit-format
msgctxt "star name"
msgid "Mirach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4467
#, kde-kuit-format
msgctxt "star name"
msgid "Kocab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4468
#, kde-kuit-format
msgctxt "star name"
msgid "Rasalhague"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4469
#, kde-kuit-format
msgctxt "star name"
msgid "Algol"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4470
#, kde-kuit-format
msgctxt "star name"
msgid "Almach"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4471
#, kde-kuit-format
msgctxt "star name"
msgid "Denebola"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4472
#, kde-kuit-format
msgctxt "star name"
msgid "Tsih"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4473
#, kde-kuit-format
msgctxt "star name"
msgid "Naos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4474
#, kde-kuit-format
msgctxt "star name"
msgid "Aspidiske"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4475
#, kde-kuit-format
msgctxt "star name"
msgid "Alphecca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4476
#, kde-kuit-format
msgctxt "star name"
msgid "Mizar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4477
#, kde-kuit-format
msgctxt "star name"
msgid "Sadr"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4478
#, kde-kuit-format
msgctxt "star name"
msgid "Suhail"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4479
#, kde-kuit-format
msgctxt "star name"
msgid "Schedar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4480
#, kde-kuit-format
msgctxt "star name"
msgid "Eltanin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4481
#, kde-kuit-format
msgctxt "star name"
msgid "Mintaka"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4482
#, kde-kuit-format
msgctxt "star name"
msgid "Caph"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4483
#, kde-kuit-format
msgctxt "star name"
msgid "Dschubba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4484
#, kde-kuit-format
msgctxt "star name"
msgid "Men"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4485
#, kde-kuit-format
msgctxt "star name"
msgid "Merak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4486
#, kde-kuit-format
msgctxt "star name"
msgid "Pulcherrima"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4487
#, kde-kuit-format
msgctxt "star name"
msgid "Enif"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4488
#, kde-kuit-format
msgctxt "star name"
msgid "Ankaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4489
#, kde-kuit-format
msgctxt "star name"
msgid "Phecda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4490
#, kde-kuit-format
msgctxt "star name"
msgid "Scheat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4491
#, kde-kuit-format
msgctxt "star name"
msgid "Aludra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4492
#, kde-kuit-format
msgctxt "star name"
msgid "Alderamin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4493
#, kde-kuit-format
msgctxt "star name"
msgid "Merkab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4494
#, kde-kuit-format
msgctxt "star name"
msgid "Gienah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4495
#, kde-kuit-format
msgctxt "star name"
msgid "Markab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4496
#, kde-kuit-format
msgctxt "star name"
msgid "Menkab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4497
#, kde-kuit-format
msgctxt "star name"
msgid "Zozma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4498
#, kde-kuit-format
msgctxt "star name"
msgid "Graffias"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4499
#, kde-kuit-format
msgctxt "star name"
msgid "Arneb"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4500
#, kde-kuit-format
msgctxt "star name"
msgid "Gienah Corvi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4501
#, kde-kuit-format
msgctxt "star name"
msgid "Zuben el Chamali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4502
#, kde-kuit-format
msgctxt "star name"
msgid "Unukalhai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4503
#, kde-kuit-format
msgctxt "star name"
msgid "Sheratan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4504
#, kde-kuit-format
msgctxt "star name"
msgid "Phakt"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4505
#, kde-kuit-format
msgctxt "star name"
msgid "Kraz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4506
#, kde-kuit-format
msgctxt "star name"
msgid "Ruchbah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4507
#, kde-kuit-format
msgctxt "star name"
msgid "Muphrid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4508
#, kde-kuit-format
msgctxt "star name"
msgid "Kabdhilinan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4509
#, kde-kuit-format
msgctxt "star name"
msgid "Lesath"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4510
#, kde-kuit-format
msgctxt "star name"
msgid "Kaus Media"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4511
#, kde-kuit-format
msgctxt "star name"
msgid "Tarazed"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4512
#, kde-kuit-format
msgctxt "star name"
msgid "Yed Prior"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4513
#, kde-kuit-format
msgctxt "star name"
msgid "Na'ir al Saif"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4514
#, kde-kuit-format
msgctxt "star name"
msgid "Zuben El Genubi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4515
#, kde-kuit-format
msgctxt "star name"
msgid "Kelb al Rai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4516
#, kde-kuit-format
msgctxt "star name"
msgid "Cursa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4517
#, kde-kuit-format
msgctxt "star name"
msgid "Kornephoros"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4518
#, kde-kuit-format
msgctxt "star name"
msgid "Ras Algethi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4519
#, kde-kuit-format
msgctxt "star name"
msgid "Rastaban"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4520
#, kde-kuit-format
msgctxt "star name"
msgid "Nihal"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4521
#, kde-kuit-format
msgctxt "star name"
msgid "Kaus Borealis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4522
#, kde-kuit-format
msgctxt "star name"
msgid "Algenib"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4523
#, kde-kuit-format
msgctxt "star name"
msgid "Atik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4524
#, kde-kuit-format
msgctxt "star name"
msgid "Tchou"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4525
#, kde-kuit-format
msgctxt "star name"
msgid "Alcyone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4526
#, kde-kuit-format
msgctxt "star name"
msgid "Vindemiatrix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4527
#, kde-kuit-format
msgctxt "star name"
msgid "Deneb Algiedi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4528
#, kde-kuit-format
msgctxt "star name"
msgid "Tejat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4529
#, kde-kuit-format
msgctxt "star name"
msgid "Acamar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4530
#, kde-kuit-format
msgctxt "star name"
msgid "Gomeisa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4531
#, kde-kuit-format
msgctxt "star name"
msgid "Cor Caroli"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4532
#, kde-kuit-format
msgctxt "star name"
msgid "Al Niyat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4533
#, kde-kuit-format
msgctxt "star name"
msgid "Sadalsud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4534
#, kde-kuit-format
msgctxt "star name"
msgid "Matar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4535
#, kde-kuit-format
msgctxt "star name"
msgid "Algorab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4536
#, kde-kuit-format
msgctxt "star name"
msgid "Sadalmelik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4537
#, kde-kuit-format
msgctxt "star name"
msgid "Zaurak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4538
#, kde-kuit-format
msgctxt "star name"
msgid "Al Nasl"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4539
#, kde-kuit-format
msgctxt "star name"
msgid "Pherkab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4540
#, kde-kuit-format
msgctxt "star name"
msgid "Al Dhanab"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4541
#, kde-kuit-format
msgctxt "star name"
msgid "Furud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4542
#, kde-kuit-format
msgctxt "star name"
msgid "Minkar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4543
#, kde-kuit-format
msgctxt "star name"
msgid "Maaz"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4544
#, kde-kuit-format
msgctxt "star name"
msgid "Seginus"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4545
#, kde-kuit-format
msgctxt "star name"
msgid "Dabih"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4546
#, kde-kuit-format
msgctxt "star name"
msgid "Albireo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4547
#, kde-kuit-format
msgctxt "star name"
msgid "Mebsuta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4548
#, kde-kuit-format
msgctxt "star name"
msgid "Tania Australis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4549
#, kde-kuit-format
msgctxt "star name"
msgid "Altais"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4550
#, kde-kuit-format
msgctxt "star name"
msgid "Al Nair"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4551
#, kde-kuit-format
msgctxt "star name"
msgid "Talitha Borealis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4552
#, kde-kuit-format
msgctxt "star name"
msgid "Sarin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4553
#, kde-kuit-format
msgctxt "star name"
msgid "Wazn"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4554
#, kde-kuit-format
msgctxt "star name"
msgid "Kaou Pih"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4555
#, kde-kuit-format
msgctxt "star name"
msgid "Er Rai"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4556
#, kde-kuit-format
msgctxt "star name"
msgid "Yed Posterior"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4557
#, kde-kuit-format
msgctxt "star name"
msgid "Alphirk"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4558
#, kde-kuit-format
msgctxt "star name"
msgid "Sulaphat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4559
#, kde-kuit-format
msgctxt "star name"
msgid "Skat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4560
#, kde-kuit-format
msgctxt "star name"
msgid "Edasich"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4561
#, kde-kuit-format
msgctxt "star name"
msgid "Megrez"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4562
#, kde-kuit-format
msgctxt "star name"
msgid "Chertan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4563
#, kde-kuit-format
msgctxt "star name"
msgid "Asmidiske"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4564
#, kde-kuit-format
msgctxt "star name"
msgid "Navi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4565
#, kde-kuit-format
msgctxt "star name"
msgid "Muscida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4566
#, kde-kuit-format
msgctxt "star name"
msgid "Heze"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4567
#, kde-kuit-format
msgctxt "star name"
msgid "Auva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4568
#, kde-kuit-format
msgctxt "star name"
msgid "Homan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4569
#, kde-kuit-format
msgctxt "star name"
msgid "Mothallah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4570
#, kde-kuit-format
msgctxt "star name"
msgid "Adhafera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4571
#, kde-kuit-format
msgctxt "star name"
msgid "Al Thalimain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4572
#, kde-kuit-format
msgctxt "star name"
msgid "Tania Borealis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4573
#, kde-kuit-format
msgctxt "star name"
msgid "Nekkar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4574
#, kde-kuit-format
msgctxt "star name"
msgid "Alula Borealis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4575
#, kde-kuit-format
msgctxt "star name"
msgid "Wasat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4576
#, kde-kuit-format
msgctxt "star name"
msgid "Sadalbari"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4577
#, kde-kuit-format
msgctxt "star name"
msgid "Rana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4578
#, kde-kuit-format
msgctxt "star name"
msgid "Tseen Ke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4579
#, kde-kuit-format
msgctxt "star name"
msgid "Sheliak"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4580
#, kde-kuit-format
msgctxt "star name"
msgid "Baham"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4581
#, kde-kuit-format
msgctxt "star name"
msgid "Ain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4582
#, kde-kuit-format
msgctxt "star name"
msgid "Tarf"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4583
#, kde-kuit-format
msgctxt "star name"
msgid "Schemali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4584
#, kde-kuit-format
msgctxt "star name"
msgid "Talitha Australis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4585
#, kde-kuit-format
msgctxt "star name"
msgid "Al Giedi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4586
#, kde-kuit-format
msgctxt "star name"
msgid "Zawijah"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4587
#, kde-kuit-format
msgctxt "star name"
msgid "Atlas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4588
#, kde-kuit-format
msgctxt "star name"
msgid "Rotanev"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4589
#, kde-kuit-format
msgctxt "star name"
msgid "Primus Hyadum"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4590
#, kde-kuit-format
msgctxt "star name"
msgid "Chow"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4591
#, kde-kuit-format
msgctxt "star name"
msgid "Nusakan"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4592
#, kde-kuit-format
msgctxt "star name"
msgid "Thuban"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4593
#, kde-kuit-format
msgctxt "star name"
msgid "Nashira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4594
#, kde-kuit-format
msgctxt "star name"
msgid "Sadatoni"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4595
#, kde-kuit-format
msgctxt "star name"
msgid "Marfik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4596
#, kde-kuit-format
msgctxt "star name"
msgid "Alshain"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4597
#, kde-kuit-format
msgctxt "star name"
msgid "Electra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4598
#, kde-kuit-format
msgctxt "star name"
msgid "Prijipati"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4599
#, kde-kuit-format
msgctxt "star name"
msgid "Grumium"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4600
#, kde-kuit-format
msgctxt "star name"
msgid "Baten"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4601
#, kde-kuit-format
msgctxt "star name"
msgid "Svalocin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4602
#, kde-kuit-format
msgctxt "star name"
msgid "Albali"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4603
#, kde-kuit-format
msgctxt "star name"
msgid "Praecipula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4604
#, kde-kuit-format
msgctxt "star name"
msgid "Sadachbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4605
#, kde-kuit-format
msgctxt "star name"
msgid "Maia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4606
#, kde-kuit-format
msgctxt "star name"
msgid "Mesarthim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4607
#, kde-kuit-format
msgctxt "star name"
msgid "Rasalas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4608
#, kde-kuit-format
msgctxt "star name"
msgid "Azha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4609
#, kde-kuit-format
msgctxt "star name"
msgid "Zuben el Hakrabi"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4610
#, kde-kuit-format
msgctxt "star name"
msgid "Kitalpha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4611
#, kde-kuit-format
msgctxt "star name"
msgid "Asellus Australis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4612
#, kde-kuit-format
msgctxt "star name"
msgid "Menkib"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4613
#, kde-kuit-format
msgctxt "star name"
msgid "Alcor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4614
#, kde-kuit-format
msgctxt "star name"
msgid "Mekbuda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4615
#, kde-kuit-format
msgctxt "star name"
msgid "Dulfim"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4616
#, kde-kuit-format
msgctxt "star name"
msgid "Beid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4617
#, kde-kuit-format
msgctxt "star name"
msgid "Syrma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4618
#, kde-kuit-format
msgctxt "star name"
msgid "Alkes"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4619
#, kde-kuit-format
msgctxt "star name"
msgid "Muliphein"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4620
#, kde-kuit-format
msgctxt "star name"
msgid "Alphekka Meridiana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4621
#, kde-kuit-format
msgctxt "star name"
msgid "Merope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4622
#, kde-kuit-format
msgctxt "star name"
msgid "Ancha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4623
#, kde-kuit-format
msgctxt "star name"
msgid "Chara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4624
#, kde-kuit-format
msgctxt "star name"
msgid "Acubens"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4625
#, kde-kuit-format
msgctxt "star name"
msgid "Taygeta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4626
#, kde-kuit-format
msgctxt "star name"
msgid "Alkalurops"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4627
#, kde-kuit-format
msgctxt "star name"
msgid "Botein"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4628
#, kde-kuit-format
msgctxt "star name"
msgid "Minhar al Shuja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4629
#, kde-kuit-format
msgctxt "star name"
msgid "Cujam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4630
#, kde-kuit-format
msgctxt "star name"
msgid "Dziban"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4631
#, kde-kuit-format
msgctxt "star name"
msgid "Alya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4632
#, kde-kuit-format
msgctxt "star name"
msgid "Asellus Borealis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4633
#, kde-kuit-format
msgctxt "star name"
msgid "Marsik"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4634
#, kde-kuit-format
msgctxt "star name"
msgid "Pleione"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4635
#, kde-kuit-format
msgctxt "star name"
msgid "Asterope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4636
#, kde-kuit-format
msgctxt "star name"
msgid "Mira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4637
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Last Launches"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4638
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "International Space Station"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4639
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Brightest"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4640
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Weather"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4641
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "NOAA"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4642
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "GOES"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4643
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Earth Resources"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4644
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Search & Rescue (SARSAT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4645
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Disaster Monitoring"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4646
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Tracking and Data Relay Satellite System (TDRSS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4647
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Geostationary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4648
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Intelsat"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4649
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Gorizont"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4650
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Raduga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4651
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Molniya"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4652
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Iridium"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4653
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Orbcomm"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4654
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Globalstar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4655
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Amateur Radio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4656
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Experimental"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4657
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Other"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4658
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "GPS Operational"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4659
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Glonass Operational"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4660
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Galileo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4661
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Satellite-Based Augmentation System (WAAS/EGNOS/MSAS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4662
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Navy Navigation Satellite System (NNSS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4663
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Russian LEO Navigation"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4664
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Space & Earth Science"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4665
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Geodetic"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4666
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Engineering"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4667
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Education"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4668
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Miscellaneous Military"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4669
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Radar Calibration"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4670
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "CubeSats"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4671
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Other Miscellaneous"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4672
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Supplemental GPS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4673
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Supplemental GLONASS"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4674
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Supplemental METEOSAT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4675
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Supplemental INTELSAT"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4676
#, kde-kuit-format
msgctxt "Satellite group name"
msgid "Supplemental ORBCOMM"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4677
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "30 Dor Cluster,Tarantula Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4678
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "47 Tuc Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4679
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Alnilam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4680
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Amas de l'Ecu de Sobieski,Wild Duck Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4681
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Andromeda Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4682
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Antennae Galaxies"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4683
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Barbell Nebula,Cork Nebula,Little Dumbbell Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4684
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Barnard's Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4685
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Barnard's Merope Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4686
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Bear Claw Nebula,Bear-Paw Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4687
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Beehive,Praesepe Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4688
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Black Eye Galaxy,Evil Eye Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4689
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Blinking Planetary"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4690
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Blue Flash Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4691
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Bode's Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4692
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Bow-Tie nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4693
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Box Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4694
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Brocchi's Cluster, Coathanger Asterism"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4695
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Bubble Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4696
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Bug Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4697
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Butterfly Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4698
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "California Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4699
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Carina Nebula,eta Car Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4700
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Caroline's Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4701
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Cat's Eye Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4702
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Centaurus A"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4703
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Checkmark Nebula,Lobster Nebula,Swan Nebula,omega Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4704
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "chi Persei Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4705
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Christmas Tree Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4706
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Cigar Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4707
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Coalsack Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4708
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Cocoon Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4709
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Cocoon Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4710
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Coddington's Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4711
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Coma Pinwheel,Virgo Cluster Pinwheel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4712
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Copeland's Blue Snowball"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4713
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Crescent Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4714
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Delle Caustiche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4715
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Dumbbell Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4716
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Eagle Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4717
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Eagle Nebula,Star Queen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4718
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Eight-Burst Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4719
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Eskimo Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4720
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Fireworks Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4721
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Flame Nebula,Orion B"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4722
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Flaming Star Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4723
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Fornax A"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4724
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Fornax B"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4725
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Fornax Dwarf Cluster 3"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4726
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Foxhead Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4727
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "gam Cyg"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4728
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Gem A"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4729
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Great Bird Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4730
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Great Orion Nebula,Orion Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4731
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Helix Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4732
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Helix Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4733
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Hercules Globular Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4734
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Herschel's Jewel Box,kappa Crucis Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4735
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Hind's Nebula,Hind's Variable Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4736
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "h Persei Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4737
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Hubble's Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4738
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Iris Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4739
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Jupiter's Ghost Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4740
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Lagoon Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4741
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "lam Cen Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4742
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Large Magellanic Cloud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4743
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Little Gem"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4744
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Little Gem Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4745
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Little Ghost Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4746
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Lower Sword"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4747
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "M 102"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4748
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Maia Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4749
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Mairan's Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4750
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Medusa Galaxy Merger"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4751
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Melotte 111, Coma Star Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4752
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Merope Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4753
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Mice Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4754
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Miniature Spiral"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4755
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Monkey Head Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4756
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Needle Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4757
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "North America Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4758
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Omega Centauri"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4759
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "omi Per Cloud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4760
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "omi Vel Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4761
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Owl Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4762
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Owl Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4763
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Pearl Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4764
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Pelican Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4765
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Pencil Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4766
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Perseus A"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4767
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Phantom Streak Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4768
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Pleiades"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4769
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Ptolemy's Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4770
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Red Spider Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4771
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "rho Oph Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4772
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Rim Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4773
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Ring Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4774
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Rosette A"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4775
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Rosette B"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4776
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Rosette Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4777
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Saturn Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4778
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Schmidt's Nova Cygni"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4779
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Sculptor Filament,Silver Coin"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4780
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Small Magellanic Cloud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4781
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Small Sgr Star Cloud"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4782
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "S Nor Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4783
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Sombrero Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4784
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Southern Pinwheel Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4785
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Spindle Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4786
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Sunflower Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4787
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "tet Car Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4788
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "the Guitar"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4789
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "the Running Man Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4790
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "the War and Peace Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4791
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "the Witch Head Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4792
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Toby Jug Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4793
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Triangulum Galaxy,Triangulum Pinwheel"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4794
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Trifid Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4795
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Umbrella Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4796
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Upper Sword"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4797
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Veil Nebula"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4798
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Virgo Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4799
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Whale Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4800
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Whirlpool Galaxy"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4801
#, kde-kuit-format
msgctxt "object name (optional)"
msgid "Wishing Well Cluster"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4803
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pallas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4804
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4805
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vesta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4806
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astraea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4807
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hebe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4808
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4809
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Flora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4810
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Metis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4811
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hygiea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4812
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Parthenope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4813
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Victoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4814
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Egeria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4815
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4816
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eunomia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4817
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Psyche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4818
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thetis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4819
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melpomene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4820
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fortuna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4821
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Massalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4822
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lutetia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4823
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalliope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4824
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4825
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Themis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4826
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phocaea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4827
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Proserpina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4828
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euterpe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4829
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bellona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4830
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amphitrite"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4831
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4832
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euphrosyne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4833
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pomona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4834
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polyhymnia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4835
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Circe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4836
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leukothea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4837
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Atalante"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4838
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fides"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4839
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4840
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laetitia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4841
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Harmonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4842
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Daphne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4843
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4844
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ariadne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4845
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nysa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4846
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eugenia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4847
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hestia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4848
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aglaja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4849
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Doris"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4850
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pales"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4851
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Virginia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4852
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nemausa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4853 skycomponents/asteroidscomponent.cpp:150
#, kde-format, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Europa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4854
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalypso"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4855
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alexandra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4856
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pandora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4857
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melete"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4858
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mnemosyne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4859
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Concordia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4860
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elpis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4861
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Echo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4862
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Danae"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4863
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erato"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4864
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ausonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4865
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Angelina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4866
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cybele"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4867
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4868
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4869
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4870
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hesperia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4871
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Panopaea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4872
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Niobe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4873
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Feronia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4874
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klytia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4875
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Galatea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4876
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurydike"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4877
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Freia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4878
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Frigga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4879
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Diana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4880
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurynome"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4881
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sappho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4882
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Terpsichore"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4883
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alkmene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4884
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beatrix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4885
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klio"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4886 skycomponents/asteroidscomponent.cpp:150
#, kde-format, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Io"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4887
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semele"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4888
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sylvia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4889
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thisbe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4890
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Julia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4891
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antiope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4892
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aegina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4893
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Undina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4894
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Minerva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4895
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aurora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4896
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arethusa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4897
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aegle"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4898
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klotho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4899
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ianthe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4900
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dike"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4901
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hekate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4902
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4903
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miriam"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4904
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4905
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klymene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4906
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Artemis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4907
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dione"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4908
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Camilla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4909
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hecuba"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4910
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Felicitas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4911
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lydia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4912
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4913
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iphigenia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4914
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amalthea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4915
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kassandra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4916
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thyra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4917
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sirona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4918
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lomia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4919
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peitho"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4920
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Althaea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4921
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lachesis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4922
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hermione"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4923
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gerda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4924
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brunhild"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4925
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alkeste"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4926
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liberatrix"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4927
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Velleda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4928
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Johanna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4929
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nemesis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4930
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antigone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4931
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elektra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4932
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4933
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aethra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4934
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cyrene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4935
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sophrosyne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4936
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hertha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4937
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Austria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4938
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Meliboea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4939
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tolosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4940
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juewa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4941
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siwa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4942
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lumen"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4943
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4944
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4945
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vibilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4946
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adeona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4947
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lucina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4948
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Protogeneia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4949
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gallia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4950
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Medusa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4951
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nuwa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4952
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abundantia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4953
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Atala"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4954
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hilda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4955
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bertha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4956
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scylla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4957
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xanthippe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4958
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dejanira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4959
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Koronis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4960
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aemilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4961
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Una"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4962
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Athor"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4963
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laurentia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4964
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erigone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4965
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eva"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4966
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Loreley"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4967
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhodope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4968
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4969
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sibylla"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4970
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zelia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4971
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4972
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ophelia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4973
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baucis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4974
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ino"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4975
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phaedra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4976
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Andromache"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4977
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iduna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4978
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4979
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belisana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4980
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klytaemnestra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4981
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Garumna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4982
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eucharis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4983
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elsa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4984
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Istria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4985
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dejopeja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4986
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eunike"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4987
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Celuta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4988
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lamberta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4989
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Menippe"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4990
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phthia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4991
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ismene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4992
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kolga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4993
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nausikaa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4994
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ambrosia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4995
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prokne"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4996
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurykleia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4997
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philomela"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4998
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arete"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:4999
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ampella"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5000
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Byblis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5001
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dynamene"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5002
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Penelope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5003
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chryseis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5004
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pompeja"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5005
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kallisto"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5006
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Martha"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5007
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hersilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5008
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hedda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5009
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lacrimosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5010
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dido"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5011
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isabella"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5012
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isolda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5013
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Medea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5014
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lilaea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5015
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aschera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5016
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oenone"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5017
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kleopatra"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5018
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eudora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5019
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bianca"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5020
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thusnelda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5021
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stephania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5022
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5023
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lucia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5024
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5025
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oceana"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5026
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Henrietta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5027
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Weringia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5028
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philosophia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5029
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adelinda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5030
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Athamantis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5031
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vindobona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5032
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Russia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5033 skycomponents/asteroidscomponent.cpp:151
#, kde-format, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asterope"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5034
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barbara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5035
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carolina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5036
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Honoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5037
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Coelestina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5038
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hypatia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5039
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adrastea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5040
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vanadis"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5041
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Germania"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5042
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kriemhild"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5043
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ida"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5044
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5045
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vera"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5046
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asporina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5047
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eukrate"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5048
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lameia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5049
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilse"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5050
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bettina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5051
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sophia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5052
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clementina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5053
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mathilde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5054
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oppavia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5055
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Walpurga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5056
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Silesia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5057
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tyche"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5058
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aletheia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5059
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huberta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5060
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prymno"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5061
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5062
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dresda"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5063
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Libussa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5064
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5065
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aline"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5066
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tirza"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5067
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adorea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5068
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Justitia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5069
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anahita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5070
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Penthesilea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5071
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5072
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Atropos"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5073
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philagoria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5074
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sapientia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5075
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adelheid"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5076
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elvira"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5077
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paulina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5078
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thule"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5079
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5080
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clorinde"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5081
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Emma"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5082
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5083
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Regina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5084
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iclea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5085
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nephthys"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5086
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glauke"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5087
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nenetta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5088
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bruna"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5089
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alice"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5090
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ludovica"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5091
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brasilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5092
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Felicia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5093
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Theresia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5094
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Caecilia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5095
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baptistina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5096
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thora"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5097
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geraldina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5098
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bavaria"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5099
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clarissa"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5100
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Josephina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5101
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5102
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gordonia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5103
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Unitas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5104
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nike"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5105
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polyxo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5106
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fraternitas"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5107
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Margarita"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5108
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Claudia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5109
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pierretta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5110
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chaldaea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5111
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosalia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5112
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goberta"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5113
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roxane"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5114
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Magdalena"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5115
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leona"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5116
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Katharina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5117
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Florentina"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5118
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phaeo"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5119
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brucia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5120
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bamberga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5121
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heidelberga"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5122
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tamara"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5123
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Columbia"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5124
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gudrun"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5125
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Svea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5126
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Etheridgea"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5127
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siri"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5128
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Badenia (1892 A)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5129
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chicago (1892 L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5130
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roberta (1892 C)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5131
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lacadiera (1892 D)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5132
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Devosa (1892 E)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5133
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Budrosa (1892 F)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5134
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dorothea (1892 G)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5135
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eduarda (1892 H)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5136
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "California (1892 J)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5137
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Endymion (1892 K)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5138
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ostara (1892 N)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5139
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Desiderata (1892 M)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5140
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tercidina (1892 O)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5141
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hermentaria (1892 P)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5142
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pariana (1892 Q)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5143
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "May (1892 R)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5144
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dembowska (1892 T)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5145
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ornamenta (1892 U)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5146
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yrsa (1892 V)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5147
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gisela (1893 B)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5148
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruperto-Carola (1893 F)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5149
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eleonora (1893 A)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5150
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gabriella (1893 E)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5151
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liguria (1893 G)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5152
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ninina (1893 J)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5153
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Apollonia (1893 K)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5154
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Georgia (1893 M)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5155
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carlova (1893 N)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5156
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bononia (1893 P)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5157
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Havnia (1893 R)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5158
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Padua (1893 S)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5159
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isara (1893 T)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5160
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Corduba (1893 V)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5161
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vincentina (1893 W)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5162
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amicitia (1893 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5163
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haidea (1893 AB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5164
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aeria (1893 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5165
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Modestia (1893 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5166
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bohemia (1893 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5167
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palma (1893 AH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5168
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melusina (1893 AJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5169
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Burgundia (1893 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5170
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ursula (1893 AL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5171
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geometria (1893 AM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5172
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Campania (1893 AN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5173
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Holmia (1893 AP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5174
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huenna (1894 AQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5175
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fiducia (1894 AR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5176
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Myrrha (1894 AS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5177
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dodona (1894 AT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5178
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Janina (1894 AU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5179
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Burdigala (1894 AV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5180
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilmatar (1894 AX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5181
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siegena (1894 AY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5182
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aquitania (1894 AZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5183
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Charybdis (1894 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5184
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Industria (1894 BB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5185
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alma (1894 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5186
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ingeborg (1894 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5187
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wilhelmina (1894 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5188
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lampetia (1894 BG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5189
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arduina (1894 BH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5190
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Delia (1894 BK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5191
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aeolia (1894 BL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5192
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vienna (1894 BM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5193
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Admete (1894 BN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5194
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Persephone (1895 BP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5195
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ducrosa (1895 BU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5196
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ottilia (1895 BT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5197
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chloe (1895 BW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5198
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cyane (1895 BX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5199
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arsinoe (1895 BY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5200
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thia (1895 BZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5201
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erna (1895 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5202
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arachne (1895 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5203
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fama (1895 CD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5204
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aspasia (1895 CE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5205
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chloris (1896 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5206
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xanthe (1896 CJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5207
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elisabetha (1896 CK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5208
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edburga (1896 CL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5209
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liriope (1896 CN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5210
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palatia (1896 CO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5211
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vaticana (1896 CS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5212
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Suevia (1896 CT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5213
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alemannia (1896 CV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5214
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aurelia (1896 CW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5215
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bertholda (1896 CY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5216
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zahringia (1896 CZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5217
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Berolina (1896 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5218
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Diotima (1896 DB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5219
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gratia (1896 DF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5220
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cornelia (1896 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5221
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hippo (1897 DH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5222
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Galene (1897 DJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5223
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Monachia (1897 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5224
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lotis (1897 DL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5225
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hybris (1897 DM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5226
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nephele (1897 DN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5227
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pythia (1897 DO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5228
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eros (1898 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5229
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hungaria (1898 DR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5230
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ella (1898 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5231
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patricia (1898 DT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5232
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhodia (1898 DP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5233
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zeuxo (1898 DU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5234
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ohio (1898 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5235
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Theodora (1898 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5236
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bathilde (1898 ED)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5237
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eichsfeldia (1899 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5238
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Photographica (1899 EF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5239
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gyptis (1899 EL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5240
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edna (1899 EX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5241
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aeternitas (1899 ER)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5242
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valentine (1899 ES)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5243
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Natalie (1899 ET)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5244
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hamburga (1899 EU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5245
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brigitta (1899 EV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5246
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patientia (1899 EY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5247
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hamiltonia (1899 FD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5248
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tea (1900 FA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5249
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mathesis (1900 FC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5250
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bruchsalia (1900 FG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5251
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abnoba (1900 FH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5252
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alleghenia (1900 FJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5253
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hercynia (1900 FK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5254
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Signe (1900 FM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5255
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scania (1900 FN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5256
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saskia (1900 FP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5257
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eriphyla (1900 FQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5258
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lola (1900 FS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5259
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Megaira (1901 FV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5260
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alekto (1901 FW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5261
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tisiphone (1901 FX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5262
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laura (1901 FY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5263
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lina (1901 FZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5264
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Argentina (1901 GE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5265
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kilia (1901 GJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5266
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Papagena (1901 GN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5267
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roma (1901 GP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5268
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nolli (1901 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5269
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prudentia (1901 GD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5270
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ocllo (1901 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5271
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hedwig (1901 GQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5272
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Italia (1901 GR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5273
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tergeste (1901 GU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5274
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Caprera (1901 HJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5275
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hansa (1901 GL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5276
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Emita (1902 HP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5277
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petrina (1902 HT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5278
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seppina (1902 HU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5279
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pittsburghia (1902 HX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5280
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Genua (1902 HZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5281
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cremona (1902 JB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5282
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Venetia (1902 JL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5283
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kreusa (1902 JG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5284
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Comacina (1902 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5285
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Veritas (1902 JP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5286
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carina (1902 JQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5287
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gismonda (1902 JR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5288
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Griseldis (1902 JS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5289
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Virtus (1902 JV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5290
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eulalia (1902 KG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5291
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gryphia (1902 KH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5292
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iva (1902 KJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5293
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tokio (1902 KU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5294
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Venusia (1902 KX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5295
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Selinur (1903 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5296
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urhixidur (1903 LB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5297
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sigune (1903 LC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5298
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Evelyn (1903 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5299
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cora (1902 LK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5300
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cava (1902 LL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5301
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marion (1903 LN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5302
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laodica (1903 LO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5303
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Princetonia (1903 LQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5304
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iolanda (1903 LR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5305
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mabella (1903 LT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5306
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Davida (1903 LU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5307
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Taurinensis (1903 LV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5308
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Centesima (1903 LY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5309
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Armida (1903 MB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5310
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Athalia (1903 ME)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5311
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amherstia (1903 MG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5312
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edith (1903 MH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5313
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Halawe (1903 MO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5314
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sylvania (1903 MP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5315
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Franziska (1903 MV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5316
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brixia (1904 NB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5317
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helga (1904 NC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5318
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ada (1904 ND)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5319
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fidelio (1904 NN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5320
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jena (1904 NQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5321
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euryanthe (1904 NR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5322
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rezia (1904 NS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5323
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Preziosa (1904 NT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5324
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Turandot (1904 NV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5325
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herculina (1904 NY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5326
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sara (1904 NZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5327
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nassovia (1904 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5328
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Montague (1904 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5329
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Merapi (1904 OF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5330
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pauly (1904 OG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5331
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Friederike (1904 OK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5332
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pamina (1904 OL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5333
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosamunde (1904 ON)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5334
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deborah (1904 OO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5335
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Susanna (1904 OQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5336
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Charlotte (1904 OT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5337
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jetta (1904 OU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5338
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Messalina (1904 OY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5339
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herodias (1904 PA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5340
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Praxedis (1904 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5341
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kressida (1904 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5342
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jessonda (1904 PK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5343
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Senta (1904 PL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5344
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ortrud (1904 PM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5345
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sigelinde (1904 PO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5346
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peraga (1905 PS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5347
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Norma (1905 PT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5348
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phyllis (1905 PW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5349
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carmen (1905 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5350
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nanon (1905 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5351
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Delila (1905 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5352
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ingwelde (1905 QG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5353
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Salome (1905 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5354
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Suleika (1905 QK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5355
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dudu (1905 QM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5356
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marbachia (1905 QN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5357
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stereoskopia (1905 QO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5358
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eleutheria (1905 QP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5359
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cheruskia (1905 QS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5360
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Misa (1905 QT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5361
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kythera (1905 QX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5362
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dulcinea (1905 QZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5363
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rebekka (1905 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5364
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Recha (1905 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5365
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Renate (1905 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5366
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Emanuela (1905 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5367
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhea (1905 RH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5368
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Happelia (1905 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5369
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sidonia (1905 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5370
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Selene (1905 SE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5371
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tauntonia (1905 SH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5372
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olympia (1906 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5373
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klotilde (1905 SP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5374
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semiramis (1906 SY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5375
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bilkis (1906 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5376
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thekla (1906 TC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5377
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hypsipyle (1906 TF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5378
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Achilles (1906 TG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5379
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Croatia (1906 TM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5380
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tomyris (1906 TO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5381
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irmgard (1906 TP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5382
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bathseba (1906 TS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5383
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Titania (1906 TT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5384
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polyxena (1906 TZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5385
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scheila (1906 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5386
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bandusia (1906 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5387
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Octavia (1906 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5388
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luisa (1906 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5389
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Musa (1906 UM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5390
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nerthus (1906 UN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5391
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marianna (1906 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5392
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Timandra (1906 TJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5393
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tekmessa (1906 TK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5394
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juvisia (1906 UU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5395
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brangane (1906 VB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5396
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jenny (1906 VC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5397
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adolfine (1906 VD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5398
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fulvia (1906 VF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5399
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valeria (1906 VL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5400
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Veronika (1906 VN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5401
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ginevra (1906 VP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5402
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pia (1906 VQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5403
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roswitha (1906 VR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5404
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elly (1906 VT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5405
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patroclus (1906 VY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5406
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elfriede (1906 VZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5407
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Triberga (1906 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5408
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Drakonia (1906 WE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5409
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Werdandi (1906 WJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5410
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Esther (1906 WP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5411
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chimaera (1907 XJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5412
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hektor (1907 XM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5413
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xenia (1907 XN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5414
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Notburga (1907 XO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5415
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Charis (1907 XS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5416
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Christine (1907 XT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5417
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bernardina (1907 XU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5418
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euphemia (1907 XW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5419
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philippina (1907 YJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5420
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pyrrha (1907 YX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5421
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zelima (1907 ZM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5422
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ute (1907 ZN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5423
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vundtia (1907 ZS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5424
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erika (1907 XP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5425
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chrysothemis (1907 YE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5426
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moira (1907 ZQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5427
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Latona (1907 ZT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5428
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brambilla (1907 ZW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5429
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clara (1907 ZY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5430
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scheherezade (1907 ZZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5431
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cosima (1907 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5432
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agrippina (1907 AG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5433
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adelgunde (1907 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5434
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pippa (1907 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5435
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antikleia (1907 AN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5436
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jubilatrix (1907 AU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5437
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Berenike (1907 BK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5438
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zelinda (1908 BM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5439
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Briseis (1907 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5440
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beagle (1908 BU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5441
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gunlod (1908 BV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5442
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asteria (1908 BW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5443
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nestor (1908 CS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5444
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crescentia (1908 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5445
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cloelia (1908 CL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5446
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Newtonia (1908 CW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5447
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gerlinde (1908 DG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5448
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Judith (1908 DH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5449
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sabine (1908 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5450
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Desdemona (1908 DM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5451
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Denise (1908 DN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5452
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kypria (1908 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5453
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ottegebe (1908 DR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5454
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carnegia (1908 DV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5455
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astarte (1908 DY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5456
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edda (1908 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5457
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rachele (1908 EP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5458
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ludmilla (1908 DU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5459
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melitta (1909 FN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5460
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aaltje (1909 FR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5461
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fredegundis (1909 FS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5462
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pax (1909 FY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5463
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Genoveva (1909 GW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5464
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gorgo (1909 GZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5465
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lanzia (1909 HC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5466
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hildburg (1909 HD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5467
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hermia (1909 HE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5468
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gersuind (1909 HF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5469
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tinette (1909 HG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5470
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melanie (1909 HH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5471
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wratislavia (1909 HZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5472
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lehigh (1909 JG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5473
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hippodamia (1901 HD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5474
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zerbinetta (1909 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5475
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ekard (1909 JA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5476
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bella (1909 JB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5477
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leonora (1910 JJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5478
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Galilea (1910 JO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5479
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ernestina (1910 JX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5480
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hela (1910 KD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5481
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Auravictrix (1910 KE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5482
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oriola (1910 KN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5483
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alauda (1910 KQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5484
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Interamnia (1910 KU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5485
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erminia (1910 KV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5486
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hirundo (1910 KX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5487
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Raphaela (1911 LJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5488
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fringilla (1911 LK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5489
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gertrud (1911 LM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5490
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marmulla (1911 LN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5491
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Boliviana (1911 LO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5492
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luscinia (1911 LS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5493
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ulula (1911 LW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5494
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Transvaalia (1911 LX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5495
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Berkeley (1911 MD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5496
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wisibada (1911 MJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5497
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erida (1911 MS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5498
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bohlinia (1911 MW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5499
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tabora (1911 MZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5500
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hammonia (1911 NB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5501
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amanda (1911 ND)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5502
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Joella (1911 NM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5503
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nipponia (1912 NT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5504
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Watsonia (1912 OD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5505
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sorga (1912 OQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5506
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tjilaki (1912 OR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5507
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mocia (1912 PF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5508
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Benda (1912 PH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5509
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marghanna (1912 PY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5510
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Harvard (1912 PZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5511
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arequipa (1912 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5512
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alagasta (1913 QO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5513
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mandeville (1913 QR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5514
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cantabia (1913 QS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5515
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Botolphia (1913 QT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5516
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edisona (1913 QU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5517
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eugenisis (1913 QV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5518
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aguntina (1913 QW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5519
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mauritia (1913 QX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5520
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marlu (1913 QY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5521
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Winchester (1913 QZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5522
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Simeisa (1913 RD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5523
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Malzovia (1913 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5524
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Faina (1913 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5525
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sulamitis (1913 RL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5526
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tiflis (1913 RM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5527
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Malabar (1906 UT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5528
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Quintilla (1908 CZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5529
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lilliana (1908 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5530
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Portlandia (1908 EJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5531
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mancunia (1912 PE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5532
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vinifera (1913 SJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5533
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Massinga (1913 SL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5534
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brendelia (1913 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5535
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pulcova (1913 SQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5536
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gedania (1913 SU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5537
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moguntia (1913 SW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5538
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bondia (1913 SX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5539
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Struveana (1913 SZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5540
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tatjana (1913 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5541
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bali (1913 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5542
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Libera (1913 TO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5543
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tanete (1913 TR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5544
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irmintraud (1913 TV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5545
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Armor (1913 TW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5546
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lumiere (1914 TX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5547
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Berbericia (1914 TY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5548
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gutemberga (1914 TZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5549
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Theobalda (1914 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5550
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nina (1914 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5551
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Armenia (1914 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5552
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kartvelia (1914 UF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5553
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Montefiore (1914 UK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5554
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nora (1914 UL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5555
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pickeringia (1914 UM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5556
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zwetana (1914 UN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5557
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bredichina (1914 UO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5558
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moskva (1914 UQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5559
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hohensteina (1914 UR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5560
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lena (1914 UU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5561
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pretoria (1912 NW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5562
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ani (1914 UV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5563
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Metcalfia (1907 ZC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5564
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arizona (1907 ZD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5565
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irenaea (1914 VB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5566
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fini (1914 VE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5567
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sarita (1914 VH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5568
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Montana (1914 VR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5569
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruth (1914 VT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5570
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gudula (1915 WO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5571
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kressmannia (1915 WP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5572
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helwerthia (1915 WQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5573
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Picka (1915 WS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5574
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hispania (1915 WT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5575
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hormuthia (1915 WW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5576
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gyldenia (1915 WX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5577
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ceraskia (1915 WY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5578
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Merxia (1901 GY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5579
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nauheima (1915 XR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5580
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adele (1915 XV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5581
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baumeia (1915 YR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5582
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tauris (1916 YT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5583
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Coppelia (1916 YU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5584
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juliana (1916 YV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5585
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Annika (1916 YW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5586
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kapteynia (1916 YZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5587
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barnardiana (1916 ZA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5588
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adriana (1916 ZB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5589
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fanny (1916 ZC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5590
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sisigambis (1916 ZG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5591
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anastasia (1916 ZH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5592
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tanina (1916 ZL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5593
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Henrika (1916 ZO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5594
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lindemannia (1916 ZX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5595
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Academia (1916 ZY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5596
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petropolitana (1916 ZZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5597
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Karin (1916 AB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5598
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Monica (1916 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5599
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Burnhamia (1916 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5600
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olivia (1916 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5601
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seraphina (1916 AH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5602
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valborg (1916 AJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5603
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zenobia (1916 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5604
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kerstin (1916 AM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5605
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leontina (1916 AP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5606
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Naema (1916 AS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5607
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lipperta (1916 AT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5608
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agnia (1915 XX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5609
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Inna (1915 XS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5610
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ara (1912 NY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5611
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Altona (1916 S24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5612
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zeissia (1916 S26)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5613
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wladilena (1916 S27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5614
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nansenia (1916 S28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5615
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Frostia (1916 S29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5616
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Newcombia (1916 ZP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5617
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Backlunda (1916 S30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5618
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glasenappia (1916 S33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5619
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "El Djezair (1916 a)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5620
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bouzareah (1916 c)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5621
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ursina (1917 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5622
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aida (1917 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5623
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Franzia (1917 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5624
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Benkoela (1917 BH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5625
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zubaida (1917 BO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5626
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fatme (1917 BQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5627
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kovacia (1917 BS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5628
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lova (1917 BU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5629
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mellena (1917 BV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5630
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Manto (1917 BX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5631
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Holda (1917 BZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5632
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mechthild (1917 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5633
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rotraut (1917 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5634
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nymphe (1917 CF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5635
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scott (1917 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5636
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Walkure (1915 S7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5637
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ricarda (1917 CJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5638
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herba (1917 CK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5639
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Athene (1917 CL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5640
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Swetlana (1917 CM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5641
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Priamus (1917 CQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5642
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ulrike (1917 CX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5643
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Washingtonia (1917 b)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5644
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Parysatis (1918 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5645
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erynia (1918 DG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5646
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Waltraut (1918 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5647
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gunhild (1918 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5648
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seeligeria (1918 DR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5649
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leopoldina (1918 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5650
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erda (1918 DT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5651
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helio (1918 DU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5652
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sphinx (1918 DV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5653
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lysistrata (1918 DZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5654
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hildegard (1918 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5655
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jokaste (1918 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5656
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosalinde (1918 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5657
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brunsia (1918 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5658
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nealley (1918 EM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5659
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rockefellia (1918 EO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5660
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Universitas (1918 ES)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5661
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Repsolda (1918 ET)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5662
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhoda (1918 EU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5663
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Buda (1918 EX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5664
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ulla (1919 FA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5665
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anneliese (1919 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5666
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agamemnon (1919 FD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5667
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maritima (1919 FJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5668
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otila (1919 FL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5669
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palisana (1919 FN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5670
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cosette (1918 b)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5671
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "America (1915 S1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5672
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lyka (1915 S4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5673
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Itha (1919 FR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5674
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilsebill (1918 EQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5675
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rogeria (1919 FT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5676
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jovita (1919 FV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5677
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herluga (1919 GB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5678
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Toni (1919 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5679
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alphonsina (1920 GM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5680
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imhilde (1920 GN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5681
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ratisbona (1920 GO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5682
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hildrun (1920 GP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5683
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Algunde (1920 GR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5684
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Westphalia (1920 GS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5685
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Whittemora (1920 GU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5686
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hooveria (1920 GV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5687
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thuringia (1920 HK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5688
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kunigunde (1920 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5689
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bethgea (1920 HO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5690
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chlosinde (1920 HQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5691
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kordula (1920 HT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5692
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Murray (1920 HV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5693
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Romilda (1920 HW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5694
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Begonia (1920 HX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5695
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hidalgo (1920 HZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5696
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barcelona (1921 JB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5697
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Poesia (1921 JC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5698
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Monterosa (1921 JD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5699
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jucunda (1921 JE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5700
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hel (1921 JK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5701
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ahrensa (1921 JP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5702
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gaspra (1916 S45)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5703
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Caia (1916 S61)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5704
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Painleva (1921 JT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5705
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Li (1921 JU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5706
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alstede (1921 JV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5707
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Camelia (1921 JX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5708
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asplinda (1921 KC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5709
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arne (1921 KF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5710
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gunnie (1921 KM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5711
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aslog (1921 KP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5712
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Subamara (1921 KS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5713
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Angelica (1921 KT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5714
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Muschi (1921 KU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5715
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helionape (1921 KV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5716
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petunia (1921 KW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5717
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alsatia (1921 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5718
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cohnia (1922 LK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5719
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aralia (1922 LR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5720
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lioba (1922 LS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5721
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Perseverantia (1922 LT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5722
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Benjamina (1922 LU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5723
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philippa (1922 LV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5724
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aidamina (1922 LY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5725
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilsewa (1922 MC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5726
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anacostia (1921 W19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5727
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Martina (1917 S92)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5728
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Franklina (1922 MD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5729
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gunila (1922 ME)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5730
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gretia (1922 MH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5731
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amelia (1922 MQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5732
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wallia (1922 MR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5733
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Appella (1922 MT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5734
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schwassmannia (1922 MW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5735
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yerkes (1922 MZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5736
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "McDonalda (1922 NB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5737
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Swasey (1922 ND)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5738
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moultona (1923 NJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5739
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otthild (1923 NL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5740
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sternberga (1923 NP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5741
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hilaritas (1923 NM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5742
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bodea (1923 NU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5743
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zachia (1923 NW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5744
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piazzia (1923 NZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5745
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gaussia (1923 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5746
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olbersia (1923 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5747
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lilofee (1923 OK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5748
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belopolskya (1923 OS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5749
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arago (1923 OT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5750
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lagrangea (1923 OU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5751
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pawlowia (1923 OX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5752
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "La Paz (1923 PD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5753
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marlene (1923 PF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5754
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tombecka (1924 PQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5755
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semphyra (1924 PW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5756
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Christa (1924 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5757
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anitra (1924 QG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5758
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jacqueline (1924 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5759
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arnolda (1924 QM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5760
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Flammario (1924 RG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5761
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olympiada (1924 RT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5762
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thomana (1924 RU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5763
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hale (1923 YO13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5764
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aesculapia (1923 YO11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5765
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lydina (1923 PG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5766
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "La Plata (1924 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5767
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vitja (1924 RQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5768
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arctica (1924 RR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5769
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pafuri (1924 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5770
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Simona (1924 SM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5771
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amata (1924 SW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5772
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ganymed (1924 TD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5773
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tuckia (1924 TK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5774
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sonneberga (1924 TL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5775
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klumpkea (1925 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5776
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asta (1925 FA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5777
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amazone (1925 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5778
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beate (1925 HB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5779
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Teutonia (1924 RO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5780
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edwin (1924 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5781
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geisha (1924 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5782
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Feodosia (1924 TP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5783
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gotho (1925 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5784
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Merope (1925 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5785
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belgica (1925 VD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5786
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Forsytia (1925 WD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5787
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tynka (1925 WG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5788
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Azalea (1924 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5789
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wanda (1925 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5790
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Grubba (1925 MA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5791
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mussorgskia (1925 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5792
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ljuba (1925 TD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5793
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aquilegia (1925 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5794
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aethusa (1926 PA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5795
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lunaria (1926 RG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5796
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nofretete (1926 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5797
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Planckia (1927 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5798
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tunica (1926 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5799
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brita (1924 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5800
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Malva (1926 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5801
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gellivara (1923 OW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5802
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beljawskya (1925 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5803
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helina (1926 SC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5804
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mentha (1926 XB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5805
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mimosa (1927 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5806
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Reseda (1927 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5807
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pirola (1927 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5808
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tamariwa (1926 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5809
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amaryllis (1927 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5810
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nata (1927 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5811
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arabis (1927 RD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5812
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mitaka (1927 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5813
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tama (1927 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5814
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Spiraea (1928 DT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5815
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lilium (1924 PN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5816
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Freda (1925 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5817
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siberia (1926 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5818
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tulipa (1926 GS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5819
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Reunerta (1928 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5820
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vicia (1928 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5821
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hakone (1928 RJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5822
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Figneria (1928 RQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5823
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arnica (1928 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5824
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clematis (1928 SJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5825
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pepita (1928 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5826
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fragaria (1929 AB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5827
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cydonia (1929 CW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5828
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lictoria (1929 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5829
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Demeter (1929 KA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5830
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tata (1929 CU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5831
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jaroslawa (1928 PD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5832
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Reinmuthia (1927 CO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5833
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polonia (1928 PE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5834
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Katja (1928 QC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5835
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lorraine (1928 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5836
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sabauda (1928 XC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5837
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Catriona (1929 GD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5838
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Reginita (1927 KA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5839
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hanskya (1927 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5840
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euboea (1927 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5841
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Natascha (1928 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5842
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neith (1928 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5843
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shapleya (1928 ST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5844
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stroobantia (1928 TB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5845
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "China (1957 UN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5846
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otero (1929 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5847
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mimi (1929 AJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5848
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astrid (1929 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5849
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neujmina (1929 PH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5850
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hollandia (1929 RB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5851
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Colchis (1929 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5852
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mercedes (1929 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5853
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Raissa (1929 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5854
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Attica (1929 WF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5855
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crimea (1929 YC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5856
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aetolia (1930 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5857
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Odysseus (1930 BH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5858
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oda (1930 BJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5859
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Robelmonte (1929 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5860
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Biarmia (1929 JF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5861
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stavropolis (1929 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5862
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rarahu (1929 NA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5863
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Volga (1929 PF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5864
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pawona (1930 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5865
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astronomia (1927 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5866
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aenna (1928 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5867
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arabia (1929 QC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5868
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luda (1929 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5869
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Granada (1929 RD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5870
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Illyria (1929 RL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5871
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thessalia (1929 SF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5872
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Larissa (1930 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5873
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saga (1930 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5874
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imprinetta (1930 HM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5875
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sakuntala (1930 MA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5876
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dubiago (1930 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5877
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rusthawelia (1930 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5878
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aneas (1930 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5879
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anchises (1930 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5880
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marmara (1930 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5881
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Margo (1930 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5882
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lucidor (1930 VE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5883
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gonnessia (1930 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5884
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irmela (1931 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5885
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rita (1931 GE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5886
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lilith (1927 CQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5887
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilona (1927 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5888
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gaea (1926 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5889
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Turnera (1929 PL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5890
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Afra (1929 XC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5891
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gothlandia (1930 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5892
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Terentia (1930 SG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5893
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alfaterna (1931 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5894
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Africa (1931 HB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5895
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aletta (1931 JG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5896
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sheba (1931 KE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5897
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhodesia (1931 LD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5898
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geldonia (1931 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5899
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imperatrix (1931 RH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5900
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Strenua (1931 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5901
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marina (1931 RL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5902
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nanna (1931 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5903
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Renzia (1931 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5904
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Numerowia (1931 UH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5905
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ostenia (1931 VT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5906
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Troilus (1931 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5907
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pumma (1927 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5908
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Morosovia (1931 LB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5909
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bressole (1931 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5910
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Francette (1931 XC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5911
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Algeria (1931 XD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5912
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Richilde (1932 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5913
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Boyer (1932 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5914
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Britta (1932 CJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5915
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crocus (1932 CU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5916
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tina (1932 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5917
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neckar (1931 TG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5918
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fantasia (1927 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5919
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geranium (1931 TD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5920
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scabiosa (1931 TU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5921
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tilia (1931 TP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5922
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cortusa (1931 TF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5923
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kobresia (1931 TG2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5924
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elyna (1931 UF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5925
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thais (1931 VX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5926
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Genevieve (1931 XB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5927
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Centenaria (1932 CD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5928
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dysona (1932 EB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5929
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zambesia (1932 HL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5930
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pamela (1932 JE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5931
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deira (1932 KE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5932
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Calvinia (1932 KF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5933
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chaka (1932 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5934
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Memoria (1932 QA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5935
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jugurtha (1932 RO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5936
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rutherfordia (1932 VB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5937
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hedera (1933 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5938
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Celestia (1933 DG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5939
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erfordia (1932 JA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5940
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schilowa (1932 NC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5941
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Normannia (1932 PD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5942
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sicilia (1932 PG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5943
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ogyalla (1933 BT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5944
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Legia (1933 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5945
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sniadeckia (1933 FE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5946
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Varsavia (1933 FF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5947
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Letaba (1933 HG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5948
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schweikarda (1911 MV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5949
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tone (1927 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5950
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Libya (1930 HJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5951
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rollandia (1930 SH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5952
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isergina (1931 TN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5953
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Delportia (1932 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5954
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cimbria (1932 WG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5955
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ucclia (1933 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5956
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dolores (1933 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5957
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kenya (1933 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5958
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baillauda (1933 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5959
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jeanne (1933 QJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5960
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Utopia (1933 QM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5961
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Komsomolia (1925 SC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5962
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Latvia (1933 OP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5963
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Julietta (1933 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5964
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Banachiewicza (1933 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5965
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lorcia (1933 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5966
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Santa (1933 QM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5967
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kutaissi (1933 QR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5968
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phryne (1933 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5969
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luce (1933 SH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5970
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antwerpia (1933 UB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5971
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deflotte (1933 WD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5972
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Andree (1933 WE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5973
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Quadea (1934 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5974
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nocturna (1934 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5975
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mertona (1934 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5976
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marcelle (1934 CL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5977
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yvonne (1934 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5978
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Werra (1924 SV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5979
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luthera (1928 FP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5980
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arosa (1928 KC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5981
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pongola (1928 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5982
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scythia (1930 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5983
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Halleria (1931 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5984
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hyperborea (1931 TO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5985
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Villigera (1932 DB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5986
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vassar (1933 OT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5987
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Berna (1933 QG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5988
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bronislawa (1933 SF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5989
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Silvretta (1935 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5990
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Disa (1934 FO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5991
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Impala (1934 JG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5992
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Majuba (1934 JH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5993
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tugela (1934 LD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5994
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Losaka (1934 NS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5995
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Devota (1925 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5996
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eliane (1933 FL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5997
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Spiridonia (1925 DB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5998
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Solvejg (1933 QS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:5999
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marconia (1934 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6000
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cevenola (1934 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6001
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lundmarka (1934 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6002
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zeelandia (1934 RW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6003
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gerarda (1934 RA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6004
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Desagneauxa (1934 XB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6005
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yvette (1934 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6006
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edmee (1935 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6007
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brabantia (1935 CV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6008
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nicole (1935 FC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6009
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Potomac (1908 CG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6010
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gotha (1929 CY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6011
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patria (1931 VW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6012
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Michel (1933 FD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6013
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bechuana (1934 LJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6014
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosselia (1934 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6015
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Uzbekistania (1934 TF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6016
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wawel (1935 CE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6017
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maartje (1935 CU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6018
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Botha (1935 GK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6019
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nyanza (1935 JH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6020
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Khama (1935 ND)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6021
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prieska (1935 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6022
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tarka (1935 OD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6023
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leuschneria (1935 QA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6024
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Griqua (1935 QG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6025
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herberta (1935 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6026
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Safara (1935 VB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6027
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Henyey (1928 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6028
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piccolo (1932 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6029
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Numidia (1935 HD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6030
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ostanina (1935 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6031
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Resi (1935 QJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6032
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haremari (1935 QK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6033
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cincinnati (1935 QN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6034
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alfreda (1935 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6035
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lomonosowa (1936 FC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6036
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Volodia (1936 FM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6037
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kniertje (1934 RX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6038
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gelria (1935 MJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6039
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aphrodite (1935 SS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6040
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Onnie (1935 SS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6041
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abastumani (1935 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6042
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pierre (1936 FO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6043
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Algoa (1936 LK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6044
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aribeda (1936 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6045
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Outeniqua (1936 PF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6046
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Umtata (1936 PG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6047
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Donnera (1936 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6048
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tirela (1936 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6049
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Idelsonia (1936 QA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6050
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ajax (1936 QW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6051
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Komppa (1936 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6052
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lindelof (1936 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6053
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Trusanda (1936 WF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6054
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isko (1937 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6055
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Margret (1937 AL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6056
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brauna (1937 AM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6057
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roucarie (1937 CD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6058
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Renauxa (1937 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6059
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Walinskia (1937 GH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6060
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Danzig (1929 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6061
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Radcliffe (1931 RJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6062
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Esperanto (1936 FQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6063
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jose (1936 QM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6064
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sundmania (1937 AJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6065
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tuorla (1937 GB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6066
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Riviera (1937 GF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6067
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruvuma (1937 KB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6068
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mombasa (1937 NO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6069
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luanda (1937 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6070
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geramtina (1937 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6071
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Margot (1936 FD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6072
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Salonta (1936 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6073
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Diomedes (1937 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6074
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wendeline (1937 TC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6075
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vogtia (1937 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6076
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Corvina (1937 YF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6077
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruppina (1937 YG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6078
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pannonia (1938 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6079
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Konkolya (1938 AF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6080
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Utra (1938 BB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6081
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saldanha (1937 NG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6082
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ankara (1937 PA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6083
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mineura (1937 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6084
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Magnya (1937 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6085
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jean-Jacques (1937 YL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6086
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zamenhof (1938 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6087
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nordenmarkia (1938 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6088
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Armisticia (1939 VO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6089
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Autonoma (1938 FA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6090
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mashona (1938 OE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6091
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Linzia (1938 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6092
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carla (1938 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6093
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tornio (1938 SL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6094
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ounas (1938 UT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6095
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bonsdorffia (1938 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6096
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Inkeri (1938 DE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6097
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tubingia (1938 DR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6098
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sebastiana (1938 DA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6099
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hakoila (1938 DJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6100
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Postrema (1938 HC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6101
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isa (1938 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6102
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Boda (1938 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6103
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aura (1938 XE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6104
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Attila (1939 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6105
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Balduinus (1938 EJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6106
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sigrid (1938 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6107
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helsinki (1938 SW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6108
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tampere (1938 SB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6109
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lahti (1938 SK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6110
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pori (1938 UF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6111
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baade (1938 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6112
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arenda (1938 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6113
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kuopio (1938 XD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6114
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lappeenranta (1939 FM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6115
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Koranna (1939 HH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6116
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xosa (1939 JC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6117
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Charlois (1939 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6118
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oulu (1939 FE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6119
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Henry (1938 BG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6120
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beograd (1938 FD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6121
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kajaani (1938 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6122
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imatra (1938 UY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6123
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seinajoki (1938 UB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6124
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Joensuu (1939 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6125
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Conrada (1940 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6126
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oterma (1938 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6127
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hartmut (1938 SH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6128
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Inari (1938 SM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6129
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saimaa (1939 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6130
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nasi (1939 BK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6131
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paijanne (1939 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6132
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Borrelly (1940 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6133
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kevola (1938 WK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6134
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Estonia (1939 CK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6135
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schalen (1941 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6136
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bourgeois (1941 SJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6137
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vinterhansenia (1941 UK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6138
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thernoe (1941 UW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6139
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Izsak (1941 SG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6140
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nele (1929 CZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6141
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palomaa (1935 FK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6142
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tito (1937 WD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6143
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bessel (1938 DE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6144
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bauersfelda (1940 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6145
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yugoslavia (1940 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6146
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dejan (1941 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6147
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wingolfia (1942 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6148
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roehla (1942 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6149
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jarnefelt (1942 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6150
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kustaanheimo (1942 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6151
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Strattonia (1942 XB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6152
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fricke (1941 CG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6153
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gondolatsch (1943 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6154
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Srbija (1936 TB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6155
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alikoski (1941 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6156
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aisleen (1946 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6157
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Evita (1948 PA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6158
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brunonia (1948 TX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6159
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cesco (1950 FJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6160
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Posnania (1949 SC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6161
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Meyer (1949 FD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6162
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fabiola (1948 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6163
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kirkwood (1951 AT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6164
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herrick (1948 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6165
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abanderada (1950 LA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6166
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Martir (1950 LY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6167
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antilochus (1950 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6168
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fuji (1927 CR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6169
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Union (1947 RG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6170
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kahrstedt (1933 FS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6171
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Descamisada (1951 MH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6172
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fanatica (1950 RK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6173
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsiolkovskaja (1933 NA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6174
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baize (1951 KA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6175
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mathieu (1951 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6176
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Danjon (1949 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6177
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Itzigsohn (1951 EV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6178
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laugier (1949 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6179
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Giomus (1950 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6180
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neva (1926 VH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6181
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tombaugh (1931 FH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6182
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Milankovitch (1936 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6183
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mavis (1950 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6184
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brenda (1951 NL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6185
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beyer (1950 DJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6186
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hirose (1950 BJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6187
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Smiley (1950 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6188
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goldschmidt (1952 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6189
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bardwell (1950 BW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6190
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Filipoff (1950 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6191
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alschmitt (1952 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6192
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dawn (1948 NF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6193
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Druzhba (1926 TM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6194
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vivian (1948 PL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6195
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rabe (1931 TT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6196
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "The NORC (1953 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6197
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sadeya (1927 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6198
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Strobel (1923 OG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6199
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Milet (1952 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6200
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siebohme (1941 DF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6201
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chimay (1929 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6202
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bohrmann (1924 QW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6203
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Swings (1936 QO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6204
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruanda (1935 JF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6205
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bower (1951 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6206
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tana (1935 OJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6207
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hill (1951 RU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6208
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rafita (1935 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6209
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Waterfield (1933 OJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6210
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosseland (1939 BG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6211
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Menelaus (1957 MK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6212
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heckmann (1937 TG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6213
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yakhontovia (1937 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6214
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bojeva (1931 TL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6215
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Comas Sola (1929 WG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6216
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Innes (1953 NA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6217
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Punkaharju (1940 YL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6218
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wood (1953 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6219
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hoffmann (1923 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6220
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "van den Bos (1926 PE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6221
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gaby (1930 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6222
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pels (1930 SY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6223
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dagmar (1934 RS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6224
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Minnaert (1934 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6225
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gezelle (1935 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6226
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Groeneveld (1938 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6227
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Simonida (1938 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6228
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tycho Brahe (1940 RO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6229
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hveen (1940 YH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6230
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nevanlinna (1941 FR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6231
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Per Brahe (1942 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6232
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Steinmetz (1948 WE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6233
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Castafiore (1950 SL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6234
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iguassu (1951 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6235
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "De Sitter (1935 SR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6236
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glarona (1965 SC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6237
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Floris-Jan (1930 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6238
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mayrhofer (1948 VB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6239
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oort (1956 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6240
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Subbotina (1936 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6241
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hertzsprung (1935 LA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6242
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kaiser (1934 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6243
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Christophe (1934 CS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6244
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Okavango (1953 NJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6245
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalahari (1924 NC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6246
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polit (1929 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6247
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sandrine (1935 BB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6248
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Angola (1935 KC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6249
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sy (1951 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6250
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jens (1950 DP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6251
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wells (1953 TD3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6252
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klemola (1936 FX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6253
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vladimir (1932 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6254
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "CrAO (1930 SK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6255
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goethe Link (1964 TO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6256
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marceline (1936 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6257
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Smuts (1948 PH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6258
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heike (1943 EY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6259
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhongolovich (1928 TJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6260
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "ITA (1948 RJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6261
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Severny (1966 TJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6262
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Giclas (1960 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6263
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schaifers (1934 RO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6264
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ferguson (1941 SY1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6265
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brouwer (1963 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6266
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mauderli (1966 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6267
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Telamon (1949 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6268
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herget (1955 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6269
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mieke (1934 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6270
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cunningham (1935 FE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6271
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lorbach (1936 VD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6272
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Giacobini (1937 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6273
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Naantali (1942 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6274
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sandra (1950 GB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6275
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edmondson (1952 FN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6276
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Russell (1953 TZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6277
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cogshall (1953 VM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6278
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wrubel (1957 XB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6279
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schlesinger (1967 JR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6280
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Makover (1968 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6281
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rumpelstilz (1968 HE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6282
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kuiper (2520 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6283
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gehrels (4007 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6284
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alfven (4506 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6285
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kippes (1906 RA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6286
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schneller (1931 TL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6287
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Albitskij (1935 FJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6288
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Raahe (1948 TL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6289
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chiny (1950 SK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6290
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiess (1952 OZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6291
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patsayev (1967 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6292
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Finsen (1970 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6293
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Woltjer (4010 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6294
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Riga (1966 KB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6295
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Koussevitzky (1950 OE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6296
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Titicaca (1952 SP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6297
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhang Heng (1964 TW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6298
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dirikis (1970 GD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6299
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prometheus (2522 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6300
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bruwer (4576 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6301
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gilgamesh (4645 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6302
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imhotep (7589 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6303
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beethoven (1932 CE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6304
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liberia (1936 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6305
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Katanga (1939 MB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6306
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laputa (1948 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6307
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haworth (1952 FM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6308
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klare (1954 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6309
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miller (1955 RC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6310
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kashirina (1966 PH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6311
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mrkos (1969 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6312
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shmakova (1969 PN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6313
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palach (1969 QP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6314
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gajdariya (1970 OE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6315
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ursa (1971 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6316
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hus (1971 UY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6317
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Masaryk (1971 UO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6318
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jarmila (1972 AB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6319
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Susilva (1972 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6320
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helewalda (1972 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6321
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stobbe (1916 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6322
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Delvaux (1933 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6323
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kresak (1942 AB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6324
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carpenter (1955 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6325
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "McElroy (1957 XE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6326
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lobachevskij (1972 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6327
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kovalevskaya (1972 RS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6328
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barbarossa (1973 SK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6329
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Komensky (1970 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6330
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deiphobus (1971 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6331
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thersites (2008 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6332
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Philoctetes (4596 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6333
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glaukos (1971 FE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6334
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astyanax (1971 FF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6335
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helenos (1971 FG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6336
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agenor (1971 FH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6337
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kacivelia (1924 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6338
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marsden (1971 FC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6339
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hughes (1933 QC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6340
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shao (1940 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6341
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rauma (1941 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6342
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Virton (1950 TD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6343
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zu Chong-Zhi (1964 VO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6344
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pakhmutova (1968 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6345
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Konoshenkova (1968 CD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6346
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jakoba (1971 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6347
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moravia (1972 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6348
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shaposhnikov (1972 HU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6349
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adzhimushkaj (1972 JL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6350
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Massevitch (1972 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6351
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pobeda (1972 RL2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6352
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mikhailov (1972 TZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6353
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schubart (1973 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6354
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anubis (6534 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6355
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sekanina (1928 SF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6356
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aiguillon (1968 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6357
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Demiddelaer (1935 JA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6358
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Suvanto (1936 FP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6359
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lucifer (1964 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6360
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lugano (1973 WD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6361
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Locarno (1973 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6362
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Loretta (1974 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6363
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Whipple (1975 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6364
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wild (1931 TN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6365
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iso-Heikkila (1935 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6366
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hesburgh (1951 JC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6367
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rupertwildt (1951 UK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6368
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kukarkin (1952 PH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6369
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Angara (1970 GF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6370
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chandra (1970 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6371
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guisan (1973 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6372
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dufour (1973 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6373
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bezovec (1975 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6374
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mehltretter (1932 BK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6375
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alain (1935 CG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6376
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shura (1970 QY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6377
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fedynskij (1926 TN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6378
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hopmann (1929 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6379
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kaplan (1952 RH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6380
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Adams (1961 UA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6381
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hirayama (1973 DR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6382
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herschel (1960 OA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6383
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Konstitutsiya (1973 SV4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6384
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Voloshina (1968 UL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6385
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chebyshev (1969 TL4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6386
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tucapel (1971 UH4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6387
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heinemann (1938 SE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6388
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ukko (1936 FR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6389
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "West (1938 CK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6390
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asaph (1952 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6391
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nortia (1953 LG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6392
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shen Guo (1964 VR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6393
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ethel (1970 OH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6394
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bistro (1973 WF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6395
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chalonge (1974 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6396
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ortutay (1936 TH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6397
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leningrad (1968 UD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6398
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chang (1976 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6399
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tamriko (1976 UN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6400
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nuki (1976 UO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6401
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roka (1938 BH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6402
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chiron (1977 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6403
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aksnes (1936 DD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6404
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dangreen (1948 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6405
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hubble (1955 FT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6406
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Henan (1965 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6407
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cetacea (1977 VF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6408
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mizuho (1978 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6409
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sampo (1941 HO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6410
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sumiana (1969 UP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6411
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Galle (1953 PV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6412
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laverna (1960 FL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6413
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Toronto (1963 PD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6414
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gudy (1976 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6415
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilmari (1941 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6416
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dhotel (1950 TH2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6417
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tselina (1969 LG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6418
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wallenquist (1976 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6419
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irakli (1976 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6420
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Danmark (1978 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6421
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Flagstaff (1978 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6422
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tyumenia (1967 RM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6423
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vltava (1973 SL2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6424
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nissen (1974 MK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6425
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Karl-Ontjes (2005 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6426
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tanya (1971 KB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6427
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhukov (1975 TW3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6428
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jugta (1933 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6429
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Priscilla (1936 QZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6430
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Swissair (1968 HB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6431
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kemerovo (1970 PE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6432
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Simferopol (1970 QC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6433
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marietta (1975 BC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6434
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Blaauw (1976 UF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6435
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stentor (1976 UQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6436
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Epeios (1976 UW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6437
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schwambraniya (1977 FX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6438
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hadwiger (1977 VX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6439
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hannibal (1978 WK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6440
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Akiyama (1978 XD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6441
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ashbrook (A924 EF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6442
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tietjen (1933 OS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6443
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Korczak (1971 SP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6444
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lyalya (1972 RM2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6445
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Young (1956 RJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6446
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maresjev (1974 QG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6447
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oliver (6551 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6448
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Platzeck (1965 MA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6449
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marjaleena (1940 RJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6450
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fogelin (1942 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6451
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semirot (1953 FH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6452
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neufang (1959 OB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6453
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fujian (1964 TV2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6454
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guangdong (1965 WO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6455
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orlenok (1976 UL4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6456
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Uppsala (1977 PA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6457
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pyatigoriya (1972 HP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6458
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jackson (1926 KB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6459
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ellicott (1965 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6460
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shanghai (1965 YN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6461
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "van Rhijn (1935 SQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6462
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gabrova (1976 GR3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6463
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antenor (1977 QH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6464
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pushkin (1977 QL3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6465
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tianjin (1978 US1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6466
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carol (1953 GF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6467
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sichuan (1964 VX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6468
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kerch (1971 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6469
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eltigen (1971 SK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6470
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wotho (1975 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6471
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mannucci (1975 LU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6472
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lermontov (1977 ST1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6473
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sarpedon (1977 TL3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6474
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tucson (2528 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6475
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cunitza (1936 QC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6476
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Soyuz-Apollo (1977 OH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6477
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yunnan (1978 UT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6478
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vittore (A924 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6479
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melnikov (1938 TB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6480
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paracelsus (1978 RC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6481
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsai (1978 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6482
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alcathous (1979 WM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6483
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tesla (1952 UW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6484
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hekatostos (1968 BC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6485
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bowell (1979 XH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6486
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kanda (1933 DE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6487
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yamamoto (1942 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6488
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stalingrad (1972 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6489
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tikhov (1977 SU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6490
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Qinghai (1977 VK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6491
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Viipuri (1939 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6492
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neoptolemus (1975 WM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6493
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shaanxi (1978 UW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6494
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sabrina (1979 YK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6495
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tchaikovsky (1974 VK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6496
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Szmytowna (1942 VW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6497
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Efremiana (1976 JA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6498
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yazhi (1980 ED)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6499
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiso (1976 UV5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6500
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moreau (1950 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6501
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Karolinum (1979 UZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6502
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kevo (1941 FS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6503
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seili (1942 RM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6504
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guernica (1977 EH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6505
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Andronikov (1977 PL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6506
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Matusovskij (1977 QD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6507
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kugultinov (1975 BA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6508
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Daghestan (1978 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6509
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stebbins (1953 TG2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6510
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Whitford (1965 WJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6511
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Florya (1972 TL2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6512
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Retsina (1979 FK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6513
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "King (1980 RJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6514
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Garuda (1957 HJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6515
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schilt (1967 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6516
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mr. Spock (1971 QX1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6517
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olshaniya (1974 SU4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6518
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "El Leoncito (1974 TA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6519
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Duboshin (1976 GU2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6520
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Czechoslovakia (1980 DZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6521
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Blarney (1979 QJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6522
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zverev (1976 SF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6523
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Janice (1978 VS4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6524
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chernykh (1979 SP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6525
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tololo (1965 QC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6526
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ontake (1977 DS3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6527
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalm (1940 GH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6528
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Porthan (1943 EP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6529
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xinjiang (1975 WL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6530
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bokhan (1977 QA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6531
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lebedev (1968 UQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6532
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xizang (1979 SC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6533
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fucik (1974 OS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6534
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vinata (1936 TK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6535
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kurchenko (1970 OG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6536
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kurchatov (1969 RY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6537
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alva (1975 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6538
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lavrov (1978 PZ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6539
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nei Monggol (1978 UV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6540
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hirons (1979 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6541
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phereclos (1981 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6542
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bahner (1929 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6543
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cebriones (1977 TJ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6544
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seillier (1978 GD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6545
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Interkosmos (1980 YQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6546
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chekhov (1976 GC8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6547
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Proskurin (1977 RA8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6548
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vladvysotskij (1974 QE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6549
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Radek (1975 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6550
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Martynov (1977 QG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6551
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pannekoek (1935 CY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6552
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heiskanen (1941 ST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6553
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Landi (1976 AF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6554
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nonie (1977 GA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6555
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schulhof (1943 EC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6556
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nikonov (1974 SN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6557
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xi''an (1975 FX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6558
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Suzuki (1955 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6559
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nadeev (1973 SZ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6560
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kochi (1981 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6561
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lappajarvi (1938 DV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6562
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antarctica (1980 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6563
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haug (1973 DH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6564
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Astapovich (1978 QK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6565
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wil (3537 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6566
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "van de Hulst (6816 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6567
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vibeke (1931 UG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6568
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sharonov (1979 OF13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6569
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nininger (1979 UD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6570
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shenzhen (1975 FW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6571
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Simonov (1976 KV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6572
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kamenyar (1977 RZ6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6573
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schurer (1977 TZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6574
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bruce Helin (1977 VC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6575
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sootiyo (1981 GJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6576
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bateson (1981 KA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6577
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ulugbek (1977 QX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6578
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tomeileen (A906 BJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6579
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lederle (1934 CD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6580
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sholokhov (1975 BU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6581
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ioannisiani (1978 RP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6582
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dollfus (1980 RQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6583
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lyot (1981 FE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6584
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wabash (A921 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6585
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Somville (1950 TO4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6586
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palamedes (1966 BA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6587
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Veniakaverin (1977 RC7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6588
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Spellmann (1980 LB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6589
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Clavel (1981 EC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6590
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sterpin (1934 FF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6591
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nordenskiold (1939 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6592
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agematsu (1976 UW15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6593
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ultrajectum (6545 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6594
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruby (1979 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6595
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semenov (1972 TF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6596
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Andersen (1976 JF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6597
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guinevere (1928 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6598
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bussolini (1976 AG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6599
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kutuzov (1977 NT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6600
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Inge (1981 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6601
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsesevich (1977 QM3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6602
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nummela (1943 EO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6603
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gaviola (1967 JO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6604
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hebei (1975 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6605
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pirogov (1976 QG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6606
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bobone (1976 WB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6607
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orma (1968 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6608
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Annagerman (1975 VD2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6609
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Novorossijsk (1976 QF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6610
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heidi (1979 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6611
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Triglav (1980 PP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6612
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ryba (1980 PV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6613
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Budovicium (1981 QB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6614
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "O''Steen (1981 VG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6615
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cambridge (1980 LD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6616
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fechtig (A905 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6617
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Houzeau (1931 VD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6618
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edebono (1973 DE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6619
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Calpurnia (1980 CF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6620
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Machado (1980 LJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6621
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Libitina (1950 FC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6622
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leloir (1975 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6623
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Houssay (1976 UP20)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6624
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Viljev (1979 FS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6625
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thomas (1980 OC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6626
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Siegma (1932 CW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6627
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chaliapin (1973 FF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6628
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Boyarchuk (1977 FZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6629
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elba (1979 KA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6630
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Madeline (1980 MA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6631
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hannu Olavi (1953 EN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6632
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ladoga (1968 UP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6633
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yesenin (1974 QL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6634
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saint-Exupery (1975 VW3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6635
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Harimaya-Bashi (1981 SA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6636
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gardner (1980 OH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6637
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dworetsky (1949 PS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6638
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Acamas (1978 TB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6639
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arthur (1980 PN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6640
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Veseli (1980 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6641
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lumme (1980 VP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6642
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bologna (1980 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6643
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Odessa (1976 GX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6644
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kathryn (1979 DE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6645
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Plzen (1979 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6646
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jiangxi (1975 WO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6647
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goto (1981 CA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6648
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bolzano (1981 CM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6649
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Samitchell (1962 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6650
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belnika (1978 PP2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6651
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hermod (1980 TF3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6652
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhejiang (1980 TY5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6653
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guizhou (1980 VJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6654
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "James Bradley (1982 DL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6655
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lassell (1982 DZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6656
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gadolin (1939 SG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6657
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abetti (1977 EC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6658
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oongaq (1980 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6659
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elinor (1931 EG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6660
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Karen (1949 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6661
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guangxi (1974 XX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6662
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Millis (1981 JX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6663
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wasserman (1982 FG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6664
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bydzovsky (1982 FC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6665
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gramme (1951 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6666
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oikawa (1967 UO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6667
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chuvashia (1977 PW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6668
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pandarus (1982 BC3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6669
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Joan (1935 FF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6670
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brian (1981 AD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6671
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Douglas (1981 AH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6672
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Linda Susan (1981 JW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6673
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tortali (1982 HG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6674
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Halley (1982 HG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6675
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ristiina (1938 DG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6676
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chkalov (1976 YT3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6677
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Christabel (1979 UE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6678
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Albina (1969 TC3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6679
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalinin (1976 YX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6680
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Batrakov (1978 SZ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6681
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Borovsky (1980 VW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6682
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ueferji (1981 QS3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6683
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aleksandrov (1978 QB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6684
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Luxembourg (1938 EA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6685
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mielikki (1938 US)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6686
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Handley (1951 OM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6687
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orlov (1978 RZ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6688
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "David Bender (1978 VG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6689
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urumqi (1979 UA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6690
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barks (1981 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6691
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cucula (1982 KJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6692
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Witt (1926 FG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6693
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hasek (1976 GJ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6694
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kotka (1938 DU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6695
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsoj (1974 SY4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6696
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valdivia (1975 XG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6697
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gibson (1981 JG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6698
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cesky Krumlov (1980 DW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6699
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wu Chien-Shiung (1965 SP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6700
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crisser (1977 VN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6701
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Idomeneus (1980 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6702
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kacha (1980 TU6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6703
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Takenouchi (1967 UM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6704
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tenojoki (1942 TJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6705
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kleczek (1982 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6706
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Grinevia (1978 RR5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6707
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tovarishch (1978 RC6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6708
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valdaj (1977 QV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6709
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Teucer (1981 LK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6710
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huygens (1935 SU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6711
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Weisell (1939 BU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6712
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vilho (1940 WG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6713
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yrjo (1941 HF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6714
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belgrano (1976 HS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6715
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stremchovi (1980 JA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6716
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zappala (1981 WZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6717
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pien (1982 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6718
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ensor (1933 UR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6719
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ahti (1939 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6720
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vellamo (1942 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6721
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bobhope (1948 PK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6722
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Radishchev (1978 PC4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6723
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Christy Carol (1980 TB4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6724
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sobolev (1978 YQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6725
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Griboedov (1971 TJ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6726
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Unsold (1950 OD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6727
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ylppo (1942 CJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6728
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "ASP (1959 VF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6729
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roser (1933 GB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6730
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laurel (1935 OK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6731
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hardy (1961 TA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6732
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nepryadva (1980 RM2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6733
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Panacea (1980 RX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6734
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shimizu (1932 CB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6735
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tedesco (1981 OG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6736
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Reddish (1981 ES22)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6737
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brno (1981 WT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6738
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "McGetchin (1980 MD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6739
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Filipenko (1983 AX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6740
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peiroos (1975 QD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6741
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Memnon (1981 AE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6742
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neuvo (1938 DN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6743
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lubos Perek (1972 AR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6744
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhuhai (1981 UV9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6745
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Millman (1981 YB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6746
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Plaskett (1982 BZ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6747
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Caltech (1983 AE2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6748
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nekrasov (1975 TT2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6749
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shimoyama (1981 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6750
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hoshi-no-ie (1983 JA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6751
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miahelena (1938 GJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6752
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sawyer Hogg (1980 RR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6753
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Salazar (1980 TU4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6754
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dali (1981 EX18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6755
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Automedon (1981 JR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6756
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Epstein (1976 GN8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6757
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Harris (1982 BK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6758
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mayakovsky (1969 UC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6759
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kempchinsky (1980 TK4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6760
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amber (1983 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6761
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aristophanes (4006 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6762
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hopi (1980 LB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6763
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rousseau (1974 VQ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6764
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Perepadin (1977 RB8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6765
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vysheslavia (1979 SV11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6766
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tatsuo (1934 CB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6767
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Scholl (1983 RE2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6768
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otto (1940 YF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6769
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vladisvyat (1977 SS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6770
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lautaro (1974 HR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6771
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Muriel (1981 JA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6772
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Poltava (1981 RW2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6773
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Korhonen (1943 EM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6774
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Michelangelo (1982 BC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6775
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Koncek (1983 YH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6776
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Minsk (1979 QU9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6777
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Candy (1980 VN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6778
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petrovic (1981 UL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6779
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kulin (1940 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6780
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lucubratio (1967 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6781
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hainan (1981 UW9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6782
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Higson (1982 QR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6783
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sarastro (1977 TA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6784
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhangguoxi (1978 TA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6785
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Evans (1984 CA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6786
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Krat (1937 TO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6787
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alku (1944 BA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6788
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saltykov (1983 RE3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6789
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alois (1984 AW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6790
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Strugatskia (1977 RE7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6791
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cook (1982 UB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6792
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wren (1982 XC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6793
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Makhaon (1983 PV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6794
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "McFadden (1984 EO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6795
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Horrocks (1984 FG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6796
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Moisseiev (1935 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6797
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jinxiuzhonghua (1981 UX9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6798
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oujianquan (1981 XK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6799
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herodotus (6550 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6800
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bergholz (1971 MG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6801
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chukokkala (1979 FE2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6802
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Omarkhayyam (1980 RT2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6803
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hergenrother (1940 GF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6804
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Durer (1982 BB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6805
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Morabito (1981 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6806
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baily (1981 PL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6807
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Claytonsmith (1974 OD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6808
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dangrania (1979 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6809
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mason-Dixon (1982 BM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6810
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Landgraf (1940 WL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6811
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kostinsky (A921 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6812
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anshan (1981 WD4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6813
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shantou (1980 VL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6814
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stellafane (1983 AO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6815
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Buchar (1984 RH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6816
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tosa (1983 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6817
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Talbot (1983 HF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6818
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jones (1983 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6819
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ellington (1953 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6820
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Novikov (1973 SX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6821
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nostalgia (1980 YH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6822
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Babcock (1955 RS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6823
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lomnicky Stit (1980 XM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6824
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wangshouguan (1979 WO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6825
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paolicchi (1980 VR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6826
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chillicothe (1934 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6827
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beruti (1962 FA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6828
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shimanto (1984 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6829
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dorsey (1982 KD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6830
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maklaj (1978 RY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6831
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Weissman (1981 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6832
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Graff (A908 AA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6833
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lupishko (1983 WH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6834
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Makarenko (1978 TZ6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6835
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Komaki (1934 CX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6836
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liller (1983 NJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6837
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Forsius (1942 RN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6838
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Irkutsk (1977 RL6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6839
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vampilov (1972 LE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6840
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brest (1974 SL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6841
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Victorplatt (1984 SA5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6842
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laocoon (1978 VG6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6843
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bidstrup (1976 GQ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6844
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Farinella (1982 FK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6845
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Martebo (1979 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6846
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bus (1982 UM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6847
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brownlee (1984 SZ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6848
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tvardovskij (1979 SF9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6849
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miune (1983 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6850
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Drukar (1975 TS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6851
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aaronson (1984 AF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6852
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Behounek (1984 BT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6853
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "McGlasson (1928 NA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6854
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ferreri (1981 EP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6855
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Patsy (1931 TS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6856
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pedersen (1984 SN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6857
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Herzberg (1984 CN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6858
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paris (1984 KF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6859
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Blixen (1985 HB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6860
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kibi (1977 EJ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6861
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Avsyuk (1983 CW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6862
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "TARDIS (1984 JZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6863
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Campins (1985 PW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6864
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Interposita (1985 QD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6865
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Golay (1985 RT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6866
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gantrisch (1985 RU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6867
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Raksha (1978 NT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6868
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schaber (1980 TG5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6869
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Somov (1981 YR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6870
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Treshnikov (1978 LB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6871
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tarkovskij (1982 YC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6872
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gerla (1951 SD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6873
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Konstantin (1975 VN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6874
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pokryshkin (1978 EA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6875
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tolstikov (1984 FT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6876
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Godel (1985 SD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6877
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Duncombe (1985 QT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6878
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Giacconi (1955 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6879
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sinon (1977 DD3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6880
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jitka (1985 UN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6881
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Muazzez (A915 TE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6882
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Omsk (1969 DA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6883
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Abramov (1977 RE6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6884
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Danby (1928 SL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6885
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Guth (1981 JZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6886
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Standish (1984 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6887
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hurukawa (1929 BD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6888
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nakano (1984 QC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6889
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kobuchizawa (1986 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6890
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Inarradas (1974 SD5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6891
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yashin (1978 TO7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6892
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mentor (1984 HA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6893
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urgenta (1975 AM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6894
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bulgakov (1982 UL7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6895
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amelin (1977 QK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6896
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fichte (1972 TD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6897
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dongguan (1978 UF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6898
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Malaparte (1980 TQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6899
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petra-Pepi (1985 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6900
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Colchagua (1981 NU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6901
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Olegiya (1971 QU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6902
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huangpu (1964 TR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6903
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Byrd (1983 AM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6904
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "French (1984 CO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6905
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vilas (1982 UX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6906
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hooke (1971 UJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6907
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tracie (1983 AS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6908
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Protesilaos (1973 UF5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6909
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ningbo (1964 VA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6910
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurybates (1973 SO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6911
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Link (1981 YS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6912
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sokolsky (1977 QE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6913
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chenqian (1980 RZ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6914
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Devine (1983 HO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6915
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Talthybius (1985 TC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6916
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ojima (1986 YD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6917
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "ASCII (1936 UB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6918
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wuyeesun (1979 XO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6919
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Milanstefanik (1982 EJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6920
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Putilin (1969 TK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6921
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carestia (1977 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6922
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cyrano (1986 TT5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6923
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Meriones (1985 VO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6924
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kakkuri (1941 UL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6925
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kataev (1978 SD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6926
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tumilty (1983 AE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6927
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Safronov (1983 WZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6928
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilinsky (1981 SX7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6929
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fracastoro (1984 HZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6930
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sigyn (1987 BV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6931
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "O''Meara (1984 UQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6932
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Davis (1984 WX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6933
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Williams Bay (A922 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6934
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Frieden (1953 XL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6935
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dermott (1986 AD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6936
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kunming (1978 UO2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6937
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eupraksia (1978 SA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6938
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lazarev (1978 QX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6939
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kemstach (1982 YP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6940
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Welther (A923 NB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6941
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baumann (1987 MA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6942
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dzus (A908 TC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6943
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Barringer (1982 RU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6944
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sharon (1984 SH5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6945
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Trubetskaya (1970 NB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6946
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1974 FV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6947
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polypoites (1985 TL3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6948
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kraft (1984 YC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6949
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pieters (1985 FA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6950
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Widorn (1982 TU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6951
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Annenskij (1979 YN8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6952
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maxhell (1981 PQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6953
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "IRAS (1983 QF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6954
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yangzhou (1983 VP7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6955
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hurban (1983 XM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6956
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hancock (1984 DH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6957
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Trebon (1983 XS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6958
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rokoske (1987 SY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6959
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Belinskij (1975 VY5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6960
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiang (1983 NK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6961
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kathleen (1931 FM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6962
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piironen (1984 AP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6963
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Romanskaya (1936 OH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6964
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Junepatterson (1983 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6965
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "DiMaggio (1986 LC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6966
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Monroe (1937 RB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6967
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piaf (1982 UR7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6968
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Megumi (1987 YC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6969
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vartiovuori (1938 GG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6970
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kieffer (1985 JV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6971
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chopin (1986 UL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6972
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yamada (1988 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6973
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aivazovskij (1977 RG7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6974
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Leonteus (1985 TE3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6975
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sthenelos (1985 TF3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6976
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lene (1986 XJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6977
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thrasymedes (1985 VS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6978
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tuchkova (1981 TP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6979
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Karma (1953 TH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6980
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lidaksum (1965 AK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6981
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chugainov (1975 VG9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6982
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Robinson (1983 AR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6983
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hoshino (1986 WC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6984
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Trelleborg (1986 RL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6985
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "OISCA (1987 DM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6986
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lujiaxi (1966 BZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6987
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neyachenko (1979 SA10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6988
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sindel (1982 DY1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6989
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Borngen (1987 EW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6990
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Plovdiv (1986 PM4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6991
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Langley (1988 BH4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6992
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mayre (1988 CG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6993
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Quaide (1988 KJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6994
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Verbano (1972 RQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6995
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Earhart (1987 DE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6996
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pordenone (1987 WB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6997
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wichterle (1982 SN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6998
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yoritomo (1986 AL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:6999
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Honda (1988 DQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7000
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chao (1987 KE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7001
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kilmartin (A904 PC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7002
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gladys (1988 JD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7003
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Liszt (1988 SF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7004
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otomo (1940 QB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7005
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kotogahama (1987 SE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7006
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Radzievskij (1976 SN3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7007
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tret''yakov (1977 SS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7008
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Edshay (1984 SC5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7009
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Toatenmongakkai (1987 PB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7010
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bretagnon (1932 EO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7011
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huruhata (1953 GO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7012
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yoshida (1986 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7013
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bruckner (1988 RF3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7014
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shekhtelia (1976 YW2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7015
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Voronikhin (1979 YM8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7016
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lise (1983 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7017
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maxine (1983 LM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7018
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klepesta (1983 VP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7019
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brorsen (1983 VV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7020
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stodola (1984 BL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7021
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Raybatson (1985 CX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7022
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heimdal (1987 SO3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7023
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wagner (1987 SA7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7024
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shinagawa (1950 JB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7025
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schumann (1964 ED)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7026
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "List''ev (1971 SN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7027
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euryalos (1973 SR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7028
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1986 WD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7029
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miyamotoyohko (1988 DN1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7030
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erikhog (5142 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7031
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lowengrub (1953 RG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7032
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crovisier (1981 DP2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7033
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Demophon (1985 TQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7034
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cecilgreen (1986 JV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7035
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Balder (1987 SB5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7036
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deipylos (1987 YT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7037
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euforbo (1989 CG2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7038
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Menestheus (1973 SW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7039
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rostovdon (1981 RD2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7040
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asuka (1982 XV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7041
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polakis (1983 AC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7042
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Podalirius (1985 VK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7043
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lowe (1986 TL2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7044
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sumiko (1988 BF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7045
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chahine (1989 EB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7046
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nada (1989 EW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7047
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Keats (1977 CZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7048
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hrabal (1981 ST)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7049
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sveta (1982 TH3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7050
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miles (1983 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7051
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stasik (1988 DR4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7052
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kalchas (1973 SM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7053
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Branham (1976 VA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7054
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vladvasil''ev (1981 SW6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7055
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Weber (1985 JF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7056
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Santini (1989 BE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7057
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Freeman (1989 GK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7058
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "SAF (1940 WA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7059
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Saaremaa (1941 HC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7060
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Riemann (1978 TQ7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7061
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Celsius (1980 FO3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7062
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semmelweis (1980 PT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7063
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pikulia (1982 SB6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7064
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sudek (1987 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7065
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tamashima (1977 DT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7066
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Breysacher (1981 DH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7067
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shuya (1982 SA13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7068
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orosz (1984 JA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7069
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Minitti (1985 CB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7070
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chernova (1986 RO2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7071
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiselev (1986 RQ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7072
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Briggs (1986 TG4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7073
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosniblett (1987 RT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7074
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sansyu-Asuke (1987 SB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7075
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shikoku (1988 JM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7076
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Susa (1988 KG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7077
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Damiaan (1989 RE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7078
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "van den Bergh (1973 ST1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7079
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lidov (1979 FV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7080
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Perun (1984 UG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7081
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Waltari (1940 YE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7082
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Novosibirsk (1976 GQ6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7083
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rubtsov (1988 PU4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7084
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tokyotech (1989 TQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7085
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heisei (1989 UK3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7086
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kodaihasu (1989 VH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7087
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Garibaldi (1980 DA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7088
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bata (1980 DE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7089
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bickel (1981 YA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7090
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ries (1982 KB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7091
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Poulydamas (1988 RU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7092
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tiburcio (1989 LX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7093
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kyoto (1989 UW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7094
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Korinthos (2069 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7095
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pillmore (1981 JC2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7096
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seifert (1982 OR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7097
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Voigt (1988 JF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7098
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Snelling (1988 PT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7099
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Geyer (1988 PB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7100
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Uenohara (1989 WD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7101
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsunemori (1987 DP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7102
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otava (1987 QD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7103
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kamuimintara (1989 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7104
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lecar (1931 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7105
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Golden (1949 GH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7106
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arkhipova (1967 DB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7107
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Holeungholee (1978 WU14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7108
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ortizmoreno (1983 EX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7109
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sykes (1983 WR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7110
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Carolyn (1985 TT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7111
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phildavis (1986 EO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7112
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sobinov (1987 RX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7113
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ruriko (1988 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7114
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bihoro (1990 DS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7115
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sayama (1990 EL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7116
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Radonezhskij (1987 QQ11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7117
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 AK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7118
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Naitomitsu (1988 TG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7119
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dassanowsky (1988 VS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7120
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shinkoyama (1989 AG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7121
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurypylos (1989 CJ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7122
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elizabethann (1989 KG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7123
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Okamura (1990 DV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7124
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Petercollins (1990 FV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7125
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gorbatskij (A917 SG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7126
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sinuhe (1939 BM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7127
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Louvre (1971 QW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7128
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Copland (1985 GM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7129
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Valgrirasp (1987 RR3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7130
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mossotti (1989 BO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7131
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phoinix (1989 CQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7132
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Massachusetts (1990 KP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7133
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fanynka (1986 UT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7134
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mika (1987 XD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7135
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Menkaure (1983 RY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7136
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piestany (1986 TP6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7137
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Broman (1987 ME1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7138
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yanotoyohiko (1988 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7139
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wislicenus (1931 EE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7140
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Meadows (1985 RE4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7141
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pizarro (1988 CT3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7142
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vulkaneifel (1989 GR6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7143
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mamoru (1990 OM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7144
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zadunaisky (1976 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7145
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laplace (1986 RU4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7146
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sumoto (1936 YD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7147
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Falta (1984 SM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7148
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Takuboku (1988 HB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7149
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bortle (1988 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7150
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mediolanum (1985 RU3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7151
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Khryses (1988 PY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7152
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polydoros (1988 RT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7153
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ennomos (1988 TU2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7154
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iwaizumi (1989 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7155
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Toyohiro (1989 SH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7156
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7157
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urey (1989 UL5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7158
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kaneko (1989 WX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7159
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agelaos (4271 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7160
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xingmingzhou (1980 XZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7161
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Froeschle (1981 JG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7162
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rovereto (1988 RF5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7163
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tokiwagozen (1989 WV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7164
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 WE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7165
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Panthoos (5010 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7166
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hartley (1988 PH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7167
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Frankdrake (1989 VM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7168
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iphidamas (1988 PB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7169
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lykaon (1988 RK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7170
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Veveri (1989 TG17)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7171
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asteropaios (1990 VH7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7172
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fay (1985 RZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7173
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dares (1988 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7174
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Misenus (1988 RV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7175
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sergestus (1988 RM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7176
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palinurus (1988 TU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7177
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Meges (1989 AL2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7178
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thoas (1989 AM2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7179
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 BQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7180
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Medon (1989 CK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7181
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bickerton (1989 ME)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7182
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Otaynang (1989 UY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7183
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Megantic (1990 DR4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7184
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tutenchamun (3233 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7185
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Badillo (1988 VB3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7186
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polites (1989 SZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7187
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shcherban'' (1989 UK8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7188
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fukaya (1990 EC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7189
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zykina (1974 VG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7190
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tomoegozen (1986 YA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7191
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thessandrus (1989 AN2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7192
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pardina (1969 GD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7193
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brumberg (1970 PS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7194
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhoushan (1981 XH2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7195
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rephiltim (1983 AO2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7196
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Texstapa (1984 EA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7197
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Askalaphus (1988 BW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7198
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kibeshigemaro (1990 FC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7199
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gold (1990 SF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7200
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wellnitz (1991 NT1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7201
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Niinoama (1991 PA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7202
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kanroku (1977 DR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7203
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glia (1983 CF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7204
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Showa (1990 FT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7205
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Choukyongchol (1991 PM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7206
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kabashima (1986 VG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7207
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Teller (1989 GL5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7208
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurymedon (9507 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7209
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Roccapalumba (1984 HE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7210
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agapenor (1985 TG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7211
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bechmann (1985 VP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7212
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1986 TS6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7213
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Androgeos (1988 BX1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7214
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Halaesus (1988 BY1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7215
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tuttle (1991 US2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7216
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Theotes (1973 SW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7217
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Colpa (1974 ME)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7218
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arai (1991 XT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7219
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goetzoertel (1949 QQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7220
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Manara (1982 FJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7221
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Korsor (1988 EU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7222
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7223
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bitias (1988 TZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7224
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 BL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7225
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Achaemenides (1989 CH2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7226
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ilioneus (1989 SC7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7227
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ebilson (1990 SM2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7228
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baggaley (1990 UG2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7229
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rumoi (1990 VH4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7230
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kida (1990 XH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7231
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Achates (1991 XX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7232
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pholus (1992 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7233
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gierasch (1940 GO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7234
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Piemonte (1982 BW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7235
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Donalu (1990 SB4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7236
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 UR2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7237
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 VO3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7238
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yabuki (1991 CC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7239
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tanakawataru (1992 ET)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7240
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dortmund (1981 RP2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7241
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 CW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7242
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tsurui (1991 AE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7243
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1941 HA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7244
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ioffe (1980 TL13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7245
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Verne (1988 JV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7246
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RL10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7247
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amphilochos (1973 SQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7248
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ulysses (1986 VG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7249
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Farquhar (1988 NN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7250
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RS10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7251
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 AU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7252
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Epeigeus (1989 BB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7253
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Brucegoldberg (1990 XB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7254
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arrius (1991 GY9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7255
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Telephus (1991 KC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7256
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lindstrom (1988 SO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7257
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pyrrhus (1989 BW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7258
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orsilocus (1989 CK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7259
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Krethon (1989 EO11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7260
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 AJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7261
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bentengahama (1991 BQ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7262
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Onnetoh (1991 CB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7263
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Masayo (1991 CE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7264
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wilkickia (1982 SG4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7265
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Filatov (1982 UB7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7266
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 JE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7267
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aoki (1991 LD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7268
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sekiguchi (1992 EL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7269
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 QH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7270
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rozhdestvenskij (1975 VD9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7271
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Goncharov (1976 YC2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7272
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1978 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7273
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vitagliano (1984 SW5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7274
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hokutosei (1989 AM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7275
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Takachiho (1990 DM)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7276
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kameoka (1990 BS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7277
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eumelos (1990 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7278
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lorre (1990 QJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7279
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Couturier (1990 RW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7280
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Andymurray (1991 JZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7281
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Autumn (1983 HB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7282
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tunguska (1988 PK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7283
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TO11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7284
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 YK8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7285
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cherkashin (1990 UQ11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7286
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiyosato (1991 VK5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7287
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oberkochen (1993 BF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7288
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rumyantsev (1972 RY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7289
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cloanthus (1988 TH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7290
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 AJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7291
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 VZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7292
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Durisen (1953 FK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7293
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lesliegreen (1978 LG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7294
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oshima (1990 VB4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7295
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jimmiller (1991 NK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7296
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rausudake (1992 CE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7297
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Iwamori (1990 UY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7298
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kuwana (1993 DA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7299
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ingelehmann (1993 GG)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7300
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gyas (1988 RF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7301
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deikoon (1988 TA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7302
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 VU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7303
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mochihito-o (1990 XK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7304
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Traversa (1991 CA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7305
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amphimachus (1992 HS3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7306
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hildebrand (1977 PO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7307
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rosstaylor (1985 VF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7308
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sanenobufukui (1990 XA)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7309
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yamamotoshinobu (1991 AB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7310
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eneev (1978 SO4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7311
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 TN4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7312
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 FV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7313
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kandatai (1991 GG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7314
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 OP7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7315
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jurafrance (1989 YF5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7316
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Babel'' (1987 QV10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7317
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 XW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7318
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shinsengumi (1989 AH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7319
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bradstreet (1990 DB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7320
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peterson (1991 PQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7321
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 SZ14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7322
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "GOI (1974 SJ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7323
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 HF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7324
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Josephblack (1993 VM5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7325
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rutger (1975 LR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7326
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TU5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7327
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kathywhaler (1990 WK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7328
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 SX17)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7329
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shouichi (1992 UV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7330
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pindarus (1973 SK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7331
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Zhvanetskij (1976 GK3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7332
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Khadzhinov (1979 FQ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7333
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Feliksobolev (1981 TJ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7334
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Denzilrobert (1983 AN2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7335
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Harryatkinson (1991 PS12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7336
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 TH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7337
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "United Nations (1987 UN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7338
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7339
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Telford (1991 RO6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7340
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Naotosato (1992 YA3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7341
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ryokan (1982 BQ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7342
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Parmenides (1989 RS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7343
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Junichi (1992 CE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7344
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Robbia (5182 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7345
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 QR11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7346
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 DJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7347
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 HV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7348
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gryphon (1990 YH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7349
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Johnfletcher (1991 BY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7350
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kondojiro (1994 EQ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7351
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polybius (1983 TR2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7352
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1980 PB3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7353
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chikushi (1989 CV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7354
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Maiztegui (1989 WL7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7355
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isaosato (1992 UO4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7356
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 UN3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7357
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hideo (1994 AX1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7358
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Univermoscow (1969 TX5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7359
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dubinin (1977 AZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7360
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tunis (1979 KO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7361
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Heinlein (1985 GS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7362
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Walker (1985 JW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7363
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Vrba (1987 VA1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7364
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tokushima (1988 XU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7365
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Takashimizuno (1990 HR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7366
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Georgealexander (1991 GQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7367
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Susono (1993 XX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7368
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tirol (1988 CV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7369
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Isoda (1994 AG3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7370
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Refugium (1987 SZ6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7371
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1987 VT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7372
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Muzzio (1976 AH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7373
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1986 TR6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7374
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kaye (1987 DY4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7375
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tomohiro (1994 JO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7376
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gvishiani (1976 QE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7377
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 BN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7378
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kolya (1973 SS4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7379
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nagahama (1992 EL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7380
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Celentano (1987 HM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7381
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 CX5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7382
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 EF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7383
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Benzenberg (1992 FB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7384
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 VA7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7385
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Masuisakura (1992 DK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7386
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juanclaria (1969 GC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7387
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Virgiliomarcon (1991 GL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7388
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kukai (1992 CO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7389
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miyazaki (1990 TW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7390
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lewispearce (1992 OJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7391
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fukui (1993 TP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7392
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Solti (1992 MC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7393
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lewiscarroll (1994 AO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7394
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laomedon (3104 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7395
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tithonus (3108 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7396
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Toshihanda (1993 XT)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7397
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Davidlean (1995 BK3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7398
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nessus (1993 HA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7399
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kiyose (1993 XE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7400
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hiera (1989 AV2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7401
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Glinos (1990 OJ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7402
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Longtom (1992 YL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7403
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haramura (1995 WU41)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7404
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Euneus (1973 SH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7405
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Semois (1988 SQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7406
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anticlus (1973 SM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7407
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Gerhard (1977 FS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7408
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dacke (1979 QX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7409
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nara (1993 CL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7410
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 VW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7411
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hyakutake (1991 XC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7412
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Balindblad (1985 TV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7413
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 CO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7414
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Xanthomalitia (1985 QX4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7415
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1984 DE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7416
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ogilsbie (1993 GE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7417
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Changchun (1994 XO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7418
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prylis (1973 SY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7419
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 WO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7420
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 FJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7421
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yumi (1993 GH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7422
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 SR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7423
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1983 VH1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7424
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1986 TT6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7425
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Morita (1996 BK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7426
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dolon (1987 QN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7427
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lagerros (1978 QC3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7428
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kaseda (1995 DK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7429
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Juzoitami (1997 OX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7430
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 OK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7431
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Williamknight (1991 SK)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7432
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deliyannis (1957 JP)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7433
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anius (1973 SD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7434
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peterthomas (1989 RB6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7435
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tyndareus (5493 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7436
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Seeberg (1976 DJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7437
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TF7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7438
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Agrius (1973 SE1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7439
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Takayuki (1992 UM3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7440
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Wolkenstein (3002 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7441
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurysaces (4523 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7442
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 OZ9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7443
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asbolus (1995 GO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7444
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Daitarabochi (1994 VC7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7445
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 US)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7446
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sano (1990 TM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7447
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "AMOS (1996 AO3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7448
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Keneke (1998 EH12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7449
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eliason (1981 JB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7450
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 UW2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7451
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 UJ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7452
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sawaishujiro (1995 YK3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7453
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 EU2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7454
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mnesthus (1988 RG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7455
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 UX5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7456
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kawane (1990 AD)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7457
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 RX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7458
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nanyang (1995 VU18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7459
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stefanovalentini (1998 DJ11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7460
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhesus (5191 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7461
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 WO8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7462
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 MO19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7463
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Erichthonios (1996 HU10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7464
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 PS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7465
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hohmann (1996 FU13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7466
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lycomedes (6581 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7467
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Nauplius (1973 SO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7468
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oceax (1973 SP1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7469
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 OK8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7470
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7471
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 SJ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7472
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thersander (6540 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7473
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurymachos (6591 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7474
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antimachos (1973 SS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7475
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 EN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7476
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Oileus (6541 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7477
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Al-Biruni (1986 PN4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7478
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Malytheatre (1976 YF3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7479
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sakka (1993 VG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7480
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chariklo (1997 CU26)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7481
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amphiaraos (6629 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7482
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 RF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7483
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peterbluhm (1991 GM10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7484
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hylonome (1995 DW2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7485
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mali Losinj (1998 UT15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7486
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TJ14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7487
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kanetugu (1995 WC4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7488
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Mameta (1996 VB9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7489
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Yanjici (1997 BB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7490
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phemios (5187 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7491
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kostyukova (1978 QE)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7492
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 UZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7493
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 UB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7494
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 LR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7495
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 AO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7496
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Lorenzalevy (1998 SW60)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7497
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dolios (1973 SL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7498
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Stenmark (1980 FJ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7499
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 CS8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7500
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 JO26)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7501
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Laertes (1973 SA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7502
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RN11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7503
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 SL3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7504
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TS25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7505
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 YY5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7506
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VU4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7507
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XN77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7508
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XZ77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7509
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XX93)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7510
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 FU34)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7511
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alcinoos (4139 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7512
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Demodokus (4655 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7513
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RG10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7514
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RM11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7515
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thersilochos (1990 VL6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7516
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Solikamsk (1992 SU21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7517
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Boucolion (1993 BD4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7518
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Asios (1993 BZ12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7519
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 BQ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7520
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 GO24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7521
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Balios (1997 VV1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7522
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baton Rouge (1998 SG27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7523
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Teruhime (1988 VY2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7524
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7525
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Echemmon (1990 TV12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7526
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Angel (1992 LF)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7527
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kagayayutaka (1993 SD2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7528
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aretaon (1997 JB16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7529
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TT9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7530
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Robertgrimm (1998 SD2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7531
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RM11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7532
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Miroshnikov (1981 RF2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7533
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Imranakperov (1986 RB12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7534
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Actor (1987 YU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7535
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Koon (1988 QY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7536
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jepejacobsen (1993 OX6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7537
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prothoon (1996 GE19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7538
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 QB69)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7539
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Briangrazer (1998 SP36)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7540
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ascanios (2035 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7541
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peiraios (1973 SL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7542
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 VG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7543
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 FY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7544
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Alkimos (1991 GX1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7545
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 QD2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7546
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eteoneus (1998 TL15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7547
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 TG16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7548
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UF21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7549
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VM15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7550
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WZ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7551
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 TZ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7552
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eumaios (1973 SF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7553
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Melanthios (1973 SY1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7554
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Halitherses (1973 SB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7555
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 UA6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7556
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 EJ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7557
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Podarkes (1991 HN)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7558
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tigris (1993 BE5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7559
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 SO8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7560
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7561
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Augeias (1996 TS49)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7562
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Echion (1997 VB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7563
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 VG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7564
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dannymeyer (1998 MJ14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7565
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Marcallen (1998 MD38)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7566
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 SQ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7567
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 SU52)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7568
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 TU12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7569
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 TP17)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7570
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UQ16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7571
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 US24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7572
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VU6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7573
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WX9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7574
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XS31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7575
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XO79)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7576
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RV165)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7577
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Antiphos (5159 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7578
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orestes (1973 SX)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7579
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Savanov (1982 TK1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7580
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RV12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7581
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Urabe (1992 WF1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7582
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Perimedes (1996 TN49)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7583
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 WW7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7584
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UZ8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7585
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UM18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7586
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UF31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7587
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Davewilliams (1998 XG24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7588
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XR13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7589
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Neely (1999 XH143)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7590
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XT160)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7591
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 RE7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7592
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XD51)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7593
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XA187)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7594
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AK156)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7595
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 RM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7596
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VS32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7597
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Beletic (1999 DC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7598
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AR25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7599
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AK119)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7600
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CC20)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7601
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Atreus (1973 SU)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7602
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VY29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7603
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 WB2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7604
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA202)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7605
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 FQ48)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7606
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ehdita (1987 RO5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7607
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Paquet (1991 PG7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7608
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 UZ23)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7609
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Babylon (1998 DH34)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7610
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VU30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7611
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WX4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7612
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WN11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7613
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NV27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7614
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RF56)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7615
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VW24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7616
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XH133)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7617
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YY2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7618
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA80)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7619
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AT177)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7620
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AG191)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7621
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CN3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7622
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 JA65)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7623
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tlepolemos (9612 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7624
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Periphas (4168 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7625
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 VN4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7626
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 QB1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7627
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 SB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7628
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 SC)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7629
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 GV9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7630
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 JS)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7631
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 JR1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7632
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 TB)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7633
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 DA2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7634
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TL66)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7635
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TP66)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7636
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 CR29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7637
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 MA11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7638
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CM8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7639
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RB101)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7640
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VQ24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7641
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YN12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7642
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RD12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7643
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 BO)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7644
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Daitor (1991 VZ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7645
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 XM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7646
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 JQ1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7647
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 AL1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7648
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bredthauer (1998 FR10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7649
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 FX68)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7650
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 MQ11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7651
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VV2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7652
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WR21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7653
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NB38)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7654
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NZ41)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7655
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 SS3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7656
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 GJ127)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7657
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(3560 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7658
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Caniff (4652 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7659
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aisakos (1024 T-1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7660
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pheidippos (1973 SV)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7661
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1978 VF11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7662
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RY10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7663
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RH13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7664
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 RL13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7665
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1988 SW1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7666
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Charleroi (1989 DL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7667
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 UO5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7668
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hippasos (1991 XG1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7669
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 RD58)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7670
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 YM3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7671
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NA38)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7672
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RN116)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7673
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RV199)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7674
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 SW7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7675
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XJ156)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7676
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XY187)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7677
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XW211)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7678
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BA27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7679
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OU30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7680
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Hyperenor (3163 T-1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7681
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Anchialos (5167 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7682
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Dardanos (2140 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7683
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Drymas (4035 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7684
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1987 DQ6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7685
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shimomoto (1990 WN5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7686
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 AY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7687
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Demoleon (1996 HV9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7688
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QV49)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7689
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QY177)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7690
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Torasan (2000 RR53)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7691
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RL100)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7692
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SC6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7693
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1994 VK8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7694
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 SZ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7695
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TO66)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7696
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 EL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7697
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Chaos (1998 WH24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7698
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 WT4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7699
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BD5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7700
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CH67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7701
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 ST317)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7702
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Jamesalbers (2000 TT58)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7703
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Aigyptios (1973 SU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7704
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Varuna (2000 WR106)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7705
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1992 UN5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7706
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 QZ9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7707
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RA33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7708
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TR66)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7709
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VF30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7710
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WG20)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7711
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RC198)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7712
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 TV96)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7713
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XA32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7714
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XG91)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7715
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XP101)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7716
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XS143)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7717
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XG191)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7718
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XM193)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7719
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 EE36)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7720
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Fountainhills (2000 WE147)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7721
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polyneikes (2638 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7722
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Tydeus (5151 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7723
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Arkesilaos (1973 SS1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7724
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1985 VY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7725
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RF33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7726
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pandion (1996 TC51)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7727
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TB28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7728
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TD28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7729
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TM28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7730
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VL27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7731
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WJ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7732
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WA15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7733
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XO89)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7734
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VQ10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7735
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VV12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7736
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XM71)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7737
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XK77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7738
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XO82)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7739
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XQ96)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7740
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XR170)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7741
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XK192)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7742
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XW257)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7743
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AQ14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7744
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AP21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7745
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AS25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7746
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AU31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7747
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AD75)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7748
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WD49)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7749
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7750
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Klonios (4572 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7751
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Prothoenor (6020 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7752
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Polyxenos (5030 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7753
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XV83)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7754
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XA160)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7755
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AP33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7756
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AU57)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7757
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AK95)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7758
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AO100)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7759
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AN146)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7760
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AY182)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7761
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CS8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7762
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 HM40)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7763
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 PO8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7764
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YH62)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7765
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YH119)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7766
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 AO16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7767
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elephenor (9602 P-L)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7768
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Epistrophos (4536 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7769
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Schedios (5146 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7770
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 TX11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7771
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 EL)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7772
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Epicles (1994 ES6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7773
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RW29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7774
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 UX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7775
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 KZ3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7776
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TA28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7777
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 TV33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7778
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 UH16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7779
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VD30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7780
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WY8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7781
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XA13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7782
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 YP6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7783
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NB63)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7784
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RU134)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7785
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VZ52)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7786
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XV80)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7787
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XD94)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7788
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XY101)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7789
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XW167)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7790
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YO22)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7791
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YR27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7792
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AJ87)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7793
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AC115)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7794
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA160)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7795
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AB175)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7796
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AD177)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7797
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AX193)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7798
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BU22)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7799
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OP32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7800
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 PR25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7801
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QE42)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7802
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QL63)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7803
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QS104)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7804
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QU167)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7805
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QG173)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7806
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QF198)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7807
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RP100)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7808
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RF103)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7809
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SS165)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7810
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SJ310)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7811
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SH313)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7812
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SY317)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7813
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WU157)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7814
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YL102)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7815
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YR102)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7816
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 AC25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7817
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 AN37)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7818
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BZ)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7819
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BS15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7820
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CH)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7821
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CP11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7822
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CP18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7823
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CE21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7824
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CX27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7825
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CN33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7826
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CB35)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7827
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Kapaneus (4613 T-2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7828
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 SM55)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7829
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RK30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7830
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 QJ4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7831
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 HJ151)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7832
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RN72)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7833
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RQ116)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7834
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CK103)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7835
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 JP70)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7836
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RD88)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7837
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 XN9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7838
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BM50)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7839
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BC76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7840
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 GQ21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7841
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 WB37)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7842
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 SM165)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7843
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 DE9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7844
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 LT32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7845
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 FD1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7846
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FL145)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7847
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Baehr (1988 FM1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7848
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Shuji (2000 EE101)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7849
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ixion (2001 KX76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7850
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1990 YY)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7851
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eurydamas (1994 CR18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7852
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 BN16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7853
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 ED6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7854
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 HL14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7855
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 MO44)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7856
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 JZ78)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7857
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NE9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7858
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NH11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7859
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 TD10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7860
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 DZ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7861
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 FC1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7862
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OG45)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7863
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QK100)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7864
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RS80)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7865
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RW82)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7866
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RO85)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7867
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Phegeus (3250 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7868
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Idaios (3365 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7869
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Echepolos (4101 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7870
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Peterburgtrista (1978 SX2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7871
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Helicaon (1994 CX13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7872
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 MU31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7873
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 OM12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7874
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 NE11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7875
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RK134)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7876
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RS150)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7877
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Elatus (1999 UG5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7878
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BK16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7879
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OP51)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7880
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QA88)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7881
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QL214)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7882
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RS40)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7883
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RQ83)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7884
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RW96)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7885
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RZ96)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7886
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RR97)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7887
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RC100)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7888
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SP25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7889
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SP93)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7890
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SB132)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7891
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SL174)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7892
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SD234)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7893
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SV289)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7894
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SG348)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7895
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 ST354)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7896
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WX182)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7897
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 XX37)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7898
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YS11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7899
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YV135)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7900
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 OL31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7901
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Thereus (2001 PT13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7902
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QU277)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7903
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Apisaon (1990 TP12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7904
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 QY9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7905
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 CU29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7906
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 BU48)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7907
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VG44)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7908
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA231)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7909
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SA191)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7910
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WN2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7911
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CJ28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7912
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QE91)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7913
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 RG87)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7914
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RS25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7915
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RV27)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7916
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 TV28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7917
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 SN165)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7918
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VQ15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7919
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XM74)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7920
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XB211)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7921
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XT213)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7922
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XB214)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7923
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XS248)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7924
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AV19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7925
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BQ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7926
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QA157)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7927
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SN209)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7928
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YL101)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7929
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BQ77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7930
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BU80)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7931
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CN21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7932
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CW32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7933
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CA39)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7934
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amphios (3040 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7935
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 OU2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7936
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TY68)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7937
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VR38)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7938
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 XJ5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7939
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Rhadamanthus (1999 HX11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7940
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 HB12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7941
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 WS4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7942
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XH162)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7943
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XC210)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7944
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XR213)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7945
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YC13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7946
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AN6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7947
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AU45)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7948
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA113)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7949
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AY161)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7950
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AW183)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7951
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Huya (2000 EB173)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7952
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YQ139)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7953
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BK9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7954
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BE24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7955
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BB62)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7956
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 DQ10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7957
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 BU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7958
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CE13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7959
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1978 VC7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7960
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 KR16)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7961
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 YO14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7962
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AB33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7963
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AS105)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7964
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YP96)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7965
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BN42)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7966
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CT13)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7967
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CS32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7968
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 DJ26)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7969
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 UR163)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7970
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Typhon (2002 CR46)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7971
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CQ134)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7972
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RJ28)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7973
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1991 VD4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7974
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 OX3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7975
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 PV29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7976
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 RF29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7977
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 TC36)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7978
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 GN171)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7979
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QS103)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7980
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QN116)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7981
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RU69)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7982
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SO56)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7983
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SG131)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7984
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SL298)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7985
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 TG64)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7986
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1989 WJ2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7987
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1995 TL8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7988
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 JJ10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7989
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Skamander (1997 JG15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7990
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Pelion (1998 QM107)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7991
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RA215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7992
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Quaoar (2002 LM60)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7993
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QJ12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7994
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QH137)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7995
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QZ165)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7996
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QU176)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7997
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RX25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7998
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SC17)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:7999
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SU333)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8000
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 TA42)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8001
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 AT33)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8002
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QQ60)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8003
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QJ256)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8004
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QH267)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8005
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QZ292)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8006
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1997 HN2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8007
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 HM151)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8008
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ophelestes (1998 MW41)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8009
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Okyrhoe (1998 SG35)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8010
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Cyllarus (1998 TF35)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8011
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Deucalion (1999 HU11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8012
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 PY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8013
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 VB154)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8014
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XG132)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8015
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AA54)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8016
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 PJ30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8017
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Bienor (2000 QC243)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8018
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SE310)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8019
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SZ344)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8020
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SX362)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8021
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WO180)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8022
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 AS9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8023
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QM73)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8024
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 RP132)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8025
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 TF19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8026
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 TY229)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8027
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 UC73)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8028
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 AW34)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8029
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 AW197)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8030
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CU15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8031
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CP82)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8032
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Amycus (2002 GB10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8033
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GK105)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8034
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 TX300)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8035
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 UX25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8036
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VE95)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8037
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SK2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8038
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SA92)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8039
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SS161)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8040
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 TD39)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8041
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 UY124)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8042
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 TW240)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8043
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Logos (1997 CQ29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8044
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Palmys (1998 MK47)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8045
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 TC31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8046
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CL158)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8047
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XB257)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8048
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AR184)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8049
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BQ21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8050
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CH105)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8051
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CM114)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8052
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Echeclus (2000 EC98)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8053
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 EE173)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8054
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 FD8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8055
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 FE8)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8056
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SX186)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8057
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 TB43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8058
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YN120)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8059
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BD25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8060
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BL41)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8061
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 DH4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8062
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CC4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8063
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 EH130)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8064
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 FU36)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8065
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Ceto (2003 FX128)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8066
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Archeptolemos (1305 T-3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8067
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 OF4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8068
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Borasisi (1999 RZ253)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8069
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XW261)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8070
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 RH142)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8071
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 VW15)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8072
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 KW2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8073
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WW24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8074
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WA25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8075
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WA31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8076
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WU31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8077
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 PN34)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8078
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 PK30)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8079
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RQ91)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8080
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SA182)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8081
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WE132)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8082
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YM5)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8083
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 UE188)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8084
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 XW93)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8085
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sila-Nunam (1997 CS29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8086
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CP133)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8087
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CC158)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8088
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 DF9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8089
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RY138)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8090
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CM105)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8091
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 TY40)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8092
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YW134)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8093
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FZ173)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8094
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FM185)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8095
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FP185)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8096
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Crantor (2002 GO9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8097
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 TC302)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8098
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VR128)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8099
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 VS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8100
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 HP151)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8101
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 KR65)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8102
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 VA50)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8103
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WR10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8104
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 OY3)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8105
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RY215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8106
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OO67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8107
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QB243)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8108
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KE76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8109
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KK76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8110
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KF77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8111
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Teharonhiawako (2001 QT297)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8112
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 FQ97)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8113
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Sedna (2003 VB12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8114
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Orcus (2004 DW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8115
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 GV9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8116
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 HK151)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8117
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 US43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8118
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RZ215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8119
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GX32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8120
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GZ32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8121
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 RA103)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8122
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 VC92)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8123
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 AS2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8124
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 SZ135)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8125
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 BE25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8126
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 XN72)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8127
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 FC99)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8128
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 AX46)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8129
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1996 TQ66)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8130
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 HT11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8131
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 HC12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8132
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OY51)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8133
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OM67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8134
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KJ76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8135
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KP76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8136
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KC77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8137
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KN77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8138
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KP77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8139
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 SQ73)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8140
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 UO18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8141
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CY224)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8142
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 KX14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8143
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 PA149)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8144
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VR130)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8145
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 WC19)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8146
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 CO1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8147
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 FY128)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8148
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 OP32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8149
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 UR292)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8150
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 EW95)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8151
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Salacia (2004 SB60)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8152
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 TY364)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8153
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 XX143)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8154
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 WK183)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8155
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 YH140)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8156
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 YJ140)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8157
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CX154)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8158
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 CC249)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8159
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 XU93)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8160
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 FC128)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8161
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 YL61)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8162
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CE119)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8163
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 HR11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8164
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 JG81)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8165
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FL194)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8166
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QZ113)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8167
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 XS254)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8168
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 XT254)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8169
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 XH255)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8170
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 FB128)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8171
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 PQ21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8173
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RH215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8174
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AX29)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8175
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 BT24)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8176
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OJ67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8177
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KO76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8178
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QT322)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8179
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GG32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8180
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 PB171)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8181
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Haumea (2003 EL61)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8182
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 LG7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8183
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Eris (2003 UB313)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8184
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 WL7)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8185
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Makemake (2005 FY9)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8186
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RE215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8187
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RB216)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8188
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 AJ114)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8189
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OK67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8190
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 QM251)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8191
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QG298)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8192
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 SS317)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8193
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 UY117)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8194
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 US292)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8195
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 YO179)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8196
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 UX10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8197
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 RM43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8198
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 RN43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8199
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 RR43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8200
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 SA278)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8201
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 TB190)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8202
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 UJ438)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8203
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2006 RY102)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8204
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RA216)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8205
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 CR105)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8206
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Altjira (2001 UQ18)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8207
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 XA255)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8208
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VS130)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8209
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VA131)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8210
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 QZ91)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8211
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 CZ31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8212
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 BO25)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8213
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2006 JR)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8214
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 OL67)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8215
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YB131)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8216
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KN76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8217
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KV76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8218
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 PD149)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8219
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 RL43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8220
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 GE147)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8221
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 GP183)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8222
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 FR185)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8223
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "Varda (2003 MW12)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8224
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 PF115)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8225
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1993 FW)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8226
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1998 WT31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8227
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CV118)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8228
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CG119)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8229
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 CO153)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8230
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 HW11)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8231
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(1999 RD215)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8232
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YU1)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8233
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2000 YC2)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8234
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KU76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8235
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QW297)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8236
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 FU6)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8237
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GZ31)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8238
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 GJ32)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8239
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 TG58)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8240
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 DJ64)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8241
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 DJ71)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8242
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 PB112)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8243
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 EO302)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8244
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 JG43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8245
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 RZ281)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8246
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 PH37)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8247
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 UQ513)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8248
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 AZ84)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8249
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 OR10)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8250
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 UK126)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8251
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 XA192)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8252
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 DU112)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8253
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2006 SX368)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8254
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 KY14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8255
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 QY297)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8256
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2007 JJ43)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8257
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2008 FC76)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8258
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 PR21)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8259
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 QU182)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8260
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2008 QY40)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8261
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2001 KQ77)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8262
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 KW14)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8263
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 MS4)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8264
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2002 VU130)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8265
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2003 QW90)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8266
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2004 PG115)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8267
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
msgid "(2005 CB79)"
msgstr ""
#. +> trunk5
#: kstars_i18n.cpp:8268
#, kde-kuit-format
msgctxt "Asteroid name (optional)"
Index: trunk/l10n-support/templates/summit/messages/extragear-edu/labplot2.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-edu/labplot2.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-edu/labplot2.pot (revision 1509808)
@@ -1,17550 +1,17563 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:42+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 trunk
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 trunk
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5
#: src/backend/cantorWorksheet/CantorWorksheet.cpp:95
#, kde-format
msgid "no PanelPluginHandle found for the Cantor Part."
msgstr ""
#. +> trunk5
#: src/backend/cantorWorksheet/CantorWorksheet.cpp:256
#, kde-format
msgid "no Cantor worksheet element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/cantorWorksheet/CantorWorksheet.cpp:263
#: src/backend/core/column/Column.cpp:815
#: src/backend/datapicker/DatapickerCurve.cpp:528
#: src/backend/datapicker/DatapickerImage.cpp:553
#: src/backend/datapicker/DatapickerPoint.cpp:470
#: src/backend/datasources/filters/AsciiFilter.cpp:1393
#: src/backend/datasources/filters/BinaryFilter.cpp:560
#: src/backend/datasources/LiveDataSource.cpp:899
#: src/backend/matrix/Matrix.cpp:1043 src/backend/note/Note.cpp:153
#: src/backend/worksheet/plots/cartesian/Axis.cpp:2001
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:2491
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:926
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:422
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:1419
#: src/backend/worksheet/plots/cartesian/XYAnalysisCurve.cpp:200
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:2189
#: src/backend/worksheet/plots/cartesian/XYDataReductionCurve.cpp:347
#: src/backend/worksheet/plots/cartesian/XYDifferentiationCurve.cpp:301
#: src/backend/worksheet/plots/cartesian/XYEquationCurve.cpp:203
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1948
#: src/backend/worksheet/plots/cartesian/XYFourierFilterCurve.cpp:327
#: src/backend/worksheet/plots/cartesian/XYFourierTransformCurve.cpp:315
#: src/backend/worksheet/plots/cartesian/XYIntegrationCurve.cpp:300
#: src/backend/worksheet/plots/cartesian/XYInterpolationCurve.cpp:484
#: src/backend/worksheet/plots/cartesian/XYSmoothCurve.cpp:313
#: src/backend/worksheet/plots/PlotArea.cpp:443
#: src/backend/worksheet/TextLabel.cpp:716
#: src/backend/worksheet/Worksheet.cpp:822
#: src/commonfrontend/ProjectExplorer.cpp:721
#, kde-format
msgid "Attribute '%1' missing or empty, default value is used"
msgstr ""
#. +> trunk5
#: src/backend/cantorWorksheet/CantorWorksheet.cpp:295
#, kde-format
msgid "This project has Cantor content but no Cantor plugins were found. Please check your installation. The project will be closed."
msgstr ""
#. +> trunk5 trunk
#: src/backend/cantorWorksheet/CantorWorksheet.cpp:308
#: src/backend/core/AbstractSimpleFilter.cpp:368
#: src/backend/core/column/Column.cpp:857 src/backend/core/Folder.cpp:108
#: src/backend/core/Project.cpp:357
#: src/backend/datapicker/DatapickerCurve.cpp:630
#: src/backend/datapicker/DatapickerImage.cpp:815
#: src/backend/datapicker/DatapickerPoint.cpp:549
#: src/backend/datasources/LiveDataSource.cpp:1025
#: src/backend/matrix/Matrix.cpp:1185
#: src/backend/spreadsheet/Spreadsheet.cpp:741
#: src/backend/worksheet/plots/cartesian/Axis.cpp:2274
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:486
#: src/backend/worksheet/plots/PlotArea.cpp:545
#: src/backend/worksheet/TextLabel.cpp:817
#: src/backend/worksheet/Worksheet.cpp:1018
#, kde-format
msgid "unknown element '%1'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:226
#, kde-format
msgid "Intended name \"%1\" was changed to \"%2\" in order to avoid name collision."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:231
#, kde-format
msgid "%1: rename to %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:242
#, kde-format
msgid "%1: change comment"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:264
#, kde-format
msgid "%1: change hidden status"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:297
#, kde-format
msgid "Rename"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:301
#: src/commonfrontend/worksheet/WorksheetView.cpp:163
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:287
#, kde-format
msgid "Delete"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:366 src/backend/core/aspectcommands.h:87
#, kde-format
msgid "%1: add %2"
msgstr ""
#. +> trunk
#: src/backend/core/AbstractAspect.cpp:369
#, kde-format
msgid "%1: add %2."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:368
#: src/backend/core/AbstractAspect.cpp:394
#, kde-format
msgid "Renaming \"%1\" to \"%2\" in order to avoid name collision."
msgstr ""
#. +> trunk5
#: src/backend/core/AbstractAspect.cpp:392
#, kde-format
msgid "%1: insert %2 before %3"
msgstr ""
#. +> trunk
#: src/backend/core/AbstractAspect.cpp:393
#, kde-format
msgid "%1: insert %2 before %3."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:430 src/backend/core/aspectcommands.h:43
#, kde-format
msgid "%1: remove %2"
msgstr ""
#. +> trunk
#: src/backend/core/AbstractAspect.cpp:428
#, kde-format
msgid "%1: remove %2."
msgstr ""
#. +> trunk5
#: src/backend/core/AbstractAspect.cpp:439
#, kde-format
msgid "%1: remove all children"
msgstr ""
#. +> trunk
#: src/backend/core/AbstractAspect.cpp:437
#, kde-format
msgid "%1: remove all children."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:593
#, kde-format
msgid "Attribute 'name' is missing or empty."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractAspect.cpp:600
#, kde-format
msgid "Invalid creation time for '%1'. Using current time."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractColumn.cpp:218
#: src/backend/spreadsheet/Spreadsheet.cpp:134
#, kde-format
msgid "%1: insert 1 row"
msgid_plural "%1: insert %2 rows"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/core/AbstractColumn.cpp:237
#: src/backend/spreadsheet/Spreadsheet.cpp:124
#, kde-format
msgid "%1: remove 1 row"
msgid_plural "%1: remove %2 rows"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/core/AbstractColumn.cpp:691
#, kde-format
msgid "invalid or missing start or end row"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/abstractcolumncommands.cpp:59
#, kde-format
msgid "%1: clear masks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/abstractcolumncommands.cpp:130
#, kde-format
msgid "%1: mask cells"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/abstractcolumncommands.cpp:132
#, kde-format
msgid "%1: unmask cells"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractFilter.cpp:212
#, kde-format
msgctxt "default labels of filter input ports"
msgid "In%1"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbExport)
#. +> trunk5 trunk
-#: src/backend/core/AbstractPart.cpp:111 src/kdefrontend/MainWin.cpp:388
+#: src/backend/core/AbstractPart.cpp:111 src/kdefrontend/MainWin.cpp:391
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:273
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:23
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:17
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:177
#, kde-format
msgid "Export"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:112
#, kde-format
msgid "Print"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:113
#, kde-format
msgid "Print Preview"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:118
#, kde-format
msgid "&Restore"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:123
#, kde-format
msgid "Mi&nimize"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:128
#, kde-format
msgid "Ma&ximize"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractPart.cpp:134
#, kde-format
msgid "Show"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractScriptingEngine.cpp:144
#, kde-format
msgid "%1 Source (*.%2)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractSimpleFilter.cpp:354
#, kde-format
msgid "incompatible filter type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AbstractSimpleFilter.cpp:374
#, kde-format
msgid "no simple filter element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/aspectcommands.h:106
#, kde-format
msgid "%1: move %2 to %3."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lName)
#. i18n: ectx: property (text), widget (QLabel, lFileName)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 trunk
#: src/backend/core/AspectTreeModel.cpp:157
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:42
#: src/kdefrontend/datasources/NetCDFOptionsWidget.cpp:43
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#: src/kdefrontend/ui/datapickercurvewidget.ui:33
#: src/kdefrontend/ui/datapickerimagewidget.ui:33
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:39
#: src/kdefrontend/ui/datasources/importfilewidget.ui:41
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:42
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:30
#: src/kdefrontend/ui/dockwidgets/cantorworksheetdock.ui:37
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:30
#: src/kdefrontend/ui/dockwidgets/columndock.ui:17
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:30
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:32
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:150
#: src/kdefrontend/ui/dockwidgets/notedock.ui:17
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:122
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:17
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:36
#: src/kdefrontend/ui/dockwidgets/xycurvedockgeneraltab.ui:23
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:23
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:23
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:17
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:544
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:17
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:89
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:222
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:23
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:23
#: src/kdefrontend/widgets/FitParametersWidget.cpp:52
#, kde-format
msgid "Name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFileType)
#. i18n: ectx: property (text), widget (QLabel, lType)
#. i18n: ectx: property (text), widget (QLabel, lArrowType)
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksType)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksType)
#. i18n: ectx: property (text), widget (QLabel, lValuesPosition_2)
#. i18n: ectx: property (text), widget (QLabel, lFillingType)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundType)
#. i18n: ectx: property (text), widget (QLabel, lLineType)
#. i18n: ectx: property (text), widget (QLabel, lDropLineType)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsType)
#. i18n: ectx: property (text), widget (QLabel, lPlotType)
#. +> trunk5 trunk
#: src/backend/core/AspectTreeModel.cpp:159
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:42
#: src/kdefrontend/datasources/NetCDFOptionsWidget.cpp:43
#: src/kdefrontend/ui/datapickerimagewidget.ui:135
#: src/kdefrontend/ui/datasources/importfilewidget.ui:127
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:403
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:521
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:706
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:768
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:798
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:337
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:48
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:390
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:171
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:206
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:48
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:229
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:646
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:988
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1285
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:166
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:235
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:146
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:234
#, kde-format
msgid "Type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 trunk
#: src/backend/core/AspectTreeModel.cpp:161
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:152
#, kde-format
msgid "Created"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, lComment)
#. +> trunk5 trunk
#: src/backend/core/AspectTreeModel.cpp:163
#: src/kdefrontend/ui/datapickercurvewidget.ui:69
#: src/kdefrontend/ui/datapickerimagewidget.ui:53
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:75
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:60
#: src/kdefrontend/ui/dockwidgets/cantorworksheetdock.ui:50
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:53
#: src/kdefrontend/ui/dockwidgets/columndock.ui:27
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:63
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:122
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:30
#: src/kdefrontend/ui/dockwidgets/notedock.ui:43
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:43
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:68
#: src/kdefrontend/ui/dockwidgets/xycurvedockgeneraltab.ui:49
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:46
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:46
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:43
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:54
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:43
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:96
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:236
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:46
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:49
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:54
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:82
#, kde-format
msgid "Comment"
msgstr ""
#. +> trunk5
#: src/backend/core/AspectTreeModel.cpp:185
#, kde-format
msgid "non-numeric data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/AspectTreeModel.cpp:188
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:288
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:396
#, kde-format
msgid "no values"
msgstr ""
#. +> trunk5
#: src/backend/core/column/Column.cpp:105
#, kde-format
msgid "Used in"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/Column.cpp:162
#: src/backend/core/column/columncommands.cpp:101
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:277
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:294
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:305
#, kde-format
msgid "%1: change column type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/Column.cpp:808
#, kde-format
msgid "no column element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/Column.cpp:962
#, kde-format
msgid "invalid or missing row index"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/Column.cpp:971
#: src/backend/core/column/Column.cpp:980
#, kde-format
msgid "invalid row value"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:219
#: src/backend/core/column/columncommands.cpp:325
#, kde-format
msgid "%1: change cell values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:505
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1660
#, kde-format
msgid "%1: set plot designation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:553
#, kde-format
msgid "%1: clear column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:657
#: src/backend/matrix/matrixcommands.cpp:93
#, kde-format
msgid "%1: set formula"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:711
#, kde-format
msgid "%1: set cell formula"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:754
#, kde-format
msgid "%1: clear all formulas"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:811
#, kde-format
msgid "%1: set text for row %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:867
#: src/backend/core/column/columncommands.cpp:896
#: src/backend/core/column/columncommands.cpp:952
#, kde-format
msgid "%1: set value for row %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:1013
#, kde-format
msgid "%1: replace the texts for rows %2 to %3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/column/columncommands.cpp:1077
#: src/backend/core/column/columncommands.cpp:1109
#: src/backend/core/column/columncommands.cpp:1173
#, kde-format
msgid "%1: replace the values for rows %2 to %3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/DateTime2StringFilter.cpp:74
#: src/backend/core/datatypes/String2DateTimeFilter.cpp:146
#, kde-format
msgid "%1: set date-time format to %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/DateTime2StringFilter.cpp:76
#: src/backend/core/datatypes/String2DateTimeFilter.cpp:148
#, kde-format
msgid "set date-time format to %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/Double2StringFilter.cpp:78
#, kde-format
msgid "missing or invalid format attribute"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/Double2StringFilter.cpp:100
#, kde-format
msgid "%1: set numeric format to '%2'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/Double2StringFilter.cpp:102
#, kde-format
msgid "set numeric format to '%1'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/Double2StringFilter.cpp:119
#, kde-format
msgid "%1: set decimal digits to %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/datatypes/Double2StringFilter.cpp:121
#, kde-format
msgid "set decimal digits to %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Folder.cpp:114
#, kde-format
msgid "no folder element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Folder.cpp:246
#, kde-format
msgid "unknown element '%1' found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/plugin/PluginLoader.cpp:46
#: src/backend/core/plugin/PluginLoader.cpp:110
#, kde-format
msgid "Not yet loaded."
msgstr ""
#. i18n: ectx: ToolBar (main_toolbar)
#. i18n: ectx: property (title), widget (QGroupBox, gbProject)
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:107 src/backend/core/Project.cpp:118
#: src/kdefrontend/GuiObserver.cpp:479 src/kdefrontend/labplot2ui.rc:6
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:20
#, kde-format
msgid "Project"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:277
#, kde-format
msgid "Sorry. Could not open file for reading."
msgstr ""
#. +> trunk5
#: src/backend/core/Project.cpp:284
#, kde-format
msgid "The project file is empty."
msgstr ""
#. +> trunk5
#: src/backend/core/Project.cpp:284
#, kde-format
msgid "Error opening project"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:296
#, kde-format
msgid "Error when opening the project"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:301
#, kde-format
msgid "The following problems occurred when loading the project file:\n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:333
#, kde-format
msgid "Attribute 'version' is missing."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:426
#, kde-format
msgid "no project element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:428
#, kde-format
msgid "no valid XML document found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:444
#, kde-format
msgid "Project file name missing."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Project.cpp:452
#, kde-format
msgid "Invalid project modification time. Using current time."
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Workbook.cpp:193
#, kde-format
msgid "no workbook element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Workbook.cpp:216
#, kde-format
msgid "matrix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/core/Workbook.cpp:223
#, kde-format
msgid "unknown workbook element '%1'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:65
#: src/backend/datapicker/Datapicker.cpp:369
#, kde-format
msgid "Plot"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:162
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:462
#, kde-format
msgid "active curve"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:236
#, kde-format
msgid "%1: add new point"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:238
#, kde-format
msgid "%1: add new point %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:240
#, kde-format
msgid "%1 Point"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:353
#, kde-format
msgid "no datapicker element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Datapicker.cpp:386
#, kde-format
msgid "unknown datapicker element '%1'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:99
#, kde-format
msgid "Update Spreadsheet"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksColumn)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksColumn)
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:127
#: src/kdefrontend/GuiObserver.cpp:157
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:551
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:736
#, kde-format
msgid "Column"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbData)
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:190
#: src/commonfrontend/matrix/MatrixView.cpp:153
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:23
#, kde-format
msgid "Data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:210
#, kde-format
msgid "c"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:223
#: src/backend/datapicker/DatapickerCurve.cpp:224
#, kde-format
msgid "%1: set xy-error type"
msgstr ""
#. +> trunk
#: src/backend/datapicker/DatapickerCurve.cpp:229
#, kde-format
msgid "+delta_x"
msgstr ""
#. +> trunk
#: src/backend/datapicker/DatapickerCurve.cpp:236
#, kde-format
msgid "-delta_x"
msgstr ""
#. +> trunk
#: src/backend/datapicker/DatapickerCurve.cpp:243
#, kde-format
msgid "+delta_y"
msgstr ""
#. +> trunk
#: src/backend/datapicker/DatapickerCurve.cpp:250
#, kde-format
msgid "-delta_y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:262
#, kde-format
msgid "%1: set position X column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:269
#, kde-format
msgid "%1: set position Y column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:276
#, kde-format
msgid "%1: set position Z column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:283
#, kde-format
msgid "%1: set +delta_X column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:290
#, kde-format
msgid "%1: set -delta_X column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:297
#, kde-format
msgid "%1: set +delta_Y column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:304
#, kde-format
msgid "%1: set -delta_Y column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:311
#: src/backend/datapicker/DatapickerImage.cpp:304
#, kde-format
msgid "%1: set point's style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:319
#: src/backend/datapicker/DatapickerImage.cpp:311
#, kde-format
msgid "%1: set point's size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:326
#: src/backend/datapicker/DatapickerImage.cpp:317
#, kde-format
msgid "%1: rotate point"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:333
#: src/backend/datapicker/DatapickerImage.cpp:323
#, kde-format
msgid "%1: set point's filling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:340
#: src/backend/datapicker/DatapickerImage.cpp:329
#, kde-format
msgid "%1: set outline style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:347
#: src/backend/datapicker/DatapickerImage.cpp:335
#, kde-format
msgid "%1: set point's opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:354
#, kde-format
msgid "%1: set error bar size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:361
#, kde-format
msgid "%1: set error bar filling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:368
#, kde-format
msgid "%1: set error bar outline style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:375
#: src/backend/datapicker/DatapickerImage.cpp:341
#: src/backend/worksheet/plots/cartesian/Axis.cpp:449
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:155
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:194
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:140
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:199
#: src/backend/worksheet/plots/PlotArea.cpp:97
#: src/backend/worksheet/TextLabel.cpp:296
#: src/backend/worksheet/WorksheetElementContainer.cpp:85
#: src/backend/worksheet/WorksheetElementContainer.cpp:86
#, kde-format
msgid "%1: set visible"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:375
#: src/backend/datapicker/DatapickerImage.cpp:341
#: src/backend/worksheet/plots/cartesian/Axis.cpp:449
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:155
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:194
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:140
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:199
#: src/backend/worksheet/plots/PlotArea.cpp:97
#: src/backend/worksheet/TextLabel.cpp:296
#: src/backend/worksheet/WorksheetElementContainer.cpp:88
#: src/backend/worksheet/WorksheetElementContainer.cpp:98
#, kde-format
msgid "%1: set invisible"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:397
#, kde-format
msgid "%1: update datasheet"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerCurve.cpp:521
#, kde-format
msgid "no dataPicker curve element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:174
#, kde-format
msgid "Print Datapicker Image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:271
#, kde-format
msgid "%1: upload new image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:272
#, kde-format
msgid "%1: upload image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:280
#: src/backend/worksheet/TextLabel.cpp:276
#, kde-format
msgid "%1: set rotation angle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:286
#, kde-format
msgid "%1: set Axis points"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:292
#, kde-format
msgid "%1: set editor settings"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:298
#, kde-format
msgid "%1: set minimum segment length"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:357
#, kde-format
msgid "%1: remove all axis points"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerImage.cpp:546
#, kde-format
msgid "no image element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:213
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:259
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:145
#: src/backend/worksheet/TextLabel.cpp:247
#, kde-format
msgid "%1: set position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:224
#, kde-format
msgid "%1: set +delta_X position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:226
#: src/backend/datapicker/DatapickerPoint.cpp:229
#, kde-format
msgid "%1: set +delta X position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:242
#: src/backend/datapicker/DatapickerPoint.cpp:244
#: src/backend/datapicker/DatapickerPoint.cpp:247
#, kde-format
msgid "%1: set -delta_X position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:260
#: src/backend/datapicker/DatapickerPoint.cpp:262
#: src/backend/datapicker/DatapickerPoint.cpp:265
#, kde-format
msgid "%1: set +delta_Y position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:278
#: src/backend/datapicker/DatapickerPoint.cpp:280
#: src/backend/datapicker/DatapickerPoint.cpp:283
#, kde-format
msgid "%1: set -delta_Y position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/DatapickerPoint.cpp:463
#, kde-format
msgid "no datapicker-Point element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datapicker/Segment.cpp:205
#, kde-format
msgid "%1: draw points over segment"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/AsciiFilter.cpp:1389
#, kde-format
msgid "no ascii filter element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/BinaryFilter.cpp:294
#, kde-format
msgid "could not open device"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/BinaryFilter.cpp:302
#, kde-format
msgid "data selection empty"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/BinaryFilter.cpp:556
#: src/backend/datasources/filters/ImageFilter.cpp:287
#, kde-format
msgid "no binary filter element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:337
#, kde-format
msgid "Not enough memory for data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:613
#, kde-format
msgid "Incorrect header type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1032
#: src/backend/datasources/filters/FITSFilter.cpp:1555
#: src/kdefrontend/datasources/FITSOptionsWidget.cpp:55
#: src/kdefrontend/datasources/FITSOptionsWidget.cpp:88
#: src/kdefrontend/datasources/FITSOptionsWidget.cpp:159
#, kde-format
msgid "Primary header"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1034
#, kde-format
msgid "IMAGE #%1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1037
#, kde-format
msgid "ASCII_TBL #%1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1040
#, kde-format
msgid "BINARY_TBL #%1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1548
#, kde-format
msgid "Images"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/FITSFilter.cpp:1572
#, kde-format
msgid "Tables"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1027
#, kde-format
msgid "data type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1080
#, kde-format
msgid "rank %1 not supported yet"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1086
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:86
#, kde-format
msgid "data set"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1104
#, kde-format
msgid "symbolic link"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1104
#, kde-format
msgid "link to"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1119
#, kde-format
msgid "hard link"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1182
#, kde-format
msgid "unknown"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1227
#, kde-format
msgid "No data set selected"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1294
#, kde-format
msgid "rank 0 not implemented yet for type %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1418
#, kde-format
msgid "unsupported integer type for rank 1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1434
#, kde-format
msgid "unsupported float type for rank 1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1461
#, kde-format
msgid "rank 1 not implemented yet for type %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1570
#, kde-format
msgid "unsupported integer type for rank 2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1584
#, kde-format
msgid "unsupported float type for rank 2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1598
#: src/backend/datasources/filters/HDFFilter.cpp:1613
#, kde-format
msgid "rank 2 not implemented yet for type %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1599
#, kde-format
msgid "size = %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1623
#, kde-format
msgid "rank %1 not implemented yet for type %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/HDFFilter.cpp:1695
#, kde-format
msgid "no hdf filter element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/ImageFilter.cpp:49
#, kde-format
msgid "Matrix (grayscale)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/ImageFilter.cpp:49
#, kde-format
msgid "XYZ (grayscale)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/ImageFilter.cpp:49
#, kde-format
msgid "XYRGB"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/ImageFilter.cpp:245
#: src/backend/spreadsheet/Spreadsheet.cpp:896
#, kde-format
msgid "numerical data, %1 element"
msgid_plural "numerical data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:336
#, kde-format
msgid "global attribute"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:340
#, kde-format
msgid "attribute"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:367
#, kde-format
msgid "length"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:370
#, kde-format
msgid "unlimited"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:371
#, kde-format
msgid "dimension"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:404
#, kde-format
msgid "variable"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:435
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:42
#, kde-format
msgid "Attributes"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:441
#, kde-format
msgid "Dimensions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:447
#, kde-format
msgid "Variables"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:497
#, kde-format
msgid "No variable selected"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:527
#, kde-format
msgid "zero dimensions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:627
#, kde-format
msgid "%1 dimensional data of type %2 not supported yet"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/filters/NetCDFFilter.cpp:690
#, kde-format
msgid "no netcdf filter element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:122
#, kde-format
msgid "Reload"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbLinkFile)
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:125
#: src/kdefrontend/ui/datasources/importfilewidget.ui:579
#, kde-format
msgid "Link the file"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbWatchFile)
#. +> trunk
#: src/backend/datasources/FileDataSource.cpp:69
#: src/kdefrontend/ui/datasources/importfilewidget.ui:186
#, kde-format
msgid "Watch the file"
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:129
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:279
#, kde-format
msgid "Plot data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:209
#, kde-format
msgid "ASCII data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:210
#, kde-format
msgid "Binary data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPlot)
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:211
#: src/commonfrontend/matrix/MatrixView.cpp:156
#: src/kdefrontend/ui/datapickerimagewidget.ui:102
#, kde-format
msgid "Image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:212
#, kde-format
msgid "Hierarchical Data Format (HDF)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:213
#, kde-format
msgid "Network Common Data Format (NetCDF)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:215
#, kde-format
msgid "Flexible Image Transport System Data Format (FITS)"
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:668
#: src/backend/datasources/LiveDataSource.cpp:672
#: src/backend/datasources/LiveDataSource.cpp:676
#: src/backend/datasources/LiveDataSource.cpp:680
#: src/backend/datasources/LiveDataSource.cpp:684
#: src/backend/datasources/LiveDataSource.cpp:688
#: src/backend/datasources/LiveDataSource.cpp:692
#: src/backend/datasources/LiveDataSource.cpp:704
#, kde-format
msgid "Serial Port Error"
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:669
#, kde-format
msgid "Failed to open the device."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:673
#, kde-format
msgid "Failed to open the device. Please check your permissions on this device."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:677
#, kde-format
msgid "Device already opened."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:681
#, kde-format
msgid "The device is not opened."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:685
#, kde-format
msgid "Failed to read data."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:689
#, kde-format
msgid "Failed to read data. The device is removed."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:693
#, kde-format
msgid "The device timed out."
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:705
#, kde-format
msgid "The following error occurred: %1."
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:766
#: src/backend/datasources/LiveDataSource.cpp:767
#: src/backend/datasources/LiveDataSource.cpp:768
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:463
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:467
#, kde-format
msgid "no"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:766
#: src/backend/datasources/LiveDataSource.cpp:767
#: src/backend/datasources/LiveDataSource.cpp:768
#, kde-format
msgid "yes"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:766
#, kde-format
msgid "Readable: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:767
#, kde-format
msgid "Writable: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:768
#, kde-format
msgid "Executable: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:770
#, kde-format
msgid "Created: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:771
#, kde-format
msgid "Last modified: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:772
#, kde-format
msgid "Last read: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:773
#, kde-format
msgid "Owner: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:774
#, kde-format
msgid "Group: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:775
#, kde-format
msgid "%1 cByte"
msgid_plural "%1 cBytes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:775
#, kde-format
msgid "Size: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:779
#, kde-format
msgid "Images: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:780
#, kde-format
msgid "Tables: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:792
#: src/backend/datasources/LiveDataSource.cpp:816
#, kde-format
msgid "Could not open file %1 for reading."
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:795
#, kde-format
msgid "cannot open"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:801
#, kde-format
msgid "File type: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:810
#, kde-format
msgid "Number of columns: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/datasources/LiveDataSource.cpp:812
#, kde-format
msgid "Number of lines: %1"
msgstr ""
#. +> trunk5
#: src/backend/datasources/LiveDataSource.cpp:892
#, kde-format
msgid "no liveDataSource element found"
msgstr ""
#. +> trunk
#: src/backend/datasources/FileDataSource.cpp:360
#, kde-format
msgid "no fileDataSource element found"
msgstr ""
#. +> trunk5
#: src/backend/datasources/projects/ProjectParser.cpp:92
#, kde-format
msgid "%1: Import from %2"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:39
#, kde-format
msgid "Success"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:41
#, kde-format
msgid "Failure"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:43
#, kde-format
msgid "Iteration has not converged"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:45
#, kde-format
msgid "Input domain error, e.g sqrt(-1)"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:47
#, kde-format
msgid "Output range error, e.g. exp(1e100)"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:49
#, kde-format
msgid "Invalid pointer"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:51
#, kde-format
msgid "Invalid argument supplied"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:53
#, kde-format
msgid "Generic failure"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:55
#, kde-format
msgid "Factorization failed"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:57
#, kde-format
msgid "Failed to allocate memory"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:59
#, kde-format
msgid "Problem with supplied function"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:61
#, kde-format
msgid "Iterative process is out of control"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:63
#, kde-format
msgid "Exceeded max number of iterations"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:65
#, kde-format
msgid "Tried to divide by zero"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:67
#, kde-format
msgid "Invalid tolerance specified"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:69
#, kde-format
msgid "Failed to reach the specified tolerance"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:71
#, kde-format
msgid "Underflow"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:73
#, kde-format
msgid "Overflow"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:75
#, kde-format
msgid "Loss of accuracy"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:77
#, kde-format
msgid "Failed because of roundoff error"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:79
#, kde-format
msgid "Matrix, vector lengths are not conformant"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:81
#, kde-format
msgid "Matrix not square"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:83
#, kde-format
msgid "Apparent singularity detected"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:85
#, kde-format
msgid "Integral or series is divergent"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:87
#, kde-format
msgid "Requested feature is not supported by the hardware"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:89
#, kde-format
msgid "Requested feature not (yet) implemented"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:91
#, kde-format
msgid "Cache limit exceeded"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:93
#, kde-format
msgid "Table limit exceeded"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:95
#, kde-format
msgid "Iteration is not making progress towards solution"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:97
#, kde-format
msgid "Jacobian evaluations are not improving the solution"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:99
#, kde-format
msgid "Cannot reach the specified tolerance in F"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:101
#, kde-format
msgid "Cannot reach the specified tolerance in X"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:103
#, kde-format
msgid "Cannot reach the specified tolerance in gradient"
msgstr ""
#. +> trunk5
#: src/backend/gsl/errors.h:105
#, kde-format
msgid "End of file"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:59
#, kde-format
msgid "Standard Mathematical functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:61
#, kde-format
msgid "Airy Functions and Derivatives"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:62
#, kde-format
msgid "Bessel Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:63
#, kde-format
msgid "Clausen Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:64
#, kde-format
msgid "Coulomb Functions"
msgstr ""
#. i18n("Coupling Coefficients");
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:66
#, kde-format
msgid "Dawson Function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:67
#, kde-format
msgid "Debye Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:68
#, kde-format
msgid "Dilogarithm"
msgstr ""
#. i18n("Elementary Operations");
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:70
#, kde-format
msgid "Elliptic Integrals"
msgstr ""
#. i18n("Elliptic Functions (Jacobi)");
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:72
#, kde-format
msgid "Error Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:73
#, kde-format
msgid "Exponential Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:74
#, kde-format
msgid "Exponential Integrals"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:75
#, kde-format
msgid "Fermi-Dirac Function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:76
#, kde-format
msgid "Gamma and Beta Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:77
#, kde-format
msgid "Gegenbauer Functions"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:79
#, kde-format
msgid "Hermite Polynomials and Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:81
#, kde-format
msgid "Hypergeometric Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:82
#, kde-format
msgid "Laguerre Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:83
#, kde-format
msgid "Lambert W Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:84
#, kde-format
msgid "Legendre Functions and Spherical Harmonics"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:85
#, kde-format
msgid "Logarithm and Related Functions"
msgstr ""
#. i18n("Mathieu Functions");
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:87
#, kde-format
msgid "Power Function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:88
#, kde-format
msgid "Psi (Digamma) Function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:89
#, kde-format
msgid "Synchrotron Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:90
#, kde-format
msgid "Transport Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:91
#, kde-format
msgid "Trigonometric Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:92
#, kde-format
msgid "Zeta Functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:94
#, kde-format
msgid "Gaussian Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:95
#, kde-format
msgid "Exponential Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:96
#, kde-format
msgid "Laplace Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:97
#, kde-format
msgid "Exponential Power Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:98
#, kde-format
msgid "Cauchy Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:99
#, kde-format
msgid "Rayleigh Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:100
#, kde-format
msgid "Landau Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:101
#, kde-format
msgid "Gamma Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:102
#, kde-format
msgid "Flat (Uniform) Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:103
#, kde-format
msgid "Lognormal Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:104
#, kde-format
msgid "Chi-squared Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:105
#, kde-format
msgid "F-distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:106
#, kde-format
msgid "t-distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:107
#, kde-format
msgid "Beta Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:108
#, kde-format
msgid "Logistic Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:109
#, kde-format
msgid "Pareto Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:110
#, kde-format
msgid "Weibull Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:111
#, kde-format
msgid "Gumbel Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:112
#, kde-format
msgid "Poisson Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:113
#, kde-format
msgid "Bernoulli Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:114
#, kde-format
msgid "Binomial Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:115
#, kde-format
msgid "Pascal Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:116
#, kde-format
msgid "Geometric Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:117
#, kde-format
msgid "Hypergeometric Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:118
#, kde-format
msgid "Logarithmic Distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:123
#, kde-format
msgid "pseudo-random integer [0,RAND_MAX]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:124
#, kde-format
msgid "nonlinear additive feedback rng [0,RAND_MAX]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:125
#, kde-format
msgid "nonlinear additive feedback rng [0,1]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:126
#, kde-format
msgid "Smallest integral value not less"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:127
#, kde-format
msgid "Absolute value"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:129
#, kde-format
msgid "Base 10 logarithm"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:130
#, kde-format
msgid "Power function [x^y]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:131
#, kde-format
msgid "Nonnegative square root"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:132
#, kde-format
msgid "Sign function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:133
#, kde-format
msgid "Heavyside theta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:136
#, kde-format
msgid "Cube root"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:137
#, kde-format
msgid "Extract the exponent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:138
#, kde-format
msgid "Round to an integer value"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:139
#: src/backend/gsl/ExpressionParser.cpp:140
#, kde-format
msgid "Round to the nearest integer"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:162
#, kde-format
msgid "Airy function of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:163
#, kde-format
msgid "Airy function of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:164
#, kde-format
msgid "Scaled Airy function of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:165
#, kde-format
msgid "Scaled Airy function of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:166
#, kde-format
msgid "Airy function derivative of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:167
#, kde-format
msgid "Airy function derivative of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:168
#, kde-format
msgid "Scaled Airy function derivative of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:169
#, kde-format
msgid "Scaled Airy function derivative of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:170
#, kde-format
msgid "n-th zero of the Airy function of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:171
#, kde-format
msgid "n-th zero of the Airy function of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:172
#, kde-format
msgid "n-th zero of the Airy function derivative of the first kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:173
#, kde-format
msgid "n-th zero of the Airy function derivative of the second kind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:180
#, kde-format
msgid "Regular cylindrical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:181
#, kde-format
msgid "Regular cylindrical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:182
#, kde-format
msgid "Regular cylindrical Bessel function of order n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:183
#, kde-format
msgid "Irregular cylindrical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:184
#, kde-format
msgid "Irregular cylindrical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:185
#, kde-format
msgid "Irregular cylindrical Bessel function of order n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:186
#, kde-format
msgid "Regular modified cylindrical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:187
#, kde-format
msgid "Regular modified cylindrical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:188
#, kde-format
msgid "Regular modified cylindrical Bessel function of order n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:189
#, kde-format
msgid "Scaled regular modified cylindrical Bessel function of zeroth order exp(-|x|) I0(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:191
#, kde-format
msgid "Scaled regular modified cylindrical Bessel function of first order exp(-|x|) I1(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:192
#, kde-format
msgid "Scaled regular modified cylindrical Bessel function of order n exp(-|x|) In(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:193
#, kde-format
msgid "Irregular modified cylindrical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:194
#, kde-format
msgid "Irregular modified cylindrical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:195
#, kde-format
msgid "Irregular modified cylindrical Bessel function of order n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:196
#, kde-format
msgid "Scaled irregular modified cylindrical Bessel function of zeroth order exp(x) K0(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:197
#, kde-format
msgid "Scaled irregular modified cylindrical Bessel function of first order exp(x) K1(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:198
#, kde-format
msgid "Scaled irregular modified cylindrical Bessel function of order n exp(x) Kn(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:199
#, kde-format
msgid "Regular spherical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:200
#, kde-format
msgid "Regular spherical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:202
#, kde-format
msgid "Regular spherical Bessel function of second order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:203
#, kde-format
msgid "Regular spherical Bessel function of order l"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:204
#, kde-format
msgid "Irregular spherical Bessel function of zeroth order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:205
#, kde-format
msgid "Irregular spherical Bessel function of first order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:206
#, kde-format
msgid "Irregular spherical Bessel function of second order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:207
#, kde-format
msgid "Irregular spherical Bessel function of order l"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:208
#, kde-format
msgid "Scaled regular modified spherical Bessel function of zeroth order, exp(-|x|) i0(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:209
#, kde-format
msgid "Scaled regular modified spherical Bessel function of first order, exp(-|x|) i1(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:210
#, kde-format
msgid "Scaled regular modified spherical Bessel function of second order, exp(-|x|) i2(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:211
#, kde-format
msgid "Scaled regular modified spherical Bessel function of order l, exp(-|x|) il(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:213
#, kde-format
msgid "Scaled irregular modified spherical Bessel function of zeroth order, exp(x) k0(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:214
#, kde-format
msgid "Scaled irregular modified spherical Bessel function of first order, exp(-|x|) k1(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:215
#, kde-format
msgid "Scaled irregular modified spherical Bessel function of second order, exp(-|x|) k2(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:216
#, kde-format
msgid "Scaled irregular modified spherical Bessel function of order l, exp(-|x|) kl(x)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:217
#, kde-format
msgid "Regular cylindrical Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:218
#, kde-format
msgid "Irregular cylindrical Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:219
#, kde-format
msgid "Regular modified Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:220
#, kde-format
msgid "Scaled regular modified Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:221
#, kde-format
msgid "Irregular modified Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:222
#, kde-format
msgid "Logarithm of irregular modified Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:224
#, kde-format
msgid "Scaled irregular modified Bessel function of fractional order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:225
#, kde-format
msgid "n-th positive zero of the Bessel function J0"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:226
#, kde-format
msgid "n-th positive zero of the Bessel function J1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:227
#, kde-format
msgid "n-th positive zero of the Bessel function Jnu"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:234
#, kde-format
msgid "Clausen function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:239
#, kde-format
msgid "Lowest-order normalized hydrogenic bound state radial wavefunction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:240
#, kde-format
msgid "n-th normalized hydrogenic bound state radial wavefunction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:247
#, kde-format
msgid "Dawson integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:252
#, kde-format
msgid "First-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:253
#, kde-format
msgid "Second-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:254
#, kde-format
msgid "Third-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:255
#, kde-format
msgid "Fourth-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:256
#, kde-format
msgid "Fifth-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:257
#, kde-format
msgid "Sixth-order Debye function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:264
#, kde-format
msgid "Dilogarithm for a real argument"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:269
#, kde-format
msgid "Legendre form of complete elliptic integral K"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:270
#, kde-format
msgid "Legendre form of complete elliptic integral E"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:271
#, kde-format
msgid "Legendre form of complete elliptic integral Pi"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:272
#, kde-format
msgid "Legendre form of incomplete elliptic integral F"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:273
#, kde-format
msgid "Legendre form of incomplete elliptic integral E"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:274
#, kde-format
msgid "Legendre form of incomplete elliptic integral P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:275
#, kde-format
msgid "Legendre form of incomplete elliptic integral D"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:276
#, kde-format
msgid "Carlson form of incomplete elliptic integral RC"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:277
#, kde-format
msgid "Carlson form of incomplete elliptic integral RD"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:278
#, kde-format
msgid "Carlson form of incomplete elliptic integral RF"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:279
#, kde-format
msgid "Carlson form of incomplete elliptic integral RJ"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:286
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:465
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:330
#, kde-format
msgid "Error function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:287
#, kde-format
msgid "Complementary error function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:288
#, kde-format
msgid "Logarithm of complementary error function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:289
#, kde-format
msgid "Gaussian probability density function Z"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:290
#, kde-format
msgid "Upper tail of the Gaussian probability function Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:291
#, kde-format
msgid "Hazard function for the normal distribution Z/Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:298
#, kde-format
msgid "Exponential function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:299
#, kde-format
msgid "exponentiate x and multiply by y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:303
#, kde-format
msgid "n-relative exponential"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:310
#, kde-format
msgid "Exponential integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:311
#, kde-format
msgid "Second order exponential integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:312
#, kde-format
msgid "Exponential integral of order n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:313
#, kde-format
msgid "Exponential integral Ei"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:314
#, kde-format
msgid "Hyperbolic integral Shi"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:315
#, kde-format
msgid "Hyperbolic integral Chi"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:316
#, kde-format
msgid "Third-order exponential integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:317
#, kde-format
msgid "Sine integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:318
#, kde-format
msgid "Cosine integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:319
#, kde-format
msgid "Arctangent integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:326
#, kde-format
msgid "Complete Fermi-Dirac integral with index -1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:327
#, kde-format
msgid "Complete Fermi-Dirac integral with index 0"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:328
#, kde-format
msgid "Complete Fermi-Dirac integral with index 1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:329
#, kde-format
msgid "Complete Fermi-Dirac integral with index 2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:330
#, kde-format
msgid "Complete Fermi-Dirac integral with integer index j"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:331
#, kde-format
msgid "Complete Fermi-Dirac integral with index -1/2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:332
#, kde-format
msgid "Complete Fermi-Dirac integral with index 1/2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:333
#, kde-format
msgid "Complete Fermi-Dirac integral with index 3/2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:334
#, kde-format
msgid "Incomplete Fermi-Dirac integral with index zero"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:341
#: src/backend/gsl/ExpressionParser.cpp:342
#, kde-format
msgid "Gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:343
#: src/backend/gsl/ExpressionParser.cpp:344
#, kde-format
msgid "Logarithm of the gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:345
#, kde-format
msgid "Regulated gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:346
#, kde-format
msgid "Reciprocal of the gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:347
#, kde-format
msgid "Factorial n!"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:348
#, kde-format
msgid "Double factorial n!!"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:349
#, kde-format
msgid "Logarithm of the factorial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:350
#, kde-format
msgid "Logarithm of the double factorial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:352
#, kde-format
msgid "Combinatorial factor"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:353
#, kde-format
msgid "Logarithm of the combinatorial factor"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:354
#, kde-format
msgid "Taylor coefficient"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:355
#, kde-format
msgid "Pochhammer symbol"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:356
#, kde-format
msgid "Logarithm of the Pochhammer symbol"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:357
#, kde-format
msgid "Relative Pochhammer symbol"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:358
#, kde-format
msgid "Unnormalized incomplete gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:359
#, kde-format
msgid "Normalized incomplete gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:360
#, kde-format
msgid "Complementary normalized incomplete gamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:361
#, kde-format
msgid "Beta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:363
#, kde-format
msgid "Logarithm of the beta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:364
#, kde-format
msgid "Normalized incomplete beta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:371
#, kde-format
msgid "Gegenbauer polynomial C_1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:372
#, kde-format
msgid "Gegenbauer polynomial C_2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:373
#, kde-format
msgid "Gegenbauer polynomial C_3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:374
#, kde-format
msgid "Gegenbauer polynomial C_n"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:382
#, kde-format
msgid "Hermite polynomials physicists version"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:383
#, kde-format
msgid "Hermite polynomials probabilists version"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:384
#, kde-format
msgid "Hermite functions"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:385
#, kde-format
msgid "Derivatives of Hermite polynomials physicists version"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:386
#, kde-format
msgid "Derivatives of Hermite polynomials probabilists version"
msgstr ""
#. +> trunk5
#: src/backend/gsl/ExpressionParser.cpp:387
#, kde-format
msgid "Derivatives of Hermite functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:395
#, kde-format
msgid "Hypergeometric function 0F1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:396
#, kde-format
msgid "Confluent hypergeometric function 1F1 for integer parameters"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:397
#, kde-format
msgid "Confluent hypergeometric function 1F1 for general parameters"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:398
#, kde-format
msgid "Confluent hypergeometric function U for integer parameters"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:399
#, kde-format
msgid "Confluent hypergeometric function U"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:400
#, kde-format
msgid "Gauss hypergeometric function 2F1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:401
#, kde-format
msgid "Gauss hypergeometric function 2F1 with complex parameters"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:402
#, kde-format
msgid "Renormalized Gauss hypergeometric function 2F1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:403
#, kde-format
msgid "Renormalized Gauss hypergeometric function 2F1 with complex parameters"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:404
#, kde-format
msgid "Hypergeometric function 2F0"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:411
#, kde-format
msgid "generalized Laguerre polynomials L_1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:412
#, kde-format
msgid "generalized Laguerre polynomials L_2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:413
#, kde-format
msgid "generalized Laguerre polynomials L_3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:420
#, kde-format
msgid "Principal branch of the Lambert W function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:421
#, kde-format
msgid "Secondary real-valued branch of the Lambert W function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:428
#, kde-format
msgid "Legendre polynomial P_1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:429
#, kde-format
msgid "Legendre polynomial P_2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:430
#, kde-format
msgid "Legendre polynomial P_3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:431
#, kde-format
msgid "Legendre polynomial P_l"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:432
#, kde-format
msgid "Legendre function Q_0"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:433
#, kde-format
msgid "Legendre function Q_1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:434
#, kde-format
msgid "Legendre function Q_l"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:435
#, kde-format
msgid "Associated Legendre polynomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:436
#, kde-format
msgid "Normalized associated Legendre polynomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:437
#, kde-format
msgid "Irregular spherical conical function P^1/2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:439
#, kde-format
msgid "Regular spherical conical function P^(-1/2)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:440
#, kde-format
msgid "Conical function P^0"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:441
#, kde-format
msgid "Conical function P^1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:442
#, kde-format
msgid "Regular spherical conical function P^(-1/2-l)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:443
#, kde-format
msgid "Regular cylindrical conical function P^(-m)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:444
#, kde-format
msgid "Zeroth radial eigenfunction of the Laplacian on the 3-dimensional hyperbolic space"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:445
#, kde-format
msgid "First radial eigenfunction of the Laplacian on the 3-dimensional hyperbolic space"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:446
#, kde-format
msgid "l-th radial eigenfunction of the Laplacian on the 3-dimensional hyperbolic space"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:453
#, kde-format
msgid "Logarithm"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:454
#, kde-format
msgid "Logarithm of the magnitude"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:463
#, kde-format
msgid "x^n for integer n with an error estimate"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:468
#, kde-format
msgid "Digamma function for positive integer n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:469
#, kde-format
msgid "Digamma function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:470
#, kde-format
msgid "Real part of the digamma function on the line 1+i y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:471
#, kde-format
msgid "Trigamma function psi' for positive integer n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:472
#, kde-format
msgid "Trigamma function psi'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:473
#, kde-format
msgid "Polygamma function psi^(n)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:480
#, kde-format
msgid "First synchrotron function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:481
#, kde-format
msgid "Second synchrotron function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:488
#: src/backend/gsl/ExpressionParser.cpp:489
#: src/backend/gsl/ExpressionParser.cpp:490
#: src/backend/gsl/ExpressionParser.cpp:491
#, kde-format
msgid "Transport function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:498
#, kde-format
msgid "Sine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:499 src/backend/nsl/nsl_sf_window.c:36
#, kde-format
msgid "Cosine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:500
#, kde-format
msgid "Tangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:501
#, kde-format
msgid "Inverse sine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:502
#, kde-format
msgid "Inverse cosine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:503 src/backend/nsl/nsl_fit.c:48
#, kde-format
msgid "Inverse tangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:504
#, kde-format
msgid "Inverse tangent using sign"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:505
#, kde-format
msgid "Hyperbolic sine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:506
#, kde-format
msgid "Hyperbolic cosine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:507 src/backend/nsl/nsl_fit.c:48
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:461
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:326
#, kde-format
msgid "Hyperbolic tangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:508
#, kde-format
msgid "Inverse hyperbolic cosine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:509
#, kde-format
msgid "Inverse hyperbolic sine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:510
#, kde-format
msgid "Inverse hyperbolic tangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:511
#, kde-format
msgid "Secant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:512
#, kde-format
msgid "Cosecant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:513
#, kde-format
msgid "Cotangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:514
#, kde-format
msgid "Inverse secant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:515
#, kde-format
msgid "Inverse cosecant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:516
#, kde-format
msgid "Inverse cotangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:517
#, kde-format
msgid "Hyperbolic secant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:518
#, kde-format
msgid "Hyperbolic cosecant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:519
#, kde-format
msgid "Hyperbolic cotangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:520
#, kde-format
msgid "Inverse hyperbolic secant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:521
#, kde-format
msgid "Inverse hyperbolic cosecant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:522
#, kde-format
msgid "Inverse hyperbolic cotangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:523
#, kde-format
msgid "Sinc function sin(x)/x"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:526
#, kde-format
msgid "Hypotenuse function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:527
#, kde-format
msgid "Three component hypotenuse function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:528
#, kde-format
msgid "restrict to [-pi,pi]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:529
#, kde-format
msgid "restrict to [0,2 pi]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:536
#, kde-format
msgid "Riemann zeta function for integer n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:537
#, kde-format
msgid "Riemann zeta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:538
#, kde-format
msgid "zeta(n)-1 for integer n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:539
#, kde-format
msgid "zeta(x)-1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:540
#, kde-format
msgid "Hurwitz zeta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:541
#, kde-format
msgid "Eta function for integer n"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:542
#, kde-format
msgid "Eta function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:550
#, kde-format
msgid "Probability density for a Gaussian distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:551
#, kde-format
msgid "Probability density for a unit Gaussian distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:552
#: src/backend/gsl/ExpressionParser.cpp:571
#: src/backend/gsl/ExpressionParser.cpp:582
#: src/backend/gsl/ExpressionParser.cpp:602
#: src/backend/gsl/ExpressionParser.cpp:613
#: src/backend/gsl/ExpressionParser.cpp:630
#: src/backend/gsl/ExpressionParser.cpp:641
#: src/backend/gsl/ExpressionParser.cpp:652
#: src/backend/gsl/ExpressionParser.cpp:663
#: src/backend/gsl/ExpressionParser.cpp:674
#: src/backend/gsl/ExpressionParser.cpp:685
#: src/backend/gsl/ExpressionParser.cpp:696
#: src/backend/gsl/ExpressionParser.cpp:707
#: src/backend/gsl/ExpressionParser.cpp:718
#: src/backend/gsl/ExpressionParser.cpp:729
#: src/backend/gsl/ExpressionParser.cpp:740
#: src/backend/gsl/ExpressionParser.cpp:745
#: src/backend/gsl/ExpressionParser.cpp:756
#: src/backend/gsl/ExpressionParser.cpp:770
#: src/backend/gsl/ExpressionParser.cpp:773
#: src/backend/gsl/ExpressionParser.cpp:782
#: src/backend/gsl/ExpressionParser.cpp:791
#: src/backend/gsl/ExpressionParser.cpp:800
#, kde-format
msgid "Cumulative distribution function P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:553
#: src/backend/gsl/ExpressionParser.cpp:572
#: src/backend/gsl/ExpressionParser.cpp:583
#: src/backend/gsl/ExpressionParser.cpp:594
#: src/backend/gsl/ExpressionParser.cpp:603
#: src/backend/gsl/ExpressionParser.cpp:614
#: src/backend/gsl/ExpressionParser.cpp:631
#: src/backend/gsl/ExpressionParser.cpp:642
#: src/backend/gsl/ExpressionParser.cpp:653
#: src/backend/gsl/ExpressionParser.cpp:664
#: src/backend/gsl/ExpressionParser.cpp:675
#: src/backend/gsl/ExpressionParser.cpp:686
#: src/backend/gsl/ExpressionParser.cpp:697
#: src/backend/gsl/ExpressionParser.cpp:708
#: src/backend/gsl/ExpressionParser.cpp:719
#: src/backend/gsl/ExpressionParser.cpp:730
#: src/backend/gsl/ExpressionParser.cpp:741
#: src/backend/gsl/ExpressionParser.cpp:746
#: src/backend/gsl/ExpressionParser.cpp:757
#: src/backend/gsl/ExpressionParser.cpp:771
#: src/backend/gsl/ExpressionParser.cpp:774
#: src/backend/gsl/ExpressionParser.cpp:783
#: src/backend/gsl/ExpressionParser.cpp:792
#: src/backend/gsl/ExpressionParser.cpp:801
#, kde-format
msgid "Cumulative distribution function Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:554
#: src/backend/gsl/ExpressionParser.cpp:573
#: src/backend/gsl/ExpressionParser.cpp:584
#: src/backend/gsl/ExpressionParser.cpp:604
#: src/backend/gsl/ExpressionParser.cpp:615
#: src/backend/gsl/ExpressionParser.cpp:632
#: src/backend/gsl/ExpressionParser.cpp:643
#: src/backend/gsl/ExpressionParser.cpp:654
#: src/backend/gsl/ExpressionParser.cpp:665
#: src/backend/gsl/ExpressionParser.cpp:676
#: src/backend/gsl/ExpressionParser.cpp:687
#: src/backend/gsl/ExpressionParser.cpp:698
#: src/backend/gsl/ExpressionParser.cpp:709
#: src/backend/gsl/ExpressionParser.cpp:720
#: src/backend/gsl/ExpressionParser.cpp:731
#: src/backend/gsl/ExpressionParser.cpp:742
#: src/backend/gsl/ExpressionParser.cpp:747
#, kde-format
msgid "Inverse cumulative distribution function P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:555
#: src/backend/gsl/ExpressionParser.cpp:574
#: src/backend/gsl/ExpressionParser.cpp:585
#: src/backend/gsl/ExpressionParser.cpp:605
#: src/backend/gsl/ExpressionParser.cpp:616
#: src/backend/gsl/ExpressionParser.cpp:633
#: src/backend/gsl/ExpressionParser.cpp:644
#: src/backend/gsl/ExpressionParser.cpp:655
#: src/backend/gsl/ExpressionParser.cpp:666
#: src/backend/gsl/ExpressionParser.cpp:677
#: src/backend/gsl/ExpressionParser.cpp:688
#: src/backend/gsl/ExpressionParser.cpp:699
#: src/backend/gsl/ExpressionParser.cpp:710
#: src/backend/gsl/ExpressionParser.cpp:721
#: src/backend/gsl/ExpressionParser.cpp:732
#: src/backend/gsl/ExpressionParser.cpp:743
#: src/backend/gsl/ExpressionParser.cpp:748
#, kde-format
msgid "Inverse cumulative distribution function Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:556
#, kde-format
msgid "Cumulative unit distribution function P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:557
#, kde-format
msgid "Cumulative unit distribution function Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:558
#, kde-format
msgid "Inverse cumulative unit distribution function P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:559
#, kde-format
msgid "Inverse cumulative unit distribution function Q"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:561
#, kde-format
msgid "Probability density for Gaussian tail distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:562
#, kde-format
msgid "Probability density for unit Gaussian tail distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:563
#, kde-format
msgid "Probability density for a bivariate Gaussian distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:570
#, kde-format
msgid "Probability density for an exponential distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:581
#, kde-format
msgid "Probability density for a Laplace distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:592
#, kde-format
msgid "Probability density for an exponential power distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:593
#, kde-format
msgid "cumulative distribution function P"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:601
#, kde-format
msgid "Probability density for a Cauchy distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:612
#, kde-format
msgid "Probability density for a Rayleigh distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:617
#, kde-format
msgid "Probability density for a Rayleigh tail distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:624
#, kde-format
msgid "Probability density for a Landau distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:629
#, kde-format
msgid "Probability density for a gamma distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:640
#, kde-format
msgid "Probability density for a uniform distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:651
#, kde-format
msgid "Probability density for a lognormal distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:662
#, kde-format
msgid "Probability density for a chi squared distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:673
#, kde-format
msgid "Probability density for a F-distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:684
#, kde-format
msgid "Probability density for a t-distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:695
#, kde-format
msgid "Probability density for a beta distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:706
#, kde-format
msgid "Probability density for a logistic distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:717
#, kde-format
msgid "Probability density for a Pareto distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:728
#, kde-format
msgid "Probability density for a Weibull distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:739
#, kde-format
msgid "Probability density for a Type-1 Gumbel distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:744
#, kde-format
msgid "Probability density for a Type-2 Gumbel distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:755
#, kde-format
msgid "Probability density for a Poisson distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:764
#, kde-format
msgid "Probability density for a Bernoulli distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:769
#, kde-format
msgid "Probability density for a binomial distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:772
#, kde-format
msgid "Probability density for a negative binomial distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:781
#, kde-format
msgid "Probability density for a Pascal distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:790
#, kde-format
msgid "Probability density for a geometric distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:799
#, kde-format
msgid "Probability density for a hypergeometric distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:808
#, kde-format
msgid "Probability density for a logarithmic distribution"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:819
#, kde-format
msgid "Mathematical constants"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:820
#, kde-format
msgid "Fundamental constants"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:821
#, kde-format
msgid "Astronomy and Astrophysics"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:822
#, kde-format
msgid "Atomic and Nuclear Physics"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:823
#, kde-format
msgid "Measurement of Time"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:824
#, kde-format
msgid "Imperial Units"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:825
#, kde-format
msgid "Speed and Nautical Units"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:826
#, kde-format
msgid "Printers Units"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:827
#, kde-format
msgid "Volume, Area and Length"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:828
#, kde-format
msgid "Mass and Weight"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:829
#, kde-format
msgid "Thermal Energy and Power"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:830
#, kde-format
msgid "Pressure"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:831
#, kde-format
msgid "Viscosity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:832
#, kde-format
msgid "Light and Illumination"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:833
#, kde-format
msgid "Radioactivity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:834
#, kde-format
msgid "Force and Energy"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:837
#, kde-format
msgid "Euler constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:840
#, kde-format
msgid "Pi"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:848
#, kde-format
msgid "Speed of light"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:851
#, kde-format
msgid "Vacuum permeability"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:854
#, kde-format
msgid "Vacuum permittivity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:857
#, kde-format
msgid "Planck constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:860
#, kde-format
msgid "Reduced Planck constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:863
#, kde-format
msgid "Avogadro constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:866
#, kde-format
msgid "Faraday"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:869
#, kde-format
msgid "Boltzmann constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:872
#, kde-format
msgid "Molar gas"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:875
#, kde-format
msgid "Standard gas volume"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:878
#, kde-format
msgid "Stefan-Boltzmann constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:881
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:449
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:314
#, kde-format
msgid "Gauss"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:889
#, kde-format
msgid "Astronomical unit"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:892
#, kde-format
msgid "Gravitational constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:895
#, kde-format
msgid "Light year"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:898
#, kde-format
msgid "Parsec"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:901
#, kde-format
msgid "Gravitational acceleration"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:904
#, kde-format
msgid "Solar mass"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:912
#, kde-format
msgid "Charge of the electron"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:915
#, kde-format
msgid "Energy of 1 electron volt"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:918
#, kde-format
msgid "Unified atomic mass"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:921
#, kde-format
msgid "Mass of the electron"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:924
#, kde-format
msgid "Mass of the muon"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:927
#, kde-format
msgid "Mass of the proton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:930
#, kde-format
msgid "Mass of the neutron"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:933
#, kde-format
msgid "Electromagnetic fine structure constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:936
#, kde-format
msgid "Rydberg constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:939
#, kde-format
msgid "Bohr radius"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:942
#, kde-format
msgid "Length of 1 angstrom"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:945
#, kde-format
msgid "Area of 1 barn"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:948
#, kde-format
msgid "Bohr Magneton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:951
#, kde-format
msgid "Nuclear Magneton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:954
#, kde-format
msgid "Magnetic moment of the electron [absolute value]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:957
#, kde-format
msgid "Magnetic moment of the proton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:960
#, kde-format
msgid "Thomson cross section"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:963
#, kde-format
msgid "Electric dipole moment of 1 Debye"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:971
#, kde-format
msgid "Number of seconds in 1 minute"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:974
#, kde-format
msgid "Number of seconds in 1 hour"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:977
#, kde-format
msgid "Number of seconds in 1 day"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:980
#, kde-format
msgid "Number of seconds in 1 week"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:988
#, kde-format
msgid "Length of 1 inch"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:991
#, kde-format
msgid "Length of 1 foot"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:994
#, kde-format
msgid "Length of 1 yard"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:997
#, kde-format
msgid "Length of 1 mile"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1000
#, kde-format
msgid "Length of 1/1000th of an inch"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1008
#, kde-format
msgid "Speed of 1 kilometer per hour"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1011
#, kde-format
msgid "Speed of 1 mile per hour"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1014
#, kde-format
msgid "Length of 1 nautical mile"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1017
#, kde-format
msgid "Length of 1 fathom"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1020
#, kde-format
msgid "Speed of 1 knot"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1028
#, kde-format
msgid "length of 1 printer's point [1/72 inch]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1031
#, kde-format
msgid "length of 1 TeX point [1/72.27 inch]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1039
#, kde-format
msgid "Length of 1 micron"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1042
#, kde-format
msgid "Area of 1 hectare"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1045
#, kde-format
msgid "Area of 1 acre"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1048
#, kde-format
msgid "Volume of 1 liter"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1051
#, kde-format
msgid "Volume of 1 US gallon"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1054
#, kde-format
msgid "Volume of 1 Canadian gallon"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1057
#, kde-format
msgid "Volume of 1 UK gallon"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1060
#, kde-format
msgid "Volume of 1 quart"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1063
#, kde-format
msgid "Volume of 1 pint"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1071
#, kde-format
msgid "Mass of 1 pound"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1074
#, kde-format
msgid "Mass of 1 ounce"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1077
#, kde-format
msgid "Mass of 1 ton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1080
#, kde-format
msgid "Mass of 1 metric ton [1000 kg]"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1083
#, kde-format
msgid "Mass of 1 UK ton"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1086
#, kde-format
msgid "Mass of 1 troy ounce"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1089
#, kde-format
msgid "Mass of 1 carat"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1092
#, kde-format
msgid "Force of 1 gram weight"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1095
#, kde-format
msgid "Force of 1 pound weight"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1098
#, kde-format
msgid "Force of 1 kilopound weight"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1101
#, kde-format
msgid "Force of 1 poundal"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1109
#, kde-format
msgid "Energy of 1 calorie"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1112
#, kde-format
msgid "Energy of 1 British Thermal Unit"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1115
#, kde-format
msgid "Energy of 1 Therm"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1118
#, kde-format
msgid "Power of 1 horsepower"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1126
#, kde-format
msgid "Pressure of 1 bar"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1129
#, kde-format
msgid "Pressure of 1 standard atmosphere"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1132
#, kde-format
msgid "Pressure of 1 torr"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1135
#, kde-format
msgid "Pressure of 1 meter of mercury"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1138
#, kde-format
msgid "Pressure of 1 inch of mercury"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1141
#, kde-format
msgid "Pressure of 1 inch of water"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1144
#, kde-format
msgid "Pressure of 1 pound per square inch"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1152
#, kde-format
msgid "Dynamic viscosity of 1 poise"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1155
#, kde-format
msgid "Kinematic viscosity of 1 stokes"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1163
#, kde-format
msgid "Luminance of 1 stilb"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1166
#, kde-format
msgid "Luminous flux of 1 lumen"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1169
#, kde-format
msgid "Illuminance of 1 lux"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1172
#, kde-format
msgid "Illuminance of 1 phot"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1175
#, kde-format
msgid "Illuminance of 1 footcandle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1178
#, kde-format
msgid "Luminance of 1 lambert"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1181
#, kde-format
msgid "Luminance of 1 footlambert"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1189
#, kde-format
msgid "Activity of 1 curie"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1192
#, kde-format
msgid "Exposure of 1 roentgen"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1195
#, kde-format
msgid "Absorbed dose of 1 rad"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1203
#, kde-format
msgid "SI unit of force"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1206
#, kde-format
msgid "Force of 1 Dyne"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1209
#, kde-format
msgid "SI unit of energy"
msgstr ""
#. +> trunk5 trunk
#: src/backend/gsl/ExpressionParser.cpp:1212
#, kde-format
msgid "Energy 1 erg"
msgstr ""
#. +> trunk5 trunk
#: src/backend/lib/XmlStreamReader.cpp:61
#: src/backend/lib/XmlStreamReader.cpp:66
#, kde-format
msgid "line %1, column %2: "
msgstr ""
#. +> trunk5 trunk
#: src/backend/lib/XmlStreamReader.cpp:77
#: src/backend/lib/XmlStreamReader.cpp:86
#: src/backend/lib/XmlStreamReader.cpp:101
#: src/backend/lib/XmlStreamReader.cpp:112
#, kde-format
msgid "unexpected end of document"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:135
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:2027
#, kde-format
msgid "FITS image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:135
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:2027
#, kde-format
msgid "FITS table"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:172
#, kde-format
msgid "Print Matrix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:244
#, kde-format
msgid "%1: x-start changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:250
#, kde-format
msgid "%1: x-end changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:256
#, kde-format
msgid "%1: y-start changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:262
#, kde-format
msgid "%1: y-end changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:268
#, kde-format
msgid "%1: numeric format changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:274
#, kde-format
msgid "%1: precision changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:447
#, kde-format
msgid "%1: set matrix size to %2x%3"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:467
#: src/backend/spreadsheet/Spreadsheet.cpp:288
#, kde-format
msgid "%1: copy %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:526
#, kde-format
msgid "%1: add %2 rows"
msgid_plural "%1: add %2 rows"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:536
#, kde-format
msgid "%1: add %2 column"
msgid_plural "%1: add %2 columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:640 src/backend/matrix/matrixcommands.h:139
#: src/backend/spreadsheet/Spreadsheet.cpp:249
#, kde-format
msgid "%1: clear"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/Matrix.cpp:1036
#, kde-format
msgid "no matrix element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.cpp:37
#, kde-format
msgid "%1: insert %2 column"
msgid_plural "%1: insert %2 columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.cpp:53
#, kde-format
msgid "%1: insert %2 row"
msgid_plural "%1: insert %2 rows"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.cpp:69
#, kde-format
msgid "%1: set matrix coordinates"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.cpp:109
#, kde-format
msgid "%1: replace values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:72
#, kde-format
msgid "%1: remove %2 column"
msgid_plural "%1: remove %2 columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:107
#, kde-format
msgid "%1: remove %2 row"
msgid_plural "%1: remove %2 rows"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:169
#, kde-format
msgid "%1: clear column %2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:194
#, kde-format
msgid "%1: set cell value"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:249
#: src/backend/matrix/matrixcommands.h:276
#, kde-format
msgid "%1: set cell values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:302
#, kde-format
msgid "%1: transpose"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:342
#, kde-format
msgid "%1: mirror horizontally"
msgstr ""
#. +> trunk5 trunk
#: src/backend/matrix/matrixcommands.h:372
#, kde-format
msgid "%1: mirror vertically"
msgstr ""
#. +> trunk5 trunk
#: src/backend/note/Note.cpp:60 src/backend/worksheet/Worksheet.cpp:218
#, kde-format
msgid "Print Worksheet"
msgstr ""
#. +> trunk5 trunk
#: src/backend/note/Note.cpp:146
#, kde-format
msgid "no note element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37 src/backend/nsl/nsl_fit.c:39
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:433
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:298
#, kde-format
msgid "Power"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37
#, kde-format
msgid "Magnitude"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37
#, kde-format
msgid "Amplitude"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37
#, kde-format
msgid "real part"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37
#, kde-format
msgid "imaginary part"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:37
#, kde-format
msgid "Phase"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:38
#, kde-format
msgid "Amplitude in dB"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:38
#, kde-format
msgid "normalized amplitude in dB"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:38
#, kde-format
msgid "Magnitude squared"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:38
#, kde-format
msgid "Amplitude squared"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:38
#, kde-format
msgid "raw"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:39 src/backend/nsl/nsl_filter.c:41
#, kde-format
msgid "Frequency"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:39 src/backend/nsl/nsl_filter.c:41
#, kde-format
msgid "Index"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_dft.c:39
#, kde-format
msgid "Period"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "first"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "second"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "third"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "fourth"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "fifth"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_diff.c:36
#, kde-format
msgid "sixth"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:39
#, kde-format
msgid "Low pass"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:39
#, kde-format
msgid "High pass"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:39
#, kde-format
msgid "Band pass"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:39
#, kde-format
msgid "Band reject"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Ideal"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Butterworth"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Chebyshev type I"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Chebyshev type II"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Legendre (Optimum L)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:40
#, kde-format
msgid "Bessel (Thomson)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_filter.c:41
#, kde-format
msgid "Fraction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:36
#, kde-format
msgid "Basic functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:36
#, kde-format
msgid "Peak functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:36
#, kde-format
msgid "Growth (sigmoidal)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:36
#, kde-format
msgid "Statistics (distributions)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:37
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:469
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:334
#: src/kdefrontend/datasources/ImportFileWidget.cpp:84
#: src/kdefrontend/datasources/ImportFileWidget.cpp:682
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:304
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:485
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:112
#, kde-format
msgid "Custom"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:39
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:445
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:310
#, kde-format
msgid "Inverse exponential"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:39 src/backend/nsl/nsl_sf_stats.c:32
#, kde-format
msgid "Exponential"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:39
#, kde-format
msgid "Polynomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:39
#, kde-format
msgid "Fourier"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:43
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:453
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:318
#, kde-format
msgid "Cauchy-Lorentz"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:43 src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Hyperbolic secant (sech)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:43
#, kde-format
msgid "Gaussian (normal)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:43
#, kde-format
msgid "Logistic (sech squared)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:48
#, kde-format
msgid "Algebraic sigmoid"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:48
#, kde-format
msgid "Logistic function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:49
#, kde-format
msgid "Error function (erf)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:49
#, kde-format
msgid "Hill"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:49
#, kde-format
msgid "Gompertz"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_fit.c:49
#, kde-format
msgid "Gudermann (gd)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "Douglas-Peucker (number)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "Douglas-Peucker (tolerance)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "Visvalingam-Whyatt"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "Reumann-Witkam"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "perpendicular distance"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:35
#, kde-format
msgid "n-th point"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:36
#: src/commonfrontend/worksheet/WorksheetView.cpp:331
#: src/kdefrontend/GuiObserver.cpp:327
#, kde-format
msgid "Interpolation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:36
#, kde-format
msgid "radial distance"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:36
#, kde-format
msgid "Opheim"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_geom_linesim.c:36
#, kde-format
msgid "Lang"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_int.c:37
#, kde-format
msgid "rectangle (1-point)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_int.c:37
#, kde-format
msgid "trapezoid (2-point)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_int.c:37
#, kde-format
msgid "Simpson's (3-point)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_int.c:37
#, kde-format
msgid "Simpson's 3/8 (4-point)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:31
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:235
#, kde-format
msgid "cubic spline (natural)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:31
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:236
#, kde-format
msgid "cubic spline (periodic)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:31
#: src/kdefrontend/dockwidgets/AxisDock.cpp:199
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:357
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:362
#, kde-format
msgid "linear"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:31
#, kde-format
msgid "polynomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:32
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:237
#, kde-format
msgid "Akima-spline (natural)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:32
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:238
#, kde-format
msgid "Akima-spline (periodic)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:32
#, kde-format
msgid "Steffen spline"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:32 src/backend/nsl/nsl_smooth.c:41
#, kde-format
msgid "cosine"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:32
#, kde-format
msgid "exponential"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:33
#, kde-format
msgid "piecewise cubic Hermite (PCH)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:33
#, kde-format
msgid "rational functions"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:34
#, kde-format
msgid "finite differences"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:34
#, kde-format
msgid "Catmull-Rom"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:34
#, kde-format
msgid "cardinal"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:34
#, kde-format
msgid "Kochanek-Bartels (TCB)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:35
#, kde-format
msgid "function"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:35
#, kde-format
msgid "derivative"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:35
#, kde-format
msgid "second derivative"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_interp.c:35
#, kde-format
msgid "integral"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:32
#, kde-format
msgid "Gaussian (Normal)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:32
#, kde-format
msgid "Gaussian Tail"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:32
#, kde-format
msgid "Laplace"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Exponential Power"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Cauchy-Lorentz (Breit-Wigner)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Rayleigh"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Rayleigh Tail"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Landau"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:33
#, kde-format
msgid "Levy alpha-stable"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "Levy skew alpha-stable"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "Gamma"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "Flat (uniform)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "Log-normal (Galton)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "Chi-squared"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:34
#, kde-format
msgid "F (Fisher-Snedecor)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Student's t"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Beta"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Logistic (sech-squared)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Pareto"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Weibull"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:35
#, kde-format
msgid "Gumbel Type-1 (maximum value; log-Weibull)"
msgstr ""
#. +> trunk5
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Gumbel Type-2"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Poisson"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Bernoulli"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Binomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Negative binomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Pascal"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Geometric"
msgstr ""
#. +> trunk
#: src/backend/nsl/nsl_sf_stats.c:36
#, kde-format
msgid "Type-2 Gumbel"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Hypergeometric"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Logarithmic"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Maxwell-Boltzmann"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Levy"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_stats.c:37
#, kde-format
msgid "Frechet (inverse Weibull)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:34 src/backend/nsl/nsl_smooth.c:40
#, kde-format
msgid "triangular"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:34
#, kde-format
msgid "rectangular (uniform)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:34
#, kde-format
msgid "triangular II (Bartlett)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:34
#, kde-format
msgid "triangular III (Parzen)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Welch (parabolic)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Hann (raised cosine)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Hamming"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Blackman"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Nuttall"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Blackman-Nuttall"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:35
#, kde-format
msgid "Blackman-Harris"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:36
#, kde-format
msgid "Flat top"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:36
#, kde-format
msgid "Bartlett-Hann"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_sf_window.c:36
#, kde-format
msgid "Lanczos"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:38
#, kde-format
msgid "moving average (central)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:38
#, kde-format
msgid "moving average (lagged)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:38
#, kde-format
msgid "percentile"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:38
#, kde-format
msgid "Savitzky-Golay"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#: src/kdefrontend/dockwidgets/AxisDock.cpp:301
#: src/kdefrontend/dockwidgets/AxisDock.cpp:310
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:230
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:299
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:227
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:379
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:410
#: src/kdefrontend/GuiTools.cpp:151
#, kde-format
msgid "none"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#, kde-format
msgid "interpolating"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#, kde-format
msgid "mirror"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#, kde-format
msgid "nearest"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#, kde-format
msgid "constant"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:39
#, kde-format
msgid "periodic"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:40
#, kde-format
msgid "uniform (rectangular)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:40
#, kde-format
msgid "binomial"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:40
#, kde-format
msgid "parabolic (Epanechnikov)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:41
#, kde-format
msgid "quartic (biweight)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:41
#, kde-format
msgid "triweight"
msgstr ""
#. +> trunk5 trunk
#: src/backend/nsl/nsl_smooth.c:41
#, kde-format
msgid "tricube"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:209
#, kde-format
msgid "%1: remove 1 column"
msgid_plural "%1: remove %2 columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:218
#, kde-format
msgid "%1: insert 1 column"
msgid_plural "%1: insert %2 columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:261
#, kde-format
msgid "%1: clear all masks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:280
#, kde-format
msgid "%1: move column %2 from position %3 to %4."
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:396
#, kde-format
msgid "%1: sort columns"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/Spreadsheet.cpp:747
#, kde-format
msgid "no spreadsheet element found"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/Spreadsheet.cpp:899
#, kde-format
msgid "integer data, %1 element"
msgid_plural "integer data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/backend/spreadsheet/Spreadsheet.cpp:902
#, kde-format
msgid "text data, %1 element"
msgid_plural "text data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/backend/spreadsheet/Spreadsheet.cpp:905
#, kde-format
msgid "month data, %1 element"
msgid_plural "month data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/backend/spreadsheet/Spreadsheet.cpp:908
#, kde-format
msgid "day data, %1 element"
msgid_plural "day data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/backend/spreadsheet/Spreadsheet.cpp:911
#, kde-format
msgid "date and time data, %1 element"
msgid_plural "date and time data, %1 elements"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:94
#, kde-format
msgid "%1, masked (ignored in all operations)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:99
#, kde-format
msgid "invalid cell, masked (ignored in all operations)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:101
#, kde-format
msgid "invalid cell (ignored in all operations)"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:394
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:222
#, kde-format
msgid "Numeric"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/SpreadsheetModel.cpp:397
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:223
#, kde-format
msgid "Integer"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:400
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:224
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:154
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:664
#, kde-format
msgid "Text"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:403
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:225
#, kde-format
msgid "Month names"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:406
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:226
#, kde-format
msgid "Day names"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:409
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:227
#, kde-format
msgid "Date and time"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:427
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:242
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:234
#, kde-format
msgid "X-error"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/SpreadsheetModel.cpp:430
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:236
#, kde-format
msgid "X-error +"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/SpreadsheetModel.cpp:433
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:235
#, kde-format
msgid "X-error -"
msgstr ""
#. +> trunk5 trunk
#: src/backend/spreadsheet/SpreadsheetModel.cpp:436
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:251
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:237
#, kde-format
msgid "Y-error"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/SpreadsheetModel.cpp:439
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:239
#, kde-format
msgid "Y-error +"
msgstr ""
#. +> trunk5
#: src/backend/spreadsheet/SpreadsheetModel.cpp:442
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:238
#, kde-format
msgid "Y-error -"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/AbstractPlot.cpp:102
#, kde-format
msgid "%1: set horizontal padding"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/AbstractPlot.cpp:109
#, kde-format
msgid "%1: set vertical padding"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbVisible)
#. i18n: ectx: property (text), widget (QCheckBox, chkVisible)
#. i18n: ectx: property (text), widget (QCheckBox, chbSymbolVisible)
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:215
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:514
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:130
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:93
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:113
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:149
#: src/backend/worksheet/TextLabel.cpp:136
#: src/kdefrontend/ui/datapickercurvewidget.ui:223
#: src/kdefrontend/ui/datapickerimagewidget.ui:917
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:231
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:375
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:317
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:278
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:162
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:68
#: src/kdefrontend/ui/dockwidgets/xycurvedockgeneraltab.ui:89
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:262
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:229
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:402
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:729
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:416
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:209
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:102
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:407
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:457
#: src/kdefrontend/ui/labelwidget.ui:262
#, kde-format
msgid "visible"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:224
#: src/kdefrontend/dockwidgets/AxisDock.cpp:206
#, kde-format
msgid "horizontal"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:227
#: src/kdefrontend/dockwidgets/AxisDock.cpp:207
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:369
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:373
#, kde-format
msgid "vertical"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOrientation)
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:245
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:108
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:142
#, kde-format
msgid "Orientation"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabLine)
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:250
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:244
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:29
#, kde-format
msgid "Line"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:251
#, kde-format
msgid "style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:254
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:377
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:230
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:307
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:309
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:418
#, kde-format
msgid "color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:425
#, kde-format
msgid "%1: set axis auto scaling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:466
#: src/kdefrontend/dockwidgets/AxisDock.cpp:534
#, kde-format
msgid "%1: set axis orientation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:473
#, kde-format
msgid "%1: set axis position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:480
#, kde-format
msgid "%1: set axis scale"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:488
#, kde-format
msgid "%1: set axis offset"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:502
#, kde-format
msgid "%1: set axis start"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:509
#, kde-format
msgid "%1: set axis end"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:516
#, kde-format
msgid "%1: set axis zero offset"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:523
#, kde-format
msgid "%1: set axis scaling factor"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:531
#: src/backend/worksheet/plots/cartesian/Axis.cpp:538
#, kde-format
msgid "%1: set title offset"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:546
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:248
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:376
#, kde-format
msgid "%1: set line style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:553
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:383
#, kde-format
msgid "%1: set line opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:560
#, kde-format
msgid "%1: set arrow type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:567
#, kde-format
msgid "%1: set arrow position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:574
#, kde-format
msgid "%1: set arrow size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:582
#, kde-format
msgid "%1: set major ticks direction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:589
#, kde-format
msgid "%1: set major ticks type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:596
#, kde-format
msgid "%1: set the total number of the major ticks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:603
#, kde-format
msgid "%1: set the increment for the major ticks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:610
#, kde-format
msgid "%1: assign major ticks' values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:625
#, kde-format
msgid "%1: set major ticks style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:632
#, kde-format
msgid "%1: set major ticks length"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:639
#, kde-format
msgid "%1: set major ticks opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:647
#, kde-format
msgid "%1: set minor ticks direction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:654
#, kde-format
msgid "%1: set minor ticks type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:661
#, kde-format
msgid "%1: set the total number of the minor ticks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:668
#, kde-format
msgid "%1: set the increment for the minor ticks"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:675
#, kde-format
msgid "%1: assign minor ticks' values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:690
#, kde-format
msgid "%1: set minor ticks style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:697
#, kde-format
msgid "%1: set minor ticks length"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:704
#, kde-format
msgid "%1: set minor ticks opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:712
#, kde-format
msgid "%1: set labels format"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:726
#: src/backend/worksheet/plots/cartesian/Axis.cpp:733
#, kde-format
msgid "%1: set labels precision"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:740
#, kde-format
msgid "%1: set labels position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:747
#, kde-format
msgid "%1: set label offset"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:754
#, kde-format
msgid "%1: set label rotation angle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:761
#, kde-format
msgid "%1: set label color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:768
#, kde-format
msgid "%1: set label font"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:775
#, kde-format
msgid "%1: set label prefix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:782
#, kde-format
msgid "%1: set label suffix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:789
#, kde-format
msgid "%1: set labels opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:797
#, kde-format
msgid "%1: set major grid style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:804
#, kde-format
msgid "%1: set major grid opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:812
#, kde-format
msgid "%1: set minor grid style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:819
#, kde-format
msgid "%1: set minor grid opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Axis.cpp:1994
#, kde-format
msgid "no axis element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:381
#: src/commonfrontend/worksheet/WorksheetView.cpp:304
#, kde-format
msgid "xy-curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:382
#, kde-format
msgid "Histogram"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:383
#: src/commonfrontend/worksheet/WorksheetView.cpp:305
#, kde-format
msgid "xy-curve from a mathematical equation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:385
#: src/commonfrontend/worksheet/WorksheetView.cpp:307
#, kde-format
msgid "xy-curve from a data reduction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:386
#: src/commonfrontend/worksheet/WorksheetView.cpp:308
#, kde-format
msgid "xy-curve from a differentiation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:387
#: src/commonfrontend/worksheet/WorksheetView.cpp:309
#, kde-format
msgid "xy-curve from an integration"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:388
#: src/commonfrontend/worksheet/WorksheetView.cpp:311
#, kde-format
msgid "xy-curve from an interpolation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:389
#: src/commonfrontend/worksheet/WorksheetView.cpp:312
#, kde-format
msgid "xy-curve from a smooth"
msgstr ""
#. i18n("xy-curve from an interpolation"), cartesianPlotAddNewActionGroup);
#. addSmoothCurveAction = new QAction(QIcon::fromTheme("labplot-xy-smooth-curve"), i18n("xy-curve from a smooth"), cartesianPlotAddNewActionGroup);
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:390
#: src/commonfrontend/worksheet/WorksheetView.cpp:317
#, kde-format
msgid "xy-curve from a fit to data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:391
#: src/commonfrontend/worksheet/WorksheetView.cpp:313
#, kde-format
msgid "xy-curve from a Fourier filter"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:392
#: src/commonfrontend/worksheet/WorksheetView.cpp:314
#, kde-format
msgid "xy-curve from a Fourier transform"
msgstr ""
#. i18n("xy-curve from a Fourier filter"), cartesianPlotAddNewActionGroup);
#. addFourierTransformCurveAction = new QAction(QIcon::fromTheme("labplot-xy-fourier_transform-curve"), i18n("xy-curve from a Fourier transform"), cartesianPlotAddNewActionGroup);
#. i18n("xy-curve from an interpolation"), this);
#. addSmoothCurveAction = new QAction(QIcon::fromTheme("labplot-xy-smooth-curve"), i18n("xy-curve from a smooth"), this);
#. addFourierFilterCurveAction = new QAction(QIcon::fromTheme("labplot-xy-fourier_filter-curve"), i18n("xy-curve from a Fourier filter"), this);
#. addFourierTransformCurveAction = new QAction(QIcon::fromTheme("labplot-xy-fourier_transform-curve"), i18n("xy-curve from a Fourier transform"), this);
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:397
#: src/commonfrontend/worksheet/WorksheetView.cpp:320
#, kde-format
msgid "legend"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:401
#: src/commonfrontend/worksheet/WorksheetView.cpp:321
#, kde-format
msgid "horizontal axis"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:402
#: src/commonfrontend/worksheet/WorksheetView.cpp:322
#, kde-format
msgid "vertical axis"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:403
#: src/commonfrontend/worksheet/WorksheetView.cpp:323
#, kde-format
msgid "custom point"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:422
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:282
#: src/commonfrontend/worksheet/WorksheetView.cpp:326
#, kde-format
msgid "Data operation"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:423
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:283
#, kde-format
msgid "Reduce data"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:424
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:285
#, kde-format
msgid "Differentiate"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:425
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:287
#, kde-format
msgid "Integrate"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:426
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:289
#, kde-format
msgid "Interpolate"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:427
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:291
#: src/commonfrontend/worksheet/WorksheetView.cpp:332
#, kde-format
msgid "Smooth"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:429
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:294
#, kde-format
msgid "Linear"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:437
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:302
#, kde-format
msgid "Exponential (degree 1)"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:441
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:306
#, kde-format
msgid "Exponential (degree 2)"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:457
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:322
#, kde-format
msgid "Arc Tangent"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:473
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:338
#: src/commonfrontend/worksheet/WorksheetView.cpp:334
#, kde-format
msgid "Fourier filter"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:485
#: src/commonfrontend/worksheet/WorksheetView.cpp:344
#, kde-format
msgid "auto scale"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:486
#: src/commonfrontend/worksheet/WorksheetView.cpp:346
#, kde-format
msgid "auto scale X"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:487
#: src/commonfrontend/worksheet/WorksheetView.cpp:348
#, kde-format
msgid "auto scale Y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:488
#: src/commonfrontend/worksheet/WorksheetView.cpp:350
#, kde-format
msgid "zoom in"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:489
#: src/commonfrontend/worksheet/WorksheetView.cpp:352
#, kde-format
msgid "zoom out"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:490
#: src/commonfrontend/worksheet/WorksheetView.cpp:354
#, kde-format
msgid "zoom in X"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:491
#: src/commonfrontend/worksheet/WorksheetView.cpp:356
#, kde-format
msgid "zoom out X"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:492
#: src/commonfrontend/worksheet/WorksheetView.cpp:358
#, kde-format
msgid "zoom in Y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:493
#: src/commonfrontend/worksheet/WorksheetView.cpp:360
#, kde-format
msgid "zoom out Y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:494
#: src/commonfrontend/worksheet/WorksheetView.cpp:362
#, kde-format
msgid "shift left X"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:495
#: src/commonfrontend/worksheet/WorksheetView.cpp:364
#, kde-format
msgid "shift right X"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:496
#: src/commonfrontend/worksheet/WorksheetView.cpp:366
#, kde-format
msgid "shift up Y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:497
#: src/commonfrontend/worksheet/WorksheetView.cpp:368
#, kde-format
msgid "shift down Y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:522
#: src/commonfrontend/worksheet/WorksheetView.cpp:390
#: src/commonfrontend/worksheet/WorksheetView.cpp:450
-#: src/kdefrontend/MainWin.cpp:484
+#: src/kdefrontend/MainWin.cpp:487
#, kde-format
msgid "Add new"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:543
#: src/commonfrontend/worksheet/WorksheetView.cpp:401
#, kde-format
msgid "Zoom"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:564
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:382
#: src/commonfrontend/worksheet/WorksheetView.cpp:499
#, kde-format
msgid "Data Manipulation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:570
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:388
#: src/kdefrontend/GuiObserver.cpp:343
#, kde-format
msgid "Fit"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:588
#, kde-format
msgid "Analysis"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:601
#: src/commonfrontend/worksheet/WorksheetView.cpp:505
#, kde-format
msgid "Apply Theme"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:796
#, kde-format
msgid "%1: change geometry rect"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:556
#, kde-format
msgid "%1: set geometry rect"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:829
#, kde-format
msgid "%1: set range type"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:836
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:843
#, kde-format
msgid "%1: set range"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:851
#, kde-format
msgid "%1: change x-range auto scaling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:893
#, kde-format
msgid "%1: set min x"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:900
#, kde-format
msgid "%1: set max x"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:907
#, kde-format
msgid "%1: set x scale"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:914
#, kde-format
msgid "%1: x-range breaking enabled"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:920
#, kde-format
msgid "%1: x-range breaks changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:927
#, kde-format
msgid "%1: change y-range auto scaling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:969
#, kde-format
msgid "%1: set min y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:976
#, kde-format
msgid "%1: set max y"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:983
#, kde-format
msgid "%1: set y scale"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:990
#, kde-format
msgid "%1: y-range breaking enabled"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:996
#, kde-format
msgid "%1: y-range breaks changed"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1004
#: src/backend/worksheet/Worksheet.cpp:617
#, kde-format
msgid "%1: load theme %2"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:2222
#, kde-format
msgid "%1: Load theme %2."
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1005
#: src/backend/worksheet/Worksheet.cpp:618
#, kde-format
msgid "%1: set theme"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1009
#: src/backend/worksheet/Worksheet.cpp:622
#, kde-format
msgid "%1: disable theming"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1066
#, kde-format
msgid "%1: reduce '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1067
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:438
#, kde-format
msgid "Reduction of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1074
#, kde-format
msgid "%1: add data reduction curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1085
#, kde-format
msgid "%1: differentiate '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1086
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:441
#, kde-format
msgid "Derivative of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1093
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1112
#, kde-format
msgid "%1: add differentiation curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1104
#, kde-format
msgid "%1: integrate '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1105
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:444
#, kde-format
msgid "Integral of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1123
#, kde-format
msgid "%1: interpolate '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1124
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:447
#, kde-format
msgid "Interpolation of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1131
#, kde-format
msgid "%1: add interpolation curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1142
#, kde-format
msgid "%1: smooth '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1143
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:450
#, kde-format
msgid "Smoothing of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1150
#, kde-format
msgid "%1: add smoothing curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1161
#, kde-format
msgid "%1: fit to '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1162
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:463
#, kde-format
msgid "Fit to '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1174
#, kde-format
msgid "%1: add fit curve"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1185
#, kde-format
msgid "%1: Fourier filtering of '%2'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1186
#, kde-format
msgid "Fourier filtering of '%1'"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:1191
#, kde-format
msgid "%1: add Fourier filter curve"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:2484
#, kde-format
msgid "no cartesianPlot element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlot.cpp:2813
#, kde-format
msgid "unknown cartesianPlot element '%1'"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:229
#, kde-format
msgid "%1: set font"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:236
#, kde-format
msgid "%1: set font color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:243
#, kde-format
msgid "%1: change column order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:250
#, kde-format
msgid "%1: change line+symbol width"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:267
#: src/backend/worksheet/plots/PlotArea.cpp:161
#: src/backend/worksheet/Worksheet.cpp:446
#, kde-format
msgid "%1: background type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:274
#: src/backend/worksheet/plots/PlotArea.cpp:168
#: src/backend/worksheet/Worksheet.cpp:452
#, kde-format
msgid "%1: background color style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:281
#: src/backend/worksheet/plots/PlotArea.cpp:175
#: src/backend/worksheet/Worksheet.cpp:458
#, kde-format
msgid "%1: background image style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:288
#: src/backend/worksheet/plots/PlotArea.cpp:182
#: src/backend/worksheet/Worksheet.cpp:464
#, kde-format
msgid "%1: background brush style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:295
#: src/backend/worksheet/plots/PlotArea.cpp:189
#: src/backend/worksheet/Worksheet.cpp:470
#, kde-format
msgid "%1: set background first color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:302
#: src/backend/worksheet/plots/PlotArea.cpp:196
#: src/backend/worksheet/Worksheet.cpp:476
#, kde-format
msgid "%1: set background second color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:309
#: src/backend/worksheet/plots/PlotArea.cpp:203
#: src/backend/worksheet/Worksheet.cpp:482
#, kde-format
msgid "%1: set background image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:316
#: src/backend/worksheet/Worksheet.cpp:488
#, kde-format
msgid "%1: set opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:324
#, kde-format
msgid "%1: set border style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:331
#, kde-format
msgid "%1: set border corner radius"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:338
#, kde-format
msgid "%1: set border opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:346
#: src/backend/worksheet/Worksheet.cpp:504
#: src/backend/worksheet/Worksheet.cpp:505
#, kde-format
msgid "%1: set layout top margin"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:353
#: src/backend/worksheet/Worksheet.cpp:513
#: src/backend/worksheet/Worksheet.cpp:514
#, kde-format
msgid "%1: set layout bottom margin"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:360
#: src/backend/worksheet/Worksheet.cpp:522
#: src/backend/worksheet/Worksheet.cpp:523
#, kde-format
msgid "%1: set layout left margin"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:367
#: src/backend/worksheet/Worksheet.cpp:531
#: src/backend/worksheet/Worksheet.cpp:532
#, kde-format
msgid "%1: set layout right margin"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:374
#: src/backend/worksheet/Worksheet.cpp:540
#: src/backend/worksheet/Worksheet.cpp:541
#, kde-format
msgid "%1: set layout vertical spacing"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:381
#: src/backend/worksheet/Worksheet.cpp:549
#: src/backend/worksheet/Worksheet.cpp:550
#, kde-format
msgid "%1: set layout horizontal spacing"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:388
#: src/backend/worksheet/Worksheet.cpp:567
#: src/backend/worksheet/Worksheet.cpp:568
#, kde-format
msgid "%1: set layout column count"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CartesianPlotLegend.cpp:919
#, kde-format
msgid "no cartesian plot legend element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:153
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:413
#, kde-format
msgid "%1: set symbol style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:160
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:420
#, kde-format
msgid "%1: set symbol size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:167
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:427
#, kde-format
msgid "%1: rotate symbols"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:174
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:434
#, kde-format
msgid "%1: set symbol filling"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:181
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:441
#, kde-format
msgid "%1: set symbol outline style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:188
#, kde-format
msgid "%1: set symbol opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/CustomPoint.cpp:415
#, kde-format
msgid "no custom point element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:221
#: src/backend/worksheet/plots/cartesian/XYEquationCurve.cpp:110
#, kde-format
msgid "%1: set equation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:228
#, kde-format
msgid "%1: assign x values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:255
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:456
#, kde-format
msgid "%1: set values type"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:262
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:463
#, kde-format
msgid "%1: set values column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:275
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:476
#, kde-format
msgid "%1: set values position"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:282
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:483
#, kde-format
msgid "%1: set values distance"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:289
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:490
#, kde-format
msgid "%1: rotate values"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:296
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:497
#, kde-format
msgid "%1: set values opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:305
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:506
#, kde-format
msgid "%1: set values prefix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:312
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:513
#, kde-format
msgid "%1: set values suffix"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:319
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:520
#, kde-format
msgid "%1: set values font"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:326
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:527
#, kde-format
msgid "%1: set values color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:334
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:535
#, kde-format
msgid "%1: filling position changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:341
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:542
#, kde-format
msgid "%1: filling type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:348
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:549
#, kde-format
msgid "%1: filling color style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:355
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:556
#, kde-format
msgid "%1: filling image style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:362
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:563
#, kde-format
msgid "%1: filling brush style changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:369
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:570
#, kde-format
msgid "%1: set filling first color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:376
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:577
#, kde-format
msgid "%1: set filling second color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:383
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:584
#, kde-format
msgid "%1: set filling image"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:390
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:591
#, kde-format
msgid "%1: set filling opacity"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/Histogram.cpp:1412
#, kde-format
msgid "no histogram element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:110
#, kde-format
msgid "circle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:112
#, kde-format
msgid "square"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:114
#, kde-format
msgid "equilateral triangle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:116
#, kde-format
msgid "right triangle"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:118
#, kde-format
msgid "bar"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:120
#, kde-format
msgid "peaked bar"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:122
#, kde-format
msgid "skewed bar"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:124
#, kde-format
msgid "diamond"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:126
#, kde-format
msgid "lozenge"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:128
#, kde-format
msgid "tie"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:130
#, kde-format
msgid "tiny tie"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:132
#, kde-format
msgid "plus"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:134
#, kde-format
msgid "boomerang"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:136
#, kde-format
msgid "small boomerang"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:138
#, kde-format
msgid "star4"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:140
#, kde-format
msgid "star5"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:142
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:228
#, kde-format
msgid "line"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/Symbol.cpp:144
#, kde-format
msgid "cross"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYAnalysisCurve.cpp:99
#, kde-format
msgid "%1: data source type changed"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYAnalysisCurve.cpp:106
#, kde-format
msgid "%1: data source curve changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYAnalysisCurve.cpp:125
#, kde-format
msgid "%1: assign x-data"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYAnalysisCurve.cpp:138
#, kde-format
msgid "%1: assign y-data"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYSmoothCurve.cpp:355
#, kde-format
msgid "no xy smooth curve element found"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYInterpolationCurve.cpp:529
#, kde-format
msgid "no xy interpolation curve element found"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYFourierTransformCurve.cpp:379
#, kde-format
msgid "no xy Fourier transform curve element found"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYFourierFilterCurve.cpp:369
#, kde-format
msgid "no xy Fourier filter curve element found"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYDifferentiationCurve.cpp:343
#, kde-format
msgid "no xy differentiation curve element found"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYDataReductionCurve.cpp:387
#, kde-format
msgid "no xy dataReduction curve element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:176
#, kde-format
msgid "Navigate to \"%1\""
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:314
#, kde-format
msgid "%1: x-data source changed"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:320
#, kde-format
msgid "%1: assign y values"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:334
#, kde-format
msgid "%1: y-data source changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:355
#, kde-format
msgid "%1: line type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:362
#, kde-format
msgid "%1: set skip line gaps"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:369
#, kde-format
msgid "%1: set the number of interpolation points"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:391
#, kde-format
msgid "%1: drop line type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:398
#, kde-format
msgid "%1: set drop line style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:405
#, kde-format
msgid "%1: set drop line opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:448
#, kde-format
msgid "%1: set symbols opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:599
#, kde-format
msgid "%1: x-error type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:606
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:619
#, kde-format
msgid "%1: set x-error column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:632
#, kde-format
msgid "%1: y-error type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:639
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:652
#, kde-format
msgid "%1: set y-error column"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:665
#, kde-format
msgid "%1: set error bar cap size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:672
#, kde-format
msgid "%1: error bar type changed"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:679
#, kde-format
msgid "%1: set error bar style"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:686
#, kde-format
msgid "%1: set error bar opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:1076
#, kde-format
msgid "Error: Akima spline interpolation requires a minimum of 5 points."
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:1078
#, kde-format
msgid "Error: Couldn't initialize the spline function."
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:1058
#, kde-format
msgid "Couldn't initialize spline function"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:1093
#, kde-format
msgid "x values must be monotonically increasing."
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:1096
#, kde-format
msgid "Error: %1"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYCurve.cpp:2182
#, kde-format
msgid "no xy-curve element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYDataReductionCurve.cpp:91
#, kde-format
msgid "%1: set options and perform the data reduction"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYDataReductionCurve.cpp:158
#: src/backend/worksheet/plots/cartesian/XYDifferentiationCurve.cpp:163
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1425
#: src/backend/worksheet/plots/cartesian/XYFourierFilterCurve.cpp:167
#: src/backend/worksheet/plots/cartesian/XYFourierTransformCurve.cpp:150
#: src/backend/worksheet/plots/cartesian/XYIntegrationCurve.cpp:161
#: src/backend/worksheet/plots/cartesian/XYInterpolationCurve.cpp:164
#: src/backend/worksheet/plots/cartesian/XYSmoothCurve.cpp:162
#, kde-format
msgid "Number of x and y data points must be equal."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYDataReductionCurve.cpp:196
#: src/backend/worksheet/plots/cartesian/XYDifferentiationCurve.cpp:201
#: src/backend/worksheet/plots/cartesian/XYIntegrationCurve.cpp:198
#: src/backend/worksheet/plots/cartesian/XYInterpolationCurve.cpp:202
#: src/backend/worksheet/plots/cartesian/XYSmoothCurve.cpp:200
#, kde-format
msgid "Not enough data points available."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYDifferentiationCurve.cpp:94
#, kde-format
msgid "%1: set options and perform the differentiation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYEquationCurve.cpp:199
#, kde-format
msgid "no xy equation curve element found"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:563
#, kde-format
msgid "%1: assign x-error"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:576
#, kde-format
msgid "%1: assign y-error"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:153
#, kde-format
msgid "%1: assign weights"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:588
#, kde-format
msgid "%1: set fit options and perform the fit"
msgstr ""
#. +> trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1248
#, kde-format
msgid "no xy fit curve element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1396
#, kde-format
msgid "Model has no parameters."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1435
#, kde-format
msgid "Not sufficient weight data points provided."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1489
#: src/backend/worksheet/plots/cartesian/XYFourierFilterCurve.cpp:205
#: src/backend/worksheet/plots/cartesian/XYFourierTransformCurve.cpp:178
#, kde-format
msgid "No data points available."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFitCurve.cpp:1498
#, kde-format
msgid "The number of data points (%1) must be greater than or equal to the number of parameters (%2)."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFourierFilterCurve.cpp:100
#, kde-format
msgid "%1: set filter options and perform the Fourier filter"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYFourierTransformCurve.cpp:96
#, kde-format
msgid "%1: set transform options and perform the Fourier transform"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYIntegrationCurve.cpp:94
#, kde-format
msgid "%1: set options and perform the integration"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYIntegrationCurve.cpp:296
#, kde-format
msgid "no xy integration curve element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYInterpolationCurve.cpp:97
#, kde-format
msgid "%1: set options and perform the interpolation"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/cartesian/XYSmoothCurve.cpp:95
#, kde-format
msgid "%1: set options and perform the smooth"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:145
#, kde-format
msgid "%1: toggle clipping"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:210
#, kde-format
msgid "%1: set plot area opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:218
#, kde-format
msgid "%1: set plot area border"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:225
#, kde-format
msgid "%1: set plot area corner radius"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:232
#, kde-format
msgid "%1: set plot area border opacity"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/plots/PlotArea.cpp:436
#, kde-format
msgid "no plot area element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:219
#, kde-format
msgid "%1: set label text"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:226
#, kde-format
msgid "%1: set TeX main font"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:233
#, kde-format
msgid "%1: set TeX font color"
msgstr ""
#. +> trunk5
#: src/backend/worksheet/TextLabel.cpp:240
#, kde-format
msgid "%1: set TeX background color"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:283
#, kde-format
msgid "%1: set horizontal alignment"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:290
#, kde-format
msgid "%1: set vertical alignment"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/TextLabel.cpp:708
#, kde-format
msgid "no textLabel element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/Worksheet.cpp:439
#, kde-format
msgid "%1: change \"rescale the content\" property"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/Worksheet.cpp:495
#: src/backend/worksheet/Worksheet.cpp:496
#, kde-format
msgid "%1: set layout"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/Worksheet.cpp:558
#: src/backend/worksheet/Worksheet.cpp:559
#, kde-format
msgid "%1: set layout row count"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/Worksheet.cpp:596
#: src/backend/worksheet/Worksheet.cpp:597
#, kde-format
msgid "%1: set page size"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/Worksheet.cpp:812
#, kde-format
msgid "no worksheet element found"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/WorksheetElement.cpp:46
#, kde-format
msgid "Drawing &order"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/WorksheetElement.cpp:47
#, kde-format
msgid "Move &behind"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/WorksheetElement.cpp:48
#, kde-format
msgid "Move in &front of"
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/WorksheetElement.cpp:213
#, kde-format
msgid "%1: move behind %2."
msgstr ""
#. +> trunk5 trunk
#: src/backend/worksheet/WorksheetElement.cpp:223
#, kde-format
msgid "%1: move in front of %2."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, restart_backend)
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:59
#: src/kdefrontend/ui/dockwidgets/cantorworksheetdock.ui:108
#, kde-format
msgid "Restart Backend"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, evaluate_worksheet)
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:62
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:226
#: src/kdefrontend/ui/dockwidgets/cantorworksheetdock.ui:96
#, kde-format
msgid "Evaluate Worksheet"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:65
#, kde-format
msgid "Evaluate Entry"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:69
#, kde-format
msgid "Insert Command Entry"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:73
#, kde-format
msgid "Insert Text Entry"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:76
#, kde-format
msgid "Insert Latex Entry"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:79
#, kde-format
msgid "Insert Page Break"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:82
#, kde-format
msgid "Remove Current Entry"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:85
#, kde-format
msgid "Compute Eigenvectors"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:88
#, kde-format
msgid "Create Matrix"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:91
#, kde-format
msgid "Compute Eigenvalues"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:94
#, kde-format
msgid "Invert Matrix"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:97
#: src/commonfrontend/worksheet/WorksheetView.cpp:328
#: src/kdefrontend/GuiObserver.cpp:295
#, kde-format
msgid "Differentiation"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:100
#: src/commonfrontend/worksheet/WorksheetView.cpp:329
#: src/kdefrontend/GuiObserver.cpp:311
#, kde-format
msgid "Integration"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:103
#, kde-format
msgid "Solve Equations"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:106
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:123
#: src/commonfrontend/worksheet/WorksheetView.cpp:174
#, kde-format
msgid "Zoom in"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:110
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:126
#: src/commonfrontend/worksheet/WorksheetView.cpp:177
#, kde-format
msgid "Zoom out"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:114
#, kde-format
msgid "Find"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:118
#: src/kdefrontend/datasources/ImportDialog.cpp:128
#, kde-format
msgid "Replace"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:122
#, kde-format
msgid "Line Numbers"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:126
#, kde-format
msgid "Animate Worksheet"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:130
#, kde-format
msgid "Latex Typesetting"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:134
#, kde-format
msgid "Syntax Completion"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:222
#, kde-format
msgid "Interrupt"
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:224
#, kde-format
msgid "Calculating..."
msgstr ""
#. +> trunk5
#: src/commonfrontend/cantorWorksheet/CantorWorksheetView.cpp:228
#, kde-format
msgid "Ready"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:129
#: src/commonfrontend/worksheet/WorksheetView.cpp:180
#, kde-format
msgid "Original size"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:132
#: src/commonfrontend/worksheet/WorksheetView.cpp:183
#, kde-format
msgid "Fit to height"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:133
#: src/commonfrontend/worksheet/WorksheetView.cpp:184
#, kde-format
msgid "Fit to width"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:136
#: src/commonfrontend/worksheet/WorksheetView.cpp:188
#, kde-format
msgid "Select and Edit"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:139
#: src/commonfrontend/worksheet/WorksheetView.cpp:191
#, kde-format
msgid "Navigate"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:142
#: src/commonfrontend/worksheet/WorksheetView.cpp:194
#, kde-format
msgid "Select and Zoom"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:145
#, kde-format
msgid "Select and Move"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:148
#, kde-format
msgid "Set Axis Points"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:151
#, kde-format
msgid "Set Curve Points"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:154
#, kde-format
msgid "Select Curve Segments"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:157
#, kde-format
msgid "New Curve"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:159
#, kde-format
msgid "Shift Left"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:162
#, kde-format
msgid "Shift Right"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:165
#, kde-format
msgid "Shift Up"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:168
#, kde-format
msgid "Shift Down"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:171
#: src/commonfrontend/worksheet/WorksheetView.cpp:198
#, kde-format
msgid "No Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:175
#: src/commonfrontend/worksheet/WorksheetView.cpp:202
#, kde-format
msgid "2x Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:178
#: src/commonfrontend/worksheet/WorksheetView.cpp:205
#, kde-format
msgid "3x Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:181
#: src/commonfrontend/worksheet/WorksheetView.cpp:208
#, kde-format
msgid "4x Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:184
#: src/commonfrontend/worksheet/WorksheetView.cpp:211
#, kde-format
msgid "5x Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:196
#: src/commonfrontend/worksheet/WorksheetView.cpp:395
#: src/commonfrontend/worksheet/WorksheetView.cpp:442
#, kde-format
msgid "Mouse Mode"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:203
#, kde-format
msgid "Data Entry Mode"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:208
#, kde-format
msgid "Zoom View"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:216
#, kde-format
msgid "Move Last Point"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:222
#: src/commonfrontend/worksheet/WorksheetView.cpp:410
#, kde-format
msgid "Magnification"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:571
#, kde-format
msgid "%1: change position of selected DatapickerPoints."
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:643
#, kde-format
msgid "%1: add new curve."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDataSourceCurve)
#. +> trunk5 trunk
#: src/commonfrontend/datapicker/DatapickerImageView.cpp:644
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:99
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:89
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:47
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:99
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:243
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:89
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:95
#, kde-format
msgid "Curve"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:144
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:198
#, kde-format
msgid "Cu&t"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:145
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:199
#, kde-format
msgid "&Copy"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:146
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:200
#, kde-format
msgid "Past&e"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:147
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:203
#, kde-format
msgid "Clea&r Selection"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:148
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:204
#, kde-format
msgid "Select All"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:160
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:213
#, kde-format
msgid "Function Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:161
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:214
#, kde-format
msgid "Const Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:162
#, kde-format
msgid "Clear Matrix"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:163
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:221
#, kde-format
msgid "&Go to Cell"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:165
#, kde-format
msgid "&Transpose"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:166
#, kde-format
msgid "Mirror &Horizontally"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:167
#, kde-format
msgid "Mirror &Vertically"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:173
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:52
#, kde-format
msgid "Rows and Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:175
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:53
#, kde-format
msgid "xy-Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:177
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:54
#, kde-format
msgid "Rows, Columns and xy-Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:182
#, kde-format
msgid "&Add Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:183
#, kde-format
msgid "&Insert Empty Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:184
#, kde-format
msgid "Remo&ve Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:185
#, kde-format
msgid "Clea&r Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:186
#: src/commonfrontend/matrix/MatrixView.cpp:193
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:222
#, kde-format
msgid "Statisti&cs"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:189
#, kde-format
msgid "&Add Rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:190
#, kde-format
msgid "&Insert Empty Rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:191
#, kde-format
msgid "Remo&ve Rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:192
#, kde-format
msgid "Clea&r Rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:232
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:353
#, kde-format
msgid "Selection"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:258
#: src/commonfrontend/matrix/MatrixView.cpp:309
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:437
#, kde-format
msgid "Generate Data"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:264
#: src/commonfrontend/matrix/MatrixView.cpp:315
#, kde-format
msgid "View"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:279
#, kde-format
msgid "Header format"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:546
#: src/commonfrontend/matrix/MatrixView.cpp:550
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1914
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1918
#, kde-format
msgid "Go to Cell"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:546
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1914
#, kde-format
msgid "Enter column"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:550
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1918
#, kde-format
msgid "Enter row"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:580
#, kde-format
msgid "Fill the matrix with constant value"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, lValue)
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:581
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1468
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1485
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1502
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#: src/kdefrontend/ui/datapickerimagewidget.ui:988
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:61
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:81
#, kde-format
msgid "Value"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:599
#, kde-format
msgid "%1: cut selected cell(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:645
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1153
#, kde-format
msgid "%1: paste from clipboard"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:713
#, kde-format
msgid "%1: clear selected cell(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:834
#, kde-format
msgid "%1: insert empty column(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:855
#, kde-format
msgid "%1: remove selected column(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:864
#, kde-format
msgid "%1: clear selected column(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:889
#, kde-format
msgid "%1: insert empty rows(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:910
#, kde-format
msgid "%1: remove selected rows(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/matrix/MatrixView.cpp:923
#, kde-format
msgid "%1: clear selected rows(s)"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:80
#, kde-format
msgid "Search/Filter:"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:85
#: src/commonfrontend/widgets/TreeViewComboBox.cpp:73
#, kde-format
msgid "Search/Filter text"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:117
#, kde-format
msgid "case sensitive"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:122
#, kde-format
msgid "match complete word"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:127
#, kde-format
msgid "expand all"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:130
#, kde-format
msgid "expand selected"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:133
#, kde-format
msgid "collapse all"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:136
#, kde-format
msgid "collapse selected"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:139
#, kde-format
msgid "delete selected"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:142
#: src/commonfrontend/ProjectExplorer.cpp:467
#, kde-format
msgid "hide search/filter options"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:145
#, kde-format
msgid "show all"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:173
#, kde-format
msgid "Tree options"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:186
#, kde-format
msgid "show/hide columns"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lColumnCount)
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:270
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:147
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:110
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:106
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:604
#, kde-format
msgid "Columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:464
#, kde-format
msgid "show search/filter options"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/ProjectExplorer.cpp:611
#, kde-format
msgid "Project Explorer: removed %1 selected object."
msgid_plural "Project Explorer: removed %1 selected objects."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:201
#, kde-format
msgid "&Mask Selection"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:202
#, kde-format
msgid "&Unmask Selection"
msgstr ""
#. i18n("Assign &Formula"), this);
#. action_recalculate = new QAction(QIcon::fromTheme(""), i18n("Recalculate"), this);
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:208
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:209
#, kde-format
msgid "Row Numbers"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:210
#, kde-format
msgid "Uniform Random Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:211
#, kde-format
msgid "Random Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:212
#, kde-format
msgid "Equidistant Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:217
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:761
#, kde-format
msgid "Show Comments"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:218
#, kde-format
msgid "Clear Spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:219
#, kde-format
msgid "Clear Masks"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:220
#, kde-format
msgid "&Sort Spreadsheet"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:225
#, kde-format
msgid "Insert Column Left"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:226
#, kde-format
msgid "Insert Column Right"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:227
#, kde-format
msgid "Remove Selected Columns"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:228
#, kde-format
msgid "Clear Selected Columns"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:230
#: src/kdefrontend/widgets/ThemesWidget.cpp:99
#, kde-format
msgid "None"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:245
#, kde-format
msgid "X-error minus"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:248
#, kde-format
msgid "X-error plus"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:254
#, kde-format
msgid "Y-error minus"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:257
#, kde-format
msgid "Y-error plus"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:260
#, kde-format
msgid "Reverse"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:261
#, kde-format
msgid "Drop Values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:262
#, kde-format
msgid "Mask Values"
msgstr ""
#. i18n("Join"), this);
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:264
#, kde-format
msgid "&Normalize"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:265
#, kde-format
msgid "&Normalize Selection"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:266
#, kde-format
msgid "&Selected Columns"
msgstr ""
#. +> trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:197
#, kde-format
msgid "&Add Column"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:267
#, kde-format
msgid "&Ascending"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:268
#, kde-format
msgid "&Descending"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:269
#, kde-format
msgid "Column Statisti&cs"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:272
#, kde-format
msgid "Insert Row Above"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:273
#, kde-format
msgid "Insert Row Below"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:274
#, kde-format
msgid "Remo&ve Selected Rows"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:275
#, kde-format
msgid "Clea&r Selected Rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:276
#, kde-format
msgid "Row Statisti&cs"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:357
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:499
#, kde-format
msgid "Fi&ll Selection with"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:406
#, kde-format
msgid "Analyze and plot data"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:419
#, kde-format
msgid "Set Column As"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:453
#: src/kdefrontend/spreadsheet/SortDialog.cpp:82
#, kde-format
msgid "Sort"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:759
#, kde-format
msgid "Hide Comments"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1103
#, kde-format
msgid "%1: cut selected cells"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1229
#, kde-format
msgid "%1: mask selected cells"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1245
#, kde-format
msgid "%1: unmask selected cells"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1272
#, kde-format
msgid "%1: fill cells with row numbers"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1325
#, kde-format
msgid "%1: fill column with row numbers"
msgid_plural "%1: fill columns with row numbers"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1365
#, kde-format
msgid "%1: fill cells with random values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1460
#, kde-format
msgid "%1: fill cells with const values"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1467
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1484
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1501
#, kde-format
msgid "Fill the selection with constant value"
msgstr ""
#. +> trunk5
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1541
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1581
#, kde-format
msgid "%1: insert empty column"
msgstr ""
#. +> trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1223
#, kde-format
msgid "%1: insert empty columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1622
#, kde-format
msgid "%1: remove selected columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1633
#, kde-format
msgid "%1: clear selected columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1676
#, kde-format
msgid "%1: reverse column"
msgid_plural "%1: reverse columns"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1711
#, kde-format
msgid "%1: normalize columns"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1730
#, kde-format
msgid "%1: normalize selection"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1811
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1826
#, kde-format
msgid "%1: insert empty rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1841
#, kde-format
msgid "%1: remove selected rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1853
#, kde-format
msgid "%1: clear selected rows"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:1888
#, kde-format
msgid "%1: clear selected cells"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/spreadsheet/SpreadsheetView.cpp:2069
#, kde-format
msgid "Print Spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/workbook/WorkbookView.cpp:70
#, kde-format
msgid "Add new Spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/workbook/WorkbookView.cpp:71
#, kde-format
msgid "Add new Matrix"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/workbook/WorkbookView.cpp:178
-#: src/kdefrontend/GuiObserver.cpp:172 src/kdefrontend/MainWin.cpp:341
-#: src/kdefrontend/MainWin.cpp:1167
+#: src/kdefrontend/GuiObserver.cpp:172 src/kdefrontend/MainWin.cpp:344
+#: src/kdefrontend/MainWin.cpp:1177
#, kde-format
msgid "Matrix"
msgstr ""
#. i18n: ectx: ToolBar (spreadsheet_toolbar)
#. +> trunk5 trunk
#: src/commonfrontend/workbook/WorkbookView.cpp:183
#: src/kdefrontend/datasources/ImportFileDialog.cpp:218
#: src/kdefrontend/datasources/ImportFileDialog.cpp:250
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:130
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:87
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:83
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:87
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:80
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:84
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:87
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:84
#: src/kdefrontend/GuiObserver.cpp:142 src/kdefrontend/labplot2ui.rc:28
-#: src/kdefrontend/MainWin.cpp:335 src/kdefrontend/MainWin.cpp:1146
+#: src/kdefrontend/MainWin.cpp:338 src/kdefrontend/MainWin.cpp:1156
#, kde-format
msgid "Spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:158
#, kde-format
msgid "Select all"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:185
#, kde-format
msgid "Fit to selection"
msgstr ""
#. i18n("Selection"), mouseModeActionGroup);
#. selectionModeAction->setCheckable(true);
#. "Add new" related actions
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:219
#, kde-format
msgid "box plot, four axes"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:220
#, kde-format
msgid "box plot, two axes"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:221
#, kde-format
msgid "two axes, centered"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:222
#, kde-format
msgid "two axes, crossing at origin"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:223
#: src/commonfrontend/worksheet/WorksheetView.cpp:1175
#: src/commonfrontend/worksheet/WorksheetView.cpp:1176
#, kde-format
msgid "text label"
msgstr ""
#. +> trunk5
#: src/commonfrontend/worksheet/WorksheetView.cpp:224
#, kde-format
msgid "bar chart"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:226
#, kde-format
msgid "Vertical layout"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:229
#, kde-format
msgid "Horizontal layout"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:232
#, kde-format
msgid "Grid layout"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:235
#, kde-format
msgid "Break layout"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:239
#, kde-format
msgid "no grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:244
#, kde-format
msgid "dense line grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:247
#, kde-format
msgid "sparse line grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:250
#, kde-format
msgid "dense dot grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:253
#, kde-format
msgid "sparse dot grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:256
#, kde-format
msgid "custom grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:259
#, kde-format
msgid "snap to grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:262
#, kde-format
msgid "Show in presenter mode"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:279
#, kde-format
msgid "selected plots"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:282
#, kde-format
msgid "all plots"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:288
#, kde-format
msgid "Select and edit"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:292
#, kde-format
msgid "Select region and zoom in"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:295
#, kde-format
msgid "Select x-region and zoom in"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:298
#, kde-format
msgid "Select y-region and zoom in"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:306
#, kde-format
msgid "xy-curve from a data operation"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:327
#: src/kdefrontend/GuiObserver.cpp:279
#, kde-format
msgid "Data reduction"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:333
#, kde-format
msgid "Data fitting"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:335
#, kde-format
msgid "Fourier transform"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:384
#: src/commonfrontend/worksheet/WorksheetView.cpp:1147
#: src/commonfrontend/worksheet/WorksheetView.cpp:1154
#: src/commonfrontend/worksheet/WorksheetView.cpp:1161
#: src/commonfrontend/worksheet/WorksheetView.cpp:1168
#, kde-format
msgid "xy-plot"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. i18n: ectx: attribute (title), widget (QWidget, tab3)
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:418
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:608
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:371
#, kde-format
msgid "Layout"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabGrid)
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:425
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1202
#, kde-format
msgid "Grid"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:440
#: src/kdefrontend/GuiObserver.cpp:202
#, kde-format
msgid "Cartesian Plot"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:467
#, kde-format
msgid "Zoom/Navigate"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:488
#, kde-format
msgid "Apply actions to"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:1233
#, kde-format
msgid "Do you really want to delete the selected object?"
msgid_plural "Do you really want to delete the selected %1 objects?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:1234
#, kde-format
msgid "Delete selected objects"
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:1240
#, kde-format
msgid "%1: Remove selected worksheet elements."
msgstr ""
#. +> trunk5 trunk
#: src/commonfrontend/worksheet/WorksheetView.cpp:1722
#: src/commonfrontend/worksheet/WorksheetView.cpp:1734
#, kde-format
msgid "%1: Add curve to %2 plots"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/AsciiOptionsWidget.cpp:53
#, kde-format
msgid "This option determines how the imported strings have to be converted to numbers."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/AsciiOptionsWidget.cpp:55
#, kde-format
msgid ""
"For 'C Format', a period is used for the decimal point character and comma is used for the thousands group separator. Valid number representations are:"
"<ul>"
"<li>1234.56</li>"
"<li>1,234.56</li>"
"<li>etc.</li>"
"</ul>"
"When using 'System locale', the system settings will be used. E.g., for the German local the valid number representations are:"
"<ul>"
"<li>1234,56</li>"
"<li>1.234,56</li>"
"<li>etc.</li>"
"</ul>"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/AsciiOptionsWidget.cpp:76
#, kde-format
msgid "This option determines how the imported strings have to be converted to calendar date, i.e. year, month, and day numbers in the Gregorian calendar and to time."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/AsciiOptionsWidget.cpp:78
#, kde-format
msgid ""
"Expressions that may be used for the date part of format string:"
"<table>"
"<tr>"
"<td>d</td>"
"<td>the day as number without a leading zero (1 to 31).</td>"
"</tr>"
"<tr>"
"<td>dd</td>"
"<td>the day as number with a leading zero (01 to 31).</td>"
"</tr>"
"<tr>"
"<td>ddd</td>"
"<td>the abbreviated localized day name (e.g. 'Mon' to 'Sun'). Uses the system locale to localize the name.</td>"
"</tr>"
"<tr>"
"<td>dddd</td>"
"<td>the long localized day name (e.g. 'Monday' to 'Sunday'). Uses the system locale to localize the name.</td>"
"</tr>"
"<tr>"
"<td>M</td>"
"<td>the month as number without a leading zero (1 to 12).</td>"
"</tr>"
"<tr>"
"<td>MM</td>"
"<td>the month as number with a leading zero (01 to 12).</td>"
"</tr>"
"<tr>"
"<td>MMM</td>"
"<td>the abbreviated localized month name (e.g. 'Jan' to 'Dec'). Uses the system locale to localize the name.</td>"
"</tr>"
"<tr>"
"<td>MMMM</td>"
"<td>the long localized month name (e.g. 'January' to 'December'). Uses the system locale to localize the name.</td>"
"</tr>"
"<tr>"
"<td>yy</td>"
"<td>the year as two digit number (00 to 99).</td>"
"</tr>"
"<tr>"
"<td>yyyy</td>"
"<td>the year as four digit number. If the year is negative, a minus sign is prepended in addition.</td>"
"</tr>"
"</table>"
"<br>"
"<br>"
"Expressions that may be used for the time part of the format string:"
"<table>"
"<tr>"
"<td>h</td>"
"<td>the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display)</td>"
"</tr>"
"<tr>"
"<td>hh</td>"
"<td>the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display)</td>"
"</tr>"
"<tr>"
"<td>H</td>"
"<td>the hour without a leading zero (0 to 23, even with AM/PM display)</td>"
"</tr>"
"<tr>"
"<td>HH</td>"
"<td>the hour with a leading zero (00 to 23, even with AM/PM display)</td>"
"</tr>"
"<tr>"
"<td>m</td>"
"<td>the minute without a leading zero (0 to 59)</td>"
"</tr>"
"<tr>"
"<td>mm</td>"
"<td>the minute with a leading zero (00 to 59)</td>"
"</tr>"
"<tr>"
"<td>s</td>"
"<td>the second without a leading zero (0 to 59)</td>"
"</tr>"
"<tr>"
"<td>ss</td>"
"<td>the second with a leading zero (00 to 59)</td>"
"</tr>"
"<tr>"
"<td>z</td>"
"<td>the milliseconds without leading zeroes (0 to 999)</td>"
"</tr>"
"<tr>"
"<td>zzz</td>"
"<td>the milliseconds with leading zeroes (000 to 999)</td>"
"</tr>"
"<tr>"
"<td>AP or A</td>"
"<td>interpret as an AM/PM time. AP must be either 'AM' or 'PM'.</td>"
"</tr>"
"<tr>"
"<td>ap or a</td>"
"<td>Interpret as an AM/PM time. ap must be either 'am' or 'pm'.</td>"
"</tr>"
"</table>"
"<br>"
"<br>"
"Examples are:"
"<table>"
"<tr>"
"<td>dd.MM.yyyy</td>"
"<td>20.07.1969</td>"
"</tr>"
"<tr>"
"<td>ddd MMMM d yy</td>"
"<td>Sun July 20 69</td>"
"</tr>"
"<tr>"
"<td>'The day is' dddd</td>"
"<td>The day is Sunday</td>"
"</tr>"
"</table>"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/BinaryOptionsWidget.cpp:48
#, kde-format
msgid "This option determines the data type that the imported data while converting to numbers."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/BinaryOptionsWidget.cpp:55
#, kde-format
msgid "This option determines the byte order of the imported data when converting to numbers."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/BinaryOptionsWidget.cpp:57
#, kde-format
msgid ""
"<table>"
"<tr>"
"<td>little endian</td>"
"<td>typical byte order (endianness) on Intel x86 processors.</td>"
"</tr>"
"<tr>"
"<td>big endian</td>"
"<td>typical byte order on Mainframes (IBM) and SPARC/PowerPC/Motorola processors.</td>"
"</tr>"
"</table>"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerDialog.cpp:49
#, kde-format
msgid "SQL Database Connections"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerDialog.cpp:84
#, kde-format
msgid "SQL Database Connections [Changed]"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:60
#, kde-format
msgid "Add new database connection"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:61
#, kde-format
msgid "Delete selected database connection"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:62
#, kde-format
msgid "Open database file"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:63
#, kde-format
msgid "Test selected database connection"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:163
#, kde-format
msgid "Select the database file"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:276
#, kde-format
msgid "Do you really want to delete the connection '%1'?"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:277
#, kde-format
msgid "Delete Connection"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:398
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:418
#, kde-format
msgid "Failed to connect to the database '%1'."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:399
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:419
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:189
#, kde-format
msgid "Connection failed"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:415
#, kde-format
msgid "Connection to the database '%1' was successful."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:416
#, kde-format
msgid "Connection successful"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/DatabaseManagerWidget.cpp:429
#, kde-format
msgid "New connection"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/FileInfoDialog.cpp:64
#, kde-format
msgid "File info"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/FITSOptionsWidget.cpp:37
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:79
#, kde-format
msgid "Content"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:42
#: src/kdefrontend/datasources/NetCDFOptionsWidget.cpp:43
#: src/kdefrontend/GuiObserver.cpp:118 src/kdefrontend/GuiObserver.cpp:132
-#: src/kdefrontend/GuiObserver.cpp:537 src/kdefrontend/MainWin.cpp:848
+#: src/kdefrontend/GuiObserver.cpp:537 src/kdefrontend/MainWin.cpp:858
#, kde-format
msgid "Properties"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/HDFOptionsWidget.cpp:42
#, kde-format
msgid "Link"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImageOptionsWidget.cpp:44
#, kde-format
msgid "This option determines how the image is converted when importing."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:74
#, kde-format
msgid "new Workbook"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:75
#, kde-format
msgid "new Spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:76
#, kde-format
msgid "new Matrix"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbImportTo)
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:97
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:74
#, kde-format
msgid "Import To"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:99
#, kde-format
msgid "Data container"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportDialog.cpp:117
#, kde-format
msgid "Add new data container"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPosition)
#. i18n: ectx: property (text), widget (QLabel, lArrowPosition)
#. i18n: ectx: property (text), widget (QLabel, lLabelsPosition)
#. i18n: ectx: property (text), widget (QLabel, lValuesPosition)
#. i18n: ectx: property (text), widget (QLabel, lXBreakPosition)
#. i18n: ectx: property (text), widget (QLabel, lYBreakPosition)
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:120
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:118
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:420
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1065
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:536
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:695
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:575
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:725
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:88
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:686
#, kde-format
msgid "Position"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:126
#, kde-format
msgid "Append"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:127
#, kde-format
msgid "Prepend"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:160
#, kde-format
msgid "Add %1"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportDialog.cpp:160
#, kde-format
msgid "%1 name:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileDialog.cpp:98
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:58
#, kde-format
msgid "Import Data to Spreadsheet or Matrix"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:101
#, kde-format
msgid "Add new live data source"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileDialog.cpp:113
#: src/kdefrontend/datasources/ImportFileDialog.cpp:266
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:132
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:303
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:112
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:208
#, kde-format
msgid "Hide Options"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileDialog.cpp:113
#: src/kdefrontend/datasources/ImportFileDialog.cpp:266
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:133
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:304
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:113
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:209
#, kde-format
msgid "Show Options"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:147
#, kde-format
msgid "Live data source created in %1 seconds."
msgstr ""
#. +> trunk
#: src/kdefrontend/datasources/ImportFileDialog.cpp:190
#, kde-format
msgid "File data source created in %1 seconds."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:168
#, kde-format
msgid "No data to import."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:168
#, kde-format
msgid "No Data"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileDialog.cpp:256
#, kde-format
msgid "File %1 imported in %2 seconds."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:285
#: src/kdefrontend/datasources/ImportFileDialog.cpp:327
#: src/kdefrontend/datasources/ImportFileDialog.cpp:342
#: src/kdefrontend/datasources/ImportFileDialog.cpp:369
#: src/kdefrontend/datasources/ImportFileDialog.cpp:394
#: src/kdefrontend/datasources/ImportFileDialog.cpp:422
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:173
#, kde-format
msgid "Close the dialog and import the data."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:287
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:167
#, kde-format
msgid "Cannot import into a matrix since the data contains non-numerical data."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:299
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:151
#, kde-format
msgid "Select a data container where the data has to be imported into."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:329
#, kde-format
msgid "Provide an existing file."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:344
#, kde-format
msgid "Couldn't connect to the provided local socket."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:355
#, kde-format
msgid "Selected local socket doesn't exist."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:371
#, kde-format
msgid "Couldn't connect to the provided TCP socket."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:381
#: src/kdefrontend/datasources/ImportFileDialog.cpp:406
#, kde-format
msgid "Either the host name or the port number is missing."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:396
#: src/kdefrontend/datasources/ImportFileDialog.cpp:424
#, kde-format
msgid "Couldn't connect to the provided UDP socket."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportFileDialog.cpp:427
#, kde-format
msgid "Serial port number is missing."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:84
#: src/kdefrontend/datasources/ImportFileWidget.cpp:681
#, kde-format
msgid "Automatic"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:489
#, kde-format
msgid "Select the File Data Source"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:603
#, kde-format
msgid "Save Filter Settings as"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:604
#, kde-format
msgid "Filter name:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:604
#, kde-format
msgid "new filter"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabDataFormat)
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:631
#: src/kdefrontend/ui/datasources/importfilewidget.ui:298
#, kde-format
msgid "Data format"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. i18n: ectx: attribute (title), widget (QWidget, tabDataPreview)
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:632
#: src/kdefrontend/ui/datasources/importfilewidget.ui:311
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:158
#, kde-format
msgid "Preview"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/datasources/ImportFileWidget.cpp:655
#: src/kdefrontend/datasources/ImportFileWidget.cpp:668
#, kde-format
msgid "Data format && preview"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:87
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:385
#, kde-format
msgid "Add new folder"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:108
#, kde-format
msgid "Import LabPlot Project"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:112
#, kde-format
msgid "Import Origin Project"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:202
#, kde-format
msgid "The object listed below already exists in target folder and will be overwritten:"
msgid_plural "The objects listed below already exist in target folder and will be overwritten:"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:208
#, kde-format
msgid "Do you want to proceed?"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:210
#, kde-format
msgid "Override existing objects?"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:232
#, kde-format
msgid "Project data imported in %1 seconds."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:310
#, kde-format
msgid "Close the dialog and import the selected objects."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:312
#, kde-format
msgid "Select object(s) to be imported."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:327
#, kde-format
msgid "Open LabPlot Project"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:329
#, kde-format
msgid "LabPlot Projects (%1)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:332
#, kde-format
msgid "Open Origin Project"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:334
#, kde-format
msgid "Origin Projects (%1)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportProjectDialog.cpp:385
#, kde-format
msgid "Folder name:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:135
#, kde-format
msgid "Data imported in %1 seconds."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseDialog.cpp:159
#, kde-format
msgid "Select a valid database object (table or query result set) that has to be imported."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:52
#, kde-format
msgid "Table"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:53
#, kde-format
msgid "Custom query"
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:188
#, kde-format
msgid "Failed to connect to the database '%1'. Please check the connection settings."
msgstr ""
#. +> trunk5
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:228
#: src/kdefrontend/datasources/ImportSQLDatabaseWidget.cpp:322
#, kde-format
msgid "Unable to execute query"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabValues)
#. +> trunk5 trunk
#: src/kdefrontend/datasources/NetCDFOptionsWidget.cpp:43
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:29
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:627
#, kde-format
msgid "Values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:194
#: src/kdefrontend/dockwidgets/AxisDock.cpp:325
#: src/kdefrontend/dockwidgets/AxisDock.cpp:490
#: src/kdefrontend/dockwidgets/AxisDock.cpp:492
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:255
#: src/kdefrontend/widgets/LabelWidget.cpp:94
#: src/kdefrontend/widgets/LabelWidget.cpp:103
#, kde-format
msgid "top"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:195
#: src/kdefrontend/dockwidgets/AxisDock.cpp:326
#: src/kdefrontend/dockwidgets/AxisDock.cpp:491
#: src/kdefrontend/dockwidgets/AxisDock.cpp:493
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:257
#: src/kdefrontend/widgets/LabelWidget.cpp:96
#: src/kdefrontend/widgets/LabelWidget.cpp:105
#, kde-format
msgid "bottom"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:196
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:391
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:244
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:323
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:325
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:434
#, kde-format
msgid "centered"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:197
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:254
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:258
#: src/kdefrontend/widgets/LabelWidget.cpp:92
#: src/kdefrontend/widgets/LabelWidget.cpp:97
#, kde-format
msgid "custom"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:210
#, kde-format
msgid "no arrow"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:211
#, kde-format
msgid "simple, small"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:212
#, kde-format
msgid "simple, big"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:213
#, kde-format
msgid "filled, small"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:214
#, kde-format
msgid "filled, big"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:215
#, kde-format
msgid "semi-filled, small"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:216
#, kde-format
msgid "semi-filled, big"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:297
#: src/kdefrontend/dockwidgets/AxisDock.cpp:501
#: src/kdefrontend/dockwidgets/AxisDock.cpp:504
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:251
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:294
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:303
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:405
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:414
#: src/kdefrontend/widgets/LabelWidget.cpp:89
#: src/kdefrontend/widgets/LabelWidget.cpp:99
#, kde-format
msgid "left"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:298
#: src/kdefrontend/dockwidgets/AxisDock.cpp:502
#: src/kdefrontend/dockwidgets/AxisDock.cpp:503
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:253
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:295
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:304
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:406
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:415
#: src/kdefrontend/widgets/LabelWidget.cpp:91
#: src/kdefrontend/widgets/LabelWidget.cpp:101
#, kde-format
msgid "right"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:299
#, kde-format
msgid "both"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:302
#: src/kdefrontend/dockwidgets/AxisDock.cpp:311
#, kde-format
msgid "in"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:303
#: src/kdefrontend/dockwidgets/AxisDock.cpp:312
#, kde-format
msgid "out"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:304
#: src/kdefrontend/dockwidgets/AxisDock.cpp:313
#, kde-format
msgid "in and out"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksNumber)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksNumber)
#. i18n: ectx: property (text), widget (QLabel, lNumber)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:306
#: src/kdefrontend/dockwidgets/AxisDock.cpp:315
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:51
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:531
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:716
#: src/kdefrontend/ui/spreadsheet/equidistantvalueswidget.ui:27
#, kde-format
msgid "Number"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksIncrement)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksIncrement)
#. i18n: ectx: property (text), widget (QLabel, lIncrement)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:307
#: src/kdefrontend/dockwidgets/AxisDock.cpp:316
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:52
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:541
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:726
#: src/kdefrontend/ui/spreadsheet/equidistantvalueswidget.ui:37
#, kde-format
msgid "Increment"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:308
#: src/kdefrontend/dockwidgets/AxisDock.cpp:317
#, kde-format
msgid "Custom column"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:324
#, kde-format
msgid "no labels"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:328
#, kde-format
msgid "Decimal notation"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:329
#, kde-format
msgid "Scientific notation"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:330
#, kde-format
msgid "Powers of 10"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:331
#, kde-format
msgid "Powers of 2"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:332
#, kde-format
msgid "Powers of e"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:333
#, kde-format
msgid "Multiples of π"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:617
#, kde-format
msgid "The axes lower limit has a non-positive value. Default minimal value will be used."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:618
#: src/kdefrontend/dockwidgets/AxisDock.cpp:626
#, kde-format
msgid "Wrong lower limit value"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:625
#, kde-format
msgid "The axes lower limit has a negative value. Default minimal value will be used."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:1721
#, kde-format
msgid "%1 axes: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/AxisDock.cpp:1723
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:1302
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:938
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:465
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:1034
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:336
#: src/kdefrontend/dockwidgets/SpreadsheetDock.cpp:197
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:883
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:2083
#, kde-format
msgid "%1: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:358
#, kde-format
msgid "log(x)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:359
#, kde-format
msgid "log2(x)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:360
#, kde-format
msgid "ln(x)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:363
#, kde-format
msgid "log(y)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:364
#, kde-format
msgid "log2(y)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:365
#, kde-format
msgid "ln(y)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:368
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:372
#, kde-format
msgid "simple"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:370
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:374
#, kde-format
msgid "sloped"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:378
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:231
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:308
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:310
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:419
#, kde-format
msgid "image"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:379
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:232
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:309
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:311
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:420
#, kde-format
msgid "pattern"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:381
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:234
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:312
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:314
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:423
#, kde-format
msgid "single color"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:382
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:235
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:315
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:424
#, kde-format
msgid "horizontal gradient"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:383
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:236
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:316
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:425
#, kde-format
msgid "vertical gradient"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:384
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:237
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:317
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:426
#, kde-format
msgid "diag. gradient (from top left)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:385
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:238
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:318
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:427
#, kde-format
msgid "diag. gradient (from bottom left)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:386
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:239
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:317
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:319
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:428
#, kde-format
msgid "radial gradient"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:388
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:241
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:320
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:322
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:431
#, kde-format
msgid "scaled and cropped"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:389
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:242
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:321
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:323
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:432
#, kde-format
msgid "scaled"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:390
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:243
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:322
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:324
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:433
#, kde-format
msgid "scaled, keep proportions"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:392
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:245
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:324
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:326
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:435
#, kde-format
msgid "tiled"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:393
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:246
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:325
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:327
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:436
#, kde-format
msgid "center tiled"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBorderColor)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarFillingColor)
#. i18n: ectx: property (text), widget (QLabel, lFillingColor)
#. i18n: ectx: property (text), widget (QLabel, lHistogramColour)
#. i18n: ectx: property (text), widget (QLabel, lLineColor)
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksColor)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksColor)
#. i18n: ectx: property (text), widget (QLabel, lLabelsColor)
#. i18n: ectx: property (text), widget (QLabel, lMajorGridColor)
#. i18n: ectx: property (text), widget (QLabel, lMinorGridColor)
#. i18n: ectx: property (text), widget (QLabel, lValuesColor)
#. i18n: ectx: property (text), widget (QLabel, lFontColor)
#. i18n: ectx: property (text), widget (QLabel, lSymbolFillingColor)
#. i18n: ectx: property (text), widget (QLabel, lSymbolBorderColor)
#. i18n: ectx: property (text), widget (QLabel, lDropLineColor)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsColor)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:841
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:865
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:893
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:407
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:431
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:459
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:751
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:775
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:803
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:454
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:478
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:506
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1348
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1372
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1400
#: src/kdefrontend/ui/datapickercurvewidget.ui:216
#: src/kdefrontend/ui/datapickercurvewidget.ui:309
#: src/kdefrontend/ui/datapickercurvewidget.ui:508
#: src/kdefrontend/ui/datapickerimagewidget.ui:814
#: src/kdefrontend/ui/datapickerimagewidget.ui:870
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:296
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:591
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:776
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1072
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1264
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1348
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:968
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:998
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:124
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:527
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:366
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:403
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:320
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:75
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:131
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:256
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:428
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:452
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:918
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1322
#: src/kdefrontend/worksheet/GridDialog.cpp:80
#, kde-format
msgid "Color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFillingFirstColor)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundFirstColor)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:845
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:897
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:411
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:463
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:458
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:510
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1352
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1404
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:864
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:894
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:433
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:470
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:292
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1068
#, kde-format
msgid "First color"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:958
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:524
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:868
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:649
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1469
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:397
#, kde-format
msgid "Select the image file"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:958
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:524
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:868
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:649
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1469
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:397
#, kde-format
msgid "Images (%1)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotDock.cpp:1300
#, kde-format
msgid "%1 cartesian plots: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:248
#, kde-format
msgid "column major"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:249
#, kde-format
msgid "row major"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:252
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:256
#: src/kdefrontend/widgets/LabelWidget.cpp:90
#: src/kdefrontend/widgets/LabelWidget.cpp:95
#: src/kdefrontend/widgets/LabelWidget.cpp:100
#: src/kdefrontend/widgets/LabelWidget.cpp:104
#, kde-format
msgid "center"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CartesianPlotLegendDock.cpp:936
#, kde-format
msgid "%1 cartesian plot legends: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:163
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:145
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:46
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:655
#, kde-format
msgid "Decimal"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:164
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:146
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:47
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:656
#, kde-format
msgid "Scientific (e)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:165
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:147
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:48
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:657
#, kde-format
msgid "Scientific (E)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:166
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:49
#, kde-format
msgid "Automatic (g)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:167
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:50
#, kde-format
msgid "Automatic (G)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:170
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:176
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:157
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:163
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:667
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:673
#, kde-format
msgid "Number without leading zero"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:171
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:177
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:158
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:164
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:668
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:674
#, kde-format
msgid "Number with leading zero"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:172
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:159
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:669
#, kde-format
msgid "Abbreviated month name"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:173
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:160
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:670
#, kde-format
msgid "Full month name"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:178
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:165
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:675
#, kde-format
msgid "Abbreviated day name"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:179
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:166
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:676
#, kde-format
msgid "Full day name"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:231
#, kde-format
msgid "X"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:232
#, kde-format
msgid "Y"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/ColumnDock.cpp:233
#, kde-format
msgid "Z"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:198
#, kde-format
msgid "%1 CustomPoints: visibility changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:223
#, kde-format
msgid "%1 CustomPoints: style changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:233
#, kde-format
msgid "%1 CustomPoints: size changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:243
#, kde-format
msgid "%1 CustomPoints: rotation changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:254
#, kde-format
msgid "%1 CustomPoints: opacity changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:268
#, kde-format
msgid "%1 CustomPoints: filling style changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:282
#, kde-format
msgid "%1 CustomPoints: filling color changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:310
#, kde-format
msgid "%1 CustomPoints: border style changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:324
#, kde-format
msgid "%1 CustomPoints: border color changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:342
#, kde-format
msgid "%1 CustomPoints: border width changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/CustomPointDock.cpp:463
#, kde-format
msgid "%1 custom points: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:148
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:658
#, kde-format
msgid "Automatic (e)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:149
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:659
#, kde-format
msgid "Automatic (E)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:290
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:401
#, kde-format
msgid "custom column"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:292
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:300
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:403
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:411
#, kde-format
msgid "above"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:293
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:301
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:404
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:412
#, kde-format
msgid "below"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:302
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:413
#, kde-format
msgid "zero baseline"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:313
#, kde-format
msgid "horizontal linear gradient"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:314
#, kde-format
msgid "vertical linear gradient"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:315
#, kde-format
msgid "diagonal linear gradient (start from top left)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:316
#, kde-format
msgid "diagonal linear gradient (start from bottom left)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:755
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:807
#, kde-format
msgid "First Color"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:950
#, kde-format
msgid "By Number"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:951
#, kde-format
msgid "By width"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:952
#, kde-format
msgid "Square-root rule"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:953
#, kde-format
msgid "Rice rule"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:954
#, kde-format
msgid "Sturgis rule"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:957
#, kde-format
msgid "Ordinary Histogram"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:958
#, kde-format
msgid "Cumulative Histogram"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:959
#, kde-format
msgid "AvgShifted Histogram"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/HistogramDock.cpp:1032
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:2081
#, kde-format
msgid "%1 xy-curves: template \"%2\" loaded"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/LiveDataDock.cpp:67
#: src/kdefrontend/dockwidgets/LiveDataDock.cpp:194
#, kde-format
msgid "Continue reading"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bPausePlayReading)
#. +> trunk5
#: src/kdefrontend/dockwidgets/LiveDataDock.cpp:70
#: src/kdefrontend/dockwidgets/LiveDataDock.cpp:198
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:48
#, kde-format
msgid "Pause reading"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/MatrixDock.cpp:334
#, kde-format
msgid "%1 matrices: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/SpreadsheetDock.cpp:195
#, kde-format
msgid "%1 spreadsheets: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:269
#, kde-format
msgid "portrait"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:270
#, kde-format
msgid "landscape"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:273
#, kde-format
msgid "view size"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:297
#, kde-format
msgid "Executive"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:298
#, kde-format
msgid "Folio"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:299
#, kde-format
msgid "Ledger"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:300
#, kde-format
msgid "Legal"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:301
#, kde-format
msgid "Letter"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:302
#, kde-format
msgid "Tabloid"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:303
#, kde-format
msgid "US Common #10 Envelope"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:520
#, kde-format
msgid "%1 worksheets: background color style changed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/WorksheetDock.cpp:881
#, kde-format
msgid "%1 worksheets: template \"%2\" loaded"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:229
#, kde-format
msgid "horiz. start"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:230
#, kde-format
msgid "vert. start"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:231
#, kde-format
msgid "horiz. midpoint"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:232
#, kde-format
msgid "vert. midpoint"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:233
#, kde-format
msgid "2-segments"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:234
#, kde-format
msgid "3-segments"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:363
#, kde-format
msgid "no drop lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:364
#, kde-format
msgid "drop lines, X"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:365
#, kde-format
msgid "drop lines, Y"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:366
#, kde-format
msgid "drop lines, XY"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:367
#, kde-format
msgid "drop lines, X, zero baseline"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:368
#, kde-format
msgid "drop lines, X, min baseline"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:369
#, kde-format
msgid "drop lines, X, max baseline"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:446
#, kde-format
msgid "bars"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:460
#, kde-format
msgid "bars with ends"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:464
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:468
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:44
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:48
#, kde-format
msgid "symmetric"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:465
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:469
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:45
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:49
#, kde-format
msgid "asymmetric"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1518
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1587
#, kde-format
msgid "Data, +-"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXErrorDataPlus)
#. i18n: ectx: property (text), widget (QLabel, lYErrorDataPlus)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1525
#: src/kdefrontend/dockwidgets/XYCurveDock.cpp:1594
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1189
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1242
#, kde-format
msgid "Data, +"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:88
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:84
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:88
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:81
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:85
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:88
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:85
#, kde-format
msgid "XY-Curve"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:99
#, kde-format
msgid "This method is much slower than any other"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:446
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:478
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:523
#, kde-format
msgid "Tolerance (distance)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lNumber)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:457
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:342
#, kde-format
msgid "Number of points"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:468
#, kde-format
msgid "Step size"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:485
#, kde-format
msgid "Repeats"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:495
#, kde-format
msgid "Tolerance (area)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:506
#, kde-format
msgid " Min. Tolerance"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:510
#, kde-format
msgid "Max. Tolerance"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:527
#, kde-format
msgid "Search region"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:595
#, kde-format
msgid "Data reduction status: "
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:625
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:512
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:864
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:630
#: src/kdefrontend/dockwidgets/XYFourierTransformCurveDock.cpp:351
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:426
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:659
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:522
#, kde-format
msgid "status:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:633
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:520
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:868
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:638
#: src/kdefrontend/dockwidgets/XYFourierTransformCurveDock.cpp:359
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:434
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:667
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:530
#, kde-format
msgid "calculation time: %1 s"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:635
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:522
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:870
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:640
#: src/kdefrontend/dockwidgets/XYFourierTransformCurveDock.cpp:361
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:436
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:669
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:532
#, kde-format
msgid "calculation time: %1 ms"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:639
#, kde-format
msgid "number of points: %1"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:640
#, kde-format
msgid "positional squared error: %1"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYDataReductionCurveDock.cpp:641
#, kde-format
msgid "area error: %1"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYDifferentiationCurveDock.cpp:481
#, kde-format
msgid "Differentiation status: "
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:86
#, kde-format
msgid "cartesian"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:87
#, kde-format
msgid "polar"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:88
#, kde-format
msgid "parametric"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:205
#, kde-format
msgid "x, min"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:206
#, kde-format
msgid "x, max"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:217
#, kde-format
msgid "φ, min"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:218
#, kde-format
msgid "φ, max"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMin)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:230
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:255
#, kde-format
msgid "t, min"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMax)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYEquationCurveDock.cpp:231
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:297
#, kde-format
msgid "t, max"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:154
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:850
#, kde-format
msgid "reduced"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:158
#, kde-format
msgid "test"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDegree)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:521
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:663
#, kde-format
msgid "Degree"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:551
#, kde-format
msgid "Number of peaks"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:763
#, kde-format
msgid "Fit status: "
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:818
#, kde-format
msgid "Parameters:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:835
#, kde-format
msgid "t statistic:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:836
#, kde-format
msgid "p value:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:837
#, kde-format
msgid "conf. interval:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:842
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1022
#, kde-format
msgid "too small"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:847
#, kde-format
msgid "Goodness of fit:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:848
#, kde-format
msgid "sum of squared residuals"
msgstr ""
#. +> trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1029
#, kde-format
msgid "sum of squared errors"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:851
#, kde-format
msgid "root mean square error"
msgstr ""
#. +> trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1030
#, kde-format
msgid "mean squared error:"
msgstr ""
#. +> trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1031
#, kde-format
msgid "root-mean squared error"
msgstr ""
#. +> trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1035
#, kde-format
msgid "residual mean square:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:852
#, kde-format
msgid "coefficient of determination"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:853
#, kde-format
msgid "adj. coefficient of determination"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:856
#, kde-format
msgid "P > "
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:857
#, kde-format
msgid "F statistic"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:858
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:352
#, kde-format
msgid "P > F"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:860
#, kde-format
msgid "mean absolute error:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:861
#, kde-format
msgid "Akaike information criterion:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:862
#, kde-format
msgid "Bayesian information criterion:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:865
#, kde-format
msgid "iterations:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:866
#, kde-format
msgid "tolerance:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:871
#, kde-format
msgid "degrees of freedom:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:872
#, kde-format
msgid "number of parameters:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:873
#, kde-format
msgid "X range:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:875
#, kde-format
msgid "Iterations:"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#, kde-format
msgid "Error"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#, kde-format
msgid "Error, %"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#, kde-format
msgid "t statistic"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:965
#, kde-format
msgid "Conf. Interval"
msgstr ""
#. +> trunk
#: src/kdefrontend/dockwidgets/XYFitCurveDock.cpp:1036
#, kde-format
msgid "residual standard deviation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lCutoff)
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:372
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:289
#, kde-format
msgid "Cutoff"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:380
#, kde-format
msgid "Lower Cutoff"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:381
#, kde-format
msgid "Upper Cutoff"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:589
#, kde-format
msgid "The band width is <= 0 since lower cutoff value is not smaller than upper cutoff value. Please fix this."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:590
#, kde-format
msgid "band width <= 0"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFourierFilterCurveDock.cpp:599
#, kde-format
msgid "Fourier-Filter status: "
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYFourierTransformCurveDock.cpp:325
#, kde-format
msgid "Fourier transformation status: "
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:395
#, kde-format
msgid "Integration status: "
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYIntegrationCurveDock.cpp:438
#, kde-format
msgid "value: "
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:110
#, kde-format
msgid "Auto (5x data points)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:111
#, kde-format
msgid "Multiple of data points"
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYInterpolationCurveDock.cpp:628
#, kde-format
msgid "Interpolation status: "
msgstr ""
#. +> trunk5
#: src/kdefrontend/dockwidgets/XYSmoothCurveDock.cpp:490
#, kde-format
msgid "Smoothing status: "
msgstr ""
#. i18n: ectx: ToolBar (worksheet_toolbar)
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:187 src/kdefrontend/labplot2ui.rc:20
-#: src/kdefrontend/MainWin.cpp:346 src/kdefrontend/MainWin.cpp:1188
+#: src/kdefrontend/MainWin.cpp:349 src/kdefrontend/MainWin.cpp:1198
#: src/kdefrontend/SettingsDialog.cpp:65
#, kde-format
msgid "Worksheet"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:217
#, kde-format
msgid "Legend"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:232
#, kde-format
msgid "Axis"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:247
#, kde-format
msgid "xy-Curve"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:263
#, kde-format
msgid "xy-Equation"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:358
#, kde-format
msgid "Fourier Transform"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:375
#, kde-format
msgid "Fourier Filter"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:391
#, kde-format
msgid "Smoothing"
msgstr ""
#. +> trunk5
#: src/kdefrontend/GuiObserver.cpp:407
#, kde-format
msgid "Histogram properties"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:423
#, kde-format
msgid "Text Label"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:437
#, kde-format
msgid "Custom Point"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:451
#, kde-format
msgid "Datapicker Curve"
msgstr ""
#. i18n: ectx: ToolBar (datapicker_toolbar)
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:465 src/kdefrontend/labplot2ui.rc:24
-#: src/kdefrontend/MainWin.cpp:331 src/kdefrontend/MainWin.cpp:1139
+#: src/kdefrontend/MainWin.cpp:334 src/kdefrontend/MainWin.cpp:1149
#, kde-format
msgid "Datapicker"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 trunk
#: src/kdefrontend/GuiObserver.cpp:509
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:192
#, kde-format
msgid "Notes"
msgstr ""
#. +> trunk5
#: src/kdefrontend/GuiObserver.cpp:523
#, kde-format
msgid "Live data source"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:66 src/kdefrontend/GuiTools.cpp:92
#, kde-format
msgid "no line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:66 src/kdefrontend/GuiTools.cpp:92
#, kde-format
msgid "solid line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:66 src/kdefrontend/GuiTools.cpp:92
#, kde-format
msgid "dash line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:67 src/kdefrontend/GuiTools.cpp:93
#, kde-format
msgid "dot line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:67 src/kdefrontend/GuiTools.cpp:93
#, kde-format
msgid "dash-dot line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:67 src/kdefrontend/GuiTools.cpp:93
#, kde-format
msgid "dash-dot-dot line"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:151
#, kde-format
msgid "uniform"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:151
#, kde-format
msgid "extremely dense"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:152
#, kde-format
msgid "very dense"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:152
#, kde-format
msgid "somewhat dense"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:152
#, kde-format
msgid "half dense"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:153
#, kde-format
msgid "somewhat sparse"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:153
#, kde-format
msgid "very sparse"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:153
#, kde-format
msgid "extremely sparse"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:154
#, kde-format
msgid "horiz. lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:154
#, kde-format
msgid "vert. lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:154
#, kde-format
msgid "crossing lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:155
#, kde-format
msgid "backward diag. lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:155
#, kde-format
msgid "forward diag. lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:155
#, kde-format
msgid "crossing diag. lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:172
#, kde-format
msgid "white"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:172
#, kde-format
msgid "black"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:173
#, kde-format
msgid "dark red"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:173
#, kde-format
msgid "red"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:173
#, kde-format
msgid "light red"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:174
#, kde-format
msgid "dark green"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:174
#, kde-format
msgid "green"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:174
#, kde-format
msgid "light green"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:175
#, kde-format
msgid "dark blue"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:175
#, kde-format
msgid "blue"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:175
#, kde-format
msgid "light blue"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:176
#, kde-format
msgid "dark yellow"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:176
#, kde-format
msgid "yellow"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:176
#, kde-format
msgid "light yellow"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:177
#, kde-format
msgid "dark cyan"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:177
#, kde-format
msgid "cyan"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:177
#, kde-format
msgid "light cyan"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:178
#, kde-format
msgid "dark magenta"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:178
#, kde-format
msgid "magenta"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:178
#, kde-format
msgid "light magenta"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:179
#, kde-format
msgid "dark orange"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:179
#, kde-format
msgid "orange"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:179
#, kde-format
msgid "light orange"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:180
#, kde-format
msgid "dark grey"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:180
#, kde-format
msgid "grey"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/GuiTools.cpp:180
#, kde-format
msgid "light grey"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/HistoryDialog.cpp:49
#, kde-format
msgid ""
"List of all performed steps/actions.\n"
"Select an item in the list to navigate to the corresponding step."
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/HistoryDialog.cpp:53 src/kdefrontend/MainWin.cpp:402
+#: src/kdefrontend/HistoryDialog.cpp:53 src/kdefrontend/MainWin.cpp:405
#, kde-format
msgid "Undo/Redo History"
msgstr ""
#. +> trunk5
#: src/kdefrontend/HistoryDialog.cpp:65
#, kde-format
msgid "&Clear"
msgstr ""
#. +> trunk
#: src/kdefrontend/HistoryDialog.cpp:57
#, kde-format
msgid "Clear"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/HistoryDialog.cpp:66
#, kde-format
msgid "Clears the undo history. Commands are not undone or redone; the state of the project remains unchanged."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/HistoryDialog.cpp:98
#, kde-format
msgid "Do you really want to clear the undo history?"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/HistoryDialog.cpp:99
#, kde-format
msgid "Clear history"
msgstr ""
#. +> trunk
#: src/kdefrontend/LabPlot.cpp:42
#, kde-format
msgid "LabPlot2"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:51
#, kde-format
msgid "LabPlot2 is a KDE-application for interactive graphing and analysis of scientific data."
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:52
#, kde-format
msgid "(c) 2007-2018"
msgstr ""
#. +> trunk
#: src/kdefrontend/LabPlot.cpp:45
#, kde-format
msgid "(c) 2007-2017"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:53
#, kde-format
msgid "Stefan Gerlach"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:53 src/kdefrontend/LabPlot.cpp:54
#: src/kdefrontend/LabPlot.cpp:55
#, kde-format
msgid "developer"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:54
#, kde-format
msgid "Alexander Semke"
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:55
#, kde-format
msgid "Fábián Kristóf-Szabolcs"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:56
#, kde-format
msgid "Andreas Kainz"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:56
#, kde-format
msgid "icon designer"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:57
#, kde-format
msgid "Yuri Chornoivan"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:57
#, kde-format
msgid "Help on many questions about the KDE-infrastructure and translation related topics"
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:58
#, kde-format
msgid "Garvit Khatri"
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:58
#, kde-format
msgid "Porting LabPlot2 to KF5 and Integration with Cantor"
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:67
#, kde-format
msgid "disable splash screen"
msgstr ""
#. +> trunk
#: src/kdefrontend/LabPlot.cpp:54
#, kde-format
msgid "do not show the splash screen"
msgstr ""
#. +> trunk5
#: src/kdefrontend/LabPlot.cpp:70
#, kde-format
msgid "start in the presenter mode"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:73
#, kde-format
msgid "open a project file"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:91
#, kde-format
msgid "Could not open file '%1'. Click 'Continue' to proceed starting or 'Cancel' to exit the application."
msgstr ""
#. +> trunk
#: src/kdefrontend/LabPlot.cpp:76
#, kde-format
msgid "File '%1' doesn't contain any LabPlot data. Click 'Continue' to proceed starting or 'Cancel' to exit the application."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/LabPlot.cpp:92
#, kde-format
msgid "Failed to open"
msgstr ""
#. i18n: ectx: ToolBar (cas_worksheet_toolbar)
#. +> trunk5
-#: src/kdefrontend/labplot2ui.rc:32 src/kdefrontend/MainWin.cpp:509
+#: src/kdefrontend/labplot2ui.rc:32 src/kdefrontend/MainWin.cpp:512
#, kde-format
msgid "CAS Worksheet"
msgstr ""
#. i18n: ectx: ToolBar (cartesian_plot_toolbar)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:36
#, kde-format
msgid "CartesianPlot"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:40
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (new)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:41
#, kde-format
msgid "&New"
msgstr ""
#. i18n: ectx: Menu (new_cas_worksheet)
#. i18n: ectx: Menu (cas_worksheet)
#. +> trunk5
#: src/kdefrontend/labplot2ui.rc:54 src/kdefrontend/labplot2ui.rc:77
#, kde-format
msgid "&CAS Worksheet"
msgstr ""
#. i18n: ectx: Menu (import)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:59
#, kde-format
msgid "Import"
msgstr ""
#. i18n: ectx: Menu (edit)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:69
#, kde-format
msgid "&Edit"
msgstr ""
#. i18n: ectx: Menu (spreadsheet)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:74
#, kde-format
msgid "&Spreadsheet"
msgstr ""
#. i18n: ectx: Menu (matrix)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:75
#, kde-format
msgid "&Matrix"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
#. +> trunk
#: src/kdefrontend/labplot2ui.rc:6
#, kde-format
msgid "Main"
msgstr ""
#. i18n: ectx: Menu (worksheet)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:76
#, kde-format
msgid "&Worksheet"
msgstr ""
#. i18n: ectx: Menu (analysis)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:78
#, kde-format
msgid "&Analysis"
msgstr ""
#. i18n: ectx: Menu (datapicker)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:79
#, kde-format
msgid "&Datapicker"
msgstr ""
#. i18n: ectx: Menu (drawing)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:80
#, kde-format
msgid "&Drawing"
msgstr ""
#. i18n: ectx: Menu (script)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:81
#, kde-format
msgid "&Script"
msgstr ""
#. i18n: ectx: Menu (tools)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:82
#, kde-format
msgid "&Tools"
msgstr ""
#. i18n: ectx: Menu (windows)
#. +> trunk5 trunk
#: src/kdefrontend/labplot2ui.rc:85
#, kde-format
msgid "&Windows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPresenterMode)
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:187
+#: src/kdefrontend/MainWin.cpp:190
#: src/kdefrontend/ui/settingsworksheetpage.ui:75
#, kde-format
msgid "Presenter Mode"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:188
+#: src/kdefrontend/MainWin.cpp:191
#, kde-format
msgid "No worksheets are available in the project. The presenter mode won't be started."
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:207
+#: src/kdefrontend/MainWin.cpp:210
#, kde-format
msgctxt "%1 is the LabPlot version"
msgid "Welcome to LabPlot %1"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:242
+#: src/kdefrontend/MainWin.cpp:245
#, kde-format
msgid " GUI configuration file not found"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:242
+#: src/kdefrontend/MainWin.cpp:245
#, kde-format
msgid "labplot2ui.rc file was not found. Please check your installation."
msgstr ""
#. +> trunk
#: src/kdefrontend/MainWin.cpp:307
#, kde-format
msgid "Ctrl+C"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:327 src/kdefrontend/MainWin.cpp:1131
+#: src/kdefrontend/MainWin.cpp:330 src/kdefrontend/MainWin.cpp:1141
#, kde-format
msgid "Workbook"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:351 src/kdefrontend/MainWin.cpp:1196
+#: src/kdefrontend/MainWin.cpp:354 src/kdefrontend/MainWin.cpp:1206
#, kde-format
msgid "Note"
msgstr ""
#. i18n("Note/Script"),this);
#. actionCollection()->addAction("new_script", m_newScriptAction);
#. connect(m_newScriptAction, SIGNAL(triggered()),SLOT(newScript()));
#. i18n: ectx: property (text), widget (QLabel, lFolder)
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:359 src/kdefrontend/MainWin.cpp:1123
+#: src/kdefrontend/MainWin.cpp:362 src/kdefrontend/MainWin.cpp:1133
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:80
#, kde-format
msgid "Folder"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:364
+#: src/kdefrontend/MainWin.cpp:367
#, kde-format
msgid "Live Data Source"
msgstr ""
#. +> trunk
#: src/kdefrontend/MainWin.cpp:267
#, kde-format
msgid "File Data Source"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:369
+#: src/kdefrontend/MainWin.cpp:372
#, kde-format
msgid "From File"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:374
+#: src/kdefrontend/MainWin.cpp:377
#, kde-format
msgid "From SQL Database"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:378
+#: src/kdefrontend/MainWin.cpp:381
#, kde-format
msgid "LabPlot Project"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:383
+#: src/kdefrontend/MainWin.cpp:386
#, kde-format
msgid "Origin Project (OPJ)"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:393
+#: src/kdefrontend/MainWin.cpp:396
#: src/kdefrontend/widgets/FITSHeaderEditDialog.cpp:60
#: src/kdefrontend/widgets/FITSHeaderEditDialog.cpp:90
#, kde-format
msgid "FITS Metadata Editor"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:413
+#: src/kdefrontend/MainWin.cpp:416
#, kde-format
msgid "&Close"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:415
+#: src/kdefrontend/MainWin.cpp:418
#, kde-format
msgid "Close the active window"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:419
+#: src/kdefrontend/MainWin.cpp:422
#, kde-format
msgid "Close &All"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:420
+#: src/kdefrontend/MainWin.cpp:423
#, kde-format
msgid "Close all the windows"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:424
+#: src/kdefrontend/MainWin.cpp:427
#, kde-format
msgid "&Tile"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:425
+#: src/kdefrontend/MainWin.cpp:428
#, kde-format
msgid "Tile the windows"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:429
+#: src/kdefrontend/MainWin.cpp:432
#, kde-format
msgid "&Cascade"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:430
+#: src/kdefrontend/MainWin.cpp:433
#, kde-format
msgid "Cascade the windows"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:433
+#: src/kdefrontend/MainWin.cpp:436
#, kde-format
msgid "Ne&xt"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:434
+#: src/kdefrontend/MainWin.cpp:437
#, kde-format
msgid "Move the focus to the next window"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:438
+#: src/kdefrontend/MainWin.cpp:441
#, kde-format
msgid "Pre&vious"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:439
+#: src/kdefrontend/MainWin.cpp:442
#, kde-format
msgid "Move the focus to the previous window"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:451
+#: src/kdefrontend/MainWin.cpp:454
#, kde-format
msgid "Current &Folder Only"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:455
+#: src/kdefrontend/MainWin.cpp:458
#, kde-format
msgid "Current Folder and &Subfolders"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:459
+#: src/kdefrontend/MainWin.cpp:462
#, kde-format
msgid "&All"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:469
+#: src/kdefrontend/MainWin.cpp:472
#, kde-format
msgid "Project explorer"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:474
+#: src/kdefrontend/MainWin.cpp:477
#, kde-format
msgid "Properties explorer"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:536
+#: src/kdefrontend/MainWin.cpp:539
#, kde-format
msgid "Window visibility policy"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:543
+#: src/kdefrontend/MainWin.cpp:546
#, kde-format
msgid "Edit"
msgstr ""
+#. +> trunk5
+#: src/kdefrontend/MainWin.cpp:549
+#, kde-format
+msgid "&Themes"
+msgstr ""
+
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:554
+#: src/kdefrontend/MainWin.cpp:564
#, kde-format
msgid "The current project %1 has been modified. Do you want to save it?"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:555
+#: src/kdefrontend/MainWin.cpp:565
#, kde-format
msgid "Save Project"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:835
+#: src/kdefrontend/MainWin.cpp:845
#, kde-format
msgid "Project Explorer"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:882
+#: src/kdefrontend/MainWin.cpp:892
#, kde-format
msgid "%1: created"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:891 src/kdefrontend/MainWin.cpp:910
+#: src/kdefrontend/MainWin.cpp:901 src/kdefrontend/MainWin.cpp:920
#, kde-format
msgid "Open project"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:892
+#: src/kdefrontend/MainWin.cpp:902
#, kde-format
msgid "LabPlot Projects (%1);;Origin Projects (%2)"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:910
+#: src/kdefrontend/MainWin.cpp:920
#, kde-format
msgid "The project file %1 is already opened."
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:939
+#: src/kdefrontend/MainWin.cpp:949
#, kde-format
msgid "%1: opened"
msgstr ""
#. +> trunk
#: src/kdefrontend/MainWin.cpp:790
#, kde-format
msgid "Project %1 opened"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:946
+#: src/kdefrontend/MainWin.cpp:956
#, kde-format
msgid "Project successfully opened (in %1 seconds)."
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1004
+#: src/kdefrontend/MainWin.cpp:1014
#, kde-format
msgid "Save project as"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1005
+#: src/kdefrontend/MainWin.cpp:1015
#, kde-format
msgid "LabPlot Projects (*.lml *.lml.gz *.lml.bz2 *.lml.xz *.LML *.LML.GZ *.LML.BZ2 *.LML.XZ)"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1051
+#: src/kdefrontend/MainWin.cpp:1061
#, kde-format
msgid "Project saved"
msgstr ""
#. +> trunk
#: src/kdefrontend/MainWin.cpp:713
#, kde-format
msgid "Project %1 created"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1066
+#: src/kdefrontend/MainWin.cpp:1076
#, kde-format
msgid "Sorry. Could not open file for writing."
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1097 src/kdefrontend/MainWin.cpp:1110
+#: src/kdefrontend/MainWin.cpp:1107 src/kdefrontend/MainWin.cpp:1120
#, kde-format
msgid "Preparing printing of %1"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1099 src/kdefrontend/MainWin.cpp:1112
+#: src/kdefrontend/MainWin.cpp:1109 src/kdefrontend/MainWin.cpp:1122
#, kde-format
msgid "%1 printed"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1332
+#: src/kdefrontend/MainWin.cpp:1342
#, kde-format
msgid "%1 [Changed]"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1765
+#: src/kdefrontend/MainWin.cpp:1775
#, kde-format
msgid "%1 exported"
msgstr ""
#. +> trunk5 trunk
-#: src/kdefrontend/MainWin.cpp:1772
+#: src/kdefrontend/MainWin.cpp:1782
#, kde-format
msgid "FITS files saved"
msgstr ""
#. +> trunk5
-#: src/kdefrontend/MainWin.cpp:1782
+#: src/kdefrontend/MainWin.cpp:1792
#, kde-format
msgid "Live data source%1"
msgstr ""
#. +> trunk
#: src/kdefrontend/MainWin.cpp:1568
#, kde-format
msgid "File data source%1"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:60
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:59
#, kde-format
msgid "Function values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:73
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:75
#, kde-format
msgid "%1 value"
msgid_plural "%1 values"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:88
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:63
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:94
#: src/kdefrontend/spreadsheet/RandomValuesDialog.cpp:69
#, kde-format
msgid "&Generate"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:89
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:95
#, kde-format
msgid "Generate function values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/matrix/MatrixFunctionDialog.cpp:191
#, kde-format
msgid "%1: fill matrix with function values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsDialog.cpp:51 src/kdefrontend/SettingsDialog.cpp:82
#: src/kdefrontend/SettingsDialog.cpp:89
#, kde-format
msgid "Preferences"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tgeneral)
#. i18n: ectx: attribute (title), widget (QWidget, general)
#. i18n: ectx: attribute (title), widget (QWidget, tabGeneral)
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: ectx: attribute (title), widget (QWidget, tab0)
#. i18n: ectx: attribute (title), widget (QWidget, tGeneral)
#. +> trunk5 trunk
#: src/kdefrontend/SettingsDialog.cpp:60
#: src/kdefrontend/ui/datapickercurvewidget.ui:27
#: src/kdefrontend/ui/datapickerimagewidget.ui:27
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:36
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:24
#: src/kdefrontend/ui/dockwidgets/cantorworksheetdock.ui:21
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:24
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:24
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:24
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:24
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:24
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:24
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsDialog.cpp:86
#, kde-format
msgid "All settings will be reset to default values. Do you want to continue?"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsDialog.cpp:97
#, kde-format
msgid "Preferences [Changed]"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:80
#, kde-format
msgid "Do nothing"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:81
#, kde-format
msgid "Create new empty project"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:82
#, kde-format
msgid "Create new project with worksheet"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:83
#, kde-format
msgid "Load last used project"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:86
#, kde-format
msgid "Sub-window view"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:87
#, kde-format
msgid "Tabbed view"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:90
#, kde-format
msgid "Show windows of the current folder only"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:91
#, kde-format
msgid "Show windows of the current folder and its subfolders only"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:92
#, kde-format
msgid "Show all windows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLeftMargin)
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:95
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:126
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:96
#, kde-format
msgid "Top"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:96
#, kde-format
msgid "Bottom"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTopMargin)
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:97
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:103
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:89
#, kde-format
msgid "Left"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsGeneralPage.cpp:98
#, kde-format
msgid "Right"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsWorksheetPage.cpp:131
#, kde-format
msgid "No LaTeX installation found or selected. LaTeX typesetting not possible."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsWorksheetPage.cpp:139
#, kde-format
msgid "No 'convert' found. LaTeX typesetting not possible."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsWorksheetPage.cpp:148
#, kde-format
msgid "No 'dvips' found. LaTeX typesetting not possible."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/SettingsWorksheetPage.cpp:156
#: src/kdefrontend/SettingsWorksheetPage.cpp:162
#, kde-format
msgid "No Ghostscript found. LaTeX typesetting not possible."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMode)
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:50
#: src/kdefrontend/ui/spreadsheet/dropvalueswidget.ui:17
#, kde-format
msgid "Drop values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:54
#, kde-format
msgid "equal to"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:55
#, kde-format
msgid "between (including end points)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:56
#, kde-format
msgid "between (excluding end points)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:57
#, kde-format
msgid "greater then"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:58
#, kde-format
msgid "greater then or equal to"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:59
#, kde-format
msgid "lesser then"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:60
#, kde-format
msgid "lesser then or equal to"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:73
#, kde-format
msgid "&Mask"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:74
#, kde-format
msgid "Mask values in the specified region"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:75
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:76
#, kde-format
msgid "Mask values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:78
#, kde-format
msgid "&Drop"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:79
#, kde-format
msgid "Drop values in the specified region"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:306
#, kde-format
msgid "%1: mask values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/DropValuesDialog.cpp:330
#, kde-format
msgid "%1: drop values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:47
#, kde-format
msgid "Equidistant values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:64
#, kde-format
msgid "Generate equidistant values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/EquidistantValuesDialog.cpp:142
#, kde-format
msgid "%1: fill column with equidistant numbers"
msgid_plural "%1: fill columns with equidistant numbers"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:92
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:108
#, kde-format
msgid "Export spreadsheet"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:93
#, kde-format
msgid "Export selection"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:178
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:192
#, kde-format
msgid "Export matrix"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:273
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:177
#, kde-format
msgid "The file already exists. Do you really want to overwrite it?"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:319
#, kde-format
msgid "Text files (*.txt *.dat *.csv)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:321
#, kde-format
msgid "Binary files (*.*)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:323
#, kde-format
msgid "LaTeX files (*.tex)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:325
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:192
#, kde-format
msgid "FITS files (*.fits *.fit *.fts)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/ExportSpreadsheetDialog.cpp:327
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:231
#, kde-format
msgid "Export to file"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:85
#, kde-format
msgid "Add new variable"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:257
#, kde-format
msgid "Delete variable"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:263
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:283
#, kde-format
msgid "Variables:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVariable)
#. +> trunk5
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:283
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:23
#, kde-format
msgid "Variable:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/FunctionValuesDialog.cpp:317
#, kde-format
msgid "%1: fill column with function values"
msgid_plural "%1: fill columns with function values"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:76
#, kde-format
msgid "Plot spreadsheet data"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:85
#, kde-format
msgid "Plot the selected data"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:86
#, kde-format
msgid "&Plot"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYColumn)
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:207
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:105
#, kde-format
msgid "Y-data"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:217
#, kde-format
msgid "Add curve to"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:266
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:273
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:277
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:311
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:312
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:317
#, kde-format
msgid "Plot data from %1"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:391
#, kde-format
msgid "Plot %1"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:467
#, kde-format
msgid "Fourier Filter of '%1'"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:486
#, kde-format
msgid "new plot in an existing worksheet"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:487
#, kde-format
msgid "new plot in a new worksheet"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:492
#, kde-format
msgid "new plots in an existing worksheet"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:493
#, kde-format
msgid "new plots in a new worksheet"
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:519
#, kde-format
msgid "An already existing plot has to be selected."
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:524
#, kde-format
msgid "An already existing worksheet has to be selected."
msgstr ""
#. +> trunk5
#: src/kdefrontend/spreadsheet/PlotDataDialog.cpp:530
#, kde-format
msgid "Close the dialog and plot the data."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/RandomValuesDialog.cpp:59
#, kde-format
msgid "Random values"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/RandomValuesDialog.cpp:68
#, kde-format
msgid "Generate random values according to the selected distribution"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/RandomValuesDialog.cpp:394
#, kde-format
msgid "%1: fill column with non-uniform random numbers"
msgid_plural "%1: fill columns with non-uniform random numbers"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:51
#: src/kdefrontend/spreadsheet/SortDialog.cpp:66
#, kde-format
msgid "Sort columns"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbOptions)
#. i18n: ectx: property (text), widget (QPushButton, pbOptions)
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:55
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:586
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:75
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:69
#, kde-format
msgid "Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOrder)
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:60
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:154
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:264
#, kde-format
msgid "Order"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:62
#, kde-format
msgid "Ascending"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:63
#, kde-format
msgid "Descending"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:69
#, kde-format
msgid "Separately"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:70
#, kde-format
msgid "Together"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:74
#, kde-format
msgid "Leading column"
msgstr ""
#. +> trunk
#: src/kdefrontend/spreadsheet/SortDialog.cpp:80
#, kde-format
msgid "&Sort"
msgstr ""
#. +> trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:47
#, kde-format
msgid "&Ok"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:70
#, kde-format
msgid "Location measures"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:76
#, kde-format
msgid "Minimum"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:82
#, kde-format
msgid "Maximum"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:88
#, kde-format
msgid "Arithmetic mean"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:94
#, kde-format
msgid "Geometric mean"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:100
#, kde-format
msgid "Harmonic mean"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:106
#, kde-format
msgid "Contraharmonic mean"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:112
#, kde-format
msgid "Median"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:119
#, kde-format
msgid "Dispersion measures"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:125
#, kde-format
msgid "Variance"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:131
#, kde-format
msgid "Standard deviation"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:137
#, kde-format
msgid "Mean absolute deviation around mean"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:143
#, kde-format
msgid "Mean absolute deviation around median"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:149
#, kde-format
msgid "Median absolute deviation"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:156
#, kde-format
msgid "Shape measures"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:162
#, kde-format
msgid "Skewness"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:168
#, kde-format
msgid "Kurtosis"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:174
#, kde-format
msgid "Entropy"
msgstr ""
#. +> trunk
#: src/kdefrontend/spreadsheet/StatisticsDialog.cpp:181
#, kde-format
msgid "The value couldn't be calculated."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:117
#, kde-format
msgid "Load properties from a template"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:118
#, kde-format
msgid "Save current properties as a template"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:119
#, kde-format
msgid "Save current properties as default"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:120
#, kde-format
msgid "Copy properties"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:121
#, kde-format
msgid "Paste properties"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:129
#, kde-format
msgid "Load from"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:147
#, kde-format
msgid "Template \"%1\" was loaded."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:152
#, kde-format
msgid "Save as"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:168
#, kde-format
msgid "new:"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:197
#, kde-format
msgid "New template \"%1\" was saved."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:208
#, kde-format
msgid "Template \"%1\" was saved."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/TemplateHandler.cpp:219
#, kde-format
msgid "New default template was saved."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/ThemeHandler.cpp:69 src/kdefrontend/ThemeHandler.cpp:103
#, kde-format
msgid "Apply theme"
msgstr ""
#. +> trunk5
#: src/kdefrontend/ThemeHandler.cpp:100
#, kde-format
msgid "Apply theme [active '%1']"
msgstr ""
#. +> trunk5
#: src/kdefrontend/ThemeHandler.cpp:101
#, kde-format
msgid "Theme '%1' is active. Click on the button to change the theme."
msgstr ""
#. +> trunk5
#: src/kdefrontend/ThemeHandler.cpp:104
#, kde-format
msgid "No theme is active. Click on the button to select a theme."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/ThemeHandler.cpp:115
#, kde-format
msgid "Theme \"%1\" was loaded."
msgstr ""
#. +> trunk
#: src/kdefrontend/ThemeHandler.cpp:182
#, kde-format
msgid "New theme \"%1\" was saved."
msgstr ""
#. +> trunk5
#: src/kdefrontend/ThemeHandler.cpp:117
#, kde-format
msgid "Theming deactivated."
msgstr ""
#. +> trunk
#: src/kdefrontend/ThemeHandler.cpp:163
#, kde-format
msgid "Enter name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lValue)
#. +> trunk5 trunk
#: src/kdefrontend/ui/constantswidget.ui:57
#, kde-format
msgid "Value:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bInsert)
#. +> trunk5 trunk
#: src/kdefrontend/ui/constantswidget.ui:90
#: src/kdefrontend/ui/functionswidget.ui:56
#, kde-format
msgid "Insert"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bCancel)
#. i18n: ectx: property (text), widget (QPushButton, pbCancel)
#. +> trunk5 trunk
#: src/kdefrontend/ui/constantswidget.ui:97
#: src/kdefrontend/ui/fitoptionswidget.ui:37
#: src/kdefrontend/ui/fitparameterswidget.ui:67
#: src/kdefrontend/ui/functionswidget.ui:63
#, kde-format
msgid "Cancel"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leFilter)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leKey)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leValue)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leComment)
#. +> trunk5 trunk
#: src/kdefrontend/ui/constantswidget.ui:117
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:24
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:34
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:44
#: src/kdefrontend/ui/functionswidget.ui:17
#, kde-format
msgid "Enter search term here"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:111
#, kde-format
msgid "Error Type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXErrorType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:124
#, kde-format
msgid "X-Error Type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYErrorType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:150
#, kde-format
msgid "Y-Error Type"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tSymbols)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:187
#, kde-format
msgid "Symbols"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSize)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarSize)
#. i18n: ectx: property (text), widget (QLabel, lArrowSize)
#. i18n: ectx: property (text), widget (QLabel, lSymbolSize)
#. i18n: ectx: property (text), widget (QLabel, lFontSize)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:193
#: src/kdefrontend/ui/datapickercurvewidget.ui:501
#: src/kdefrontend/ui/datapickerimagewidget.ui:685
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:437
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:269
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:132
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:603
#: src/kdefrontend/ui/labelwidget.ui:340
#, kde-format
msgid "Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBorder)
#. i18n: ectx: property (text), widget (QLabel, lSymbolBorder)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:209
#: src/kdefrontend/ui/datapickerimagewidget.ui:853
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:944
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:974
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:510
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:389
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:465
#, kde-format
msgid "Border:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lErrorBarFillingStyle)
#. i18n: ectx: property (text), widget (QLabel, lFillingStyle)
#. i18n: ectx: property (text), widget (QLabel, lStyle)
#. i18n: ectx: property (text), widget (QLabel, lBorderStyle)
#. i18n: ectx: property (text), widget (QLabel, lLineStyle)
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksLineStyle)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksLineStyle)
#. i18n: ectx: property (text), widget (QLabel, lMajorGridStyle)
#. i18n: ectx: property (text), widget (QLabel, lMinorGridStyle)
#. i18n: ectx: property (text), widget (QLabel, lFillingColorStyle)
#. i18n: ectx: property (text), widget (QLabel, lFillingImageStyle)
#. i18n: ectx: property (text), widget (QLabel, lFillingBrushStyle)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundColorStyle)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundImageStyle)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundBrushStyle)
#. i18n: ectx: property (text), widget (QLabel, lXBreakStyle)
#. i18n: ectx: property (text), widget (QLabel, lYBreakStyle)
#. i18n: ectx: property (text), widget (QLabel, lSymbolStyle)
#. i18n: ectx: property (text), widget (QLabel, lSymbolFillingStyle)
#. i18n: ectx: property (text), widget (QLabel, lSymbolBorderStyle)
#. i18n: ectx: property (text), widget (QLabel, lDropLineStyle)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsStyle)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:230
#: src/kdefrontend/ui/datapickercurvewidget.ui:434
#: src/kdefrontend/ui/datapickercurvewidget.ui:474
#: src/kdefrontend/ui/datapickercurvewidget.ui:491
#: src/kdefrontend/ui/datapickerimagewidget.ui:652
#: src/kdefrontend/ui/datapickerimagewidget.ui:804
#: src/kdefrontend/ui/datapickerimagewidget.ui:860
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:263
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:574
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:759
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1231
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1423
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:543
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:702
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:834
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:844
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:854
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:951
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:582
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:732
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:864
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:874
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:884
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:981
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:403
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:413
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:423
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:517
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:252
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:359
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:396
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:440
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:450
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:460
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:272
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:282
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:360
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:121
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:246
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:421
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:435
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:586
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1038
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1048
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1058
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1295
#: src/kdefrontend/worksheet/GridDialog.cpp:55
#, kde-format
msgid "Style"
msgstr ""
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbErrorBarSize)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbBorderWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbSize)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLineWidth)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbArrowSize)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMajorTicksWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMajorTicksLength)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMinorTicksWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMinorTicksLength)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLabelsOffset)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMajorGridWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbMinorGridWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbValuesDistance)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbSymbolSize)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbSymbolBorderWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbDropLineWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbErrorBarsCapSize)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbErrorBarsWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbOffsetX)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbOffsetY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:250
#: src/kdefrontend/ui/datapickercurvewidget.ui:283
#: src/kdefrontend/ui/datapickercurvewidget.ui:395
#: src/kdefrontend/ui/datapickerimagewidget.ui:695
#: src/kdefrontend/ui/datapickerimagewidget.ui:894
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:320
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:453
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:615
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:632
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:800
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:817
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1185
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1281
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1365
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:992
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1022
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:544
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:436
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:446
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:108
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:155
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:280
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:498
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:508
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:706
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1312
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1346
#: src/kdefrontend/ui/labelwidget.ui:509 src/kdefrontend/ui/labelwidget.ui:525
#, kde-format
msgid " pt"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRotation)
#. i18n: ectx: property (text), widget (QLabel, lLabelsRotation)
#. i18n: ectx: property (text), widget (QLabel, lValuesRotation)
#. i18n: ectx: property (text), widget (QLabel, lSymbolRotation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:276
#: src/kdefrontend/ui/datapickerimagewidget.ui:149
#: src/kdefrontend/ui/datapickerimagewidget.ui:705
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1019
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:276
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:118
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:518
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:716
#: src/kdefrontend/ui/labelwidget.ui:413
#, kde-format
msgid "Rotation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbLineOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbArrowSize)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbMajorTicksOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbMinorTicksOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbLabelsOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbMajorGridOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbMinorGridOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbValuesOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbFillingOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbBackgroundOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbBorderOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbSymbolOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbDropLineOpacity)
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbErrorBarsOpacity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:322
#: src/kdefrontend/ui/datapickerimagewidget.ui:753
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:349
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:450
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:655
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:840
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1119
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1297
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1388
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:897
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1032
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:927
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1062
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:466
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:324
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:160
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:503
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:325
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:178
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:303
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:386
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:758
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1101
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1369
#, kde-format
msgid "The opacity ranges from 0 to 100, where 0 is fully transparent and 100 is fully opaque."
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, sbOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbLineOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbMajorTicksOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbMinorTicksOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbLabelsOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbMajorGridOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbMinorGridOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbValuesOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbFillingOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbBackgroundOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbBorderOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbXBreakPosition)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbYBreakPosition)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbSymbolOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbDropLineOpacity)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbErrorBarsOpacity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:325
#: src/kdefrontend/ui/datapickerimagewidget.ui:756
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:352
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:658
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:843
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1122
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1300
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1391
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:722
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:735
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:900
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1035
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:752
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:765
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:930
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1065
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:469
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:578
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:327
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:163
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:506
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:328
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:181
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:306
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:389
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:761
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1104
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1372
#, kde-format, no-c-format
msgid " %"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBorderWidth)
#. i18n: ectx: property (text), widget (QLabel, lLineWidth)
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksWidth)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksWidth)
#. i18n: ectx: property (text), widget (QLabel, lMajorGridWidth)
#. i18n: ectx: property (text), widget (QLabel, lMinorGridWidth)
#. i18n: ectx: property (text), widget (QLabel, lWidth)
#. i18n: ectx: property (text), widget (QLabel, lBottomMargin)
#. i18n: ectx: property (text), widget (QLabel, lSymbolBorderWidth)
#. i18n: ectx: property (text), widget (QLabel, lDropLineWidth)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsWidth)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:357
#: src/kdefrontend/ui/datapickerimagewidget.ui:887
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:313
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:608
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:793
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1274
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1358
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:146
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:985
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:103
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1015
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:537
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:420
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:152
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:148
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:273
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:472
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1339
#, kde-format
msgid "Width"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, sbRotation)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbLabelsRotation)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbValuesRotation)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbSymbolRotation)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbRotation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:373
#: src/kdefrontend/ui/datapickerimagewidget.ui:162
#: src/kdefrontend/ui/datapickerimagewidget.ui:721
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1160
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:292
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:131
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:354
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:729
#: src/kdefrontend/ui/labelwidget.ui:544
#, kde-format
msgid "°"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lErrorBar)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:427
#, kde-format
msgid "Error Bar:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFilling)
#. i18n: ectx: property (text), widget (QLabel, lSymbolFilling)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:447
#: src/kdefrontend/ui/datapickerimagewidget.ui:797
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:352
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:414
#, kde-format
msgid "Filling:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOpacity)
#. i18n: ectx: property (text), widget (QLabel, lLineOpacity)
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksOpacity)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksOpacity)
#. i18n: ectx: property (text), widget (QLabel, lLabelsOpacity)
#. i18n: ectx: property (text), widget (QLabel, lMajorGridOpacity)
#. i18n: ectx: property (text), widget (QLabel, lMinorGridOpacity)
#. i18n: ectx: property (text), widget (QLabel, lValuesOpacity)
#. i18n: ectx: property (text), widget (QLabel, lFillingOpacity)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundOpacity)
#. i18n: ectx: property (text), widget (QLabel, lBorderOpacity)
#. i18n: ectx: property (text), widget (QLabel, lSymbolOpacity)
#. i18n: ectx: property (text), widget (QLabel, lDropLineOpacity)
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsOpacity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:454
#: src/kdefrontend/ui/datapickerimagewidget.ui:740
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:336
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:642
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:827
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1106
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1208
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1375
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:884
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1019
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:914
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1049
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:453
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:571
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:311
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:147
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:490
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:312
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:165
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:290
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:373
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:745
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1088
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1356
#: src/kdefrontend/worksheet/GridDialog.cpp:87
#, kde-format
msgid "Opacity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lGeneral)
#. i18n: ectx: property (text), widget (QLabel, lValuesGeneral)
#. i18n: ectx: property (text), widget (QLabel, lSymbol)
#. i18n: ectx: property (text), widget (QLabel, lSymbolGeneral)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickercurvewidget.ui:467
#: src/kdefrontend/ui/datapickerimagewidget.ui:645
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:230
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:41
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:579
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:639
#, kde-format
msgid "General:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:95
#, kde-format
msgid "Plot:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, leFillingFileName)
#. i18n: ectx: property (toolTip), widget (QLineEdit, leBackgroundFileName)
#. i18n: ectx: property (toolTip), widget (QLineEdit, leFileName)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:109
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:808
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:838
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:377
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:414
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:246
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1012
#, kde-format
msgid "Specify the name of the image file."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bOpen)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:125
#, kde-format
msgid " Select the image file to import"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRefPoint)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:197
#, kde-format
msgid "Ref. Points:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRefPoint1)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:204
#, kde-format
msgid "1."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPoisitionY3)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionY1)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionY2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:264
#: src/kdefrontend/ui/datapickerimagewidget.ui:326
#: src/kdefrontend/ui/datapickerimagewidget.ui:430
#, kde-format
msgid "y="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPoisitionX2)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionX1)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionX3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:274
#: src/kdefrontend/ui/datapickerimagewidget.ui:368
#: src/kdefrontend/ui/datapickerimagewidget.ui:479
#, kde-format
msgid "x="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPoisitionZ1)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionZ2)
#. i18n: ectx: property (text), widget (QLabel, lPoisitionZ3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:284
#: src/kdefrontend/ui/datapickerimagewidget.ui:404
#: src/kdefrontend/ui/datapickerimagewidget.ui:469
#, kde-format
msgid "z="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRefPoint2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:491
#, kde-format
msgid "2."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRefPoint3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:498
#, kde-format
msgid "3."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTernaryScale)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:505
#, kde-format
msgid "x+y+z="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSegments)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:521
#, kde-format
msgid "Segments:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksLength)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksLength)
#. i18n: ectx: property (text), widget (QLabel, lMinSegmentLength)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:528
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:625
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:810
#, kde-format
msgid "Length"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, sbMinSegmentLength)
#. i18n: ectx: property (suffix), widget (QSpinBox, sbPointSeparation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:541
#: src/kdefrontend/ui/datapickerimagewidget.ui:577
#, kde-format
msgid "px"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPointSeparation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:548
#, kde-format
msgid "Point separation"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tSymbol)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:633
#, kde-format
msgid "Ref. Points Symbol"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tEdit)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:925
#, kde-format
msgid "Edit Image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lIntensity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:940
#, kde-format
msgid "Intensity"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, lPositionY)
#. i18n: ectx: property (toolTip), widget (KComboBox, cbPlotImageType)
#. i18n: ectx: property (toolTip), widget (KComboBox, cbPositionY)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, sbPositionY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:962
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:132
#: src/kdefrontend/ui/labelwidget.ui:255 src/kdefrontend/ui/labelwidget.ui:282
#: src/kdefrontend/ui/labelwidget.ui:455
#, kde-format
msgid "Vertical position relative to label's parent"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHue)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:995
#, kde-format
msgid "Hue"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPlotImageType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:1015
#, kde-format
msgid "Current Image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSaturation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:1028
#, kde-format
msgid "Saturation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lForeground)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datapickerimagewidget.ui:1035
#, kde-format
msgid "Foreground"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbSkipEmptyParts)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:23
#, kde-format
msgid "Skip empty parts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:30
#, kde-format
msgid "Use the first row to name the vectors"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDateTimeFormat)
#. +> trunk5
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:40
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:98
#, kde-format
msgid "DateTime format"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVectorNames)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:50
#, kde-format
msgid "Vector names:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chbSimplifyWhitespaces)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:57
#, kde-format
msgid "Removes the whitespaces from the start and the end, and replaces each sequence of internal whitespaces with a single space."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbSimplifyWhitespaces)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:60
#, kde-format
msgid "Simplify whitespaces"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lNumberFormat)
#. +> trunk5
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:93
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:91
#, kde-format
msgid "Number format"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chbTranspose)
#. +> trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:94
#, kde-format
msgid "Interchanges the role of the rows and the columns. Treats the rows as data vectors, if selected."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbTranspose)
#. +> trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:97
#, kde-format
msgid "Transpose"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, kleVectorNames)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:103
#, kde-format
msgid "Vector names, space separated. E.g. \"x y\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSeparatingCharacter)
#. i18n: ectx: property (text), widget (QLabel, lSeparator)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:161
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:156
#, kde-format
msgid "Separating character"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:181
#, kde-format
msgid "Comment character"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbConvertNaNToZero)
#. +> trunk5
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:201
#, kde-format
msgid "Convert NaN to 0"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbCreateIndex)
#. +> trunk5
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:211
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:120
#, kde-format
msgid "Create index column"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbRemoveQuotes)
#. +> trunk5
#: src/kdefrontend/ui/datasources/asciioptionswidget.ui:218
#, kde-format
msgid "Remove Quotes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSkipBytes)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:17
#, kde-format
msgid "Skip Bytes:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, niVectors)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:24
#, kde-format
msgid "The number of vectors in the file"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDataType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:50
#, kde-format
msgid "Data type:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbSkipStartBytes)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:60
#, kde-format
msgid "Skip bytes at start of file"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbSkipBytes)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:70
#, kde-format
msgid "Skip bytes after each value"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVectors)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:80
#, kde-format
msgid "Vectors:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSkipStartBytes)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:90
#, kde-format
msgid "Skip start bytes:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lByteOrder)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/binaryoptionswidget.ui:97
#, kde-format
msgid "Byte order:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), widget (QLabel, lDatabase)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:33
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:93
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:29
#, kde-format
msgid "Database"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDriver)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:49
#, kde-format
msgid "Driver"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHost)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:59
#: src/kdefrontend/ui/datasources/importfilewidget.ui:209
#, kde-format
msgid "Host"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPort)
#. i18n: ectx: property (text), widget (QLabel, lSerialPort)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:73
#: src/kdefrontend/ui/datasources/importfilewidget.ui:90
#: src/kdefrontend/ui/datasources/importfilewidget.ui:97
#, kde-format
msgid "Port"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbAuthentication)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:136
#, kde-format
msgid "Authentication"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUserName)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:142
#, kde-format
msgid "User"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPassword)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:156
#, kde-format
msgid "Password"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bTestConnection)
#. +> trunk5
#: src/kdefrontend/ui/datasources/databasemanagerwidget.ui:231
#, kde-format
msgid "Test"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lPreviewLines)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/fitsoptionswidget.ui:19
#: src/kdefrontend/ui/datasources/hdfoptionswidget.ui:41
#: src/kdefrontend/ui/datasources/importfilewidget.ui:323
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:179
#: src/kdefrontend/ui/datasources/netcdfoptionswidget.ui:53
#, kde-format
msgid "Number of rows to preview:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bRefreshPreview)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/fitsoptionswidget.ui:36
#: src/kdefrontend/ui/datasources/hdfoptionswidget.ui:21
#: src/kdefrontend/ui/datasources/importfilewidget.ui:356
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:199
#: src/kdefrontend/ui/datasources/netcdfoptionswidget.ui:88
#, kde-format
msgid "Refresh"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTreeWidget, twContent)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/hdfoptionswidget.ui:71
#, kde-format
msgid "Shows the content of a HDF file"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lImportFormat)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/imageoptionswidget.ui:30
#, kde-format
msgid "Import as: "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cbImportFormat)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/imageoptionswidget.ui:50
#, kde-format
msgid "Choose how to import the image"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbDataSource)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:35
#, kde-format
msgid "Data source"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:26
#, kde-format
msgid "File data source"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSourceType)
#. i18n: ectx: property (text), widget (QLabel, lDataSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:48
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:82
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:82
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:623
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:82
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:229
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:82
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:88
#, kde-format
msgid "Source"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSourceName)
#. +> trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:163
#, kde-format
msgid "Source name"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bOpen)
#. i18n: ectx: property (toolTip), widget (QPushButton, bFillingOpen)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:61
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:32
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:824
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:854
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:393
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:430
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:262
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1028
#: src/kdefrontend/ui/fitsheadereditwidget.ui:53
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:59
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:56
#, kde-format
msgid " Select the file to import"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bFileInfo)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:80
#, kde-format
msgid "Show file info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBaudRate)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:104
#, kde-format
msgid "Baud rate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFilter)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:134
#, kde-format
msgid "Filter"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bSaveFilter)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:157
#, kde-format
msgid "Save the current filter settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bManageFilters)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:173
#, kde-format
msgid "Manage filters"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KLineEdit, kleSourceName)
#. +> trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:173
#, kde-format
msgid "Specify the name for the data source. This name will be used in the project explorer upon importing."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chbWatchFile)
#. +> trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:183
#, kde-format
msgid "If this option is checked, the file will be automatically reloaded on changes."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, leFileName)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:199
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:49
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:43
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:40
#, kde-format
msgid "Specify the name of the file to import."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:220
#, kde-format
msgid "File or named pipe"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:225
#, kde-format
msgid "Network TCP socket"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:230
#, kde-format
msgid "Network UDP socket"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:235
#, kde-format
msgid "Local socket"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbSourceType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:240
#, kde-format
msgid "Serial port"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbOptions)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:276
#, kde-format
msgid "Format Options"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. i18n: ectx: attribute (title), widget (QWidget, tabDataPortion)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:377
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:239
#, kde-format
msgid "Data portion to read"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lStartRow)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:396
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:245
#, kde-format
msgid "Start row:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbStartRow)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:403
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:252
#, kde-format
msgid "Specify the start row for import"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEndRow)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:448
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:284
#, kde-format
msgid "End row:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbEndRow)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:455
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:291
#, kde-format
msgid "Specify the end row to import; -1 stands for the last row"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lStartColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:471
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:320
#, kde-format
msgid "Start column:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbStartColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:478
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:327
#, kde-format
msgid "Specify the start column for import"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEndColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:507
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:356
#, kde-format
msgid "End column:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbEndColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:514
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:363
#, kde-format
msgid "Specify the end column to import; -1 stands for the last column"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbUpdateOptions)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:550
#, kde-format
msgid "Update Options"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbUpdateType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:563
#, kde-format
msgid "Periodically"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbUpdateType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:568
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:123
#, kde-format
msgid "On new data"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chbLinkFile)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importfilewidget.ui:576
#, kde-format
msgid "If this option is checked, only the link to the file is stored in the project file but not it's content."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lReadType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:589
#, kde-format
msgid "Read"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lKeepLastValues)
#. i18n: ectx: property (text), widget (QLabel, lKeepNvalues)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:596
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:34
#, kde-format
msgid "Keep last N values"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUpdateType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:603
#, kde-format
msgid "Update"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSampleRate)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:610
#, kde-format
msgid "Sample rate"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadType)
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadingType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:631
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:99
#, kde-format
msgid "Continuously fixed"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadType)
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadingType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:636
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:104
#, kde-format
msgid "From end"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadType)
#. i18n: ectx: property (text), item, widget (QComboBox, cbReadingType)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:641
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:109
#, kde-format
msgid "Till the end"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUpdateInterval)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:649
#, kde-format
msgid "Update interval"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUpdateIntervalUnit)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importfilewidget.ui:678
#, kde-format
msgid "ms"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ImportProjectWidget)
#. i18n: ectx: property (text), widget (QLabel, lForm)
#. i18n: ectx: property (windowTitle), widget (QWidget, LiveDataDock)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:14
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:14
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:252
#, kde-format
msgid "Form"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFileName)
#. i18n: ectx: property (text), widget (QLabel, lFillingFileName)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundFileName)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:42
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:801
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:831
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:370
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:407
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:47
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:239
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1005
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:36
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:33
#, kde-format
msgid "File name"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbObjects)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importprojectwidget.ui:62
#, kde-format
msgid "Objects To Import"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lConnection)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:35
#, kde-format
msgid "Connection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lImportFrom)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:65
#, kde-format
msgid "Import from"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbQuery)
#. +> trunk5
#: src/kdefrontend/ui/datasources/importsqldatabasewidget.ui:137
#, kde-format
msgid "Query"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTreeWidget, twContent)
#. +> trunk5 trunk
#: src/kdefrontend/ui/datasources/netcdfoptionswidget.ui:23
#, kde-format
msgid "Shows the content of a NetCDF file"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, lePosition)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:131
#, kde-format
msgid "Position of the axis in the direction perpendicular to the axis in logical units."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lScale)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:138
#, kde-format
msgid "Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lAutoScale)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:164
#, kde-format
msgid "Auto Fit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lStart)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:178
#, kde-format
msgid "Start"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEnd)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:188
#, kde-format
msgid "End"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lZeroOffset)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:198
#, kde-format
msgid "Zero-offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lScalingFactor)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:208
#, kde-format
msgid "Scaling factor"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabTitle)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:239
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:383
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:440
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:313
#, kde-format
msgid "Title"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLine)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:256
#, kde-format
msgid "Line:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lArrow)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:396
#, kde-format
msgid "Arrow:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabTicks)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:489
#, kde-format
msgid "Ticks"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicksDirection)
#. i18n: ectx: property (text), widget (QLabel, lMinorTicksDirection)
#. i18n: ectx: property (text), widget (QLabel, lFillingPosition)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:495
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:696
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:357
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:955
#, kde-format
msgid "Direction"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorTicks)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:881
#, kde-format
msgid "Major ticks:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMinorTicks)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:894
#, kde-format
msgid "Minor ticks:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabLabels)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:902
#, kde-format
msgid "Labels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorGrid_2)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:914
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:102
#, kde-format
msgid "Position:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLabelsOffset)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:937
#, kde-format
msgid "Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLabelsFont)
#. i18n: ectx: property (text), widget (QLabel, lValuesFont)
#. i18n: ectx: property (text), widget (QLabel, lFont)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:976
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:114
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:310
#: src/kdefrontend/ui/dockwidgets/notedock.ui:89
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:908
#: src/kdefrontend/ui/labelwidget.ui:269
#, kde-format
msgid "Font"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOutputFormat)
#. i18n: ectx: property (text), widget (QLabel, lLabelsFormat)
#. i18n: ectx: property (text), widget (QLabel, lValuesFormat)
#. i18n: ectx: property (text), widget (QLabel, lFormat)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:983
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:211
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:809
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:29
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:23
#, kde-format
msgid "Format"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbLabelsPrecision)
#. i18n: ectx: property (toolTip), widget (QLabel, lLabelsPrecision)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:999
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1055
#, kde-format
msgid "Number of digits after the decimal point"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkLabelsAutoPrecision)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1006
#, kde-format
msgid "Automatically determine the optimal number of digits after the decimal point"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbAutoRange)
#. i18n: ectx: property (text), widget (QCheckBox, chkLabelsAutoPrecision)
#. i18n: ectx: property (text), widget (QCheckBox, chkAutoScaleX)
#. i18n: ectx: property (text), widget (QCheckBox, chkAutoScaleY)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leXMin)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leXMax)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leYMin)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, leYMax)
#. i18n: ectx: property (text), widget (QCheckBox, chkAuto)
#. i18n: ectx: property (text), widget (QCheckBox, chkAuto2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1009
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:215
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:245
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:262
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:318
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:348
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:365
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:219
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:276
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:393
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:403
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:416
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:426
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:127
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:371
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:419
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:357
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:127
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:49
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:148
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:492
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:123
#, kde-format
msgid "Auto"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorGrid_3)
#. i18n: ectx: property (text), widget (QLabel, lValuesFormatTop)
#. i18n: ectx: property (text), widget (QLabel, lFormat_2)
#. i18n: ectx: property (text), widget (QLabel, lFormat)
#. i18n: ectx: property (text), widget (QLabel, lErrorFormat)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1048
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:107
#: src/kdefrontend/ui/dockwidgets/columndock.ui:66
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:204
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:208
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:145
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:802
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1278
#, kde-format
msgid "Format:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLabelsPrecision)
#. i18n: ectx: property (text), widget (QLabel, lValuesPrecision)
#. i18n: ectx: property (text), widget (QLabel, lPrecision)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1058
#: src/kdefrontend/ui/dockwidgets/columndock.ui:93
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:221
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:215
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:819
#, kde-format
msgid "Precision"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLabelsPrefix)
#. i18n: ectx: property (text), widget (QLabel, lValuesPrefix)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1079
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:276
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:874
#, kde-format
msgid "Prefix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLabelsSuffix)
#. i18n: ectx: property (text), widget (QLabel, lValuesSuffix)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1096
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:293
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:891
#, kde-format
msgid "Suffix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMajorGrid)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1224
#, kde-format
msgid "Major grid:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMinorGrid)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/axisdock.ui:1341
#, kde-format
msgid "Minor grid:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lGeometry)
#. i18n: ectx: property (text), widget (QLabel, lPosition)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:96
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:82
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:196
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:107
#: src/kdefrontend/ui/labelwidget.ui:317
#, kde-format
msgid "Geometry:"
msgstr ""
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbHeight)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutTopMargin)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutBottomMargin)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutLeftMargin)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutRightMargin)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutHorizontalSpacing)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLayoutVerticalSpacing)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLineSymbolWidth)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbPositionX)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbPositionY)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbLeft)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbTop)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbPaddingHorizontal)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbPaddingVertical)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:113
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:133
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:153
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:173
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1096
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1119
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:341
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:354
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:367
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:380
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1126
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1149
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:161
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:223
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:249
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:669
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:689
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:716
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:736
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:756
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:798
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:159
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:176
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:419
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:439
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:459
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:479
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:528
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:548
#: src/kdefrontend/ui/labelwidget.ui:285 src/kdefrontend/ui/labelwidget.ui:429
#, kde-format
msgid " cm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHeight)
#. i18n: ectx: property (text), widget (QLabel, lRightMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:166
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:110
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:169
#, kde-format
msgid "Height"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXscale)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:208
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:400
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:212
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:457
#, kde-format
msgid "x-Range:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMin)
#. i18n: ectx: property (text), widget (QLabel, lXMin)
#. i18n: ectx: property (text), widget (QLabel, lYMin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:222
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:311
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:226
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:283
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:289
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:286
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:151
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:300
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:175
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:434
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:147
#, kde-format
msgid "Min"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMax)
#. i18n: ectx: property (text), widget (QLabel, lXMax)
#. i18n: ectx: property (text), widget (QLabel, lYMax)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:255
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:328
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:233
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:290
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:325
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:322
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:187
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:336
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:54
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:470
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:183
#, kde-format
msgid "Max"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXScaling)
#. i18n: ectx: property (text), widget (QLabel, lXScaling_2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:272
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:358
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:240
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:297
#, kde-format
msgid "Scaling"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYscale)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:304
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:572
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:269
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:611
#, kde-format
msgid "y-Range:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabScales)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:388
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:445
#, kde-format
msgid "Range Breaks"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:407
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:579
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:464
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:618
#, kde-format
msgid "Enabled"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bAddXBreak)
#. i18n: ectx: property (toolTip), widget (QPushButton, bAddYBreak)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:474
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:633
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:525
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:675
#, kde-format
msgid "Add new scale breaking"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bRemoveXBreak)
#. i18n: ectx: property (toolTip), widget (QPushButton, bRemoveYBreak)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:490
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:649
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:535
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:685
#, kde-format
msgid "Remove scale breaking"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cbXBreak)
#. i18n: ectx: property (toolTip), widget (QComboBox, cbYBreak)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:506
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:665
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:545
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:695
#, kde-format
msgid "Current scale breaking"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXBreakStart)
#. i18n: ectx: property (text), widget (QLabel, lYBreakStart)
#. i18n: ectx: property (text), widget (QLabel, lFrom)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:516
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:675
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:555
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:705
#: src/kdefrontend/ui/spreadsheet/equidistantvalueswidget.ui:47
#, kde-format
msgid "From"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXBreakEnd)
#. i18n: ectx: property (text), widget (QLabel, lYBreakEnd)
#. i18n: ectx: property (text), widget (QLabel, lTo)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:526
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:685
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:565
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:715
#: src/kdefrontend/ui/spreadsheet/equidistantvalueswidget.ui:57
#, kde-format
msgid "To"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabPlotArea)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:749
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:779
#, kde-format
msgid "Plot Area"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBackground)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:761
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:791
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:330
#, kde-format
msgid "Background:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFillingSecondColor)
#. i18n: ectx: property (text), widget (QLabel, lBackgroundSecondColor)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:874
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:904
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:443
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:480
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:302
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1078
#, kde-format
msgid "Second color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBorderCornerRadius)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1002
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1032
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:554
#, kde-format
msgid "Corner radius"
msgstr ""
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, sbBorderCornerRadius)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1009
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1039
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:561
#, kde-format
msgid "cm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPadding)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1079
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1109
#, kde-format
msgid "Padding:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPaddingHorizontal)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1086
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1116
#, kde-format
msgid "Horizontal"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPaddingVertical)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/barchartplotdock.ui:1109
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:1139
#, kde-format
msgid "Vertical"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDataRange)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:139
#, kde-format
msgid "Data range:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbRangeLast)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:146
#, kde-format
msgid "Show &last"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lShowLastNPoints)
#. i18n: ectx: property (text), widget (QLabel, lShowFirstNPoints)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:156
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:173
#, kde-format
msgid "points"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbRangeFirst)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:163
#, kde-format
msgid "Show f&irst"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbRangeFree)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/cartesianplotdock.ui:180
#, kde-format
msgid "Free ranges"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lName)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:36
#, kde-format
msgid "Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lComment)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:68
#, kde-format
msgid "Comment:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPositionX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:203
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:112
#: src/kdefrontend/ui/labelwidget.ui:301
#, kde-format
msgid "x"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPositionY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:239
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:135
#: src/kdefrontend/ui/labelwidget.ui:458
#, kde-format
msgid "y"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLineSymbolWidth)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:285
#, kde-format
msgid "Line+Symbol width"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:318
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:200
#, kde-format
msgid "Background"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSpacing)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:633
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:514
#, kde-format
msgid "Spacing:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTopMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:656
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:390
#, kde-format
msgid "Top margin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBottomMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:682
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:432
#, kde-format
msgid "Bottom margin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLeftMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:702
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:452
#, kde-format
msgid "Left margin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRightMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:709
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:472
#, kde-format
msgid "Right margin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHorizontalSpacing)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:729
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:521
#, kde-format
msgid "Hor. spacing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVerticalSpacing)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:749
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:541
#, kde-format
msgid "Ver. spacing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMargin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/cartesianplotlegenddock.ui:791
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:383
#, kde-format
msgid "Margin:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/columndock.ui:73
#, kde-format
msgid "Data Type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFormat)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/columndock.ui:83
#, kde-format
msgid "Format Type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPlotDesignation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/columndock.ui:123
#, kde-format
msgid "Plot designation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, lPositionX)
#. i18n: ectx: property (toolTip), widget (KComboBox, cbPositionX)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, sbPositionX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:109
#: src/kdefrontend/ui/labelwidget.ui:298 src/kdefrontend/ui/labelwidget.ui:353
#: src/kdefrontend/ui/labelwidget.ui:426
#, kde-format
msgid "Horizontal position relative to label's parent"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabSymbol)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/custompointdock.ui:170
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:339
#, kde-format
msgid "Symbol"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lValuesColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:81
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:679
#, kde-format
msgid "Dataset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lValuesDistance)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:98
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:696
#, kde-format
msgid "Distance"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lValuesText)
#. i18n: ectx: property (text), widget (QLabel, lText)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:269
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:867
#: src/kdefrontend/ui/labelwidget.ui:35
#, kde-format
msgid "Text:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabAreaFilling)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdock.ui:351
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:949
#, kde-format
msgid "Filling"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBinCount)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:85
#, kde-format
msgid "Bins"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:92
#: src/kdefrontend/ui/dockwidgets/xycurvedockgeneraltab.ui:59
#, kde-format
msgid "x-data"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbRecalculate)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:99
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:239
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:206
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:379
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:61
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:393
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:186
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:79
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:384
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:434
#, kde-format
msgid "Recalculate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lType)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:115
#, kde-format
msgid "Histogram type:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBinSettings)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/histogramdockgeneraltab.ui:142
#, kde-format
msgid "Bin Settings:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bUpdateNow)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:20
#, kde-format
msgid "Update now"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUpdateInterval)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:27
#, kde-format
msgid "Update interval:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lUpdateType)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:41
#, kde-format
msgid "Update type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSampleRate)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:71
#, kde-format
msgid "Sample rate: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lReadingType)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:78
#, kde-format
msgid "Reading type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lAutoSaveInterval)
#. i18n: ectx: property (text), item, widget (QComboBox, cbUpdateType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/livedatadock.ui:118
#: src/kdefrontend/ui/settingsgeneralpage.ui:53
#, kde-format
msgid "Time interval"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDimensions)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:23
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:82
#, kde-format
msgid "Dimensions:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYStart)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:67
#, kde-format
msgid "y-Start"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRowCount)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:143
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:89
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:590
#, kde-format
msgid "Rows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYEnd)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:164
#, kde-format
msgid "y-End"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXStart)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:178
#, kde-format
msgid "x-Start"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXMax)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:192
#, kde-format
msgid "x-End"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:264
#, kde-format
msgid "Header"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMapping)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/matrixdock.ui:280
#, kde-format
msgid "Mapping:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bgcolor)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/notedock.ui:69
#, kde-format
msgid "Background Color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textcolor)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/notedock.ui:79
#, kde-format
msgid "Text Color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVersion_2)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:86
#, kde-format
msgid "LabPlot version"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVersion_2)
#. +> trunk
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:77
#, kde-format
msgid "Labplot version"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:142
#, kde-format
msgid "Author"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/projectdock.ui:172
#, kde-format
msgid "Last modified"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lShowComments)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/spreadsheetdock.ui:152
#, kde-format
msgid "Column comments"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lScaleContent)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:114
#, kde-format
msgid "Scale content"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chScaleContent)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:122
#, kde-format
msgid ""
"If checked, rescale the content of the worksheet on size changes. Otherwise resize the canvas only.\n"
"Note, the content is automatically rescaled if a layout is active."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lGrid)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/worksheetdock.ui:583
#, kde-format
msgid "Grid:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lValuesGeneral_2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:41
#, kde-format
msgid "Connection:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLineInterpolationPointsCount)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:84
#, kde-format
msgid "Interm. points"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, sbLineInterpolationPointsCount)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:97
#, kde-format
msgid "intermediate points to evaluate between each two points"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLineSkipGaps)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:107
#, kde-format
msgid "Skip Gaps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDropLines)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:222
#, kde-format
msgid "Drop lines:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabErrorBars)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1137
#, kde-format
msgid "Error bars"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lErrorBarX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1149
#, kde-format
msgid "x-error:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXErrorType)
#. i18n: ectx: property (text), widget (QLabel, lYErrorType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1156
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1232
#, kde-format
msgid "Error type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXErrorDataMinus)
#. i18n: ectx: property (text), widget (QLabel, lYErrorDataMinus)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1196
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1249
#, kde-format
msgid "Data, -"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lErrorBarY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1225
#, kde-format
msgid "y-error:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lErrorBarsCapSize)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedock.ui:1305
#, kde-format
msgid "Cap size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xycurvedockgeneraltab.ui:66
#, kde-format
msgid "y-data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lData)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:75
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:75
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:831
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:75
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:122
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:286
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:75
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:81
#, kde-format
msgid "Data:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:106
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:96
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:722
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:106
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:129
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:209
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:96
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:102
#, kde-format
msgid "x-Data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYColumn)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:113
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:103
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:699
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:113
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:136
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:250
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:103
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:109
#, kde-format
msgid "y-Data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:120
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:110
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:120
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:59
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:257
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:110
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:116
#, kde-format
msgid "x-Range"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSimplification)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:159
#, kde-format
msgid "Simplification:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOption)
#. i18n: ectx: property (text), widget (QLabel, lOption2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:173
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:180
#, kde-format
msgid "Option"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lResults)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydatareductioncurvedockgeneraltab.ui:209
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:189
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:557
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:356
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:162
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:332
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:347
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:397
#, kde-format
msgid "Results:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDifferentiation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:139
#, kde-format
msgid "Differentiation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDerivative)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:146
#, kde-format
msgid "Derivative"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xydifferentiationcurvedockgeneraltab.ui:153
#, kde-format
msgid "Accuracy order"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:76
#, kde-format
msgid "Equation type"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEquation1)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:93
#, kde-format
msgid "x=f(t)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, tbFunctions)
#. i18n: ectx: property (toolTip), widget (QToolButton, tbFunctions1)
#. i18n: ectx: property (toolTip), widget (QToolButton, tbFunctions2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:143
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:216
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:795
#: src/kdefrontend/ui/matrix/matrixfunctionwidget.ui:74
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:136
#, kde-format
msgid "Functions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, tbConstants)
#. i18n: ectx: property (toolTip), widget (QToolButton, tbConstants1)
#. i18n: ectx: property (toolTip), widget (QToolButton, tbConstants2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:153
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:226
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:805
#: src/kdefrontend/ui/matrix/matrixfunctionwidget.ui:84
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:146
#, kde-format
msgid "Constants"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEquation2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyequationcurvedockgeneraltab.ui:166
#, kde-format
msgid "y=g(t)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lCategory)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:30
#, kde-format
msgid "Category"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lWeight)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:84
#, kde-format
msgid "y-Weight"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lWeightsColumn)
#. +> trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:348
#, kde-format
msgid "Weights"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:139
#, kde-format
msgid "Errors:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. i18n: ectx: property (text), widget (QPushButton, pbParameters)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:155
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:656
#, kde-format
msgid "Parameters"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:194
#, kde-format
msgid "Goodness of fit"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:242
#, kde-format
msgid "Sum of squared residuals"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:257
#, kde-format
msgid "Mean square error"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:272
#, kde-format
msgid "Root mean square error"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:277
#, kde-format
msgid "RMSE, SD"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:287
#, kde-format
msgid "Coefficient of determination"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:302
#, kde-format
msgid "Adj. coefficient of determ."
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:332
#, kde-format
msgid "F test"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:337
#, kde-format
msgid "F"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:362
#, kde-format
msgid "Mean absolute error"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:367
#, kde-format
msgid "MAE"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:377
#, kde-format
msgid "Akaike information criterion"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:382
#, kde-format
msgid "AIC"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:392
#, kde-format
msgid "Bayesian information criterion"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twGoodness)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:397
#, kde-format
msgid "BIC"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:411
#, kde-format
msgid "Log"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:455
#, kde-format
msgid "Status"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:465
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:525
#, kde-format
msgid "Iterations"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEps)
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:475
#: src/kdefrontend/ui/fitoptionswidget.ui:105
#, kde-format
msgid "Tolerance"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:485
#, kde-format
msgid "Calculation time"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:495
#, kde-format
msgid "Degrees of freedom"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:505
#, kde-format
msgid "Number of parameter"
msgstr ""
#. i18n: ectx: property (text), item, widget (QTableWidget, twLog)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:515
#, kde-format
msgid "X range"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, pbOptions)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:583
#, kde-format
msgid "Advanced fit options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:593
#, kde-format
msgid "x-Error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lModel)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:616
#, kde-format
msgid "Model"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEquation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:630
#, kde-format
msgid "f(x) ="
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, pbParameters)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:653
#, kde-format
msgid "Specify parameters and their properties"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFit)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:676
#, kde-format
msgid "Fit:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lYErrorCol)
#. i18n: ectx: property (text), widget (QLabel, lXErrorCol)
#. +> trunk5
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:871
#: src/kdefrontend/ui/dockwidgets/xyfitcurvedockgeneraltab.ui:897
#, kde-format
msgid "col ="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFilter)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:228
#, kde-format
msgid "Filter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lCutoff2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfourierfiltercurvedockgeneraltab.ui:317
#, kde-format
msgid "Cutoff2"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lType)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:66
#, kde-format
msgid "Output"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOptions)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:149
#, kde-format
msgid "Options:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXScale)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:235
#, kde-format
msgid "X axis scale"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbTwoSided)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:244
#, kde-format
msgid "two sided"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbShifted)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:251
#, kde-format
msgid "shifted"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyfouriertransformcurvedockgeneraltab.ui:260
#, kde-format
msgid "Window"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lIntegration)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:23
#, kde-format
msgid "Integration:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMethod)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:30
#, kde-format
msgid "Method"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbAbsolute)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyintegrationcurvedockgeneraltab.ui:296
#, kde-format
msgid "absolute area"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lInterpolation)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:139
#, kde-format
msgid "Interpolation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVariant)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:163
#, kde-format
msgid "Variant"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lParameter)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:173
#, kde-format
msgid "Parameter"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTension)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:182
#, kde-format
msgid "Tension"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lContinuity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:208
#, kde-format
msgid "Continuity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBias)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:231
#, kde-format
msgid "Bias"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEval)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:272
#, kde-format
msgid "Evaluate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPoints)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:282
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:251
#, kde-format
msgid "Points"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, sbPoints)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xyinterpolationcurvedockgeneraltab.ui:300
#, kde-format
msgid "number should be bigger than number of data points"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lSmooth)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:227
#, kde-format
msgid "Smooth:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lWeight)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:271
#, kde-format
msgid "Weight"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPercentile)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:281
#, kde-format
msgid "Percentile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOrder)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:301
#, kde-format
msgid "Polynom order"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMode)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:321
#, kde-format
msgid "Padding mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLeftValue)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:333
#, kde-format
msgid "Left value"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRightValue)
#. +> trunk5 trunk
#: src/kdefrontend/ui/dockwidgets/xysmoothcurvedockgeneraltab.ui:353
#, kde-format
msgid "Right value"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbApply)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:30
#: src/kdefrontend/ui/fitparameterswidget.ui:60
#, kde-format
msgid "Apply"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbUseDataErrors)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:50
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This option can be used to turn on and off the usage of given data errors when fitting.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbUseDataErrors)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:53
#, kde-format
msgid "Use given data errors"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbAutoRange)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:69
#, kde-format
msgid "Auto x-Range"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMaxIterations)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:82
#, kde-format
msgid "Max. iterations"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lRobust)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:98
#, kde-format
msgid "Robust fit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEvaluatedPoints)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:112
#, kde-format
msgid "Evaluated points"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEvaluatedPoints)
#. +> trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:83
#, kde-format
msgid "Evaluated Points"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbEvaluateFullRange)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:119
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If selected, the fit function is evaluated for the full range of data points and not only for the given x-range.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbEvaluateFullRange)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:122
#, kde-format
msgid "Evaluate full range"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbUseResults)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:135
#, kde-format
msgid ""
"<html><head/><body>"
"<p>If selected, the resulting fit parameter are set as new start values. </p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbUseResults)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitoptionswidget.ui:138
#, kde-format
msgid "Use results as new start values"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXRange)
#. +> trunk5
#: src/kdefrontend/ui/fitoptionswidget.ui:148
#, kde-format
msgid ".."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitsheadereditaddunitwidget.ui:17
#, kde-format
msgid "Unit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitsheadereditnewkeywordwidget.ui:17
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:80
#, kde-format
msgid "Key"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bOpen)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitsheadereditwidget.ui:56
#, kde-format
msgid "Open File"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bClose)
#. +> trunk5 trunk
#: src/kdefrontend/ui/fitsheadereditwidget.ui:63
#, kde-format
msgid "Close File"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, tbTexUsed)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:187
#, kde-format
msgid "TeX mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFontTeX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:231
#, kde-format
msgid "Main Font"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, lOffsetX)
#. i18n: ectx: property (toolTip), widget (QLabel, lOffsetY)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, sbOffsetX)
#. i18n: ectx: property (toolTip), widget (QDoubleSpinBox, sbOffsetY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:238 src/kdefrontend/ui/labelwidget.ui:403
#: src/kdefrontend/ui/labelwidget.ui:506 src/kdefrontend/ui/labelwidget.ui:522
#, kde-format
msgid "Distance to the axis tick labels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOffsetX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:241
#, kde-format
msgid "Offset X"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFontColor)
#. +> trunk5
#: src/kdefrontend/ui/labelwidget.ui:248
#, kde-format
msgid "Foreground color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHorizontalAlignment)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:360
#, kde-format
msgid "Hor. align."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lVerticalAlignment)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:396
#, kde-format
msgid "Vert. align."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lOffsetY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/labelwidget.ui:406
#, kde-format
msgid "Offset Y"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lBackgroundColor)
#. +> trunk5
#: src/kdefrontend/ui/labelwidget.ui:442
#, kde-format
msgid "Background color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lY)
#. +> trunk5 trunk
#: src/kdefrontend/ui/matrix/matrixfunctionwidget.ui:116
#, kde-format
msgid "y = "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lX)
#. +> trunk5 trunk
#: src/kdefrontend/ui/matrix/matrixfunctionwidget.ui:132
#, kde-format
msgid "x = "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lZ)
#. +> trunk5 trunk
#: src/kdefrontend/ui/matrix/matrixfunctionwidget.ui:148
#, kde-format
msgid "f(x,y) = "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDensity)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:22
#, kde-format
msgid "Density"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbDensityEnabled)
#. i18n: ectx: property (text), widget (QCheckBox, chbLevelsEnabled)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:29
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:294
#, kde-format
msgid "activate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lColorMap)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:39
#, kde-format
msgid "Color map"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bCreateColorMap)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:76
#, kde-format
msgid "Create new color map"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bOpenColorMap)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:139
#, kde-format
msgid "Open existing color map"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFillBrushStyle)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:201
#, kde-format
msgid "Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lThreshold)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:211
#, kde-format
msgid "Threshold"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, leThreshold)
#. i18n: ectx: property (text), widget (QLineEdit, leLevelsNumber)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:224
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:287
#, kde-format
msgid "10"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbMeshEnabled)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:231
#, kde-format
msgid "Mesh"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbRelativeScaleEnabled)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:238
#, kde-format
msgid "Relative scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLevels)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:267
#, kde-format
msgid "Levels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLevelsNumber)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:274
#, kde-format
msgid "Number of levels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLevelsLineWidth)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:304
#, kde-format
msgid "Line width"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lLevelsLineColor)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:321
#, kde-format
msgid "Line color"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chbLevelsMultiColoring)
#. +> trunk5 trunk
#: src/kdefrontend/ui/plotsurfacestylewidget.ui:331
#, kde-format
msgid "Multicoloring"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:60
#, kde-format
msgid "Startup"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAutoSave)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:67
#, kde-format
msgid "enabled"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lAutoSave)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:80
#: src/kdefrontend/ui/settingsprintingpage.ui:16
#, kde-format
msgid "Auto-Save"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTabPosition)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:103
#, kde-format
msgid "Tab position"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMdiVisibility)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:110
#, kde-format
msgid "Sub-Window visibility"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lInterface)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:133
#, kde-format
msgid "Interface"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lAutoSaveIntervalUnit)
#. i18n: ectx: property (text), widget (QLabel, lMin)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsgeneralpage.ui:140
#: src/kdefrontend/ui/spreadsheet/dropvalueswidget.ui:27
#, kde-format
msgid "min."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsprintingpage.ui:22
#, kde-format
msgid "TODO"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPresenterMode_2)
#. +> trunk5
#: src/kdefrontend/ui/settingsworksheetpage.ui:23
#, kde-format
msgid "Appearance"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTheme)
#. +> trunk5
#: src/kdefrontend/ui/settingsworksheetpage.ui:30
#, kde-format
msgid "Theme"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPresenterModeInteractive)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsworksheetpage.ui:82
#, kde-format
msgid "interactive"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lPerformance)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsworksheetpage.ui:111
#, kde-format
msgid "Performance"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDoubleBuffering)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsworksheetpage.ui:118
#, kde-format
msgid "enable double-buffering"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTex)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsworksheetpage.ui:147
#, kde-format
msgid "LaTeX"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lTexEngine)
#. +> trunk5 trunk
#: src/kdefrontend/ui/settingsworksheetpage.ui:154
#, kde-format
msgid "Typesetting engine"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lAnd)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/dropvalueswidget.ui:37
#, kde-format
msgid "and"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMax)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/dropvalueswidget.ui:44
#, kde-format
msgid "max."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/equidistantvalueswidget.ui:17
#, kde-format
msgid "Fix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMatrixVHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:99
#, kde-format
msgid "Export vertical header"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lExportHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:116
#, kde-format
msgid "Export header"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lMatrixHHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:139
#, kde-format
msgid "Export horizontal header"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lGridLines)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:170
#, kde-format
msgid "Grid lines"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lCaptions)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:187
#, kde-format
msgid "Table captions"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lHeader)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:211
#, kde-format
msgid "Headers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lEmptyRows)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:231
#, kde-format
msgid "Skip empty rows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lExportToFITS)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:238
#, kde-format
msgid "Export to"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lExportArea)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:248
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:75
#, kde-format
msgid "Area to export"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lColumnAsUnits)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/exportspreadsheetwidget.ui:255
#, kde-format
msgid "Comments as column units"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:61
#, kde-format
msgid "="
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFunc)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:83
#, kde-format
msgid "Function:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFunction)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:162
#, kde-format
msgid "f(x) = "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFunction)
#. +> trunk
#: src/kdefrontend/ui/spreadsheet/functionvalueswidget.ui:45
#, kde-format
msgid "f(x)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lXColumn)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:29
#, kde-format
msgid "X-data"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbCurvePlacement)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:145
#, kde-format
msgid "Curve Placement"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbCurvePlacement1)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:151
#, kde-format
msgid "&all curves in one plot"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbCurvePlacement2)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:161
#, kde-format
msgid "one p&lot per curve"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbPlotPlacement)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:171
#, kde-format
msgid "Add curves to"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbPlotPlacement1)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:177
#, kde-format
msgid "e&xisting plot"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbPlotPlacement2)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:187
#, kde-format
msgid "&new plot in an existing worksheet"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, rbPlotPlacement3)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:194
#, kde-format
msgid "new plot in a new wor&ksheet"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkCreateDataCurve)
#. +> trunk5
#: src/kdefrontend/ui/spreadsheet/plotdatawidget.ui:217
#, kde-format
msgid "Create curve for original data"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lDistribution)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/randomvalueswidget.ui:23
#, kde-format
msgid "Distribution"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lParameter1)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/randomvalueswidget.ui:72
#, kde-format
msgid "1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lParameter2)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/randomvalueswidget.ui:88
#, kde-format
msgid "2"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lParameter3)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/randomvalueswidget.ui:104
#, kde-format
msgid "3"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lFunc)
#. +> trunk5 trunk
#: src/kdefrontend/ui/spreadsheet/randomvalueswidget.ui:120
#, kde-format
msgid "p(x)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, lExportBackground)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkExportBackground)
#. +> trunk5 trunk
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:92
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:102
#, kde-format
msgid "Check this option if the worksheet background should be exported."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lExportBackground)
#. +> trunk5 trunk
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:95
#, kde-format
msgid "Export background"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lResolution)
#. +> trunk5 trunk
#: src/kdefrontend/ui/worksheet/exportworksheetwidget.ui:115
#, kde-format
msgid "Resolution"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:43
#: src/kdefrontend/widgets/DatapickerCurveWidget.cpp:47
#, kde-format
msgid "No Error"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:144
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:193
#, kde-format
msgid ""
"Select the range for the hue.\n"
"Everything outside of this range will be set to white."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:149
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:198
#, kde-format
msgid ""
"Select the range for the saturation.\n"
"Everything outside of this range will be set to white."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:154
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:203
#, kde-format
msgid ""
"Select the range for the value, the degree of lightness of the color.\n"
"Everything outside of this range will be set to white."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:159
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:208
#, kde-format
msgid ""
"Select the range for the intensity.\n"
"Everything outside of this range will be set to white."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:164
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:213
#, kde-format
msgid ""
"Select the range for the colors that are not part of the background color.\n"
"Everything outside of this range will be set to white."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:168
#, kde-format
msgid "Cartesian (x, y)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:169
#, kde-format
msgid "Polar (x, y°)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:170
#, kde-format
msgid "Polar (x, y(rad))"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:171
#, kde-format
msgid "Logarithmic (ln(x), y)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:172
#, kde-format
msgid "Logarithmic (x, ln(y))"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:173
#, kde-format
msgid "Ternary (x, y, z)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:184
#, kde-format
msgid "No Image"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:185
#, kde-format
msgid "Original Image"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/DatapickerImageWidget.cpp:186
#, kde-format
msgid "Processed Image"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FitParametersWidget.cpp:56
#, kde-format
msgid "Start value"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FitParametersWidget.cpp:60
#, kde-format
msgid "Fixed"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FitParametersWidget.cpp:64
#, kde-format
msgid "Lower limit"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FitParametersWidget.cpp:68
#, kde-format
msgid "Upper limit"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditAddUnitDialog.cpp:40
#, kde-format
msgid "&Add"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditAddUnitDialog.cpp:42
#, kde-format
msgid "Add New Unit"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditAddUnitDialog.cpp:48
#, kde-format
msgid "Enter unit name here"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditDialog.cpp:53
#, kde-format
msgid "&Save"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditDialog.cpp:87
#, kde-format
msgid "FITS Metadata Editor [Changed]"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:56
#, kde-format
msgid "&Add keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:60
#, kde-format
msgid "Specify the new keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:67
#, kde-format
msgid "Specify the name"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:68
#, kde-format
msgid "Specify the value"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:69
#, kde-format
msgid "Specify the comment"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:85
#, kde-format
msgid "Can't add new keyword without key, would you like to try again?"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditNewKeywordDialog.cpp:86
#, kde-format
msgid "Cannot add empty key"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:63
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:285
#, kde-format
msgid "Add new keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:67
#, kde-format
msgid "Remove selected keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:71
#, kde-format
msgid "Add unit to keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:75
#, kde-format
msgid "Close file"
msgstr ""
#. +> trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:189
#, kde-format
msgid "FITS files (*.fits)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:191
#, kde-format
msgid "Open FITS file"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:227
#, kde-format
msgid "Cannot open file, file already opened."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:228
#, kde-format
msgid "File already opened"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:286
#, kde-format
msgid "Remove keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:288
#, kde-format
msgid "Add unit"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:328
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:335
#, kde-format
msgid "Cannot add keyword, keyword already added"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:328
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:335
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:343
#, kde-format
msgid "Cannot add keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:342
#, kde-format
msgid "Cannot add mandatory keyword, they are already present"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:386
#, kde-format
msgid "Are you sure you want to delete the keyword '%1'?"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:387
#, kde-format
msgid "Confirm deletion"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:407
#, kde-format
msgid "Cannot remove mandatory keyword."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/FITSHeaderEditWidget.cpp:407
#, kde-format
msgid "Removing keyword"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/LabelWidget.cpp:370
#, kde-format
msgid "LaTeX typesetting not possible. Please check the settings."
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/LabelWidget.cpp:514
#, kde-format
msgid "Date"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/widgets/LabelWidget.cpp:522
#, kde-format
msgid "Date and Time"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:77
#, kde-format
msgid "Object's bounding box"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:78
#, kde-format
msgid "Current selection"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:79
#, kde-format
msgid "Complete worksheet"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:81
#, kde-format
msgid "desktop"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:95
#, kde-format
msgid "Export worksheet"
msgstr ""
#. +> trunk5
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:225
#, kde-format
msgid "Portable Data Format (PDF) (*.pdf *.PDF)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:227
#, kde-format
msgid "Scalable Vector Graphics (SVG) (*.svg *.SVG)"
msgstr ""
#. +> trunk5
#: src/kdefrontend/worksheet/ExportWorksheetDialog.cpp:229
#, kde-format
msgid "Portable Network Graphics (PNG) (*.png *.PNG)"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/GridDialog.cpp:50
#, kde-format
msgid "Custom grid"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/GridDialog.cpp:59
#, kde-format
msgid "lines"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/GridDialog.cpp:60
#, kde-format
msgid "dots"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/GridDialog.cpp:64
#, kde-format
msgid "Horizontal spacing"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/GridDialog.cpp:72
#, kde-format
msgid "Vertical spacing"
msgstr ""
#. +> trunk5 trunk
#: src/kdefrontend/worksheet/SlidingPanel.cpp:45
#, kde-format
msgid "Quit presentation"
msgstr ""
+#. +> trunk5
+#: src/tools/thememanager.cpp:76
+#, kde-format
+msgctxt "default theme name"
+msgid "Default"
+msgstr ""
+
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:66
#, kde-format
msgid "Statistics"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:195
#, kde-format
msgid "Mean"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:196
#, kde-format
msgid "StandardDev"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:198
#, kde-format
msgid "Sum"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:199
#, kde-format
msgid "iMax"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:201
#, kde-format
msgid "iMin"
msgstr ""
#. +> trunk
#: src/backend/analysis/StatisticsFilter.cpp:203
#, kde-format
msgid "N"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.desktop.pot (revision 1509808)
@@ -1,54 +1,42 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-05-15 09:09+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable
+#. +> trunk5
#: src/org.kde.kgrapheditor.desktop:2
msgctxt "Name"
msgid "KGraphEditor"
msgstr ""
#. +> trunk5
#: src/org.kde.kgrapheditor.desktop:48
msgctxt "Comment"
msgid "A Graphviz DOT graph editor"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: src/org.kde.kgraphviewer.desktop:2
msgctxt "Name"
msgid "KGraphViewer"
msgstr ""
#. +> trunk5
#: src/org.kde.kgraphviewer.desktop:46
msgctxt "Comment"
msgid "A Graphviz DOT graph viewer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: src/part/kgraphviewer_part.desktop:2
msgctxt "Name"
msgid "kgraphviewerPart"
msgstr ""
-
-#. +> stable
-#: src/kgrapheditor.desktop:44
-msgctxt "Comment"
-msgid "A Graphviz dot graph editor for KDE"
-msgstr ""
-
-#. +> stable
-#: src/kgraphviewer.desktop:43
-msgctxt "Comment"
-msgid "A Graphviz dot graph viewer for KDE"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/kgraphviewer.pot (revision 1509808)
@@ -1,1764 +1,1599 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-09-27 14:21+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable
+#. +> trunk5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditor.cpp:149 kgraphviewer.cpp:122
#, kde-format
msgid "Session Restore"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditor.cpp:150
#, kde-format
msgid "Do you want to reload files from previous session?"
msgstr ""
#. +> trunk5
#: kgrapheditor.cpp:168
#, kde-format
msgid "Unable to start"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditor.cpp:168 kgraphviewer.cpp:146
#, kde-format
msgid "Could not find the KGraphViewer part."
msgstr ""
#. +> trunk5
#: kgrapheditor.cpp:251 kgraphviewer.cpp:233
#, kde-format
msgid "Closes the current file"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditor.cpp:264
#, kde-format
msgid "Create a New Vertex"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditor.cpp:269
#, kde-format
msgid "Create a New Edge"
msgstr ""
#. +> trunk5
#: kgrapheditor.cpp:538
#, kde-format
msgid "Save current graph"
msgstr ""
-#. +> stable
-#: kgrapheditor.cpp:535
-#, kde-format
-msgid "Save current graph to..."
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorConfigDialog.cpp:63 kgraphviewerConfigDialog.cpp:73
#, kde-format
msgid "Parsing"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorConfigDialog.cpp:64 kgraphviewerConfigDialog.cpp:74
#, kde-format
msgid "Reloading"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorConfigDialog.cpp:65 kgraphviewerConfigDialog.cpp:75
#, kde-format
msgid "Opening"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorConfigDialog.cpp:66 kgraphviewerConfigDialog.cpp:76
#, kde-format
msgid "Session Management"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: KGraphEditorElementTreeWidget.cpp:51 KGraphEditorNodesTreeWidget.cpp:57
#, kde-format
msgid "Add a new attribute"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: KGraphEditorElementTreeWidget.cpp:58 KGraphEditorNodesTreeWidget.cpp:64
#, kde-format
msgid "Remove this attribute"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditormain.cpp:48
#, kde-format
msgid "KGraphEditor"
msgstr ""
#. +> trunk5
#: kgrapheditormain.cpp:50
#, kde-format
msgid "A Graphviz DOT graph editor by KDE"
msgstr ""
-#. +> stable
-#: kgrapheditormain.cpp:38 main.cpp:39
-#, kde-format
-msgid "A Graphviz dot graph viewer for KDE"
-msgstr ""
-
-#. +> stable
-#: kgrapheditormain.cpp:50 main.cpp:54
-#, kde-format
-msgid "Dot graph to open"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditormain.cpp:52 main.cpp:51
#, kde-format
msgid "(C) 2005-2010 Gaël de Chalendar"
msgstr ""
#. +> trunk5
#: kgrapheditormain.cpp:64 main.cpp:71
#, kde-format
msgid "Path or URL to scan"
msgstr ""
#. +> trunk5
#: kgrapheditormain.cpp:64 main.cpp:71
#, kde-format
msgid "[url]"
msgstr ""
-#. +> stable
-#: kgrapheditormain.cpp:84 main.cpp:88
-#, kde-format
-msgctxt "Where to open a file"
-msgid "Existing window"
-msgstr ""
-
-#. +> stable
-#: kgrapheditormain.cpp:85 main.cpp:89
-#, kde-format
-msgctxt "Where to open a file"
-msgid "New window"
-msgstr ""
-
#. +> trunk5
#: kgrapheditormain.cpp:97
#, kde-format
msgid "A KGraphEditor window is already open, do you want to open the file in it?"
msgstr ""
-#. +> stable
-#: kgrapheditormain.cpp:82
-#, kde-format
-msgid "A KGraphEditor window is already open, where do you want to open this file?"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditormain.cpp:98 main.cpp:104
#, kde-format
msgid "Opening in new window confirmation"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: KGraphEditorNodesTreeWidget.cpp:70
#, kde-format
msgid "Remove this node"
msgstr ""
#. i18n: ectx: label, entry (reloadOnChangeMode), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:9 kgraphviewersettings.kcfg:9
#, kde-format
msgid "The answer to the question 'File modified, do you want to reload it'"
msgstr ""
#. i18n: ectx: label, entry (parsingMode), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:13 kgraphviewersettings.kcfg:13
#, kde-format
msgid "To choose whether to parse using an external command (usually dot) or the graphviz library"
msgstr ""
#. i18n: ectx: label, entry (openInExistingWindowMode), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:17 kgraphviewersettings.kcfg:17
#, kde-format
msgid "The answer to the question 'If another window already exist when launching kgraphviewer, should we open in it, open a new window or ask?'"
msgstr ""
#. i18n: ectx: label, entry (reopenPreviouslyOpenedFilesMode), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:21 kgraphviewersettings.kcfg:21
#, kde-format
msgid "The answer to the question 'Should the files that were opened in previous sessions be reopened at startup?'"
msgstr ""
#. i18n: ectx: label, entry (birdsEyeViewEnabled), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:25 kgraphviewersettings.kcfg:25
#: part/kgraphviewer_partsettings.kcfg:9
#, kde-format
msgid "If true, the bird's eye view will be shown if needed."
msgstr ""
#. i18n: ectx: label, entry (PreviouslyOpenedFiles), group (Notification Messages)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorsettings.kcfg:29 kgraphviewersettings.kcfg:29
#, kde-format
msgid "The list of files that were opened in past instances of kgraphviewer"
msgstr ""
-#. i18n: ectx: Menu (edit)
-#. +> stable
-#: kgrapheditorui.rc:14
-#, kde-format
-msgid "&Edit"
-msgstr ""
-
-#. i18n: ectx: Menu (settings)
-#. +> stable
-#: kgrapheditorui.rc:22 kgraphviewerui.rc:15
-#, kde-format
-msgid "&Settings"
-msgstr ""
-
#. i18n: ectx: ToolBar (viewToolBar)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorui.rc:23 kgraphviewerui.rc:17
#, kde-format
msgid "View Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (helpToolBar)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorui.rc:26 kgraphviewerui.rc:20
#, kde-format
msgid "Help Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (editToolBar)
-#. +> trunk5 stable
+#. +> trunk5
#: kgrapheditorui.rc:31
#, kde-format
msgid "Edit Toolbar"
msgstr ""
-#. i18n: ectx: ToolBar (mainToolBar)
-#. +> stable
-#: kgrapheditorui.rc:34 kgraphviewerui.rc:27
-#, kde-format
-msgid "Main Toolbar"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:121
#, kde-format
msgid "Do you want to reload files from the previous session?"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:220
#, kde-format
msgid "Opens a new empty KGraphViewer window."
msgstr ""
#. +> trunk5
#: kgraphviewer.cpp:223
#, kde-format
msgid "Shows the file open dialog to choose a Graphviz DOT file to open."
msgstr ""
-#. +> stable
-#: kgraphviewer.cpp:222
-#, kde-format
-msgid "Shows the file open dialog to choose a GraphViz dot file to open."
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:227
#, kde-format
msgid "This lists files which you have opened recently, and allows you to easily open them again."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:237
#, kde-format
msgid "Quits KGraphViewer."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:240
#, kde-format
msgid "Shows or hides the status bar."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:243
#, kde-format
msgid "Configure the bindings between keys and actions."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:246
#, kde-format
msgid "Toolbar configuration."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewer.cpp:249
#, kde-format
msgid "Main KGraphViewer configuration options."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewerConfigDialog.cpp:72
#, kde-format
msgid "Appearance"
msgstr ""
#. i18n: ectx: label, entry (backgroundColor), group (Appearance)
-#. +> trunk5 stable
+#. +> trunk5
#: kgraphviewersettings.kcfg:34
#, kde-format
msgid "Background color of the graph view."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:47
#, kde-format
msgid "KGraphViewer"
msgstr ""
#. +> trunk5
#: main.cpp:49
#, kde-format
msgid "A Graphviz DOT graph viewer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:54
#, kde-format
msgid "Gaël de Chalendar"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:54
#, kde-format
msgid "Original Author and current maintainer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:55
#, kde-format
msgid "Reimar Döffinger"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:55 main.cpp:56 main.cpp:57 main.cpp:58
#, kde-format
msgid "Contributor"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:56
#, kde-format
msgid "Matthias Peinhardt"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:57
#, kde-format
msgid "Sandro Andrade"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: main.cpp:58
#, kde-format
msgid "Milian Wolff"
msgstr ""
#. +> trunk5
#: main.cpp:59
#, kde-format
msgid "Martin Sandsmark"
msgstr ""
#. +> trunk5
#: main.cpp:59
#, kde-format
msgid "Port to KF5"
msgstr ""
#. +> trunk5
#: main.cpp:105
#, kde-format
msgid "A KGraphViewer window is already open, where do you want to open this file in the existing window?"
msgstr ""
-#. +> stable
-#: main.cpp:86
-#, kde-format
-msgid "A KGraphViewer window is already open, where do you want to open this file?"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/canvasedge.cpp:73
#, kde-format
msgid ""
"%1 -> %2\n"
"label='%3'"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/canvasedge.cpp:78
#, kde-format
msgid "Remove selected edge(s)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/canvaselement.cpp:102
#, kde-format
msgid "Remove selected element(s)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/canvasnode.cpp:71
#, kde-format
msgid ""
"id='%1'\n"
"label='%2'"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:273 part/dotgraph.cpp:276 part/dotgraph.cpp:279
#: part/dotgraph.cpp:282 part/dotgraph.cpp:285 part/dotgraph.cpp:288
#, kde-format
msgid "Layout process failed"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:273
#, kde-format
msgid "Unable to start %1."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:276
#, kde-format
msgid "%1 crashed."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:279
#, kde-format
msgid "%1 timed out."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:282
#, kde-format
msgid "Was not able to write data to the %1 process."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:285
#, kde-format
msgid "Was not able to read data from the %1 process."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraph.cpp:288
#, kde-format
msgid "Unknown error running %1."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:413
#, kde-format
msgid "Select Layout Algo"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:416
#, kde-format
msgid "Dot"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:417
#, kde-format
msgid "Layout the graph using the dot program."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:421
#, kde-format
msgid "Neato"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:422
#, kde-format
msgid "Layout the graph using the neato program."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:426
#, kde-format
msgid "Twopi"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:427
#, kde-format
msgid "Layout the graph using the twopi program."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:431
#, kde-format
msgid "Fdp"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:432
#, kde-format
msgid "Layout the graph using the fdp program."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:436
#, kde-format
msgid "Circo"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:437
#, kde-format
msgid "Layout the graph using the circo program."
msgstr ""
#. +> trunk5
#: part/dotgraphview.cpp:449
#, kde-format
msgid "Choose a Graphviz layout algorithm or edit your own one."
msgstr ""
-#. +> stable
-#: part/dotgraphview.cpp:454
-#, kde-format
-msgid "Choose a GraphViz layout algorithm or edit your own one."
-msgstr ""
-
#. +> trunk5
#: part/dotgraphview.cpp:451
#, kde-format
msgid "Choose a Graphviz layout algorithm or type in your own command that will generate a graph in the xdot format on its standard output. For example, to manually specify the <tt>G</tt> option to the dot command, type in: <tt>dot -Gname=MyGraphName -Txdot </tt>"
msgstr ""
-#. +> stable
-#: part/dotgraphview.cpp:456
-#, kde-format
-msgid "Choose a GraphViz layout algorithm or type in your own command that will generate a graph in the xdot format on its standard output. For example, to manually specify the <tt>G</tt> option to the dot command, type in: <tt>dot -Gname=MyGraphName -Txdot </tt>"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:459
#, kde-format
msgid "Layout"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:461
#, kde-format
msgid "Specify layout command"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:462
#, kde-format
msgid "Specify yourself the layout command to use. Given a dot file, it should produce an xdot file on its standard output."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:463
#, kde-format
msgid "Reset layout command to default"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:464
#, kde-format
msgid "Resets the layout command to use to the default depending on the graph type (directed or not)."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:466
#, kde-format
msgid "Zoom In"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:467
#, kde-format
msgid "Zoom Out"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:471
#, kde-format
msgid "Export Graph"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:473
#, kde-format
msgid "Allows the graph to be exported in another format."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:475
#, kde-format
msgid "Use the Export Graph menu to export the graph in another format. There is currently only one export format supported: as a PNG image."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:480
#, kde-format
msgid "As Image..."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:481
#, kde-format
msgid "Export the graph to an image file."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:493
#, kde-format
msgid "Enable Bird's-eye View"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:496
#, kde-format
msgid "Enables or disables the Bird's-eye View"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:502
#, kde-format
msgid "Birds-eye View"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:503
#, kde-format
msgid "Allows the Bird's-eye View to be setup."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:507
#, kde-format
msgid "Top Left"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:508
#, kde-format
msgid "Puts the Bird's-eye View in the top-left corner."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:513
#, kde-format
msgid "Top Right"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:514
#, kde-format
msgid "Puts the Bird's-eye View in the top-right corner."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:519
#, kde-format
msgid "Bottom Left"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:520
#, kde-format
msgid "Puts the Bird's-eye View in the bottom-left corner."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:525
#, kde-format
msgid "Bottom Right"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:526
#, kde-format
msgid "Puts the Bird's-eye View in the bottom-right corner."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:531
#, kde-format
msgid "Automatic"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:532
#, kde-format
msgid "Let KGraphViewer automatically choose the position of the Bird's-eye View."
msgstr ""
#. +> trunk5
#: part/dotgraphview.cpp:581
#, kde-format
msgid "Select file"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:597
#, kde-format
msgid "Graph SVG Generated by KGraphViewer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:598
#, kde-format
msgid "Graph SVG Generated by KGraphViewer."
msgstr ""
#. +> trunk5
#: part/dotgraphview.cpp:651
#, kde-format
msgid ""
"<h1>Graphviz DOT format graph visualization</h1>"
"<p>If the graph is larger than the widget area, an overview panner is shown in one edge. Choose through the context menu if the optimal position of this overview should be automatically computed or put it where you want.</p>"
"<h2>How to work with it?</h2>"
"<ul>"
"<li>To move the graph, you can: "
"<ul> "
"<li>click & drag it</li>"
" "
"<li>use the elevators</li>"
" "
"<li>press the arrows keys</li>"
" "
"<li>click somewhere in the panner view</li>"
" "
"<li>use the mouse wheel (up and down with no modifier, left and right with the <Alt> key pressed)</li>"
" "
"<li>or click & drag the panner view</li>"
" </ul>"
"</li>"
"<li>To zoom, you can either use the zoom in and zoom out toolbar buttons, or click on the <Shift> key while rolling your mouse wheel.</li>"
"<li>Try the contextual menu (usually by right-clicking) to discover other possibilities.</li>"
"<li>Try the <tt>Print preview</tt> or the <tt>Page setup</tt> buttons to explore the printing options.</li>"
"</ul>"
msgstr ""
-#. +> stable
-#: part/dotgraphview.cpp:642
-#, kde-format
-msgid ""
-"<h1>GraphViz dot format graph visualization</h1>"
-"<p>If the graph is larger than the widget area, an overview panner is shown in one edge. Choose through the context menu if the optimal position of this overview should be automatically computed or put it where you want.</p>"
-"<h2>How to work with it?</h2>"
-"<ul>"
-"<li>To move the graph, you can: "
-"<ul> "
-"<li>click & drag it</li>"
-" "
-"<li>use the elevators</li>"
-" "
-"<li>press the arrows keys</li>"
-" "
-"<li>click somewhere in the panner view</li>"
-" "
-"<li>use the mouse wheel (up and down with no modifier, left and right with the <Alt> key pressed)</li>"
-" "
-"<li>or click & drag the panner view</li>"
-" </ul>"
-"</li>"
-"<li>To zoom, you can either use the zoom in and zoom out toolbar buttons, or click on the <Shift> key while rolling your mouse wheel.</li>"
-"<li>Try the contextual menu (usually by right-clicking) to discover other possibilities.</li>"
-"<li>Try the <tt>Print preview</tt> or the <tt>Page setup</tt> buttons to explore the printing options.</li>"
-"</ul>"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:754
#, kde-format
msgid "no graph loaded"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:883 part/dotgraphview.cpp:905
#: part/dotgraphview.cpp:952
#, kde-format
msgid "graph %1 is getting loaded..."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:892
#, kde-format
msgid "error parsing file %1"
msgstr ""
-#. +> stable
-#: part/dotgraphview.cpp:1628
-#, kde-format
-msgid "Type in a layout command for the current graph:"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:1658
#, kde-format
msgid "Reload Confirmation"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:1659
#, kde-format
msgid ""
"The file %1 has been modified on disk.\n"
"Do you want to reload it?"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:1750
#, kde-format
msgid "Layout Command"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:1751
#, kde-format
msgid ""
"Specify here the command that will be used to layout the graph.\n"
"The command MUST write its results on stdout in xdot format."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/dotgraphview.cpp:2272
#, kde-format
msgid "Failed to open %1"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:80
#, kde-format
msgid "KGraphViewerPart"
msgstr ""
#. +> trunk5
#: part/kgraphviewer_part.cpp:82
#, kde-format
msgid "Graphviz DOT files viewer"
msgstr ""
-#. +> stable
-#: part/kgraphviewer_part.cpp:53
-#, kde-format
-msgid "GraphViz dot files viewer"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:84
#, kde-format
msgid "(c) 2005-2006, Gaël de Chalendar <kleag@free.fr>"
msgstr ""
-#. +> stable
-#: part/kgraphviewer_part.cpp:121
-#, kde-format
-msgid "Closes the current tab"
-msgstr ""
-
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:124
#, kde-format
msgid "Print the graph using current page setup settings"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:128
#, kde-format
msgid "Open the print preview window"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:132
#, kde-format
msgid "Page setup"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:133
#, kde-format
msgid "Opens the Page Setup dialog to allow graph printing to be setup"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:136
#, kde-format
msgid "Reload the current graph from file"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:141
#, kde-format, no-c-format
msgid "Zoom in by 10% on the currently viewed graph"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.cpp:146
#, kde-format, no-c-format
msgid "Zoom out by 10% from the currently viewed graph"
msgstr ""
#. i18n: ectx: Menu (file)
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.rc:4
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (view)
-#. +> trunk5 stable
+#. +> trunk5
#: part/kgraphviewer_part.rc:11
#, kde-format
msgid "&View"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:88
#, kde-format
msgctxt "Page size"
msgid "ISO A3"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:89
#, kde-format
msgctxt "Page size"
msgid "ISO A4"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:90
#, kde-format
msgctxt "Page size"
msgid "ISO A5"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:91
#, kde-format
msgctxt "Page size"
msgid "US Letter"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:92
#, kde-format
msgctxt "Page size"
msgid "US Legal"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:93
#, kde-format
msgctxt "Page size"
msgid "Screen"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:94
#, kde-format
msgctxt "Page size"
msgid "Custom"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:95
#, kde-format
msgctxt "Page size"
msgid "ISO B5"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:97
#, kde-format
msgctxt "Page size"
msgid "US Executive"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:98
#, kde-format
msgctxt "Page size"
msgid "ISO A0"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:99
#, kde-format
msgctxt "Page size"
msgid "ISO A1"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:100
#, kde-format
msgctxt "Page size"
msgid "ISO A2"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:101
#, kde-format
msgctxt "Page size"
msgid "ISO A6"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:102
#, kde-format
msgctxt "Page size"
msgid "ISO A7"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:103
#, kde-format
msgctxt "Page size"
msgid "ISO A8"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:104
#, kde-format
msgctxt "Page size"
msgid "ISO A9"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:105
#, kde-format
msgctxt "Page size"
msgid "ISO B0"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:106
#, kde-format
msgctxt "Page size"
msgid "ISO B1"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:107
#, kde-format
msgctxt "Page size"
msgid "ISO B10"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:108
#, kde-format
msgctxt "Page size"
msgid "ISO B2"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:109
#, kde-format
msgctxt "Page size"
msgid "ISO B3"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:110
#, kde-format
msgctxt "Page size"
msgid "ISO B4"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:111
#, kde-format
msgctxt "Page size"
msgid "ISO B6"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:112
#, kde-format
msgctxt "Page size"
msgid "ISO C5"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:113
#, kde-format
msgctxt "Page size"
msgid "US Common 10"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:114
#, kde-format
msgctxt "Page size"
msgid "ISO DL"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:115
#, kde-format
msgctxt "Page size"
msgid "US Folio"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:116
#, kde-format
msgctxt "Page size"
msgid "US Ledger"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayout.cpp:117
#, kde-format
msgctxt "Page size"
msgid "US Tabloid"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutColumnsBase.ui:27
#, kde-format
msgid "Columns:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelSpacing)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutColumnsBase.ui:37
#, kde-format
msgid "Column spacing:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutDia.cpp:62
#, kde-format
msgid "Page Preview"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutDia.cpp:281
#, kde-format
msgid "Page Size & Margins"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:17
#, kde-format
msgid "Header"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rhFirst)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:23
#, kde-format
msgid "Different header for the first page"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rhEvenOdd)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:30
#, kde-format
msgid "Different header for even and odd pages"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:58
#, kde-format
msgid "Spacing between header and body:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:80
#, kde-format
msgid "Footer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rfFirst)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:86
#, kde-format
msgid "Different footer for the first page"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, rfEvenOdd)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:93
#, kde-format
msgid "Different footer for even and odd pages"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:121
#, kde-format
msgid "Spacing between footer and body:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:143
#, kde-format
msgid "Footnote/Endnote"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutHeaderBase.ui:165
#, kde-format
msgid "Spacing between footnote and body:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:69
#, kde-format
msgid "Unit:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:84
#, kde-format
msgid "All values are given in %1."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:89
#, kde-format
msgid "Page Size"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:98
#, kde-format
msgid "&Size:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:120
#, kde-format
msgid "&Width:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:132
#, kde-format
msgid "&Height:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:147
#, kde-format
msgid "Orientation"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:156
#, kde-format
msgid "&Portrait"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:164
#, kde-format
msgid "La&ndscape"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:173
#, kde-format
msgid "Margins"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:389 part/KgvPageLayoutSize.cpp:396
#, kde-format
msgid "Page Layout Problem"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:390
#, kde-format
msgid "The page width is smaller than the left and right margins."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvPageLayoutSize.cpp:397
#, kde-format
msgid "The page height is smaller than the top and bottom margins."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:53
#, kde-format
msgid "Millimeters (mm)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:55
#, kde-format
msgid "Centimeters (cm)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:57
#, kde-format
msgid "Decimeters (dm)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:59
#, kde-format
msgid "Inches (in)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:61
#, kde-format
msgid "Pica (pi)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:63
#, kde-format
msgid "Didot (dd)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:65
#, kde-format
msgid "Cicero (cc)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:67
#, kde-format
msgid "Points (pt)"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/KgvUnit.cpp:69
#, kde-format
msgid "Error."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/pannerview.cpp:64
#, kde-format
msgid "View of the complete graph. Click and drag to move the visible part."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/pannerview.cpp:65
#, kde-format
msgid ""
"<h1>View of the Complete Graph</h1>"
"<p>Single clicking somewhere without the red square will move the center of the view to where the mouse was clicked.</p>"
"<p>Clicking and dragging within the red square will cause the view to follow the movement.</p>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingcommand.cpp:101
#, kde-format
msgid "Print Preview"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingengine.cpp:221 part/simpleprintpreviewwindow.cpp:233
#: part/simpleprintpreviewwindow.cpp:252
#, kde-format
msgctxt "Page (number) of (total)"
msgid "Page %1 of %2"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingengine.cpp:225
#, kde-format
msgid "Page %1"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:111
#, kde-format
msgid "Print Preview..."
msgstr ""
#. +> trunk5
#: part/simpleprintingpagesetup.cpp:118
#, kde-format
msgid "Font..."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:119
#, kde-format
msgid "Changes font for title text."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:127
#, kde-format
msgid ""
"<qt>"
"<h2>Page Setup for Printing Graph \"%1\"</h2>"
"</qt>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:135
#, kde-format
msgid "Saves settings for this setup as default."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:139
#, kde-format
msgid "Adds date and time to the header."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:140
#, kde-format
msgid "Adds page numbers to the footer."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:141
#, kde-format
msgid "Adds table borders."
msgstr ""
#. +> trunk5
#: part/simpleprintingpagesetup.cpp:149
#, kde-format
msgid "Change Page Size and Margins..."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:150
#, kde-format
msgid "Changes page size and margins."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:224
#, kde-format
msgid "Chosen font looks like this"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:244
#, kde-format
msgid "Portrait"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:244
#, kde-format
msgid "Landscape"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetup.cpp:245
#, kde-format
msgid "margins:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KGVSimplePrintingPageSetupBase)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:35
#, kde-format
msgid "."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:212
#, kde-format
msgid "Pa&ge font:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> stable
-#: part/simpleprintingpagesetupbase.ui:140
-#, kde-format
-msgid "Page &font:"
-msgstr ""
-
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:291
#, kde-format
msgid "Page Size && Margins"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, addTableBordersCheckbox)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:365
#, kde-format
msgid "Add &borders"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, addDateTimeCheckbox)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:372
#, kde-format
msgid "Add date and time"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, addPageNumbersCheckbox)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:398
#, kde-format
msgid "Add page numbers"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox4)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:422
#, kde-format
msgid "Number of pages to fit on"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:475
#, kde-format
msgid "Horizontally"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:493
#, kde-format
msgid "Vertically"
msgstr ""
-#. i18n: ectx: property (text), widget (QPushButton, closeButton)
-#. +> stable
-#: part/simpleprintingpagesetupbase.ui:504
-#, kde-format
-msgid "Close"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QRadioButton, naturalSizeRadioButton)
#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:533
#, kde-format
msgid "&Natural size"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, naturalSizeRadioButton)
-#. +> stable
-#: part/simpleprintingpagesetupbase.ui:408
-#, kde-format
-msgid "Natural size"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QRadioButton, fitToOnePageRadioButton)
#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:540
#, kde-format
msgid "Fit &to one page"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, fitToOnePageRadioButton)
-#. +> stable
-#: part/simpleprintingpagesetupbase.ui:415
-#, kde-format
-msgid "Fit to one page"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QRadioButton, fitToSeveralPagesRadioButton)
#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:547
#, kde-format
msgid "F&it to several pages"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, fitToSeveralPagesRadioButton)
-#. +> stable
-#: part/simpleprintingpagesetupbase.ui:422
-#, kde-format
-msgid "Fit to several pages"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintingpagesetupbase.ui:593
#, kde-format
msgid "Related actions:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintpreviewwindow.cpp:73
#, kde-format
msgid "%1 - Print Preview - %2"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintpreviewwindow.cpp:89
#, kde-format
msgid "&Page setup"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintpreviewwindow.cpp:132
#, kde-format
msgid "Previous Page"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: part/simpleprintpreviewwindow.cpp:144
#, kde-format
msgid "Next Page"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesAppearance.ui:37
#, kde-format
msgid "Default background color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, note)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesAppearance.ui:75
#, kde-format
msgid "Note: this will be overridden if the graph has its own background color"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, openInExistingWindowMode)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesOpenInExistingWindow.ui:38
#, kde-format
msgid "Open in existing window"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, yes)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesOpenInExistingWindow.ui:47 preferencesReload.ui:50
#: preferencesReopenPreviouslyOpenedFiles.ui:56
#, kde-format
msgid "&Yes"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, no)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesOpenInExistingWindow.ui:54 preferencesReload.ui:57
#: preferencesReopenPreviouslyOpenedFiles.ui:63
#, kde-format
msgid "No"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, ask)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesOpenInExistingWindow.ui:64
#: preferencesReopenPreviouslyOpenedFiles.ui:73
#, kde-format
msgid "As&k"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, parsingMode)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesParsing.ui:38
#, kde-format
msgid "Parse using:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, external)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesParsing.ui:50
#, kde-format
msgid "&External command"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, internal)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesParsing.ui:57
#, kde-format
msgid "Internal library"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, reloadOnChangeMode)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesReload.ui:38
#, kde-format
msgid "Reload files modified on disk"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, ask)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesReload.ui:67
#, kde-format
msgid "Ask"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, reopenPreviouslyOpenedFilesMode)
-#. +> trunk5 stable
+#. +> trunk5
#: preferencesReopenPreviouslyOpenedFiles.ui:38
#, kde-format
msgid "Reopen previously opened files"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.desktop.pot (revision 1509808)
@@ -1,485 +1,485 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-24 09:34+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5
#: krita/data/templates/animation/.directory:2
msgctxt "Name"
msgid "Animation Templates"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/animation/Anim-Jp-EN.desktop:5
msgctxt "Name"
msgid "Animation-Japanese-En"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/animation/Anim-Jp-JP.desktop:5
msgctxt "Name"
msgid "Animation-Japanese-JP"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/.directory:2
msgctxt "Name"
msgid "Comic Templates"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/a4_waffle_grid.desktop:5
msgctxt "Name"
msgid "waffle-iron grid"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/a4_waffle_grid.desktop:37
msgctxt "Comment"
msgid "300 dpi, A4 waffle-iron grid comic page with ink and color layers"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/BD-EuroTemplate.desktop:5
msgctxt "Name"
msgid "European BD template"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/BD-EuroTemplate.desktop:41
msgctxt "Comment"
msgid "template for European BD-style comics"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/Comics-USTemplate.desktop:5
msgctxt "Name"
msgid "US-style comics template"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/Comics-USTemplate.desktop:43
msgctxt "Comment"
msgid "template for US-style comics"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/Manga-JpTemplate.desktop:5
msgctxt "Name"
msgid "Manga template"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/comics/Manga-JpTemplate.desktop:44
msgctxt "Comment"
msgid "template for Japanese Manga-style comics"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/.directory:2
msgctxt "Name"
msgid "Design Templates"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/Designcinema16_10_2484x1200_96dpiRGB_8bit_.desktop:3
msgctxt "Name"
msgid "Design cinema 16:10 [ 2484x1200 , 96dpi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/Designcinema2.39_1_2484x1040_96dpiRGB_8bit_.desktop:3
msgctxt "Name"
msgid "Design cinema 2.39:1 [ 2484x1040 , 96dpi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/DesignpresentationA3Landscape_4960x3508_300dpiRGB_8bit_.desktop:3
msgctxt "Name"
msgid "Design presentation A3 Landscape [ 4960x3508 , 300dpi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/DesignpresentationA4portrait_2480x3508,300dpiRGB_8bit_.desktop:3
#: krita/data/templates/design/DesignpresentationA4portrait_2480x3508_300dpiRGB_8bit_.desktop:3
msgctxt "Name"
msgid "Design presentation A4 portrait [ 2480x3508 , 300dpi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/Designscreen4_3_2250x1680_96dpiRGB_8bit_.desktop:3
msgctxt "Name"
msgid "Design screen 4:3 [ 2250x1680 , 96dpi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/design/web_design.desktop:3
msgctxt "Name"
msgid "Web Design [ 2160x1440 , 72ppi RGB , 8bit ]"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/.directory:2
msgctxt "Name"
msgid "DSLR Templates"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/Canon_550D_5184x3456.desktop:3
msgctxt "Name"
msgid "Canon_550D_5184x3456"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/Canon_5Dmk3_5760x3840.desktop:3
msgctxt "Name"
msgid "Canon_5Dmk3_5760x3840"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/Nikon_D3000_3872x2592.desktop:3
msgctxt "Name"
msgid "Nikon_D3000_3872x2592"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/Nikon_D5000_4288x2848.desktop:3
msgctxt "Name"
msgid "Nikon_D5000_4288x2848"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/dslr/Nikon_D7000_4928x3264.desktop:3
msgctxt "Name"
msgid "Nikon_D7000_4928x3264"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/.directory:2
msgctxt "Name"
msgid "Texture Templates"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture1024x10248bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 1024x1024 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture1k32bitscalar.desktop:3
msgctxt "Name"
msgid "Texture 1k 32bit scalar"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture1k8bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 1k 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture2048x20488bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 2048x2048 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture256x2568bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 256x256 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture2k32bitscalar.desktop:3
msgctxt "Name"
msgid "Texture 2k 32bit scalar"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture2k8bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 2k 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture4096x40968bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 4096x4096 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture4k32bitscalar.desktop:3
msgctxt "Name"
msgid "Texture 4k 32bit scalar"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture4k8bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 4k 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture512x5128bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 512x512 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture8k32bitscalar.desktop:3
msgctxt "Name"
msgid "Texture 8k 32bit scalar"
msgstr ""
#. +> trunk5 stable5
#: krita/data/templates/texture/Texture8k8bitsrgb.desktop:3
msgctxt "Name"
msgid "Texture 8k 8bit srgb"
msgstr ""
#. +> trunk5 stable5
#: krita/org.kde.krita.desktop:2
#: packaging/linux/snap/setup/gui/krita.desktop:2
#: plugins/impex/bmp/krita_bmp.desktop:2
#: plugins/impex/brush/krita_brush.desktop:2
#: plugins/impex/csv/krita_csv.desktop:2
#: plugins/impex/exr/krita_exr.desktop:55
#: plugins/impex/heightmap/krita_heightmap.desktop:7
#: plugins/impex/jpeg/krita_jpeg.desktop:6
-#: plugins/impex/kra/krita_kra.desktop:7 plugins/impex/odg/krita_odg.desktop:2
-#: plugins/impex/ora/krita_ora.desktop:7 plugins/impex/pdf/krita_pdf.desktop:6
-#: plugins/impex/png/krita_png.desktop:2 plugins/impex/ppm/krita_ppm.desktop:7
-#: plugins/impex/psd/krita_psd.desktop:6 plugins/impex/raw/krita_raw.desktop:2
+#: plugins/impex/kra/krita_kra.desktop:7 plugins/impex/ora/krita_ora.desktop:7
+#: plugins/impex/pdf/krita_pdf.desktop:6 plugins/impex/png/krita_png.desktop:2
+#: plugins/impex/ppm/krita_ppm.desktop:7 plugins/impex/psd/krita_psd.desktop:6
+#: plugins/impex/raw/krita_raw.desktop:2
#: plugins/impex/spriter/krita_spriter.desktop:2
#: plugins/impex/svg/krita_svg.desktop:2 plugins/impex/tga/krita_tga.desktop:2
#: plugins/impex/tiff/krita_tiff.desktop:6
#: plugins/impex/xcf/krita_xcf.desktop:6
msgctxt "Name"
msgid "Krita"
msgstr ""
#. +> trunk5 stable5
#: krita/org.kde.krita.desktop:65
#: packaging/linux/snap/setup/gui/krita.desktop:65
msgctxt "GenericName"
msgid "Digital Painting"
msgstr ""
#. +> trunk5 stable5
#: krita/org.kde.krita.desktop:104
msgctxt "Comment"
msgid "Digital Painting"
msgstr ""
#. +> trunk5 stable5
#: packaging/linux/snap/setup/gui/krita.desktop:104
msgctxt "Comment"
msgid "Pixel-based image manipulation program for the Calligra Suite"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/assignprofiledialog/kritapykrita_assignprofiledialog.desktop:6
msgctxt "Name"
msgid "Assign Profile to Image"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/assignprofiledialog/kritapykrita_assignprofiledialog.desktop:26
msgctxt "Comment"
msgid "Assign a profile to an image without converting it."
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/colorspace/kritapykrita_colorspace.desktop:6
msgctxt "Name"
msgid "Color Space"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/colorspace/kritapykrita_colorspace.desktop:28
msgctxt "Comment"
msgid "Plugin to change color space to selected documents"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/comics_project_management_tools/kritapykrita_comics_project_management_tools.desktop:6
msgctxt "Name"
msgid "Comics Project Management Tools"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/comics_project_management_tools/kritapykrita_comics_project_management_tools.desktop:24
msgctxt "Comment"
msgid "Tools for managing comics."
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/documenttools/kritapykrita_documenttools.desktop:6
msgctxt "Name"
msgid "Document Tools"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/documenttools/kritapykrita_documenttools.desktop:25
msgctxt "Comment"
msgid "Plugin to manipulate properties of selected documents"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/exportlayers/kritapykrita_exportlayers.desktop:6
msgctxt "Name"
msgid "Export Layers"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/exportlayers/kritapykrita_exportlayers.desktop:27
msgctxt "Comment"
msgid "Plugin to export layers from a document"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/filtermanager/kritapykrita_filtermanager.desktop:6
msgctxt "Name"
msgid "Filter Manager"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/filtermanager/kritapykrita_filtermanager.desktop:26
msgctxt "Comment"
msgid "Plugin to filters management"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/hello/kritapykrita_hello.desktop:6
msgctxt "Name"
msgid "Hello World"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/hello/kritapykrita_hello.desktop:29
msgctxt "Comment"
msgid "Basic plugin to test PyKrita"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/highpass/kritapykrita_highpass.desktop:6
msgctxt "Name"
msgid "Highpass Filter"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/highpass/kritapykrita_highpass.desktop:26
msgctxt "Comment"
msgid "Highpass Filter, based on http://registry.gimp.org/node/7385"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/lastdocumentsdocker/kritapykrita_lastdocumentsdocker.desktop:6
msgctxt "Name"
msgid "Last Documents Docker"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/lastdocumentsdocker/kritapykrita_lastdocumentsdocker.desktop:23
msgctxt "Comment"
msgid "A Python-based docker for show thumbnails to last ten documents"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/palette_docker/kritapykrita_palette_docker.desktop:6
msgctxt "Name"
msgid "Palette docker"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/palette_docker/kritapykrita_palette_docker.desktop:26
msgctxt "Comment"
msgid "A Python-based docker to edit color palettes."
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/quick_settings_docker/kritapykrita_quick_settings_docker.desktop:6
msgctxt "Name"
msgid "Quick Settings Docker"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/quick_settings_docker/kritapykrita_quick_settings_docker.desktop:24
msgctxt "Comment"
msgid "A Python-based docker for quickly changing brush size and opacity."
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/scriptdocker/kritapykrita_scriptdocker.desktop:6
msgctxt "Name"
msgid "Script Docker"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/scriptdocker/kritapykrita_scriptdocker.desktop:24
msgctxt "Comment"
msgid "A Python-based docker for create actions and point to Python scripts"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/scripter/kritapykrita_scripter.desktop:6
msgctxt "Name"
msgid "Scripter"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/scripter/kritapykrita_scripter.desktop:24
msgctxt "Comment"
msgid "Plugin to execute ad-hoc Python code"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/selectionsbagdocker/kritapykrita_selectionsbagdocker.desktop:6
msgctxt "Name"
msgid "Selections Bag Docker"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/selectionsbagdocker/kritapykrita_selectionsbagdocker.desktop:23
msgctxt "Comment"
msgid "A docker that allow to store a list of selections"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/kritapykrita_tenbrushes.desktop:6
msgctxt "Name"
msgid "Ten Brushes"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/kritapykrita_tenbrushes.desktop:25
msgctxt "Comment"
msgid "Assign a preset to ctrl-1 to ctrl-0"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/kritapykrita_tenscripts.desktop:6
msgctxt "Name"
msgid "Ten Scripts"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/kritapykrita_tenscripts.desktop:21
msgctxt "Comment"
msgid "A Python-based plugin for creating ten actions and assign them to Python scripts"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/krita_exr.desktop:4
msgctxt "GenericName"
msgid "Application for Drawing and Handling of Images"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/krita.pot (revision 1509808)
@@ -1,46524 +1,46523 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:41+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:1
#, kde-format
msgctxt "./krita/data/gradients/BG-Krita2.ggr"
msgid "BG-Krita2. Gradient background for brush preset icons."
msgstr ""
#. +> trunk5 stable5
#: i18ndata:2
#, kde-format
msgctxt "./krita/data/gradients/GPS-eye-_Blue_.ggr"
msgid "GPS eye (Blue)"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:3
#, kde-format
msgctxt "./krita/data/gradients/GPS-FG-Glare.ggr"
msgid "GPS FG Glare"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:4
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Blueish.ggr"
msgid "GPS Fire Blueish"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:5
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Burning-Cloud.ggr"
msgid "GPS Fire Burning Cloud"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:6
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Dust-Blended.ggr"
msgid "GPS Fire Dust Blended"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:7
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Dust.ggr"
msgid "GPS Fire Dust"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:8
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Incandescent.ggr"
msgid "GPS Fire Incandescent"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:9
#, kde-format
msgctxt "./krita/data/gradients/GPS-Fire-Life-Span.ggr"
msgid "GPS Fire Life Span"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:10
#, kde-format
msgctxt "./krita/data/gradients/GPS-Haze-and-Atmosphere.ggr"
msgid "GPS Haze and Atmosphere"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:11
#, kde-format
msgctxt "./krita/data/gradients/GPS-Light-Saber-_Use-FG-color_.ggr"
msgid "GPS Light Saber (Use FG color)"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:12
#, kde-format
msgctxt "./krita/data/gradients/GPS-Nature-browns-copy.ggr"
msgid "GPS Nature browns copy"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:13
#, kde-format
msgctxt "./krita/data/gradients/GPS-Nature-Pure-greens.ggr"
msgid "GPS Nature Pure greens"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:14
#, kde-format
msgctxt "./krita/data/gradients/GPS-Nature-random-greens.ggr"
msgid "GPS Nature random greens"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:15
#, kde-format
msgctxt "./krita/data/gradients/GPS-Nature_Grass.ggr"
msgid "GPS Nature_Grass"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:16
#, kde-format
msgctxt "./krita/data/gradients/GPS-Simple-Smoke.ggr"
msgid "GPS Simple Smoke"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:17
#, kde-format
msgctxt "./krita/data/gradients/GPS-Steel-Bars.ggr"
msgid "GPS Steel Bars"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:18
#, kde-format
msgctxt "./krita/data/palettes/concept-cookie.gpl"
msgid "Concept-cookie"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:19
#, kde-format
msgctxt "./krita/data/palettes/default.gpl"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:20
#, kde-format
msgctxt "./krita/data/palettes/gradient.gpl"
msgid "Gradient"
msgstr ""
#. +> stable5
#: i18ndata:200
#, kde-format
msgctxt "./krita/data/patterns/granite.pat"
msgid "Granite 1b"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:21
#, kde-format
msgctxt "./krita/data/palettes/marker.gpl"
msgid "Markers"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:22
#, kde-format
msgctxt "./krita/data/palettes/pixelart-16.gpl"
msgid "PixelArt 16"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:23
#, kde-format
msgctxt "./krita/data/palettes/pixelart-32.gpl"
msgid "PixelArt 32"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:24
#, kde-format
msgctxt "./krita/data/palettes/ps.gpl"
msgid "Ps"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:25
#, kde-format
msgctxt "./krita/data/palettes/swatch-cmyk.gpl"
msgid "Swatch CMYK"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:26
#, kde-format
msgctxt "./krita/data/palettes/swatch-colored-grey.gpl"
msgid "Swatch colored grey"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:27
#, kde-format
msgctxt "./krita/data/palettes/swatch-rgb.gpl"
msgid "Swatch RGB"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:28
#, kde-format
msgctxt "./krita/data/palettes/swatche.gpl"
msgid "Swatches\t"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:29
#, kde-format
msgctxt "./krita/data/palettes/web.gpl"
msgid "Web"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:30
#, kde-format
msgctxt "./krita/data/brushes/3_eroded.gih"
msgid "3_eroded"
msgstr ""
#. +> stable5
#: i18ndata:37
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-brush2.gih"
msgid "A -2 Eroded Brush 2"
msgstr ""
#. +> stable5
#: i18ndata:187
#, kde-format
msgctxt "./krita/data/brushes/Z_Pixel_4x4_rounded.gbr"
msgid "Z_Pixel 4x4 rounded"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:31
#, kde-format
msgctxt "./krita/data/brushes/A_bamboo-leaves.gih"
msgid "A-4 Bamboo Leaves"
msgstr ""
#. +> stable5
#: i18ndata:32
#, kde-format
msgctxt "./krita/data/brushes/A_bamboo.gih"
msgid "A-4 Bamboo"
msgstr ""
#. +> stable5
#: i18ndata:49
#, kde-format
msgctxt "./krita/data/brushes/A_leaves-mapple.gih"
msgid "A-4 Leaves Mapples"
msgstr ""
#. +> stable5
#: i18ndata:50
#, kde-format
msgctxt "./krita/data/brushes/A_leaves.gih"
msgid "A-4 Leaves"
msgstr ""
#. +> stable5
#: i18ndata:53
#, kde-format
msgctxt "./krita/data/brushes/A_random-vegetal.gih"
msgid "A-4 random vegetal"
msgstr ""
#. +> stable5
#: i18ndata:54
#, kde-format
msgctxt "./krita/data/brushes/A_random-vegetal2.gih"
msgid "A-4 random vegetal2"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:32
#, kde-format
msgctxt "./krita/data/brushes/A_distant-mountain.gih"
msgid "A-4 distant-mountain"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:33
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-cercle-anim.gih"
msgid "A -18 Round eroded anim"
msgstr ""
#. +> stable5
#: i18ndata:39
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-chinese-anim.gih"
msgid "A -2 Chinese eroded anim"
msgstr ""
#. +> stable5
#: i18ndata:40
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-dirtybrush-anim.gih"
msgid "A - 2 Dirty Brush"
msgstr ""
#. +> stable5
#: i18ndata:41
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-knife-anim.gih"
msgid "A-17 Knife eroded anim"
msgstr ""
#. +> trunk5
#: i18ndata:34
#, kde-format
msgctxt "./krita/data/brushes/A_eroded_circle.gih"
msgid "A_eroded_circle"
msgstr ""
#. +> stable5
#: i18ndata:102
#, kde-format
msgctxt "./krita/data/brushes/A_Angular_church.gbr"
msgid "A_Angular_church"
msgstr ""
#. +> stable5
#: i18ndata:103
#, kde-format
msgctxt "./krita/data/brushes/A_Angular_church_HR.gbr"
msgid "A_Angular_church_HR"
msgstr ""
#. +> stable5
#: i18ndata:114
#, kde-format
msgctxt "./krita/data/brushes/A_eroded-cercle_2.gbr"
msgid "A_eroded-cercle_2"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:35
#, kde-format
msgctxt "./krita/data/brushes/A_grass-floor.gih"
msgid "A-4 Grass-Floor"
msgstr ""
#. +> stable5
#: i18ndata:43
#, kde-format
msgctxt "./krita/data/brushes/A_floor.gih"
msgid "A-4 Floor"
msgstr ""
#. +> stable5
#: i18ndata:44
#, kde-format
msgctxt "./krita/data/brushes/A_flowers.gih"
msgid "A-4 Flower"
msgstr ""
#. +> stable5
#: i18ndata:55
#, kde-format
msgctxt "./krita/data/brushes/A_rocks-floor-neg.gih"
msgid "A-4 rocksfloor neg"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:36
#, kde-format
msgctxt "./krita/data/brushes/A_pin.gih"
msgid "A-4 Pin"
msgstr ""
#. +> stable5
#: i18ndata:42
#, kde-format
msgctxt "./krita/data/brushes/A_fairy-dust.gih"
msgid "A-4 Fairy Dust"
msgstr ""
#. +> stable5
#: i18ndata:46
#, kde-format
msgctxt "./krita/data/brushes/A_fur.gih"
msgid "A-4 Fur"
msgstr ""
#. +> stable5
#: i18ndata:51
#, kde-format
msgctxt "./krita/data/brushes/A_mineral-cristal.gih"
msgid "A-3 minerals"
msgstr ""
#. +> stable5
-#: i18ndata:92
-#, kde-format
-msgctxt "./krita/data/brushes/Te_Techno_1.gih"
-msgid "Te_Techno 1"
-msgstr ""
-
-#. +> stable5
#: i18ndata:107
#, kde-format
msgctxt "./krita/data/brushes/A_Chain.gbr"
msgid "A_Chain"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:37
#, kde-format
msgctxt "./krita/data/brushes/A_snow-pack.gih"
msgid "A-4 SnowPack"
msgstr ""
#. +> stable5
#: i18ndata:36
#, kde-format
msgctxt "./krita/data/brushes/A_dynamic-brush3.gih"
msgid "A-2 Dynamic brush 2"
msgstr ""
#. +> stable5
#: i18ndata:56
#, kde-format
msgctxt "./krita/data/brushes/A_rocks.gih"
msgid "A-3 Rocks"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:38
#, kde-format
msgctxt "./krita/data/brushes/A_splat2.gih"
msgid "A-2 Splat"
msgstr ""
#. +> stable5
#: i18ndata:45
#, kde-format
msgctxt "./krita/data/brushes/A_forest.gih"
msgid "A-4 Forest"
msgstr ""
#. +> stable5
#: i18ndata:127
#, kde-format
msgctxt "./krita/data/brushes/A_splat1.gbr"
msgid "A_splat1"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:39
#, kde-format
msgctxt "./krita/data/brushes/A_wall-texture.gih"
msgid "A-4 Wall"
msgstr ""
#. +> trunk5
#: i18ndata:40
#, kde-format
-msgctxt "./krita/data/brushes/cazu_watercolor2.gih"
-msgid "Cazu Watercolor 2"
-msgstr ""
-
-#. +> trunk5
-#: i18ndata:41
-#, kde-format
msgctxt "./krita/data/brushes/double_special6.gih"
msgid "double_special6"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:42
+#: i18ndata:41
#, kde-format
msgctxt "./krita/data/brushes/Flat_textured1.gih"
msgid "Flat_textured1"
msgstr ""
#. +> stable5
#: i18ndata:63
#, kde-format
msgctxt "./krita/data/brushes/Flat_textured2.gih"
msgid "Flat_textured2"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:43
+#: i18ndata:42
#, kde-format
msgctxt "./krita/data/brushes/LJF_Water_Brush_02.gih"
msgid "LJF Water Brush 2"
msgstr ""
#. +> stable5
#: i18ndata:33
#, kde-format
msgctxt "./krita/data/brushes/A_dirty-brush.gih"
msgid "A - 2 Dirty Brush2"
msgstr ""
#. +> stable5
#: i18ndata:35
#, kde-format
msgctxt "./krita/data/brushes/A_dynamic-brush.gih"
msgid "A - 2 Dynamic Brush"
msgstr ""
#. +> stable5
#: i18ndata:68
#, kde-format
msgctxt "./krita/data/brushes/LJF_Water_Brush_03.gih"
msgid "LJF Water Brush 3"
msgstr ""
#. +> stable5
#: i18ndata:138
#, kde-format
msgctxt "./krita/data/brushes/LJF_Foliage_Brush_01.gbr"
msgid "LJF_Foliage_Brush_01"
msgstr ""
#. +> stable5
#: i18ndata:139
#, kde-format
msgctxt "./krita/data/brushes/LJF_Foliage_Brush_02.gbr"
msgid "LJF_Foliage_Brush_02"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:44
+#: i18ndata:43
#, kde-format
msgctxt "./krita/data/brushes/N_Grass_2.gih"
msgid "N_Grass 2"
msgstr ""
#. +> stable5
#: i18ndata:69
#, kde-format
msgctxt "./krita/data/brushes/N_Grass_1.gih"
msgid "N_Grass 1"
msgstr ""
#. +> stable5
#: i18ndata:85
#, kde-format
msgctxt "./krita/data/brushes/T_Fibers_2.gih"
msgid "T_Fibers 2"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:45
+#: i18ndata:44
#, kde-format
msgctxt "./krita/data/brushes/P_Graphite_Pencil_grain.gih"
msgid "GIMP Brush Pipe"
msgstr ""
#. +> stable5
#: i18ndata:73
#, kde-format
msgctxt "./krita/data/brushes/P_Graphite_Black_Grass.gih"
msgid "P_Graphite Black Grass"
msgstr ""
#. +> stable5
#: i18ndata:74
#, kde-format
msgctxt "./krita/data/brushes/P_Graphite_Pencil.gih"
msgid "P_Graphite Pencil"
msgstr ""
#. +> stable5
#: i18ndata:76
#, kde-format
msgctxt "./krita/data/brushes/P_Graphite_Pencil_grainb.gih"
msgid "P_Graphite Pencil _grainb"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:46
+#: i18ndata:45
#, kde-format
msgctxt "./krita/data/brushes/Rect_textured1.gih"
msgid "Rect_textured1"
msgstr ""
#. +> stable5
#: i18ndata:100
#, kde-format
msgctxt "./krita/data/brushes/A_abstract-textured1.gbr"
msgid "A_abstract-textured1"
msgstr ""
#. +> stable5
#: i18ndata:167
#, kde-format
msgctxt "./krita/data/brushes/rake_textured_01.gbr"
msgid "Rake_textured_01"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:47
+#: i18ndata:46
#, kde-format
msgctxt "./krita/data/brushes/Rect_textured2.gih"
msgid "Rect_textured2"
msgstr ""
#. +> stable5
#: i18ndata:86
#, kde-format
msgctxt "./krita/data/brushes/T_Texture_2.gih"
msgid "T_Texture 2"
msgstr ""
#. +> stable5
#: i18ndata:101
#, kde-format
msgctxt "./krita/data/brushes/A_abstract-textured2.gbr"
msgid "A_abstract-textured2"
msgstr ""
#. +> stable5
#: i18ndata:168
#, kde-format
msgctxt "./krita/data/brushes/rake_textured_02.gbr"
msgid "Rake_textured_02"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:48
+#: i18ndata:47
#, kde-format
msgctxt "./krita/data/brushes/Rect_textured3.gih"
msgid "Rect_textured3"
msgstr ""
#. +> stable5
#: i18ndata:87
#, kde-format
msgctxt "./krita/data/brushes/T_Texture_3.gih"
msgid "T_Texture 3"
msgstr ""
#. +> stable5
#: i18ndata:88
#, kde-format
msgctxt "./krita/data/brushes/T_Texture_4.gih"
msgid "T_Texture 4"
msgstr ""
#. +> stable5
+#: i18ndata:89
+#, kde-format
+msgctxt "./krita/data/brushes/T_Texture_5.gih"
+msgid "T_Texture 5"
+msgstr ""
+
+#. +> stable5
#: i18ndata:90
#, kde-format
msgctxt "./krita/data/brushes/T_Texture_6.gih"
msgid "T_Texture 6"
msgstr ""
#. +> stable5
#: i18ndata:91
#, kde-format
msgctxt "./krita/data/brushes/T_Texture_7.gih"
msgid "T_Texture 7"
msgstr ""
#. +> stable5
#: i18ndata:99
#, kde-format
msgctxt "./krita/data/brushes/Z_Test-pressure.gih"
msgid "Z- Test pressure"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:49
+#: i18ndata:48
#, kde-format
msgctxt "./krita/data/brushes/S_splats_02.gih"
msgid "S_Splats 2"
msgstr ""
#. +> stable5
#: i18ndata:83
#, kde-format
msgctxt "./krita/data/brushes/Sc_Scratch.gih"
msgid "Sc_Scratch"
msgstr ""
#. +> stable5
#: i18ndata:173
#, kde-format
msgctxt "./krita/data/brushes/Sc_Scratches_2.gbr"
msgid "Sc_Scratches2"
msgstr ""
#. +> trunk5
-#: i18ndata:50
+#: i18ndata:49
#, kde-format
msgctxt "./krita/data/brushes/w_hearts.gih"
msgid "w_hearts"
msgstr ""
#. +> stable5
#: i18ndata:48
#, kde-format
msgctxt "./krita/data/brushes/A_herbs.gih"
msgid "A-4 herbs"
msgstr ""
#. +> stable5
#: i18ndata:61
#, kde-format
msgctxt "./krita/data/brushes/D_Dust_Particles.gih"
msgid "D_Dust Particles"
msgstr ""
#. +> stable5
#: i18ndata:64
#, kde-format
msgctxt "./krita/data/brushes/G_Sparks.gih"
msgid "G_Sparks"
msgstr ""
#. +> stable5
-#: i18ndata:65
+#: i18ndata:84
#, kde-format
-msgctxt "./krita/data/brushes/L_Trees.gih"
-msgid "L_Trees"
+msgctxt "./krita/data/brushes/T_Fibers_1.gih"
+msgid "T_Fibers 1"
+msgstr ""
+
+#. +> trunk5
+#: i18ndata:50
+#, kde-format
+msgctxt "./krita/data/brushes/watercolor.gih"
+msgid "watercolor"
msgstr ""
#. +> stable5
-#: i18ndata:84
+#: i18ndata:92
#, kde-format
-msgctxt "./krita/data/brushes/T_Fibers_1.gih"
-msgid "T_Fibers 1"
+msgctxt "./krita/data/brushes/Te_Techno_1.gih"
+msgid "Te_Techno 1"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:51
#, kde-format
msgctxt "./krita/data/brushes/z_study_pencil_2H.gih"
msgid "Z_study pencil 2H"
msgstr ""
#. +> stable5
#: i18ndata:71
#, kde-format
msgctxt "./krita/data/brushes/P_2B_Pencil_Angled.gih"
msgid "P_2B Pencil Angled"
msgstr ""
#. +> stable5
#: i18ndata:72
#, kde-format
msgctxt "./krita/data/brushes/P_6B_Pencil_Angled.gih"
msgid "P_6B Pencil Angled"
msgstr ""
#. +> stable5
#: i18ndata:77
#, kde-format
msgctxt "./krita/data/brushes/P_RealPencil10x10.gih"
msgid "P_Real Pencil 10x10"
msgstr ""
#. +> stable5
#: i18ndata:78
#, kde-format
msgctxt "./krita/data/brushes/P_RealPencil16x16.gih"
msgid "P_Real Pencil 16x16"
msgstr ""
#. +> stable5
#: i18ndata:95
#, kde-format
msgctxt "./krita/data/brushes/z_study_pencil_2H_horiz.gih"
msgid "Z_study pencil 2H_horiz"
msgstr ""
#. +> stable5
#: i18ndata:96
#, kde-format
msgctxt "./krita/data/brushes/z_study_pencil_2Hb.gih"
msgid "2B pencil Grain 2 b"
msgstr ""
#. +> stable5
#: i18ndata:97
#, kde-format
msgctxt "./krita/data/brushes/z_study_pencil_H.gih"
msgid "Z_study pencil H"
msgstr ""
#. +> stable5
#: i18ndata:98
#, kde-format
msgctxt "./krita/data/brushes/z_study_pencil_H_h.gih"
msgid "Z_study pencil H_horiz"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:52
#, kde-format
msgctxt "./krita/data/brushes/A_smoke.gbr"
msgid "A_smoke"
msgstr ""
#. +> stable5
#: i18ndata:66
#, kde-format
msgctxt "./krita/data/brushes/LJF_smoke_c.gih"
msgid "Smoke Pipebrush"
msgstr ""
#. +> stable5
#: i18ndata:104
#, kde-format
msgctxt "./krita/data/brushes/A_bokey.gbr"
msgid "A -52 Bokey"
msgstr ""
#. +> stable5
#: i18ndata:108
#, kde-format
msgctxt "./krita/data/brushes/A_cloudy.gbr"
msgid "A_cloudy"
msgstr ""
#. +> stable5
-#: i18ndata:109
-#, kde-format
-msgctxt "./krita/data/brushes/A_concrete.gbr"
-msgid "A_concrete"
-msgstr ""
-
-#. +> stable5
#: i18ndata:112
#, kde-format
msgctxt "./krita/data/brushes/A_crayon.gbr"
msgid "A_crayon"
msgstr ""
#. +> stable5
#: i18ndata:113
#, kde-format
msgctxt "./krita/data/brushes/A_dirty-spot.gbr"
msgid "A_dirty-spot"
msgstr ""
#. +> stable5
#: i18ndata:117
#, kde-format
msgctxt "./krita/data/brushes/A_Nice_sketch.gbr"
msgid "A_Nice Sketch"
msgstr ""
#. +> stable5
#: i18ndata:118
#, kde-format
msgctxt "./krita/data/brushes/A_Nice_sketch2.gbr"
msgid "A_Nice Sketch2"
msgstr ""
#. +> stable5
#: i18ndata:119
#, kde-format
msgctxt "./krita/data/brushes/A_provencal.gbr"
msgid "A_provencal"
msgstr ""
#. +> stable5
#: i18ndata:121
#, kde-format
msgctxt "./krita/data/brushes/A_random-vegetal3.gbr"
msgid "A_random-vegetal3"
msgstr ""
#. +> stable5
#: i18ndata:159
#, kde-format
msgctxt "./krita/data/brushes/O_Oils_Softer.gbr"
msgid "O_Oils Softer"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:53
#, kde-format
msgctxt "./krita/data/brushes/A_sparkle1.gbr"
msgid "A -2 Sparkle 1"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:54
#, kde-format
msgctxt "./krita/data/brushes/A_sparkle2.gbr"
msgid "A -2 Sparkle 2"
msgstr ""
-#. +> stable5
-#: i18ndata:179
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_2.gbr"
-msgid "U Circle shape 2"
-msgstr ""
-
#. +> trunk5 stable5
#: i18ndata:55
#, kde-format
msgctxt "./krita/data/brushes/A_sparkle3.gbr"
msgid "A -2 Sparkle 3"
msgstr ""
-#. +> stable5
-#: i18ndata:180
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_3.gbr"
-msgid "U Circle shape 3"
-msgstr ""
-
#. +> trunk5 stable5
#: i18ndata:56
#, kde-format
msgctxt "./krita/data/brushes/A_starfield2.gbr"
msgid "A_starfield2"
msgstr ""
#. +> stable5
#: i18ndata:59
#, kde-format
msgctxt "./krita/data/brushes/A_starfield.gih"
msgid "A-4 starfield intense"
msgstr ""
#. +> stable5
#: i18ndata:105
#, kde-format
msgctxt "./krita/data/brushes/A_Braids.gbr"
msgid "A_Braids.gbr"
msgstr ""
#. +> stable5
-#: i18ndata:115
+#: i18ndata:106
#, kde-format
-msgctxt "./krita/data/brushes/A_lucky_star.gbr"
-msgid "A-5 Lucky-star"
+msgctxt "./krita/data/brushes/A_Braids_b.gbr"
+msgid "A_Braids_b"
msgstr ""
#. +> trunk5
#: i18ndata:57
#, kde-format
-msgctxt "./krita/data/brushes/cazu-chalk.gbr"
-msgid "Cazu Chalk"
+msgctxt "./krita/data/brushes/abominable_snowman.gbr"
+msgid "abominable_snowman"
msgstr ""
#. +> trunk5
#: i18ndata:58
#, kde-format
-msgctxt "./krita/data/brushes/cazu-freckles.gbr"
-msgid "Cazu Freckles"
+msgctxt "./krita/data/brushes/chalk.gbr"
+msgid "chalk"
msgstr ""
#. +> trunk5
#: i18ndata:59
#, kde-format
-msgctxt "./krita/data/brushes/cazu-reptile.gbr"
-msgid "Cazu Reptile"
+msgctxt "./krita/data/brushes/chalk_sparse.gbr"
+msgid "chalk_sparse"
msgstr ""
#. +> stable5
-#: i18ndata:122
+#: i18ndata:115
#, kde-format
-msgctxt "./krita/data/brushes/A_reptile-skin.gbr"
-msgid "A_reptile-skin"
+msgctxt "./krita/data/brushes/A_lucky_star.gbr"
+msgid "A-5 Lucky-star"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:176
+#, kde-format
+msgctxt "./krita/data/brushes/Te_Techno_Angular_Cross.gbr"
+msgid "Te_Techno_Angular_Cross"
msgstr ""
#. +> trunk5
#: i18ndata:60
#, kde-format
-msgctxt "./krita/data/brushes/cazu-smear-paint.gbr"
-msgid "Cazu Smear Paint"
+msgctxt "./krita/data/brushes/chisel_smear.gbr"
+msgid "chisel_smear"
msgstr ""
#. +> trunk5
#: i18ndata:61
#, kde-format
-msgctxt "./krita/data/brushes/cazu-spines.gbr"
-msgid "Cazu Spines"
+msgctxt "./krita/data/brushes/freckles.gbr"
+msgid "freckles"
msgstr ""
-#. +> trunk5
-#: i18ndata:62
+#. +> stable5
+#: i18ndata:65
#, kde-format
-msgctxt "./krita/data/brushes/dub1.gbr"
-msgid "dub1"
+msgctxt "./krita/data/brushes/L_Trees.gih"
+msgid "L_Trees"
msgstr ""
#. +> stable5
-#: i18ndata:129
+#: i18ndata:110
#, kde-format
-msgctxt "./krita/data/brushes/C_Cloud_1.gbr"
-msgid "C_Cloud_1"
+msgctxt "./krita/data/brushes/A_crackled.gbr"
+msgid "A_crackled"
msgstr ""
#. +> stable5
-#: i18ndata:131
+#: i18ndata:177
#, kde-format
-msgctxt "./krita/data/brushes/D_Dust_1.gbr"
-msgid "C_Dust_1"
+msgctxt "./krita/data/brushes/U_Circle_circuit.gbr"
+msgid "U_Circle circuit"
msgstr ""
-#. +> trunk5
-#: i18ndata:63
+#. +> stable5
+#: i18ndata:179
#, kde-format
-msgctxt "./krita/data/brushes/dub6.gbr"
-msgid "dub6"
+msgctxt "./krita/data/brushes/U_Circle_shape_2.gbr"
+msgid "U Circle shape 2"
msgstr ""
#. +> stable5
-#: i18ndata:106
+#: i18ndata:180
#, kde-format
-msgctxt "./krita/data/brushes/A_Braids_b.gbr"
-msgid "A_Braids_b"
+msgctxt "./krita/data/brushes/U_Circle_shape_3.gbr"
+msgid "U Circle shape 3"
msgstr ""
#. +> stable5
-#: i18ndata:145
+#: i18ndata:181
#, kde-format
-msgctxt "./krita/data/brushes/M_06.gbr"
-msgid "M_06"
+msgctxt "./krita/data/brushes/U_Circle_shape_4.gbr"
+msgid "U Circle shape 4"
msgstr ""
#. +> stable5
-#: i18ndata:150
+#: i18ndata:182
#, kde-format
-msgctxt "./krita/data/brushes/M_Bulb.gbr"
-msgid "M_Bulb"
+msgctxt "./krita/data/brushes/U_Circle_shape_5.gbr"
+msgid "U Circle shape 5"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:183
+#, kde-format
+msgctxt "./krita/data/brushes/U_Circle_shape_5b.gbr"
+msgid "U Circle shape 5b"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:184
+#, kde-format
+msgctxt "./krita/data/brushes/U_Circle_shape_5c.gbr"
+msgid "U Circle shape 5c"
msgstr ""
#. +> trunk5
-#: i18ndata:64
+#: i18ndata:62
#, kde-format
msgctxt "./krita/data/brushes/knife3.gbr"
msgid "knife3"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:65
+#: i18ndata:63
#, kde-format
msgctxt "./krita/data/brushes/M_Pipe_1.gbr"
msgid "M_Pipe_1"
msgstr ""
#. +> stable5
+#: i18ndata:129
+#, kde-format
+msgctxt "./krita/data/brushes/C_Cloud_1.gbr"
+msgid "C_Cloud_1"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:131
+#, kde-format
+msgctxt "./krita/data/brushes/D_Dust_1.gbr"
+msgid "C_Dust_1"
+msgstr ""
+
+#. +> stable5
#: i18ndata:135
#, kde-format
msgctxt "./krita/data/brushes/L_Foliage_1.gbr"
msgid "L_Foliage_1"
msgstr ""
#. +> stable5
#: i18ndata:137
#, kde-format
msgctxt "./krita/data/brushes/L_Leaf_3.gbr"
msgid "L_Leaf_3"
msgstr ""
#. +> stable5
#: i18ndata:140
#, kde-format
msgctxt "./krita/data/brushes/M_01.gbr"
msgid "M_01"
msgstr ""
#. +> stable5
#: i18ndata:142
#, kde-format
msgctxt "./krita/data/brushes/M_03.gbr"
msgid "M_03"
msgstr ""
#. +> stable5
#: i18ndata:144
#, kde-format
msgctxt "./krita/data/brushes/M_05.gbr"
msgid "M_05"
msgstr ""
#. +> stable5
+#: i18ndata:145
+#, kde-format
+msgctxt "./krita/data/brushes/M_06.gbr"
+msgid "M_06"
+msgstr ""
+
+#. +> stable5
#: i18ndata:146
#, kde-format
msgctxt "./krita/data/brushes/M_07.gbr"
msgid "M_07"
msgstr ""
#. +> stable5
#: i18ndata:147
#, kde-format
msgctxt "./krita/data/brushes/M_08.gbr"
msgid "M_08"
msgstr ""
#. +> stable5
#: i18ndata:148
#, kde-format
msgctxt "./krita/data/brushes/M_09.gbr"
msgid "M_09"
msgstr ""
#. +> stable5
#: i18ndata:153
#, kde-format
msgctxt "./krita/data/brushes/M_Pipe_2.gbr"
msgid "M_Pipe_2"
msgstr ""
#. +> stable5
#: i18ndata:154
#, kde-format
msgctxt "./krita/data/brushes/M_Pipe_3.gbr"
msgid "M_Pipe_3"
msgstr ""
#. +> stable5
#: i18ndata:157
#, kde-format
msgctxt "./krita/data/brushes/O_Oils_1.gbr"
msgid "O_Oils 1"
msgstr ""
#. +> stable5
#: i18ndata:158
#, kde-format
msgctxt "./krita/data/brushes/O_Oils_1_GP.gbr"
msgid "O_Oils 1 GP"
msgstr ""
#. +> stable5
-#: i18ndata:177
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_circuit.gbr"
-msgid "U_Circle circuit"
-msgstr ""
-
-#. +> stable5
#: i18ndata:178
#, kde-format
msgctxt "./krita/data/brushes/U_Circle_shape_1.gbr"
msgid "U Circle shape 1"
msgstr ""
#. +> stable5
-#: i18ndata:181
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_4.gbr"
-msgid "U Circle shape 4"
-msgstr ""
-
-#. +> stable5
-#: i18ndata:182
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_5.gbr"
-msgid "U Circle shape 5"
-msgstr ""
-
-#. +> stable5
-#: i18ndata:183
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_5b.gbr"
-msgid "U Circle shape 5b"
-msgstr ""
-
-#. +> stable5
-#: i18ndata:184
-#, kde-format
-msgctxt "./krita/data/brushes/U_Circle_shape_5c.gbr"
-msgid "U Circle shape 5c"
-msgstr ""
-
-#. +> stable5
#: i18ndata:185
#, kde-format
msgctxt "./krita/data/brushes/Z_Chain_1.gbr"
msgid "Z_Chain_1"
msgstr ""
#. +> stable5
#: i18ndata:186
#, kde-format
msgctxt "./krita/data/brushes/Z_Pixel_1.gbr"
msgid "Z_Pixel 1"
msgstr ""
#. +> stable5
#: i18ndata:188
#, kde-format
msgctxt "./krita/data/brushes/Z_Pixel__4_pix__45a.gbr"
msgid "Z_Pixel 4pix _45a"
msgstr ""
#. +> stable5
#: i18ndata:189
#, kde-format
msgctxt "./krita/data/brushes/Z_Pixel_Cross.gbr"
msgid "Z_Pixel Cross"
msgstr ""
#. +> stable5
#: i18ndata:190
#, kde-format
msgctxt "./krita/data/brushes/Z_Triangle_shape_1.gbr"
msgid "Z_Triangle_shape_1"
msgstr ""
#. +> stable5
#: i18ndata:191
#, kde-format
msgctxt "./krita/data/brushes/Z_Triangle_shape_2.gbr"
msgid "Z_Triangle_shape_2"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:66
+#: i18ndata:64
#, kde-format
msgctxt "./krita/data/brushes/MZ_leaves.gbr"
msgid "MZ_leaves"
msgstr ""
#. +> stable5
+#: i18ndata:150
+#, kde-format
+msgctxt "./krita/data/brushes/M_Bulb.gbr"
+msgid "M_Bulb"
+msgstr ""
+
+#. +> stable5
#: i18ndata:151
#, kde-format
msgctxt "./krita/data/brushes/M_Cage.gbr"
msgid "M_Cage"
msgstr ""
#. +> stable5
#: i18ndata:171
#, kde-format
msgctxt "./krita/data/brushes/S_Smudge_Cheese.gbr"
msgid "S_Smudge Cheese"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:67
+#: i18ndata:65
#, kde-format
msgctxt "./krita/data/brushes/oil_bristle.gbr"
msgid "oil_bristle"
msgstr ""
#. +> stable5
#: i18ndata:132
#, kde-format
msgctxt "./krita/data/brushes/D_Normal_dust.gbr"
msgid "D_Normal dust"
msgstr ""
#. +> stable5
#: i18ndata:133
#, kde-format
msgctxt "./krita/data/brushes/F_Furr_fast.gbr"
msgid "F_Furr fast"
msgstr ""
#. +> trunk5 stable5
-#: i18ndata:68
+#: i18ndata:66
#, kde-format
msgctxt "./krita/data/brushes/oil_knife.gbr"
msgid "oil_knife"
msgstr ""
#. +> stable5
#: i18ndata:156
#, kde-format
msgctxt "./krita/data/brushes/O_Oil_Soft.gbr"
msgid "O_Oil Soft"
msgstr ""
-#. +> stable5
-#: i18ndata:169
-#, kde-format
-msgctxt "./krita/data/brushes/Real_oil_1.gbr"
-msgid "Real Oil 1"
-msgstr ""
-
#. +> trunk5 stable5
-#: i18ndata:69
+#: i18ndata:67
#, kde-format
msgctxt "./krita/data/brushes/R_Rake2.gbr"
msgid "R_Rake2"
msgstr ""
#. +> stable5
#: i18ndata:136
#, kde-format
msgctxt "./krita/data/brushes/L_Leaf_2.gbr"
msgid "L_Leaf_2"
msgstr ""
#. +> stable5
#: i18ndata:141
#, kde-format
msgctxt "./krita/data/brushes/M_02.gbr"
msgid "M_02"
msgstr ""
-#. +> stable5
-#: i18ndata:170
-#, kde-format
-msgctxt "./krita/data/brushes/Real_Oil_2.gbr"
-msgid "Real_Oil_2"
-msgstr ""
-
#. +> trunk5 stable5
-#: i18ndata:70
+#: i18ndata:68
#, kde-format
msgctxt "./krita/data/brushes/R_Rake4.gbr"
msgid "R_Rake4"
msgstr ""
#. +> stable5
-#: i18ndata:110
-#, kde-format
-msgctxt "./krita/data/brushes/A_crackled.gbr"
-msgid "A_crackled"
-msgstr ""
-
-#. +> stable5
#: i18ndata:120
#, kde-format
msgctxt "./krita/data/brushes/A_Rake.gbr"
msgid "A_Rake"
msgstr ""
#. +> stable5
#: i18ndata:143
#, kde-format
msgctxt "./krita/data/brushes/M_04.gbr"
msgid "M_04"
msgstr ""
#. +> stable5
#: i18ndata:162
#, kde-format
msgctxt "./krita/data/brushes/R_Rake1.gbr"
msgid "R_Rake1"
msgstr ""
#. +> stable5
#: i18ndata:164
#, kde-format
msgctxt "./krita/data/brushes/R_Rake3.gbr"
msgid "R_Rake3"
msgstr ""
#. +> stable5
#: i18ndata:166
#, kde-format
msgctxt "./krita/data/brushes/R_Rake_small.gbr"
msgid "R_Rake_small"
msgstr ""
#. +> trunk5
-#: i18ndata:71
+#: i18ndata:69
+#, kde-format
+msgctxt "./krita/data/brushes/reptile.gbr"
+msgid "reptile"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:109
+#, kde-format
+msgctxt "./krita/data/brushes/A_concrete.gbr"
+msgid "A_concrete"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:122
+#, kde-format
+msgctxt "./krita/data/brushes/A_reptile-skin.gbr"
+msgid "A_reptile-skin"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:169
+#, kde-format
+msgctxt "./krita/data/brushes/Real_oil_1.gbr"
+msgid "Real Oil 1"
+msgstr ""
+
+#. +> stable5
+#: i18ndata:170
+#, kde-format
+msgctxt "./krita/data/brushes/Real_Oil_2.gbr"
+msgid "Real_Oil_2"
+msgstr ""
+
+#. +> trunk5
+#: i18ndata:70
#, kde-format
msgctxt "./krita/data/brushes/rock2.gbr"
msgid "rock2"
msgstr ""
#. +> stable5
#: i18ndata:93
#, kde-format
msgctxt "./krita/data/brushes/V_Vyle_Rock.gih"
msgid "Vyle Rock"
msgstr ""
#. +> stable5
#: i18ndata:130
#, kde-format
msgctxt "./krita/data/brushes/C_Dirty_Spot.gbr"
msgid "C_Dirty_Spot"
msgstr ""
#. +> stable5
#: i18ndata:149
#, kde-format
msgctxt "./krita/data/brushes/M_Arrow.gbr"
msgid "M_Arrow"
msgstr ""
#. +> trunk5
-#: i18ndata:72
+#: i18ndata:71
#, kde-format
msgctxt "./krita/data/brushes/round_textured1.gbr"
msgid "round_textured1"
msgstr ""
#. +> stable5
#: i18ndata:116
#, kde-format
msgctxt "./krita/data/brushes/A_mountain-texture.gbr"
msgid "A_mountain-texture"
msgstr ""
+#. +> stable5
+#: i18ndata:175
+#, kde-format
+msgctxt "./krita/data/brushes/T_Texture_1.gbr"
+msgid "T_Texture_1"
+msgstr ""
+
#. +> trunk5
-#: i18ndata:73
+#: i18ndata:72
#, kde-format
msgctxt "./krita/data/brushes/scribbles.gbr"
msgid "scribbles"
msgstr ""
#. +> stable5
#: i18ndata:111
#, kde-format
msgctxt "./krita/data/brushes/A_craqules.gbr"
msgid "A_craqules"
msgstr ""
#. +> stable5
#: i18ndata:134
#, kde-format
msgctxt "./krita/data/brushes/L_Coroballs.gbr"
msgid "L_Coroballs"
msgstr ""
#. +> stable5
#: i18ndata:172
#, kde-format
msgctxt "./krita/data/brushes/Sc_Scratches.gbr"
msgid "Sc_Scratches"
msgstr ""
#. +> stable5
#: i18ndata:174
#, kde-format
msgctxt "./krita/data/brushes/Sc_Scratches_3.gbr"
msgid "Sc_Scratches3"
msgstr ""
#. +> trunk5
-#: i18ndata:74
-#, kde-format
-msgctxt "./krita/data/brushes/texture51.gbr"
-msgid "texture51"
-msgstr ""
-
-#. +> stable5
-#: i18ndata:89
+#: i18ndata:73
#, kde-format
-msgctxt "./krita/data/brushes/T_Texture_5.gih"
-msgid "T_Texture 5"
+msgctxt "./krita/data/brushes/smear_paint.gbr"
+msgid "smear_paint"
msgstr ""
-#. +> stable5
-#: i18ndata:175
+#. +> trunk5
+#: i18ndata:74
#, kde-format
-msgctxt "./krita/data/brushes/T_Texture_1.gbr"
-msgid "T_Texture_1"
+msgctxt "./krita/data/brushes/spines.gbr"
+msgid "spines"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:75
#, kde-format
msgctxt "./krita/data/patterns/Crumpled_Paper.pat"
msgid "Canvas 04"
msgstr ""
#. +> stable5
#: i18ndata:192
#, kde-format
msgctxt "./krita/data/patterns/Canvas_covered.pat"
msgid "Canvas Covered"
msgstr ""
#. +> stable5
#: i18ndata:193
#, kde-format
msgctxt "./krita/data/patterns/Canvas_Hard.pat"
msgid "Canvas 01"
msgstr ""
#. +> stable5
#: i18ndata:194
#, kde-format
msgctxt "./krita/data/patterns/Canvas_small_01.pat"
msgid "Canvas 02"
msgstr ""
#. +> stable5
#: i18ndata:195
#, kde-format
msgctxt "./krita/data/patterns/Canvas_small_02.pat"
msgid "Canvas 03"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:76
#, kde-format
msgctxt "./krita/data/patterns/fractal_pattern.pat"
msgid "Fractal Pattern"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:77
#, kde-format
msgctxt "./krita/data/patterns/generic_paper1.pat"
msgid "Generic Paper 2"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:78
#, kde-format
msgctxt "./krita/data/patterns/generic_paper2.pat"
msgid "Generic Paper 3"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:79
#, kde-format
msgctxt "./krita/data/patterns/hexacolBW__2.pat"
msgid "Hexacol BW By Tarkan"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:80
#, kde-format
msgctxt "./krita/data/patterns/HR_PastelPaper_02.pat"
msgid "HR Pastel Paper 02"
msgstr ""
#. +> trunk5 stable5
#: i18ndata:81
#, kde-format
msgctxt "./krita/data/patterns/HR_Wall_Paper.pat"
msgid "HR Wall Paper"
msgstr ""
-#. +> stable5
-#: i18ndata:176
-#, kde-format
-msgctxt "./krita/data/brushes/Te_Techno_Angular_Cross.gbr"
-msgid "Te_Techno_Angular_Cross"
-msgstr ""
-
#. i18n: context: Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (ArtisticTextTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (ArtisticTextTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:4 krita/krita.action:1389
#, kde-format
msgctxt "action"
msgid "Artistic Text Tool"
msgstr ""
#. i18n: context: Action (artistictext_subscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_subscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_subscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_subscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (artistictext_subscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_subscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_sub), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_subscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_subscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:8
#: krita/data/actions/ArtisticTextTool.action:13
#: krita/data/actions/ReferencesTool.action:207
#: krita/data/actions/ReferencesTool.action:209
#: krita/data/actions/TextTool.action:108
#: krita/data/actions/TextTool.action:113
#: plugins/tools/svgtexttool/SvgTextTool.action:118
#: plugins/tools/svgtexttool/SvgTextTool.action:123
#, kde-format
msgctxt "action"
msgid "Subscript"
msgstr ""
#. i18n: context: Action (artistictext_detach_from_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_detach_from_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_detach_from_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_detach_from_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:18
#: krita/data/actions/ArtisticTextTool.action:23
#, kde-format
msgctxt "action"
msgid "Detach Path"
msgstr ""
#. i18n: context: Action (artistictext_font_italic), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_italic), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_italic), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_italic), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:28
#: krita/data/actions/ArtisticTextTool.action:33
#, kde-format
msgctxt "action"
msgid "Italic text"
msgstr ""
#. i18n: context: Action (artistictext_anchor_middle), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_middle), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_middle), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_middle), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:38
#: krita/data/actions/ArtisticTextTool.action:43
#, kde-format
msgctxt "action"
msgid "Anchor at Middle"
msgstr ""
#. i18n: context: Action (artistictext_anchor_end), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_end), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_end), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_end), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:48
#: krita/data/actions/ArtisticTextTool.action:53
#, kde-format
msgctxt "action"
msgid "Anchor at End"
msgstr ""
#. i18n: context: Action (artistictext_convert_to_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_convert_to_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_convert_to_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_convert_to_path), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:58
#: krita/data/actions/ArtisticTextTool.action:63
#, kde-format
msgctxt "action"
msgid "Convert to Path"
msgstr ""
#. i18n: context: Action (artistictext_anchor_start), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_start), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_start), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_anchor_start), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:68
#: krita/data/actions/ArtisticTextTool.action:73
#, kde-format
msgctxt "action"
msgid "Anchor at Start"
msgstr ""
#. i18n: context: Action (artistictext_font_bold), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_bold), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_bold), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_font_bold), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:78
#: krita/data/actions/ArtisticTextTool.action:83
#, kde-format
msgctxt "action"
msgid "Bold text"
msgstr ""
#. i18n: context: Action (edit_deselect_all), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (deselect), Actions (Select), ActionCollection (Menu)
#. i18n: context: Action (edit_deselect_all), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (deselect), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:88 krita/kritamenu.action:1176
#, kde-format
msgctxt "action"
msgid "Deselect"
msgstr ""
#. i18n: context: Action (edit_deselect_all), Actions (Artistic Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:93
#, kde-format
msgctxt "action"
msgid "Dese&lect"
msgstr ""
#. i18n: context: Action (artistictext_superscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_superscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_superscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_superscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (artistictext_superscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (artistictext_superscript), Actions (Artistic Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_super), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_superscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_superscript), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ArtisticTextTool.action:98
#: krita/data/actions/ArtisticTextTool.action:103
#: krita/data/actions/ReferencesTool.action:467
#: krita/data/actions/ReferencesTool.action:469
#: krita/data/actions/TextTool.action:318
#: krita/data/actions/TextTool.action:323
#: plugins/tools/svgtexttool/SvgTextTool.action:128
#: plugins/tools/svgtexttool/SvgTextTool.action:133
#, kde-format
msgctxt "action"
msgid "Superscript"
msgstr ""
#. i18n: context: Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:6
#, kde-format
msgctxt "action"
msgid "Connection Tool"
msgstr ""
#. i18n: context: Action (toggle-edit-mode), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (toggle-edit-mode), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (toggle-edit-mode), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (toggle-edit-mode), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:10
#: krita/data/actions/ConnectionTool.action:15
#, kde-format
msgctxt "action"
msgid "Edit connection points"
msgstr ""
#. i18n: context: Action (align-relative), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-relative), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-relative), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-relative), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:20
#: krita/data/actions/ConnectionTool.action:25
#, kde-format, no-c-format
msgctxt "action"
msgid "%"
msgstr ""
#. i18n: context: Action (align-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-left), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:30
#: krita/data/actions/ConnectionTool.action:35
#, kde-format
msgctxt "action"
msgid "Align to left edge"
msgstr ""
#. i18n: context: Action (align-centerh), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerh), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerh), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerh), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:40
#: krita/data/actions/ConnectionTool.action:45
#, kde-format
msgctxt "action"
msgid "Align to horizontal center"
msgstr ""
#. i18n: context: Action (align-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-right), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:50
#: krita/data/actions/ConnectionTool.action:55
#, kde-format
msgctxt "action"
msgid "Align to right edge"
msgstr ""
#. i18n: context: Action (align-top), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-top), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-top), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-top), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:60
#: krita/data/actions/ConnectionTool.action:65
#, kde-format
msgctxt "action"
msgid "Align to top edge"
msgstr ""
#. i18n: context: Action (align-centerv), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerv), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerv), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-centerv), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:70
#: krita/data/actions/ConnectionTool.action:75
#, kde-format
msgctxt "action"
msgid "Align to vertical center"
msgstr ""
#. i18n: context: Action (align-bottom), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-bottom), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-bottom), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (align-bottom), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:80
#: krita/data/actions/ConnectionTool.action:85
#, kde-format
msgctxt "action"
msgid "Align to bottom edge"
msgstr ""
#. i18n: context: Action (escape-all), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-all), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-all), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-all), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:90
#: krita/data/actions/ConnectionTool.action:95
#, kde-format
msgctxt "action"
msgid "Escape in all directions"
msgstr ""
#. i18n: context: Action (escape-horizontal), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-horizontal), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-horizontal), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-horizontal), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:100
#: krita/data/actions/ConnectionTool.action:105
#, kde-format
msgctxt "action"
msgid "Escape in horizontal directions"
msgstr ""
#. i18n: context: Action (escape-vertical), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-vertical), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-vertical), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-vertical), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:110
#: krita/data/actions/ConnectionTool.action:115
#, kde-format
msgctxt "action"
msgid "Escape in vertical directions"
msgstr ""
#. i18n: context: Action (escape-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-left), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-left), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:120
#: krita/data/actions/ConnectionTool.action:125
#, kde-format
msgctxt "action"
msgid "Escape in left direction"
msgstr ""
#. i18n: context: Action (escape-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-right), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-right), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:130
#: krita/data/actions/ConnectionTool.action:135
#, kde-format
msgctxt "action"
msgid "Escape in right direction"
msgstr ""
#. i18n: context: Action (escape-up), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-up), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-up), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-up), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:140
#: krita/data/actions/ConnectionTool.action:145
#, kde-format
msgctxt "action"
msgid "Escape in up direction"
msgstr ""
#. i18n: context: Action (escape-down), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-down), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-down), Actions (connection-tool), ActionCollection (Tools)
#. i18n: context: Action (escape-down), Actions (connection-tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ConnectionTool.action:150
#: krita/data/actions/ConnectionTool.action:155
#, kde-format
msgctxt "action"
msgid "Escape in down direction"
msgstr ""
#. i18n: context: Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:4
#, kde-format
msgctxt "action"
msgid "Interaction Tool"
msgstr ""
#. i18n: context: Action (object_order_raise), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:8
#, kde-format
msgctxt "action"
msgid "Raise"
msgstr ""
#. i18n: context: Action (object_order_raise), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:13
#, kde-format
msgctxt "action"
msgid "&Raise"
msgstr ""
#. i18n: context: Action (object_align_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_right), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_right), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (object_align_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignright), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_right), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_right), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:18
#: krita/data/actions/InteractionTool.action:23
#: krita/data/actions/ReferencesTool.action:417
#: krita/data/actions/ReferencesTool.action:419
#: krita/data/actions/TextTool.action:8 krita/data/actions/TextTool.action:13
#: plugins/tools/svgtexttool/SvgTextTool.action:58
#: plugins/tools/svgtexttool/SvgTextTool.action:63
#, kde-format
msgctxt "action"
msgid "Align Right"
msgstr ""
#. i18n: context: Action (object_ungroup), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_ungroup), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_ungroup), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_ungroup), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:28
#: krita/data/actions/InteractionTool.action:33
#, kde-format
msgctxt "action"
msgid "Ungroup"
msgstr ""
#. i18n: context: Action (object_order_back), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:38
#, kde-format
msgctxt "action"
msgid "Send to Back"
msgstr ""
#. i18n: context: Action (object_order_back), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:43
#, kde-format
msgctxt "action"
msgid "Send to &Back"
msgstr ""
#. i18n: context: Action (object_order_front), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:48
#, kde-format
msgctxt "action"
msgid "Bring to Front"
msgstr ""
#. i18n: context: Action (object_order_front), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:53
#, kde-format
msgctxt "action"
msgid "Bring to &Front"
msgstr ""
#. i18n: context: Action (object_align_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:58
#: krita/data/actions/InteractionTool.action:63
#, kde-format
msgctxt "action"
msgid "Vertically Center"
msgstr ""
#. i18n: context: Action (object_group), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_group), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_group), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_group), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:68
#: krita/data/actions/InteractionTool.action:73
#, kde-format
msgctxt "action"
msgid "Group"
msgstr ""
#. i18n: context: Action (object_align_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_left), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_left), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (object_align_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignleft), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_left), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_left), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:78
#: krita/data/actions/InteractionTool.action:83
#: krita/data/actions/ReferencesTool.action:527
#: krita/data/actions/ReferencesTool.action:529
#: krita/data/actions/TextTool.action:128
#: krita/data/actions/TextTool.action:133
#: plugins/tools/svgtexttool/SvgTextTool.action:68
#: plugins/tools/svgtexttool/SvgTextTool.action:73
#, kde-format
msgctxt "action"
msgid "Align Left"
msgstr ""
#. i18n: context: Action (object_align_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:88
#: krita/data/actions/InteractionTool.action:93
#, kde-format
msgctxt "action"
msgid "Align Top"
msgstr ""
#. i18n: context: Action (object_align_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:98
#: krita/data/actions/InteractionTool.action:103
#, kde-format
msgctxt "action"
msgid "Horizontally Center"
msgstr ""
#. i18n: context: Action (object_order_lower), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:108
#, kde-format
msgctxt "action"
msgid "Lower"
msgstr ""
#. i18n: context: Action (object_order_lower), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:113
#, kde-format
msgctxt "action"
msgid "&Lower"
msgstr ""
#. i18n: context: Action (object_align_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. i18n: context: Action (object_align_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/InteractionTool.action:118
#: krita/data/actions/InteractionTool.action:123
#, kde-format
msgctxt "action"
msgid "Align Bottom"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:127
#, kde-format
msgctxt "action"
msgid "Distribute Left"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_left), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:128
#, kde-format
msgctxt "action"
msgid "Distribute left edges equidistantly"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:136
#, kde-format
msgctxt "action"
msgid "Distribute Centers Horizontally"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:137
#, kde-format
msgctxt "action"
msgid "Distribute centers equidistantly horizontally"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:145
#, kde-format
msgctxt "action"
msgid "Distribute Right"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_right), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:146
#, kde-format
msgctxt "action"
msgid "Distribute right edges equidistantly"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_gaps), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:154
#, kde-format
msgctxt "action"
msgid "Distribute Horizontal Gap"
msgstr ""
#. i18n: context: Action (object_distribute_horizontal_gaps), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:155
#, kde-format
msgctxt "action"
msgid "Make horizontal gaps between objects equal"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:164
#, kde-format
msgctxt "action"
msgid "Distribute Top"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_top), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:165
#, kde-format
msgctxt "action"
msgid "Distribute top edges equidistantly"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:173
#, kde-format
msgctxt "action"
msgid "Distribute Centers Vertically"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_center), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:174
#, kde-format
msgctxt "action"
msgid "Distribute centers equidistantly vertically"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:182
#, kde-format
msgctxt "action"
msgid "Distribute Bottom"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_bottom), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:183
#, kde-format
msgctxt "action"
msgid "Distribute bottom edges equidistantly"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_gaps), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:191
#, kde-format
msgctxt "action"
msgid "Distribute Vertical Gap"
msgstr ""
#. i18n: context: Action (object_distribute_vertical_gaps), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:192
#, kde-format
msgctxt "action"
msgid "Make vertical gaps between objects equal"
msgstr ""
#. i18n: context: Action (object_transform_rotate_90_cw), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:201
#, kde-format
msgctxt "action"
msgid "Rotate 90° CW"
msgstr ""
#. i18n: context: Action (object_transform_rotate_90_cw), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:202
#, kde-format
msgctxt "action"
msgid "Rotate object 90° clockwise"
msgstr ""
#. i18n: context: Action (object_transform_rotate_90_ccw), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:211
#, kde-format
msgctxt "action"
msgid "Rotate 90° CCW"
msgstr ""
#. i18n: context: Action (object_transform_rotate_90_ccw), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:212
#, kde-format
msgctxt "action"
msgid "Rotate object 90° counterclockwise"
msgstr ""
#. i18n: context: Action (object_transform_rotate_180), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:221
#, kde-format
msgctxt "action"
msgid "Rotate 180°"
msgstr ""
#. i18n: context: Action (object_transform_rotate_180), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:222
#, kde-format
msgctxt "action"
msgid "Rotate object 180°"
msgstr ""
#. i18n: context: Action (object_transform_mirror_horizontally), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:231
#, kde-format
msgctxt "action"
msgid "Mirror Horizontally"
msgstr ""
#. i18n: context: Action (object_transform_mirror_horizontally), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:232
#, kde-format
msgctxt "action"
msgid "Mirror object horizontally"
msgstr ""
#. i18n: context: Action (object_transform_mirror_vertically), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:241
#, kde-format
msgctxt "action"
msgid "Mirror Vertically"
msgstr ""
#. i18n: context: Action (object_transform_mirror_vertically), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:242
#, kde-format
msgctxt "action"
msgid "Mirror object vertically"
msgstr ""
#. i18n: context: Action (object_transform_reset), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:251
#, kde-format
msgctxt "action"
msgid "Reset Transformations"
msgstr ""
#. i18n: context: Action (object_transform_reset), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:252
#, kde-format
msgctxt "action"
msgid "Reset object transformations"
msgstr ""
#. i18n: context: Action (object_unite), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:261
#, kde-format
msgctxt "action"
msgid "Unite"
msgstr ""
#. i18n: context: Action (object_unite), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:262
#, kde-format
msgctxt "action"
msgid "Create boolean onion of multiple objects"
msgstr ""
#. i18n: context: Action (object_intersect), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:271
#, kde-format
msgctxt "action"
msgid "Intersect"
msgstr ""
#. i18n: context: Action (object_intersect), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:272
#, kde-format
msgctxt "action"
msgid "Create boolean intersection of multiple objects"
msgstr ""
#. i18n: context: Action (object_subtract), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:281
#, kde-format
msgctxt "action"
msgid "Subtract"
msgstr ""
#. i18n: context: Action (object_subtract), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:282
#, kde-format
msgctxt "action"
msgid "Subtract multiple objects from the first selected one"
msgstr ""
#. i18n: context: Action (object_split), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:291
#, kde-format
msgctxt "action"
msgid "Split"
msgstr ""
#. i18n: context: Action (object_split), Actions (Interaction Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/InteractionTool.action:292
#, kde-format
msgctxt "action"
msgid "Split objects with multiple subpaths into multiple objects"
msgstr ""
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:4 krita/data/actions/PathTool.action:4
#: plugins/tools/basictools/KisToolPath.action:4
#, kde-format
msgctxt "action"
msgid "Path Tool"
msgstr ""
#. i18n: context: Action (movetool-move-up), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:8 krita/data/actions/MoveTool.action:13
#, kde-format
msgctxt "action"
msgid "Move up"
msgstr ""
#. i18n: context: Action (movetool-move-down), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:18 krita/data/actions/MoveTool.action:23
#, kde-format
msgctxt "action"
msgid "Move down"
msgstr ""
#. i18n: context: Action (movetool-show-coordinates), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:28
#, kde-format
msgctxt "action"
msgid "Show absolute coordinates and offset while move action"
msgstr ""
#. i18n: context: Action (movetool-show-coordinates), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:33
#, kde-format
msgctxt "action"
msgid "Show Coordinates"
msgstr ""
#. i18n: context: Action (movetool-move-left), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:38 krita/data/actions/MoveTool.action:43
#, kde-format
msgctxt "action"
msgid "Move left"
msgstr ""
#. i18n: context: Action (movetool-move-right), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-right-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-right), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-right-more), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:48 krita/data/actions/MoveTool.action:92
#, kde-format
msgctxt "action"
msgid "Move right"
msgstr ""
#. i18n: context: Action (movetool-move-up-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-up-more), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:57 krita/data/actions/MoveTool.action:62
#, kde-format
msgctxt "action"
msgid "Move up more"
msgstr ""
#. i18n: context: Action (movetool-move-down-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-down-more), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:67 krita/data/actions/MoveTool.action:72
#, kde-format
msgctxt "action"
msgid "Move down more"
msgstr ""
#. i18n: context: Action (movetool-move-left-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left-more), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (movetool-move-left-more), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:77 krita/data/actions/MoveTool.action:82
#, kde-format
msgctxt "action"
msgid "Move left more"
msgstr ""
#. i18n: context: Action (movetool-move-right-more), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/MoveTool.action:87
#, kde-format
msgctxt "action"
msgid "Move right more"
msgstr ""
#. i18n: context: Action (convert-to-path), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (convert-to-path), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (convert-to-path), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (convert-to-path), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:8 krita/data/actions/PathTool.action:13
#, kde-format
msgctxt "action"
msgid "To Path"
msgstr ""
#. i18n: context: Action (pathpoint-remove), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-remove), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-remove), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-remove), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:18 krita/data/actions/PathTool.action:23
#, kde-format
msgctxt "action"
msgid "Remove point"
msgstr ""
#. i18n: context: Action (path-break-segment), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-segment), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-segment), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-segment), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:28 krita/data/actions/PathTool.action:33
#, kde-format
msgctxt "action"
msgid "Break at segment"
msgstr ""
#. i18n: context: Action (pathsegment-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-line), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:38 krita/data/actions/PathTool.action:43
#, kde-format
msgctxt "action"
msgid "Segment to Line"
msgstr ""
#. i18n: context: Action (path-break-point), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-point), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-point), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (path-break-point), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:48 krita/data/actions/PathTool.action:53
#, kde-format
msgctxt "action"
msgid "Break at point"
msgstr ""
#. i18n: context: Action (pathpoint-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-line), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-line), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:58 krita/data/actions/PathTool.action:63
#, kde-format
msgctxt "action"
msgid "Make line point"
msgstr ""
#. i18n: context: Action (pathpoint-symmetric), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-symmetric), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-symmetric), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-symmetric), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:68 krita/data/actions/PathTool.action:73
#, kde-format
msgctxt "action"
msgid "Symmetric Point"
msgstr ""
#. i18n: context: Action (pathpoint-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-curve), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:78 krita/data/actions/PathTool.action:83
#, kde-format
msgctxt "action"
msgid "Make curve point"
msgstr ""
#. i18n: context: Action (pathsegment-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-curve), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathsegment-curve), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:88 krita/data/actions/PathTool.action:93
#, kde-format
msgctxt "action"
msgid "Segment to Curve"
msgstr ""
#. i18n: context: Action (pathpoint-insert), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-insert), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-insert), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-insert), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:98 krita/data/actions/PathTool.action:103
#, kde-format
msgctxt "action"
msgid "Insert point"
msgstr ""
#. i18n: context: Action (pathpoint-corner), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-corner), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-corner), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-corner), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:108
#: krita/data/actions/PathTool.action:113
#, kde-format
msgctxt "action"
msgid "Corner point"
msgstr ""
#. i18n: context: Action (pathpoint-merge), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-merge), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-merge), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-merge), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:118
#: krita/data/actions/PathTool.action:123
#, kde-format
msgctxt "action"
msgid "Merge points"
msgstr ""
#. i18n: context: Action (pathpoint-join), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-join), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-join), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-join), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:128
#: krita/data/actions/PathTool.action:133
#, kde-format
msgctxt "action"
msgid "Join with segment"
msgstr ""
#. i18n: context: Action (pathpoint-smooth), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-smooth), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-smooth), Actions (Path Tool), ActionCollection (Tools)
#. i18n: context: Action (pathpoint-smooth), Actions (Path Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/PathTool.action:138
#: krita/data/actions/PathTool.action:143
#, kde-format
msgctxt "action"
msgid "Smooth point"
msgstr ""
#. i18n: context: Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:4
#, kde-format
msgctxt "action"
msgid "References Tool"
msgstr ""
#. i18n: context: Action (insert_autofootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autofootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autofootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autofootnote), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:7
#: krita/data/actions/ReferencesTool.action:9
#, kde-format
msgctxt "action"
msgid "Insert footnote with auto number"
msgstr ""
#. i18n: context: Action (insert_configure_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:17
#, kde-format
msgctxt "action"
msgid "Insert Custom..."
msgstr ""
#. i18n: context: Action (insert_configure_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:19
#, kde-format
msgctxt "action"
msgid "Insert a custom Table of Contents into the document."
msgstr ""
#. i18n: context: Action (insert_labeledfootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledfootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledfootnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledfootnote), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:27
#: krita/data/actions/ReferencesTool.action:29
#, kde-format
msgctxt "action"
msgid "Insert Labeled Footnote"
msgstr ""
#. i18n: context: Action (edit_paste_text), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/ReferencesTool.action:37
#, kde-format
msgctxt "action"
msgid "Paste"
msgstr ""
#. i18n: context: Action (format_footnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_endnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_settings), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_footnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_endnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_settings), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:47
#: krita/data/actions/ReferencesTool.action:177
#: plugins/tools/svgtexttool/SvgTextTool.action:233
#, kde-format
msgctxt "action"
msgid "Settings..."
msgstr ""
#. i18n: context: Action (format_footnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_endnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (format_footnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_endnotes), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:49
#: krita/data/actions/ReferencesTool.action:179 krita/kritamenu.action:1521
#, kde-format
msgctxt "action"
msgid "Settings"
msgstr ""
#. i18n: context: Action (change_text_direction), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:57
#: krita/data/actions/TextTool.action:173
#, kde-format
msgctxt "action"
msgid "Change text direction"
msgstr ""
#. i18n: context: Action (change_text_direction), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (change_text_direction), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:59
#: krita/data/actions/TextTool.action:168
#, kde-format
msgctxt "action"
msgid "Change writing direction"
msgstr ""
#. i18n: context: Action (split_sections), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (split_sections), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (split_sections), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (split_sections), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (split_sections), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (split_sections), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:67
#: krita/data/actions/ReferencesTool.action:69
#: krita/data/actions/TextTool.action:268
#, kde-format
msgctxt "action"
msgid "Insert Paragraph between sections"
msgstr ""
#. i18n: context: Action (repaint), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (repaint), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:77
#: krita/data/actions/ReferencesTool.action:79
#: krita/data/actions/TextTool.action:408
#: krita/data/actions/TextTool.action:413
#, kde-format
msgctxt "action"
msgid "Repaint"
msgstr ""
#. i18n: context: Action (insert_link), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:87
#, kde-format
msgctxt "action"
msgid "Insert Link"
msgstr ""
#. i18n: context: Action (insert_link), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:89
#, kde-format
msgctxt "action"
msgid "Insert a weblink or link to a bookmark."
msgstr ""
#. i18n: context: Action (manage_bookmarks), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:97
#, kde-format
msgctxt "action"
msgid "Manage Bookmarks"
msgstr ""
#. i18n: context: Action (manage_bookmarks), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:99
#, kde-format
msgctxt "action"
msgid "Manage your Bookmarks. Check where are they pointing to, Delete or Rename."
msgstr ""
#. i18n: context: Action (format_stylist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:107
#: krita/data/actions/TextTool.action:353
#, kde-format
msgctxt "action"
msgid "Style Manager..."
msgstr ""
#. i18n: context: Action (format_stylist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_stylist), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:109
#: krita/data/actions/TextTool.action:348
#, kde-format
msgctxt "action"
msgid "Change attributes of styles"
msgstr ""
#. i18n: context: Action (format_font), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_font), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_font), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_font), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:117
#: krita/data/actions/TextTool.action:403
#: plugins/tools/svgtexttool/SvgTextTool.action:43
#, kde-format
msgctxt "action"
msgid "Font..."
msgstr ""
#. i18n: context: Action (format_font), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_font), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_font), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_font), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:119
#: krita/data/actions/TextTool.action:398
#: plugins/tools/svgtexttool/SvgTextTool.action:38
#, kde-format
msgctxt "action"
msgid "Change character size, font, boldface, italics etc."
msgstr ""
#. i18n: context: Action (format_fontsize), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_fontsize), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontsize), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:127
#: krita/data/actions/ReferencesTool.action:129
#: krita/data/actions/TextTool.action:278
#: krita/data/actions/TextTool.action:283
#: plugins/tools/svgtexttool/SvgTextTool.action:28
#: plugins/tools/svgtexttool/SvgTextTool.action:33
#, kde-format
msgctxt "action"
msgid "Font Size"
msgstr ""
#. i18n: context: Action (format_textcolor), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_textcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_textcolor), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_textcolor), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_textcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_textcolor), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:137
#: krita/data/actions/TextTool.action:43
#: plugins/tools/svgtexttool/SvgTextTool.action:13
#, kde-format
msgctxt "action"
msgid "Text Color"
msgstr ""
#. i18n: context: Action (format_alignblock), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_justified), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_justified), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_alignblock), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_alignblock), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_justified), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_justified), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:147
#: krita/data/actions/ReferencesTool.action:149
#: krita/data/actions/TextTool.action:358
#: krita/data/actions/TextTool.action:363
#: plugins/tools/svgtexttool/SvgTextTool.action:78
#: plugins/tools/svgtexttool/SvgTextTool.action:83
#, kde-format
msgctxt "action"
msgid "Align Block"
msgstr ""
#. i18n: context: Action (insert_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:157
#, kde-format
msgctxt "action"
msgid "Insert Bibliography"
msgstr ""
#. i18n: context: Action (insert_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:159
#, kde-format
msgctxt "action"
msgid "Insert a bibliography into the document."
msgstr ""
#. i18n: context: Action (insert_autoendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autoendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autoendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_autoendnote), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:167
#: krita/data/actions/ReferencesTool.action:169
#, kde-format
msgctxt "action"
msgid "Insert endnote with auto number"
msgstr ""
#. i18n: context: Action (invoke_bookmark_handler), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:187
#, kde-format
msgctxt "action"
msgid "Bookmarks"
msgstr ""
#. i18n: context: Action (invoke_bookmark_handler), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:189
#, kde-format
msgctxt "action"
msgid "Display a pop up that hosts the options to add new Bookmark or handle existing Bookmarks"
msgstr ""
#. i18n: context: Action (format_numberlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_numberlist), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:197
#: krita/data/actions/ReferencesTool.action:199
#: krita/data/actions/TextTool.action:338
#: krita/data/actions/TextTool.action:343
#, kde-format
msgctxt "action"
msgid "Numbered list"
msgstr ""
#. i18n: context: Action (fontsizedown), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_decrease_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_decrease_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (fontsizedown), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizedown), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_decrease_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_decrease_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:217
#: krita/data/actions/ReferencesTool.action:219
#: krita/data/actions/TextTool.action:248
#: krita/data/actions/TextTool.action:253
#: plugins/tools/svgtexttool/SvgTextTool.action:98
#: plugins/tools/svgtexttool/SvgTextTool.action:103
#, kde-format
msgctxt "action"
msgid "Decrease Font Size"
msgstr ""
#. i18n: context: Action (insert_citation), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:227
#, kde-format
msgctxt "action"
msgid "Insert Citation"
msgstr ""
#. i18n: context: Action (insert_citation), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:229
#, kde-format
msgctxt "action"
msgid "Insert a citation into the document."
msgstr ""
#. i18n: context: Action (configure_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (configure_section), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:237
#: krita/data/actions/ReferencesTool.action:239
#: krita/data/actions/TextTool.action:158
#: krita/data/actions/TextTool.action:163
#, kde-format
msgctxt "action"
msgid "Configure current section"
msgstr ""
#. i18n: context: Action (insert_index), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_index), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:247
#: krita/data/actions/ReferencesTool.action:249
#: krita/data/actions/TextTool.action:218
#: krita/data/actions/TextTool.action:223
#, kde-format
msgctxt "action"
msgid "Insert Index"
msgstr ""
#. i18n: context: Action (format_italic), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_italic), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_italic), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_italic), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_italic), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_italic), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_italic), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:257
#: krita/data/actions/ReferencesTool.action:259
#: krita/data/actions/TextTool.action:288
#: krita/data/actions/TextTool.action:293
#: plugins/tools/svgtexttool/SvgTextTool.action:168
#: plugins/tools/svgtexttool/SvgTextTool.action:173
#, kde-format
msgctxt "action"
msgid "Italic"
msgstr ""
#. i18n: context: Action (format_strike), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_strike_through), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_strike_through), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_strike), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_strike), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_strike_through), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_strike_through), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:267
#: krita/data/actions/ReferencesTool.action:269
#: krita/data/actions/TextTool.action:148
#: krita/data/actions/TextTool.action:153
#: plugins/tools/svgtexttool/SvgTextTool.action:148
#: plugins/tools/svgtexttool/SvgTextTool.action:153
#, kde-format
msgctxt "action"
msgid "Strikethrough"
msgstr ""
#. i18n: context: Action (insert_custom_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:277
#, kde-format
msgctxt "action"
msgid "Insert Custom Bibliography"
msgstr ""
#. i18n: context: Action (insert_custom_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:279
#, kde-format
msgctxt "action"
msgid "Insert a custom Bibliography into the document."
msgstr ""
#. i18n: context: Action (detailed_debug_styles), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_styles), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:287
#: krita/data/actions/ReferencesTool.action:289
#: krita/data/actions/TextTool.action:68 krita/data/actions/TextTool.action:73
#, kde-format
msgctxt "action"
msgid "Styles Debug"
msgstr ""
#. i18n: context: Action (format_bulletlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bulletlist), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:297
#: krita/data/actions/ReferencesTool.action:299
#: krita/data/actions/TextTool.action:208
#: krita/data/actions/TextTool.action:213
#, kde-format
msgctxt "action"
msgid "Bullet list"
msgstr ""
#. i18n: context: Action (format_underline), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_underline), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_underline), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_underline), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_underline), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_underline), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_format_underline), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:307
#: krita/data/actions/ReferencesTool.action:309
#: krita/data/actions/TextTool.action:88 krita/data/actions/TextTool.action:93
#: plugins/tools/svgtexttool/SvgTextTool.action:138
#: plugins/tools/svgtexttool/SvgTextTool.action:143
#, kde-format
msgctxt "action"
msgid "Underline"
msgstr ""
#. i18n: context: Action (format_aligncenter), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_center), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_center), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_aligncenter), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_aligncenter), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_align_center), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_align_center), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:317
#: krita/data/actions/ReferencesTool.action:319
#: krita/data/actions/TextTool.action:228
#: krita/data/actions/TextTool.action:233
#: plugins/tools/svgtexttool/SvgTextTool.action:88
#: plugins/tools/svgtexttool/SvgTextTool.action:93
#, kde-format
msgctxt "action"
msgid "Align Center"
msgstr ""
#. i18n: context: Action (shrink_to_fit), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (shrink_to_fit), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:327
#: krita/data/actions/ReferencesTool.action:329
#: krita/data/actions/TextTool.action:58 krita/data/actions/TextTool.action:63
#, kde-format
msgctxt "action"
msgid "Shrink To Fit"
msgstr ""
#. i18n: context: Action (edit_select_all), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (edit_select_all), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (select_all), Actions (Select), ActionCollection (Menu)
#. i18n: context: Action (edit_select_all), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (edit_select_all), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (select_all), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:337
#: krita/data/actions/TextTool.action:333 krita/kritamenu.action:1162
#, kde-format
msgctxt "action"
msgid "Select &All"
msgstr ""
#. i18n: context: Action (edit_select_all), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (edit_select_all), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (select_all), Actions (Select), ActionCollection (Menu)
#. i18n: context: Action (edit_select_all), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (edit_select_all), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (select_all), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:339
#: krita/data/actions/TextTool.action:328 krita/kritamenu.action:1164
#, kde-format
msgctxt "action"
msgid "Select All"
msgstr ""
#. i18n: context: Action (format_increaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_increaseindent), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:347
#: krita/data/actions/ReferencesTool.action:349
#: krita/data/actions/TextTool.action:78 krita/data/actions/TextTool.action:83
#, kde-format
msgctxt "action"
msgid "Increase Indent"
msgstr ""
#. i18n: context: Action (insert_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:357
#, kde-format
msgctxt "action"
msgid "Insert"
msgstr ""
#. i18n: context: Action (insert_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:359
#, kde-format
msgctxt "action"
msgid "Insert a Table of Contents into the document."
msgstr ""
#. i18n: context: Action (detailed_debug_paragraphs), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (detailed_debug_paragraphs), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:367
#: krita/data/actions/ReferencesTool.action:369
#: krita/data/actions/TextTool.action:378
#: krita/data/actions/TextTool.action:383
#, kde-format
msgctxt "action"
msgid "Paragraph Debug"
msgstr ""
#. i18n: context: Action (insert_labeledendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledendnote), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_labeledendnote), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:377
#: krita/data/actions/ReferencesTool.action:379
#, kde-format
msgctxt "action"
msgid "Insert Labeled Endnote"
msgstr ""
#. i18n: context: Action (format_paragraph), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:387
#: krita/data/actions/TextTool.action:33
#, kde-format
msgctxt "action"
msgid "Paragraph..."
msgstr ""
#. i18n: context: Action (format_paragraph), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_paragraph), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:389
#: krita/data/actions/TextTool.action:28
#, kde-format
msgctxt "action"
msgid "Change paragraph margins, text flow, borders, bullets, numbering etc."
msgstr ""
#. i18n: context: Action (nonbreaking_space), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_space), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:397
#: krita/data/actions/ReferencesTool.action:399
#: krita/data/actions/TextTool.action:178
#: krita/data/actions/TextTool.action:183
#, kde-format
msgctxt "action"
msgid "Insert Non-Breaking Space"
msgstr ""
#. i18n: context: Action (soft_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (soft_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:407
#: krita/data/actions/ReferencesTool.action:409
#: krita/data/actions/TextTool.action:188
#: krita/data/actions/TextTool.action:193
#, kde-format
msgctxt "action"
msgid "Insert Soft Hyphen"
msgstr ""
#. i18n: context: Action (nonbreaking_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (nonbreaking_hyphen), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:427
#: krita/data/actions/ReferencesTool.action:429
#: krita/data/actions/TextTool.action:118
#: krita/data/actions/TextTool.action:123
#, kde-format
msgctxt "action"
msgid "Insert Non-Breaking Hyphen"
msgstr ""
#. i18n: context: Action (format_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:437
#, kde-format
msgctxt "action"
msgid "Configure..."
msgstr ""
#. i18n: context: Action (format_tableofcontents), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:439
#, kde-format
msgctxt "action"
msgid "Configure the Table of Contents"
msgstr ""
#. i18n: context: Action (insert_specialchar), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_specialchar), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_insert_special_character), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (insert_specialchar), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_specialchar), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_insert_special_character), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:447
#: krita/data/actions/TextTool.action:53
#: plugins/tools/svgtexttool/SvgTextTool.action:53
#, kde-format
msgctxt "action"
msgid "Special Character..."
msgstr ""
#. i18n: context: Action (insert_specialchar), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_specialchar), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_insert_special_character), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (insert_specialchar), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_specialchar), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_insert_special_character), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:449
#: krita/data/actions/TextTool.action:48
#: plugins/tools/svgtexttool/SvgTextTool.action:48
#, kde-format
msgctxt "action"
msgid "Insert one or more symbols or characters not found on the keyboard"
msgstr ""
#. i18n: context: Action (format_bold), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_weight_bold), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_bold), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_bold), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_bold), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_weight_bold), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_bold), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:457
#: krita/data/actions/ReferencesTool.action:459
#: krita/data/actions/TextTool.action:298
#: krita/data/actions/TextTool.action:303
#: plugins/tools/svgtexttool/SvgTextTool.action:158
#: plugins/tools/svgtexttool/SvgTextTool.action:163
#, kde-format
msgctxt "action"
msgid "Bold"
msgstr ""
#. i18n: context: Action (configure_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:477
#, kde-format
msgctxt "action"
msgid "Configure"
msgstr ""
#. i18n: context: Action (configure_bibliography), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:479
#, kde-format
msgctxt "action"
msgid "Configure the bibliography"
msgstr ""
#. i18n: context: Action (insert_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_section), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:487
#: krita/data/actions/ReferencesTool.action:489
#: krita/data/actions/TextTool.action:258
#: krita/data/actions/TextTool.action:263
#, kde-format
msgctxt "action"
msgid "Insert new section"
msgstr ""
#. i18n: context: Action (format_decreaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_decreaseindent), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:497
#: krita/data/actions/ReferencesTool.action:499
#: krita/data/actions/TextTool.action:18 krita/data/actions/TextTool.action:23
#, kde-format
msgctxt "action"
msgid "Decrease Indent"
msgstr ""
#. i18n: context: Action (fontsizeup), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_increase_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_increase_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (fontsizeup), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (fontsizeup), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_increase_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_increase_font_size), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:507
#: krita/data/actions/ReferencesTool.action:509
#: krita/data/actions/TextTool.action:308
#: krita/data/actions/TextTool.action:313
#: plugins/tools/svgtexttool/SvgTextTool.action:108
#: plugins/tools/svgtexttool/SvgTextTool.action:113
#, kde-format
msgctxt "action"
msgid "Increase Font Size"
msgstr ""
#. i18n: context: Action (grow_to_fit_height), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_height), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:517
#: krita/data/actions/ReferencesTool.action:519
#: krita/data/actions/TextTool.action:368
#: krita/data/actions/TextTool.action:373
#, kde-format
msgctxt "action"
msgid "Grow To Fit Height"
msgstr ""
#. i18n: context: Action (insert_bookmark), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:537
#, kde-format
msgctxt "action"
msgid "Add Bookmark"
msgstr ""
#. i18n: context: Action (insert_bookmark), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:539
#, kde-format
msgctxt "action"
msgid "Insert a Bookmark. This is useful to create links that point to areas within the document"
msgstr ""
#. i18n: context: Action (insert_variable), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_variable), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:547
#: krita/data/actions/ReferencesTool.action:549
#: krita/data/actions/TextTool.action:198
#: krita/data/actions/TextTool.action:203
#, kde-format
msgctxt "action"
msgid "Variable"
msgstr ""
#. i18n: context: Action (grow_to_fit_width), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (grow_to_fit_width), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:557
#: krita/data/actions/ReferencesTool.action:559
#: krita/data/actions/TextTool.action:98 krita/data/actions/TextTool.action:103
#, kde-format
msgctxt "action"
msgid "Grow To Fit Width"
msgstr ""
#. i18n: context: Action (format_fontfamily), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (format_fontfamily), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:567
#: krita/data/actions/ReferencesTool.action:569
#: krita/data/actions/TextTool.action:388
#: krita/data/actions/TextTool.action:393
#, kde-format
msgctxt "action"
msgid "Font Family"
msgstr ""
#. i18n: context: Action (insert_annotation), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (References Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (insert_annotation), Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/ReferencesTool.action:577
#: krita/data/actions/ReferencesTool.action:579
#: krita/data/actions/TextTool.action:138
#: krita/data/actions/TextTool.action:143
#, kde-format
msgctxt "action"
msgid "Insert Comment"
msgstr ""
#. i18n: context: Action (format_backgroundcolor), Actions (References Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/data/actions/ReferencesTool.action:587
#, kde-format
msgctxt "action"
msgid "Background Color"
msgstr ""
#. i18n: context: Actions (Text Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/data/actions/TextTool.action:4
#, kde-format
msgctxt "action"
msgid "Text Tool"
msgstr ""
#. i18n: context: Action (format_textcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_textcolor), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_textcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_format_textcolor), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/TextTool.action:38
#: plugins/tools/svgtexttool/SvgTextTool.action:8
#, kde-format
msgctxt "action"
msgid "Text Color..."
msgstr ""
#. i18n: context: Action (format_backgroundcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_background_color), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_backgroundcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_background_color), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/TextTool.action:238
#: plugins/tools/svgtexttool/SvgTextTool.action:18
#, kde-format
msgctxt "action"
msgid "Background Color..."
msgstr ""
#. i18n: context: Action (format_backgroundcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_background_color), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (format_backgroundcolor), Actions (Text Tool), ActionCollection (Tools)
#. i18n: context: Action (svg_background_color), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5 stable5
#: krita/data/actions/TextTool.action:243
#: plugins/tools/svgtexttool/SvgTextTool.action:23
#, kde-format
msgctxt "action"
msgid "Background"
msgstr ""
#. i18n: context: Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:4
#, kde-format
msgctxt "action"
msgid "General"
msgstr ""
#. i18n: context: Action (open_resources_directory), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:7
#, kde-format
msgctxt "action"
msgid "Open Resources Folder"
msgstr ""
#. i18n: context: Action (open_resources_directory), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:9
#, kde-format
msgctxt "action"
msgid "Opens a file browser at the location Krita saves resources such as brushes to."
msgstr ""
#. i18n: context: Action (edit_blacklist_cleanup), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:19
#, kde-format
msgctxt "action"
msgid "Cleanup removed files..."
msgstr ""
#. i18n: context: Action (edit_blacklist_cleanup), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:21
#, kde-format
msgctxt "action"
msgid "Cleanup removed files"
msgstr ""
#. i18n: context: Action (windows_cascade), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:31
#, kde-format
msgctxt "action"
msgid "C&ascade"
msgstr ""
#. i18n: context: Action (windows_cascade), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:33
#, kde-format
msgctxt "action"
msgid "Cascade"
msgstr ""
#. i18n: context: Action (windows_tile), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:43
#, kde-format
msgctxt "action"
msgid "&Tile"
msgstr ""
#. i18n: context: Action (windows_tile), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:45
#, kde-format
msgctxt "action"
msgid "Tile"
msgstr ""
#. i18n: context: Action (create_bundle), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:55
#, kde-format
msgctxt "action"
msgid "Create Resource Bundle..."
msgstr ""
#. i18n: context: Action (create_bundle), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:57
#, kde-format
msgctxt "action"
msgid "Create Resource Bundle"
msgstr ""
#. i18n: context: Action (mainToolBar), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (mainToolBar), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (mainToolBar), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (mainToolBar), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:67 krita/krita.action:69
#, kde-format
msgctxt "action"
msgid "Show File Toolbar"
msgstr ""
#. i18n: context: Action (show_color_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_selector), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:78 krita/krita.action:80
#, kde-format
msgctxt "action"
msgid "Show color selector"
msgstr ""
#. i18n: context: Action (show_mypaint_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_mypaint_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_mypaint_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_mypaint_shade_selector), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:88 krita/krita.action:90
#, kde-format
msgctxt "action"
msgid "Show MyPaint shade selector"
msgstr ""
#. i18n: context: Action (show_minimal_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_minimal_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_minimal_shade_selector), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_minimal_shade_selector), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:98 krita/krita.action:100
#, kde-format
msgctxt "action"
msgid "Show minimal shade selector"
msgstr ""
#. i18n: context: Action (show_color_history), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_history), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_history), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_color_history), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:108 krita/krita.action:110
#, kde-format
msgctxt "action"
msgid "Show color history"
msgstr ""
#. i18n: context: Action (show_common_colors), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_common_colors), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_common_colors), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_common_colors), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:118 krita/krita.action:120
#, kde-format
msgctxt "action"
msgid "Show common colors"
msgstr ""
#. i18n: context: Action (show_tool_options), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_tool_options), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_tool_options), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_tool_options), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:128 krita/krita.action:130
#, kde-format
msgctxt "action"
msgid "Show Tool Options"
msgstr ""
#. i18n: context: Action (show_brush_editor), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_editor), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_editor), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_editor), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:138 krita/krita.action:140
#, kde-format
msgctxt "action"
msgid "Show Brush Editor"
msgstr ""
#. i18n: context: Action (show_brush_presets), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_presets), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_presets), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (show_brush_presets), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:148 krita/krita.action:150
#, kde-format
msgctxt "action"
msgid "Show Brush Presets"
msgstr ""
#. i18n: context: Action (tablet_debugger), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (tablet_debugger), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (tablet_debugger), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (tablet_debugger), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:158 krita/krita.action:160
#, kde-format
msgctxt "action"
msgid "Toggle Tablet Debugger"
msgstr ""
#. i18n: context: Action (buginfo), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (buginfo), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (buginfo), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (buginfo), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:173 krita/krita.action:175
#, kde-format
msgctxt "action"
msgid "Show system information for bug reports."
msgstr ""
#. i18n: context: Action (rename_composition), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:185
#, kde-format
msgctxt "action"
msgid "Rename Composition..."
msgstr ""
#. i18n: context: Action (rename_composition), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:187
#, kde-format
msgctxt "action"
msgid "Rename Composition"
msgstr ""
#. i18n: context: Action (update_composition), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (update_composition), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (update_composition), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (update_composition), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:197 krita/krita.action:199
#, kde-format
msgctxt "action"
msgid "Update Composition"
msgstr ""
#. i18n: context: Action (ruler_pixel_multiple2), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (ruler_pixel_multiple2), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (ruler_pixel_multiple2), Actions (General), ActionCollection (Krita)
#. i18n: context: Action (ruler_pixel_multiple2), Actions (General), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:209 krita/krita.action:211
#, kde-format
msgctxt "action"
msgid "Use multiple of 2 for pixel scale"
msgstr ""
#. i18n: context: Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:222
#, kde-format
msgctxt "action"
msgid "Painting"
msgstr ""
#. i18n: context: Action (make_brush_color_lighter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_lighter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_lighter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_lighter), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:225 krita/krita.action:227
#, kde-format
msgctxt "action"
msgid "Make brush color lighter"
msgstr ""
#. i18n: context: Action (make_brush_color_darker), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_darker), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_darker), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_darker), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:237 krita/krita.action:239
#, kde-format
msgctxt "action"
msgid "Make brush color darker"
msgstr ""
#. i18n: context: Action (make_brush_color_saturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_saturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_saturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_saturated), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:249 krita/krita.action:251
#, kde-format
msgctxt "action"
msgid "Make brush color more saturated"
msgstr ""
#. i18n: context: Action (make_brush_color_desaturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_desaturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_desaturated), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_desaturated), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:259 krita/krita.action:261
#, kde-format
msgctxt "action"
msgid "Make brush color more desaturated"
msgstr ""
#. i18n: context: Action (shift_brush_color_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_clockwise), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:269 krita/krita.action:271
#, kde-format
msgctxt "action"
msgid "Shift brush color hue clockwise"
msgstr ""
#. i18n: context: Action (shift_brush_color_counter_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_counter_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_counter_clockwise), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (shift_brush_color_counter_clockwise), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:279 krita/krita.action:281
#, kde-format
msgctxt "action"
msgid "Shift brush color hue counter-clockwise"
msgstr ""
#. i18n: context: Action (make_brush_color_redder), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_redder), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_redder), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_redder), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:289 krita/krita.action:291
#, kde-format
msgctxt "action"
msgid "Make brush color more red"
msgstr ""
#. i18n: context: Action (make_brush_color_greener), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_greener), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_greener), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_greener), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:299 krita/krita.action:301
#, kde-format
msgctxt "action"
msgid "Make brush color more green"
msgstr ""
#. i18n: context: Action (make_brush_color_bluer), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_bluer), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_bluer), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_bluer), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:309 krita/krita.action:311
#, kde-format
msgctxt "action"
msgid "Make brush color more blue"
msgstr ""
#. i18n: context: Action (make_brush_color_yellower), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_yellower), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_yellower), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (make_brush_color_yellower), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:319 krita/krita.action:321
#, kde-format
msgctxt "action"
msgid "Make brush color more yellow"
msgstr ""
#. i18n: context: Action (increase_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_opacity), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:329 krita/krita.action:331
#, kde-format
msgctxt "action"
msgid "Increase opacity"
msgstr ""
#. i18n: context: Action (decrease_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_opacity), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:341 krita/krita.action:343
#, kde-format
msgctxt "action"
msgid "Decrease opacity"
msgstr ""
#. i18n: context: Action (erase_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (erase_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (erase_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (erase_action), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:353 krita/krita.action:355
#, kde-format
msgctxt "action"
msgid "Set eraser mode"
msgstr ""
#. i18n: context: Action (reload_preset_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reload_preset_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reload_preset_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reload_preset_action), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:365 krita/krita.action:367
#, kde-format
msgctxt "action"
msgid "Reload Original Preset"
msgstr ""
#. i18n: context: Action (preserve_alpha), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (preserve_alpha), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (preserve_alpha), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (preserve_alpha), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:376 krita/krita.action:378
#, kde-format
msgctxt "action"
msgid "Preserve Alpha"
msgstr ""
#. i18n: context: Action (disable_pressure), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (disable_pressure), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (disable_pressure), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (disable_pressure), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:387 krita/krita.action:389
#, kde-format
msgctxt "action"
msgid "Use Pen Pressure"
msgstr ""
#. i18n: context: Action (hmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (hmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (hmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (hmirror_action), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:398 krita/krita.action:400
#, kde-format
msgctxt "action"
msgid "Horizontal Mirror Tool"
msgstr ""
#. i18n: context: Action (vmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (vmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (vmirror_action), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (vmirror_action), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:409 krita/krita.action:411
#, kde-format
msgctxt "action"
msgid "Vertical Mirror Tool"
msgstr ""
#. i18n: context: Action (mirrorX-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorX-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorX-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorX-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:420 krita/krita.action:422
#, kde-format
msgctxt "action"
msgid "Hide Mirror X Line"
msgstr ""
#. i18n: context: Action (mirrorY-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-hideDecorations), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:431 krita/krita.action:433
#, kde-format
msgctxt "action"
msgid "Hide Mirror Y Line"
msgstr ""
#. i18n: context: Action (mirrorX-lock), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:442
#, kde-format
msgctxt "action"
msgid "Lock"
msgstr ""
#. i18n: context: Action (mirrorX-lock), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:444
#, kde-format
msgctxt "action"
msgid "Lock X Line"
msgstr ""
#. i18n: context: Action (mirrorY-lock), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-lock), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-lock), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-lock), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:453 krita/krita.action:455
#, kde-format
msgctxt "action"
msgid "Lock Y Line"
msgstr ""
#. i18n: context: Action (mirrorX-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:464
#, kde-format
msgctxt "action"
msgid "Move to Canvas Center"
msgstr ""
#. i18n: context: Action (mirrorX-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:466
#, kde-format
msgctxt "action"
msgid "Move to Canvas Center X"
msgstr ""
#. i18n: context: Action (mirrorY-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (mirrorY-moveToCenter), Actions (Painting), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:475 krita/krita.action:477
#, kde-format
msgctxt "action"
msgid "Move to Canvas Center Y"
msgstr ""
#. i18n: context: Action (invert), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:486
#, kde-format
msgctxt "action"
msgid "&Invert Selection"
msgstr ""
#. i18n: context: Action (invert), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:488
#, kde-format
msgctxt "action"
msgid "Invert current selection"
msgstr ""
#. i18n: context: Action (toggle-selection-overlay-mode), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:498
#, kde-format
msgctxt "action"
msgid "&Toggle Selection Display Mode"
msgstr ""
#. i18n: context: Action (toggle-selection-overlay-mode), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:500
#, kde-format
msgctxt "action"
msgid "Toggle Selection Display Mode"
msgstr ""
#. i18n: context: Action (next_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (next_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (next_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (next_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:510 krita/krita.action:512
#, kde-format
msgctxt "action"
msgid "Next Favourite Preset"
msgstr ""
#. i18n: context: Action (previous_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_favorite_preset), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:520 krita/krita.action:522
#, kde-format
msgctxt "action"
msgid "Previous Favourite Preset"
msgstr ""
#. i18n: context: Action (previous_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_preset), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (previous_preset), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:530 krita/krita.action:532
#, kde-format
msgctxt "action"
msgid "Switch to Previous Preset"
msgstr ""
#. i18n: context: Action (BrushesAndStuff), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (BrushesAndStuff), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (BrushesAndStuff), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (BrushesAndStuff), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:540 krita/krita.action:542
#, kde-format
msgctxt "action"
msgid "Hide Brushes and Stuff Toolbar"
msgstr ""
#. i18n: context: Action (reset_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reset_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reset_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (reset_fg_bg), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:550 krita/krita.action:552
#, kde-format
msgctxt "action"
msgid "Reset Foreground and Background Color"
msgstr ""
#. i18n: context: Action (toggle_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_fg_bg), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_fg_bg), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:560 krita/krita.action:562
#, kde-format
msgctxt "action"
msgid "Swap Foreground and Background Color"
msgstr ""
#. i18n: context: Action (set_weighted_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_weighted_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_weighted_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_weighted_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:570 krita/krita.action:572
#, kde-format
msgctxt "action"
msgid "Brush Smoothing: Weighted"
msgstr ""
#. i18n: context: Action (set_no_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_no_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_no_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_no_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:580 krita/krita.action:582
#, kde-format
msgctxt "action"
msgid "Brush Smoothing: Disabled"
msgstr ""
#. i18n: context: Action (set_stabilizer_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_stabilizer_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_stabilizer_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_stabilizer_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:590 krita/krita.action:592
#, kde-format
msgctxt "action"
msgid "Brush Smoothing: Stabilizer"
msgstr ""
#. i18n: context: Action (decrease_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (decrease_brush_size), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:600 krita/krita.action:602
#, kde-format
msgctxt "action"
msgid "Decrease Brush Size"
msgstr ""
#. i18n: context: Action (set_simple_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_simple_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_simple_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (set_simple_brush_smoothing), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:612 krita/krita.action:614
#, kde-format
msgctxt "action"
msgid "Brush Smoothing: Basic"
msgstr ""
#. i18n: context: Action (increase_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_brush_size), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (increase_brush_size), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:622 krita/krita.action:624
#, kde-format
msgctxt "action"
msgid "Increase Brush Size"
msgstr ""
#. i18n: context: Action (toggle_assistant), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_assistant), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_assistant), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (toggle_assistant), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:634 krita/krita.action:636
#, kde-format
msgctxt "action"
msgid "Toggle Assistant"
msgstr ""
#. i18n: context: Action (undo_polygon_selection), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (undo_polygon_selection), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (undo_polygon_selection), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (undo_polygon_selection), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:644 krita/krita.action:646
#, kde-format
msgctxt "action"
msgid "Undo Polygon Selection Points"
msgstr ""
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_foreground_color_opacity), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:654 krita/krita.action:656 krita/kritamenu.action:447
#: krita/kritamenu.action:449
#, kde-format
msgctxt "action"
msgid "Fill with Foreground Color (Opacity)"
msgstr ""
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_background_color_opacity), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:666 krita/krita.action:668 krita/kritamenu.action:459
#: krita/kritamenu.action:461
#, kde-format
msgctxt "action"
msgid "Fill with Background Color (Opacity)"
msgstr ""
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (fill_selection_pattern_opacity), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:678 krita/krita.action:680 krita/kritamenu.action:471
#: krita/kritamenu.action:473
#, kde-format
msgctxt "action"
msgid "Fill with Pattern (Opacity)"
msgstr ""
#. i18n: context: Action (convert_selection_to_shape), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:690
#, kde-format
msgctxt "action"
msgid "Convert &to Shape"
msgstr ""
#. i18n: context: Action (convert_selection_to_shape), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:692
#, kde-format
msgctxt "action"
msgid "Convert to Shape"
msgstr ""
#. i18n: context: Action (select_opaque), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:702
#, kde-format
msgctxt "action"
msgid "&Select Opaque"
msgstr ""
#. i18n: context: Action (selectopaque), Actions (Select), ActionCollection (Menu)
#. i18n: context: Action (select_opaque), Actions (Painting), ActionCollection (Krita)
#. i18n: context: Action (selectopaque), Actions (Select), ActionCollection (Menu)
#. i18n: context: Action (select_opaque), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:704 krita/kritamenu.action:1284
#, kde-format
msgctxt "action"
msgid "Select Opaque"
msgstr ""
#. i18n: context: Action (show-global-selection-mask), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:714
#, kde-format
msgctxt "action"
msgid "&Show Global Selection Mask"
msgstr ""
#. i18n: context: Action (show-global-selection-mask), Actions (Painting), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:716
#, kde-format
msgctxt "action"
msgid "Shows global selection as a usual selection mask in <interface>Layers</interface> docker"
msgstr ""
#. i18n: context: Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:727
#, kde-format
msgctxt "action"
msgid "Filters"
msgstr ""
#. i18n: context: Action (krita_filter_colortoalpha), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:730
#, kde-format
msgctxt "action"
msgid "&Color to Alpha..."
msgstr ""
#. i18n: context: Action (krita_filter_colortoalpha), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:732
#, kde-format
msgctxt "action"
msgid "Color to Alpha"
msgstr ""
#. i18n: context: Action (krita_filter_top edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:742
#, kde-format
msgctxt "action"
msgid "&Top Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_top edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:744
#, kde-format
msgctxt "action"
msgid "Top Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_indexcolors), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:754
#, kde-format
msgctxt "action"
msgid "&Index Colors..."
msgstr ""
#. i18n: context: Action (krita_filter_indexcolors), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:756
#, kde-format
msgctxt "action"
msgid "Index Colors"
msgstr ""
#. i18n: context: Action (krita_filter_emboss horizontal only), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:766
#, kde-format
msgctxt "action"
msgid "Emboss Horizontal &Only"
msgstr ""
#. i18n: context: Action (krita_filter_emboss horizontal only), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:768
#, kde-format
msgctxt "action"
msgid "Emboss Horizontal Only"
msgstr ""
#. i18n: context: Action (krita_filter_dodge), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:778
#, kde-format
msgctxt "action"
msgid "D&odge"
msgstr ""
#. i18n: context: Action (krita_filter_dodge), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:780
#, kde-format
msgctxt "action"
msgid "Dodge"
msgstr ""
#. i18n: context: Action (krita_filter_sharpen), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:790
#, kde-format
msgctxt "action"
msgid "&Sharpen"
msgstr ""
#. i18n: context: Action (krita_filter_sharpen), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:792
#, kde-format
msgctxt "action"
msgid "Sharpen"
msgstr ""
#. i18n: context: Action (krita_filter_burn), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:802
#, kde-format
msgctxt "action"
msgid "B&urn"
msgstr ""
#. i18n: context: Action (krita_filter_burn), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:804
#, kde-format
msgctxt "action"
msgid "Burn"
msgstr ""
#. i18n: context: Action (krita_filter_mean removal), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:814
#, kde-format
msgctxt "action"
msgid "&Mean Removal"
msgstr ""
#. i18n: context: Action (krita_filter_mean removal), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:816
#, kde-format
msgctxt "action"
msgid "Mean Removal"
msgstr ""
#. i18n: context: Action (krita_filter_gaussian blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:826
#, kde-format
msgctxt "action"
msgid "&Gaussian Blur..."
msgstr ""
#. i18n: context: Action (krita_filter_gaussian blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:828
#, kde-format
msgctxt "action"
msgid "Gaussian Blur"
msgstr ""
#. i18n: context: Action (krita_filter_emboss all directions), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:838
#, kde-format
msgctxt "action"
msgid "Emboss &in All Directions"
msgstr ""
#. i18n: context: Action (krita_filter_emboss all directions), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:840
#, kde-format
msgctxt "action"
msgid "Emboss in All Directions"
msgstr ""
#. i18n: context: Action (krita_filter_smalltiles), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:850
#, kde-format
msgctxt "action"
msgid "&Small Tiles..."
msgstr ""
#. i18n: context: Action (krita_filter_smalltiles), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:852
#, kde-format
msgctxt "action"
msgid "Small Tiles"
msgstr ""
#. i18n: context: Action (krita_filter_levels), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:862
#, kde-format
msgctxt "action"
msgid "&Levels..."
msgstr ""
#. i18n: context: Action (krita_filter_levels), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:864
#, kde-format
msgctxt "action"
msgid "Levels"
msgstr ""
#. i18n: context: Action (krita_filter_sobel), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:874
#, kde-format
msgctxt "action"
msgid "&Sobel..."
msgstr ""
#. i18n: context: Action (krita_filter_sobel), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:876
#, kde-format
msgctxt "action"
msgid "Sobel"
msgstr ""
#. i18n: context: Action (krita_filter_wave), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:886
#, kde-format
msgctxt "action"
msgid "&Wave..."
msgstr ""
#. i18n: context: Action (krita_filter_wave), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:888
#, kde-format
msgctxt "action"
msgid "Wave"
msgstr ""
#. i18n: context: Action (krita_filter_motion blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:898
#, kde-format
msgctxt "action"
msgid "&Motion Blur..."
msgstr ""
#. i18n: context: Action (krita_filter_motion blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:900
#, kde-format
msgctxt "action"
msgid "Motion Blur"
msgstr ""
#. i18n: context: Action (krita_filter_perchannel), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:910
#, kde-format
msgctxt "action"
msgid "&Color Adjustment curves..."
msgstr ""
#. i18n: context: Action (krita_filter_perchannel), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:912
#, kde-format
msgctxt "action"
msgid "Color Adjustment curves"
msgstr ""
#. i18n: context: Action (krita_filter_pixelize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:922
#, kde-format
msgctxt "action"
msgid "Pi&xelize..."
msgstr ""
#. i18n: context: Action (krita_filter_pixelize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:924
#, kde-format
msgctxt "action"
msgid "Pixelize"
msgstr ""
#. i18n: context: Action (krita_filter_emboss laplascian), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:934
#, kde-format
msgctxt "action"
msgid "Emboss (&Laplacian)"
msgstr ""
#. i18n: context: Action (krita_filter_emboss laplascian), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:936
#, kde-format
msgctxt "action"
msgid "Emboss (Laplacian)"
msgstr ""
#. i18n: context: Action (krita_filter_left edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:946
#, kde-format
msgctxt "action"
msgid "&Left Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_left edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:948
#, kde-format
msgctxt "action"
msgid "Left Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:958
#, kde-format
msgctxt "action"
msgid "&Blur..."
msgstr ""
#. i18n: context: Action (blur_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (blur_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (krita_filter_blur), Actions (Filters), ActionCollection (Krita)
#. i18n: context: Action (blur_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (blur_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (krita_filter_blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:960 krita/kritamenu.action:1378
#: krita/kritamenu.action:1380
#, kde-format
msgctxt "action"
msgid "Blur"
msgstr ""
#. i18n: context: Action (krita_filter_raindrops), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:970
#, kde-format
msgctxt "action"
msgid "&Raindrops..."
msgstr ""
#. i18n: context: Action (krita_filter_raindrops), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:972
#, kde-format
msgctxt "action"
msgid "Raindrops"
msgstr ""
#. i18n: context: Action (krita_filter_bottom edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:982
#, kde-format
msgctxt "action"
msgid "&Bottom Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_bottom edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:984
#, kde-format
msgctxt "action"
msgid "Bottom Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_noise), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:994
#, kde-format
msgctxt "action"
msgid "&Random Noise..."
msgstr ""
#. i18n: context: Action (krita_filter_noise), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:996
#, kde-format
msgctxt "action"
msgid "Random Noise"
msgstr ""
#. i18n: context: Action (krita_filter_brightnesscontrast), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1006
#, kde-format
msgctxt "action"
msgid "&Brightness/Contrast curve..."
msgstr ""
#. i18n: context: Action (krita_filter_brightnesscontrast), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1008
#, kde-format
msgctxt "action"
msgid "Brightness/Contrast curve"
msgstr ""
#. i18n: context: Action (krita_filter_colorbalance), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1018
#, kde-format
msgctxt "action"
msgid "Colo&r Balance.."
msgstr ""
#. i18n: context: Action (krita_filter_colorbalance), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1020
#, kde-format
msgctxt "action"
msgid "Color Balance.."
msgstr ""
#. i18n: context: Action (krita_filter_phongbumpmap), Actions (Filters), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:1030
#, kde-format
msgctxt "action"
msgid "&Phong Bumpmap..."
msgstr ""
#. i18n: context: Action (krita_filter_phongbumpmap), Actions (Filters), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:1007
#, kde-format
msgctxt "action"
msgid "&PhongBumpmap..."
msgstr ""
#. i18n: context: Action (krita_filter_phongbumpmap), Actions (Filters), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:1032
#, kde-format
msgctxt "action"
msgid "Phong Bumpmap"
msgstr ""
#. i18n: context: Action (krita_filter_phongbumpmap), Actions (Filters), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:1009
#, kde-format
msgctxt "action"
msgid "PhongBumpmap"
msgstr ""
#. i18n: context: Action (krita_filter_desaturate), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1042
#, kde-format
msgctxt "action"
msgid "&Desaturate"
msgstr ""
#. i18n: context: Action (krita_filter_desaturate), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1044
#, kde-format
msgctxt "action"
msgid "Desaturate"
msgstr ""
#. i18n: context: Action (krita_filter_colortransfer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1054
#, kde-format
msgctxt "action"
msgid "Color &Transfer..."
msgstr ""
#. i18n: context: Action (krita_filter_colortransfer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1056
#, kde-format
msgctxt "action"
msgid "Color Transfer"
msgstr ""
#. i18n: context: Action (krita_filter_emboss vertical only), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1066
#, kde-format
msgctxt "action"
msgid "Emboss &Vertical Only"
msgstr ""
#. i18n: context: Action (krita_filter_emboss vertical only), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1068
#, kde-format
msgctxt "action"
msgid "Emboss Vertical Only"
msgstr ""
#. i18n: context: Action (krita_filter_lens blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1078
#, kde-format
msgctxt "action"
msgid "&Lens Blur..."
msgstr ""
#. i18n: context: Action (krita_filter_lens blur), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1080
#, kde-format
msgctxt "action"
msgid "Lens Blur"
msgstr ""
#. i18n: context: Action (krita_filter_minimize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1090
#, kde-format
msgctxt "action"
msgid "M&inimize Channel"
msgstr ""
#. i18n: context: Action (krita_filter_minimize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1092
#, kde-format
msgctxt "action"
msgid "Minimize Channel"
msgstr ""
#. i18n: context: Action (krita_filter_maximize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1102
#, kde-format
msgctxt "action"
msgid "M&aximize Channel"
msgstr ""
#. i18n: context: Action (krita_filter_maximize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1104
#, kde-format
msgctxt "action"
msgid "Maximize Channel"
msgstr ""
#. i18n: context: Action (krita_filter_oilpaint), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1114
#, kde-format
msgctxt "action"
msgid "&Oilpaint..."
msgstr ""
#. i18n: context: Action (krita_filter_oilpaint), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1116
#, kde-format
msgctxt "action"
msgid "Oilpaint"
msgstr ""
#. i18n: context: Action (krita_filter_right edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1126
#, kde-format
msgctxt "action"
msgid "&Right Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_right edge detections), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1128
#, kde-format
msgctxt "action"
msgid "Right Edge Detection"
msgstr ""
#. i18n: context: Action (krita_filter_autocontrast), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1138
#, kde-format
msgctxt "action"
msgid "&Auto Contrast"
msgstr ""
#. i18n: context: Action (krita_filter_autocontrast), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1140
#, kde-format
msgctxt "action"
msgid "Auto Contrast"
msgstr ""
#. i18n: context: Action (krita_filter_roundcorners), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1150
#, kde-format
msgctxt "action"
msgid "&Round Corners..."
msgstr ""
#. i18n: context: Action (krita_filter_roundcorners), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1152
#, kde-format
msgctxt "action"
msgid "Round Corners"
msgstr ""
#. i18n: context: Action (krita_filter_unsharp), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1162
#, kde-format
msgctxt "action"
msgid "&Unsharp Mask..."
msgstr ""
#. i18n: context: Action (krita_filter_unsharp), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1164
#, kde-format
msgctxt "action"
msgid "Unsharp Mask"
msgstr ""
#. i18n: context: Action (krita_filter_emboss), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1174
#, kde-format
msgctxt "action"
msgid "&Emboss with Variable Depth..."
msgstr ""
#. i18n: context: Action (krita_filter_emboss), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1176
#, kde-format
msgctxt "action"
msgid "Emboss with Variable Depth"
msgstr ""
#. i18n: context: Action (krita_filter_emboss horizontal and vertical), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1186
#, kde-format
msgctxt "action"
msgid "Emboss &Horizontal && Vertical"
msgstr ""
#. i18n: context: Action (krita_filter_emboss horizontal and vertical), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1188
#, kde-format
msgctxt "action"
msgid "Emboss Horizontal & Vertical"
msgstr ""
#. i18n: context: Action (krita_filter_randompick), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1198
#, kde-format
msgctxt "action"
msgid "Random &Pick..."
msgstr ""
#. i18n: context: Action (krita_filter_randompick), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1200
#, kde-format
msgctxt "action"
msgid "Random Pick"
msgstr ""
#. i18n: context: Action (krita_filter_gaussiannoisereducer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1210
#, kde-format
msgctxt "action"
msgid "&Gaussian Noise Reduction..."
msgstr ""
#. i18n: context: Action (krita_filter_gaussiannoisereducer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1212
#, kde-format
msgctxt "action"
msgid "Gaussian Noise Reduction"
msgstr ""
#. i18n: context: Action (krita_filter_posterize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1222
#, kde-format
msgctxt "action"
msgid "&Posterize..."
msgstr ""
#. i18n: context: Action (krita_filter_posterize), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1224
#, kde-format
msgctxt "action"
msgid "Posterize"
msgstr ""
#. i18n: context: Action (krita_filter_waveletnoisereducer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1234
#, kde-format
msgctxt "action"
msgid "&Wavelet Noise Reducer..."
msgstr ""
#. i18n: context: Action (krita_filter_waveletnoisereducer), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1236
#, kde-format
msgctxt "action"
msgid "Wavelet Noise Reducer"
msgstr ""
#. i18n: context: Action (krita_filter_hsvadjustment), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1246
#, kde-format
msgctxt "action"
msgid "&HSV Adjustment..."
msgstr ""
#. i18n: context: Action (krita_filter_hsvadjustment), Actions (Filters), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1248
#, kde-format
msgctxt "action"
msgid "HSV Adjustment"
msgstr ""
#. i18n: context: Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1259
#, kde-format
msgctxt "action"
msgid "Tool Shortcuts"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolDyna), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolDyna), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolDyna), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolDyna), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1262 krita/krita.action:1264
#, kde-format
msgctxt "action"
msgid "Dynamic Brush Tool"
msgstr ""
#. i18n: context: Action (KisToolCrop), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Crop Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolCrop), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Crop Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1272 plugins/tools/tool_crop/KisToolCrop.action:4
#, kde-format
msgctxt "action"
msgid "Crop Tool"
msgstr ""
#. i18n: context: Action (KisToolCrop), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1274
#, kde-format
msgctxt "action"
msgid "Crop the image to an area"
msgstr ""
#. i18n: context: Action (KisToolPolygon), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polygon Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolPolygon), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polygon Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1282 plugins/tools/tool_polygon/KisToolPolygon.action:4
#, kde-format
msgctxt "action"
msgid "Polygon Tool"
msgstr ""
#. i18n: context: Action (KisToolPolygon), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1284
#, kde-format
msgctxt "action"
msgid "Polygon Tool. Shift-mouseclick ends the polygon."
msgstr ""
#. i18n: context: Action (ReferencesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReferencesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReferencesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReferencesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1292 krita/krita.action:1294
#, kde-format
msgctxt "action"
msgid "References"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolRectangle), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolRectangle), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolRectangle), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolRectangle), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1302 krita/krita.action:1304
#, kde-format
msgctxt "action"
msgid "Rectangle Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolMultiBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolMultiBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolMultiBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolMultiBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1312 krita/krita.action:1314
#, kde-format
msgctxt "action"
msgid "Multibrush Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolLazyBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLazyBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLazyBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLazyBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1322 krita/krita.action:1324
#, kde-format
msgctxt "action"
msgid "Lazy Brush Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolSmartPatch), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolSmartPatch), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolSmartPatch), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolSmartPatch), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1331 krita/krita.action:1333
#, kde-format
msgctxt "action"
msgid "Smart Patch Tool"
msgstr ""
#. i18n: context: Action (PanTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PanTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PanTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PanTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1340 krita/krita.action:1342
#, kde-format
msgctxt "action"
msgid "Pan Tool"
msgstr ""
#. i18n: context: Action (InteractionTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (InteractionTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (InteractionTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (InteractionTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1349 krita/krita.action:1351
#, kde-format
msgctxt "action"
msgid "Shape Manipulation Tool"
msgstr ""
#. i18n: context: Action (KritaSelected/KisToolColorPicker), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1359
#, kde-format
msgctxt "action"
msgid "Color Picker"
msgstr ""
#. i18n: context: Action (KritaSelected/KisToolColorPicker), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1361
#, kde-format
msgctxt "action"
msgid "Select a color from the image or current layer"
msgstr ""
#. i18n: context: Action (TextTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1369
#, kde-format
msgctxt "action"
msgid "Text Editing Tool"
msgstr ""
#. i18n: context: Action (TextTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1371
#, kde-format
msgctxt "action"
msgid "Text editing"
msgstr ""
#. i18n: context: Action (KisToolSelectOutline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectOutline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Outline Selection Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolSelectOutline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectOutline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Outline Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1379 krita/krita.action:1381
#: plugins/tools/selectiontools/KisToolSelectOutline.action:4
#, kde-format
msgctxt "action"
msgid "Outline Selection Tool"
msgstr ""
#. i18n: context: Action (ArtisticTextTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1391
#, kde-format
msgctxt "action"
msgid "Artistic text editing"
msgstr ""
#. i18n: context: Action (KisToolSelectPath), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1399
#, kde-format
msgctxt "action"
msgid "Bezier Curve Selection Tool"
msgstr ""
#. i18n: context: Action (KisToolSelectPath), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectSimilar), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectPath), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectSimilar), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1401 krita/krita.action:1411
#, kde-format
msgctxt "action"
msgid "Select a "
msgstr ""
#. i18n: context: Action (KisToolSelectSimilar), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1409
#, kde-format
msgctxt "action"
msgid "Similar Color Selection Tool"
msgstr ""
#. i18n: context: Action (KritaFill/KisToolFill), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1419
#, kde-format
msgctxt "action"
msgid "Fill Tool"
msgstr ""
#. i18n: context: Action (KritaFill/KisToolFill), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1421
#, kde-format
msgctxt "action"
msgid "Fill a contiguous area of color with a color, or fill a selection."
msgstr ""
#. i18n: context: Action (KritaShape/KisToolLine), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLine), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLine), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolLine), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1429 krita/krita.action:1431
#, kde-format
msgctxt "action"
msgid "Line Tool"
msgstr ""
#. i18n: context: Action (KisToolPencil), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolPencil), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolPencil), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolPencil), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1439 krita/krita.action:1441
#, kde-format
msgctxt "action"
msgid "Freehand Path Tool"
msgstr ""
#. i18n: context: Action (KisToolPath), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1449
#, kde-format
msgctxt "action"
msgid "Bezier Curve Tool"
msgstr ""
#. i18n: context: Action (KisToolPath), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1451
#, kde-format
msgctxt "action"
msgid "Bezier Curve Tool. Shift-mouseclick ends the curve."
msgstr ""
#. i18n: context: Action (KritaShape/KisToolEllipse), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolEllipse), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolEllipse), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolEllipse), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1459 krita/krita.action:1461
#, kde-format
msgctxt "action"
msgid "Ellipse Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolBrush), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1469 krita/krita.action:1471
#, kde-format
msgctxt "action"
msgid "Freehand Brush Tool"
msgstr ""
#. i18n: context: Action (CreateShapesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (CreateShapesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (CreateShapesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (CreateShapesTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1479 krita/krita.action:1481
#, kde-format
msgctxt "action"
msgid "Create object"
msgstr ""
#. i18n: context: Action (KisToolSelectElliptical), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectElliptical), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Elliptical Selection Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolSelectElliptical), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectElliptical), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Elliptical Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1489 krita/krita.action:1491
#: plugins/tools/selectiontools/KisToolSelectElliptical.action:4
#, kde-format
msgctxt "action"
msgid "Elliptical Selection Tool"
msgstr ""
#. i18n: context: Action (KisToolSelectContiguous), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectContiguous), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Contiguous Selection Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolSelectContiguous), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectContiguous), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Contiguous Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1499 krita/krita.action:1501
#: plugins/tools/selectiontools/KisToolSelectContiguous.action:4
#, kde-format
msgctxt "action"
msgid "Contiguous Selection Tool"
msgstr ""
#. i18n: context: Action (KarbonPatternTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonPatternTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonPatternTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonPatternTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1509 krita/krita.action:1511
#, kde-format
msgctxt "action"
msgid "Pattern editing"
msgstr ""
#. i18n: context: Action (ReviewTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReviewTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReviewTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ReviewTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1519 krita/krita.action:1521
#, kde-format
msgctxt "action"
msgid "Review"
msgstr ""
#. i18n: context: Action (KritaFill/KisToolGradient), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaFill/KisToolGradient), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaFill/KisToolGradient), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaFill/KisToolGradient), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1529 krita/krita.action:1531
#, kde-format
msgctxt "action"
msgid "Draw a gradient."
msgstr ""
#. i18n: context: Action (KisToolSelectPolygonal), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectPolygonal), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polygonal Selection Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolSelectPolygonal), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectPolygonal), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polygonal Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1539 krita/krita.action:1541
#: plugins/tools/selectiontools/KisToolSelectPolygonal.action:4
#, kde-format
msgctxt "action"
msgid "Polygonal Selection Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolMeasure), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1549
#, kde-format
msgctxt "action"
msgid "Measurement Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolMeasure), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1551
#, kde-format
msgctxt "action"
msgid "Measure the distance between two points"
msgstr ""
#. i18n: context: Action (KisToolSelectRectangular), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectRectangular), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Rectangular Selection Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolSelectRectangular), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisToolSelectRectangular), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Rectangular Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1559 krita/krita.action:1561
#: plugins/tools/selectiontools/KisToolSelectRectangular.action:4
#, kde-format
msgctxt "action"
msgid "Rectangular Selection Tool"
msgstr ""
#. i18n: context: Action (KritaTransform/KisToolMove), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1569
#, kde-format
msgctxt "action"
msgid "Move Tool"
msgstr ""
#. i18n: context: Action (KritaTransform/KisToolMove), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1571
#, kde-format
msgctxt "action"
msgid "Move a layer"
msgstr ""
#. i18n: context: Action (VectorTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1579
#, kde-format
msgctxt "action"
msgid "Vector Image Tool"
msgstr ""
#. i18n: context: Action (VectorTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1581
#, kde-format
msgctxt "action"
msgid "Vector Image (EMF/WMF/SVM/SVG) tool"
msgstr ""
#. i18n: context: Action (KarbonCalligraphyTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonCalligraphyTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonCalligraphyTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KarbonCalligraphyTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1589 krita/krita.action:1591
#, kde-format
msgctxt "action"
msgid "Calligraphy"
msgstr ""
#. i18n: context: Action (PathTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PathTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PathTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (PathTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1599 krita/krita.action:1601
#, kde-format
msgctxt "action"
msgid "Path editing"
msgstr ""
#. i18n: context: Action (ZoomTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ZoomTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ZoomTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (ZoomTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:1609 krita/krita.action:1611
#, kde-format
msgctxt "action"
msgid "Zoom Tool"
msgstr ""
#. i18n: context: Action (KisToolPolyline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polyline Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolPolyline), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Polyline Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1619 plugins/tools/tool_polyline/KisToolPolyline.action:4
#, kde-format
msgctxt "action"
msgid "Polyline Tool"
msgstr ""
#. i18n: context: Action (KisToolPolyline), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1621
#, kde-format
msgctxt "action"
msgid "Polyline Tool. Shift-mouseclick ends the polyline."
msgstr ""
#. i18n: context: Action (KisToolTransform), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Transform Tool), ActionCollection (Tools)
#. i18n: context: Action (KisToolTransform), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Transform Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: krita/krita.action:1629
#: plugins/tools/tool_transform2/KisToolTransform.action:4
#, kde-format
msgctxt "action"
msgid "Transform Tool"
msgstr ""
#. i18n: context: Action (KisToolTransform), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1631
#, kde-format
msgctxt "action"
msgid "Transform a layer or a selection"
msgstr ""
#. i18n: context: Action (KisAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Assistant Tool), ActionCollection (Tools)
#. i18n: context: Action (KisAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Actions (Assistant Tool), ActionCollection (Tools)
#. +> trunk5
#: krita/krita.action:1639 krita/krita.action:1641
#: plugins/assistants/Assistants/KisAssistantTool.action:4
#, kde-format
msgctxt "action"
msgid "Assistant Tool"
msgstr ""
#. i18n: context: Action (KritaShape/KisToolText), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolText), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolText), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KritaShape/KisToolText), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1649 krita/krita.action:1651
#, kde-format
msgctxt "action"
msgid "Text tool"
msgstr ""
#. i18n: context: Action (KarbonGradientTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1659
#, kde-format
msgctxt "action"
msgid "Gradient Editing Tool"
msgstr ""
#. i18n: context: Action (KarbonGradientTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1661
#, kde-format
msgctxt "action"
msgid "Gradient editing"
msgstr ""
#. i18n: context: Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1670
#, kde-format
msgctxt "action"
msgid "Blending Modes"
msgstr ""
#. i18n: context: Action (Next Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Next Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Next Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Next Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1675 krita/krita.action:1677
#, kde-format
msgctxt "action"
msgid "Next Blending Mode"
msgstr ""
#. i18n: context: Action (Previous Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Previous Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Previous Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Previous Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1685 krita/krita.action:1687
#, kde-format
msgctxt "action"
msgid "Previous Blending Mode"
msgstr ""
#. i18n: context: Action (Select Normal Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Normal Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Normal Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Normal Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1696 krita/krita.action:1698
#, kde-format
msgctxt "action"
msgid "Select Normal Blending Mode"
msgstr ""
#. i18n: context: Action (Select Dissolve Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Dissolve Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Dissolve Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Dissolve Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1708 krita/krita.action:1710
#, kde-format
msgctxt "action"
msgid "Select Dissolve Blending Mode"
msgstr ""
#. i18n: context: Action (Select Behind Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Behind Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Behind Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Behind Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1720 krita/krita.action:1722
#, kde-format
msgctxt "action"
msgid "Select Behind Blending Mode"
msgstr ""
#. i18n: context: Action (Select Clear Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Clear Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Clear Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Clear Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1732 krita/krita.action:1734
#, kde-format
msgctxt "action"
msgid "Select Clear Blending Mode"
msgstr ""
#. i18n: context: Action (Select Darken Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Darken Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Darken Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Darken Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1744 krita/krita.action:1746
#, kde-format
msgctxt "action"
msgid "Select Darken Blending Mode"
msgstr ""
#. i18n: context: Action (Select Multiply Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Multiply Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Multiply Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Multiply Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1756 krita/krita.action:1758
#, kde-format
msgctxt "action"
msgid "Select Multiply Blending Mode"
msgstr ""
#. i18n: context: Action (Select Color Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1768 krita/krita.action:1770
#, kde-format
msgctxt "action"
msgid "Select Color Burn Blending Mode"
msgstr ""
#. i18n: context: Action (Select Linear Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Burn Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1780 krita/krita.action:1782
#, kde-format
msgctxt "action"
msgid "Select Linear Burn Blending Mode"
msgstr ""
#. i18n: context: Action (Select Lighten Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Lighten Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Lighten Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Lighten Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1792 krita/krita.action:1794
#, kde-format
msgctxt "action"
msgid "Select Lighten Blending Mode"
msgstr ""
#. i18n: context: Action (Select Screen Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Screen Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Screen Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Screen Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1804 krita/krita.action:1806
#, kde-format
msgctxt "action"
msgid "Select Screen Blending Mode"
msgstr ""
#. i18n: context: Action (Select Color Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1816 krita/krita.action:1818
#, kde-format
msgctxt "action"
msgid "Select Color Dodge Blending Mode"
msgstr ""
#. i18n: context: Action (Select Linear Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Dodge Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1828 krita/krita.action:1830
#, kde-format
msgctxt "action"
msgid "Select Linear Dodge Blending Mode"
msgstr ""
#. i18n: context: Action (Select Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1840 krita/krita.action:1842
#, kde-format
msgctxt "action"
msgid "Select Overlay Blending Mode"
msgstr ""
#. i18n: context: Action (Select Hard Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Overlay Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1852 krita/krita.action:1854
#, kde-format
msgctxt "action"
msgid "Select Hard Overlay Blending Mode"
msgstr ""
#. i18n: context: Action (Select Soft Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Soft Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Soft Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Soft Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1864 krita/krita.action:1866
#, kde-format
msgctxt "action"
msgid "Select Soft Light Blending Mode"
msgstr ""
#. i18n: context: Action (Select Hard Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1876 krita/krita.action:1878
#, kde-format
msgctxt "action"
msgid "Select Hard Light Blending Mode"
msgstr ""
#. i18n: context: Action (Select Vivid Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Vivid Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Vivid Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Vivid Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1888 krita/krita.action:1890
#, kde-format
msgctxt "action"
msgid "Select Vivid Light Blending Mode"
msgstr ""
#. i18n: context: Action (Select Linear Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Linear Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1900 krita/krita.action:1902
#, kde-format
msgctxt "action"
msgid "Select Linear Light Blending Mode"
msgstr ""
#. i18n: context: Action (Select Pin Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Pin Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Pin Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Pin Light Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1912 krita/krita.action:1914
#, kde-format
msgctxt "action"
msgid "Select Pin Light Blending Mode"
msgstr ""
#. i18n: context: Action (Select Hard Mix Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Mix Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Mix Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hard Mix Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1924 krita/krita.action:1926
#, kde-format
msgctxt "action"
msgid "Select Hard Mix Blending Mode"
msgstr ""
#. i18n: context: Action (Select Difference Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Difference Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Difference Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Difference Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1936 krita/krita.action:1938
#, kde-format
msgctxt "action"
msgid "Select Difference Blending Mode"
msgstr ""
#. i18n: context: Action (Select Exclusion Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Exclusion Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Exclusion Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Exclusion Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1948 krita/krita.action:1950
#, kde-format
msgctxt "action"
msgid "Select Exclusion Blending Mode"
msgstr ""
#. i18n: context: Action (Select Hue Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hue Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hue Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Hue Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1960 krita/krita.action:1962
#, kde-format
msgctxt "action"
msgid "Select Hue Blending Mode"
msgstr ""
#. i18n: context: Action (Select Saturation Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Saturation Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Saturation Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Saturation Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1972 krita/krita.action:1974
#, kde-format
msgctxt "action"
msgid "Select Saturation Blending Mode"
msgstr ""
#. i18n: context: Action (Select Color Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Color Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1984 krita/krita.action:1986
#, kde-format
msgctxt "action"
msgid "Select Color Blending Mode"
msgstr ""
#. i18n: context: Action (Select Luminosity Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Luminosity Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Luminosity Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. i18n: context: Action (Select Luminosity Blending Mode), Actions (Blending Modes), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:1996 krita/krita.action:1998
#, kde-format
msgctxt "action"
msgid "Select Luminosity Blending Mode"
msgstr ""
#. i18n: context: Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2009
#, kde-format
msgctxt "action"
msgid "Animation"
msgstr ""
#. i18n: context: Action (previous_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2012
#, kde-format
msgctxt "action"
msgid "Previous frame"
msgstr ""
#. i18n: context: Action (previous_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2014
#, kde-format
msgctxt "action"
msgid "Move to previous frame"
msgstr ""
#. i18n: context: Action (next_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2024
#, kde-format
msgctxt "action"
msgid "Next frame"
msgstr ""
#. i18n: context: Action (next_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2026
#, kde-format
msgctxt "action"
msgid "Move to next frame"
msgstr ""
#. i18n: context: Action (toggle_playback), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_playback), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_playback), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_playback), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2036 krita/krita.action:2038
#, kde-format
msgctxt "action"
msgid "Play / pause animation"
msgstr ""
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (add_blank_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2048 krita/krita.action:2050 krita/krita.action:2144
#: krita/krita.action:2146
#, kde-format
msgctxt "action"
msgid "Add blank frame"
msgstr ""
#. i18n: context: Action (add_duplicate_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2060
#, kde-format
msgctxt "action"
msgid "Copy Frame"
msgstr ""
#. i18n: context: Action (add_duplicate_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2062
#, kde-format
msgctxt "action"
msgid "Add duplicate frame"
msgstr ""
#. i18n: context: Action (toggle_onion_skin), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_onion_skin), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_onion_skin), Actions (Animation), ActionCollection (Krita)
#. i18n: context: Action (toggle_onion_skin), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2072 krita/krita.action:2074
#, kde-format
msgctxt "action"
msgid "Toggle onion skin"
msgstr ""
#. i18n: context: Action (previous_keyframe), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2084
#, kde-format
msgctxt "action"
msgid "Previous Keyframe"
msgstr ""
#. i18n: context: Action (next_keyframe), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2094
#, kde-format
msgctxt "action"
msgid "Next Keyframe"
msgstr ""
#. i18n: context: Action (first_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2104
#, kde-format
msgctxt "action"
msgid "First Frame"
msgstr ""
#. i18n: context: Action (last_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2114
#, kde-format
msgctxt "action"
msgid "Last Frame"
msgstr ""
#. i18n: context: Action (lazy_frame), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2124
#, kde-format
msgctxt "action"
msgid "Auto Frame Mode"
msgstr ""
#. i18n: context: Action (show_in_timeline), Actions (Animation), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2156
#, kde-format
msgctxt "action"
msgid "Show in Timeline"
msgstr ""
#. i18n: context: Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2167
#, kde-format
msgctxt "action"
msgid "Layers"
msgstr ""
#. i18n: context: Action (activateNextLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activateNextLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activateNextLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activateNextLayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2171 krita/krita.action:2173
#, kde-format
msgctxt "action"
msgid "Activate next layer"
msgstr ""
#. i18n: context: Action (activatePreviousLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activatePreviousLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activatePreviousLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (activatePreviousLayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2183 krita/krita.action:2185
#, kde-format
msgctxt "action"
msgid "Activate previous layer"
msgstr ""
#. i18n: context: Action (switchToPreviouslyActiveNode), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (switchToPreviouslyActiveNode), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (switchToPreviouslyActiveNode), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (switchToPreviouslyActiveNode), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2195 krita/krita.action:2197
#, kde-format
msgctxt "action"
msgid "Activate previously selected layer"
msgstr ""
#. i18n: context: Action (add_new_group_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2207
#, kde-format
msgctxt "action"
msgid "&Group Layer"
msgstr ""
#. i18n: context: Action (add_new_group_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2209
#, kde-format
msgctxt "action"
msgid "Group Layer"
msgstr ""
#. i18n: context: Action (add_new_clone_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2219
#, kde-format
msgctxt "action"
msgid "&Clone Layer"
msgstr ""
#. i18n: context: Action (add_new_clone_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2221
#, kde-format
msgctxt "action"
msgid "Clone Layer"
msgstr ""
#. i18n: context: Action (add_new_shape_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2231
#, kde-format
msgctxt "action"
msgid "&Vector Layer"
msgstr ""
#. i18n: context: Action (add_new_shape_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2233
#, kde-format
msgctxt "action"
msgid "Vector Layer"
msgstr ""
#. i18n: context: Action (add_new_adjustment_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2243
#, kde-format
msgctxt "action"
msgid "&Filter Layer..."
msgstr ""
#. i18n: context: Action (add_new_adjustment_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2245
#, kde-format
msgctxt "action"
msgid "Filter Layer"
msgstr ""
#. i18n: context: Action (add_new_fill_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2255
#, kde-format
msgctxt "action"
msgid "&Fill Layer..."
msgstr ""
#. i18n: context: Action (add_new_fill_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2257
#, kde-format
msgctxt "action"
msgid "Fill Layer"
msgstr ""
#. i18n: context: Action (add_new_file_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2267
#, kde-format
msgctxt "action"
msgid "&File Layer..."
msgstr ""
#. i18n: context: Action (add_new_file_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2269
#, kde-format
msgctxt "action"
msgid "File Layer"
msgstr ""
#. i18n: context: Action (add_new_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2279
#, kde-format
msgctxt "action"
msgid "&Transparency Mask"
msgstr ""
#. i18n: context: Action (add_new_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2281
#, kde-format
msgctxt "action"
msgid "Transparency Mask"
msgstr ""
#. i18n: context: Action (add_new_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2291
#, kde-format
msgctxt "action"
msgid "&Filter Mask..."
msgstr ""
#. i18n: context: Action (add_new_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2293
#, kde-format
msgctxt "action"
msgid "Filter Mask"
msgstr ""
#. i18n: context: Action (add_new_colorize_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2303
#, kde-format
msgctxt "action"
msgid "&Colorize Mask"
msgstr ""
#. i18n: context: Action (add_new_colorize_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2305
#, kde-format
msgctxt "action"
msgid "Colorize Mask"
msgstr ""
#. i18n: context: Action (add_new_transform_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2315
#, kde-format
msgctxt "action"
msgid "&Transform Mask..."
msgstr ""
#. i18n: context: Action (add_new_transform_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2317
#, kde-format
msgctxt "action"
msgid "Transform Mask"
msgstr ""
#. i18n: context: Action (add_new_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2327
#, kde-format
msgctxt "action"
msgid "&Local Selection"
msgstr ""
#. i18n: context: Action (add_new_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2329
#, kde-format
msgctxt "action"
msgid "Local Selection"
msgstr ""
#. i18n: context: Action (isolate_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2339
#, kde-format
msgctxt "action"
msgid "&Isolate Layer"
msgstr ""
#. i18n: context: Action (isolate_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2341
#, kde-format
msgctxt "action"
msgid "Isolate Layer"
msgstr ""
#. i18n: context: Action (toggle_layer_lock), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2351
#, kde-format
msgctxt "action"
msgid "&Toggle layer lock"
msgstr ""
#. i18n: context: Action (toggle_layer_lock), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2353
#, kde-format
msgctxt "action"
msgid "Toggle layer lock"
msgstr ""
#. i18n: context: Action (toggle_layer_visibility), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2363
#, kde-format
msgctxt "action"
msgid "Toggle layer &visibility"
msgstr ""
#. i18n: context: Action (toggle_layer_visibility), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2365
#, kde-format
msgctxt "action"
msgid "Toggle layer visibility"
msgstr ""
#. i18n: context: Action (toggle_layer_alpha_lock), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2375
#, kde-format
msgctxt "action"
msgid "Toggle layer &alpha"
msgstr ""
#. i18n: context: Action (toggle_layer_alpha_lock), Actions (Layers), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:2342
#, kde-format
msgctxt "action"
msgid "Lock/unlock layer &alpha"
msgstr ""
#. i18n: context: Action (toggle_layer_alpha_lock), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2377
#, kde-format
msgctxt "action"
msgid "Toggle layer alpha"
msgstr ""
#. i18n: context: Action (toggle_layer_alpha_lock), Actions (Layers), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:2344
#, kde-format
msgctxt "action"
msgid "Lock/unlock layer's alpha"
msgstr ""
#. i18n: context: Action (toggle_layer_inherit_alpha), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2387
#, kde-format
msgctxt "action"
msgid "Toggle layer alpha &inheritance"
msgstr ""
#. i18n: context: Action (toggle_layer_inherit_alpha), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2389
#, kde-format
msgctxt "action"
msgid "Toggle layer alpha inheritance"
msgstr ""
#. i18n: context: Action (add_new_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2399
#, kde-format
msgctxt "action"
msgid "&Paint Layer"
msgstr ""
#. i18n: context: Action (add_new_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2401
#, kde-format
msgctxt "action"
msgid "Paint Layer"
msgstr ""
#. i18n: context: Action (new_from_visible), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2411
#, kde-format
msgctxt "action"
msgid "&New Layer From Visible"
msgstr ""
#. i18n: context: Action (new_from_visible), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2413
#, kde-format
msgctxt "action"
msgid "New layer from visible"
msgstr ""
#. i18n: context: Action (duplicatelayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2423
#, kde-format
msgctxt "action"
msgid "&Duplicate Layer or Mask"
msgstr ""
#. i18n: context: Action (duplicatelayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2425
#, kde-format
msgctxt "action"
msgid "Duplicate Layer or Mask"
msgstr ""
#. i18n: context: Action (cut_selection_to_new_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2435
#, kde-format
msgctxt "action"
msgid "&Cut Selection to New Layer"
msgstr ""
#. i18n: context: Action (cut_selection_to_new_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2437
#, kde-format
msgctxt "action"
msgid "Cut Selection to New Layer"
msgstr ""
#. i18n: context: Action (copy_selection_to_new_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2447
#, kde-format
msgctxt "action"
msgid "Copy &Selection to New Layer"
msgstr ""
#. i18n: context: Action (copy_selection_to_new_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2449
#, kde-format
msgctxt "action"
msgid "Copy Selection to New Layer"
msgstr ""
#. i18n: context: Action (copy_layer_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2459
#, kde-format
msgctxt "action"
msgid "Copy Layer"
msgstr ""
#. i18n: context: Action (copy_layer_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2461
#, kde-format
msgctxt "action"
msgid "Copy layer to clipboard"
msgstr ""
#. i18n: context: Action (cut_layer_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2471
#, kde-format
msgctxt "action"
msgid "Cut Layer"
msgstr ""
#. i18n: context: Action (cut_layer_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2473
#, kde-format
msgctxt "action"
msgid "Cut layer to clipboard"
msgstr ""
#. i18n: context: Action (paste_layer_from_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2483
#, kde-format
msgctxt "action"
msgid "Paste Layer"
msgstr ""
#. i18n: context: Action (paste_layer_from_clipboard), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2485
#, kde-format
msgctxt "action"
msgid "Paste layer from clipboard"
msgstr ""
#. i18n: context: Action (create_quick_group), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2495
#, kde-format
msgctxt "action"
msgid "Quick Group"
msgstr ""
#. i18n: context: Action (create_quick_group), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2497
#, kde-format
msgctxt "action"
msgid "Create a group layer containing selected layers"
msgstr ""
#. i18n: context: Action (quick_ungroup), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2507
#, kde-format
msgctxt "action"
msgid "Quick Ungroup"
msgstr ""
#. i18n: context: Action (quick_ungroup), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2509
#, kde-format
msgctxt "action"
msgid "Remove grouping of the layers or remove one layer out of the group"
msgstr ""
#. i18n: context: Action (create_quick_clipping_group), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2519
#, kde-format
msgctxt "action"
msgid "Quick Clipping Group"
msgstr ""
#. i18n: context: Action (create_quick_clipping_group), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2521
#, kde-format
msgctxt "action"
msgid "Group selected layers and add a layer with clipped alpha channel"
msgstr ""
#. i18n: context: Action (select_all_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2531
#, kde-format
msgctxt "action"
msgid "All Layers"
msgstr ""
#. i18n: context: Action (select_all_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2533
#, kde-format
msgctxt "action"
msgid "Select all layers"
msgstr ""
#. i18n: context: Action (select_visible_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2543
#, kde-format
msgctxt "action"
msgid "Visible Layers"
msgstr ""
#. i18n: context: Action (select_visible_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2545
#, kde-format
msgctxt "action"
msgid "Select all visible layers"
msgstr ""
#. i18n: context: Action (select_locked_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2555
#, kde-format
msgctxt "action"
msgid "Locked Layers"
msgstr ""
#. i18n: context: Action (select_locked_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2557
#, kde-format
msgctxt "action"
msgid "Select all locked layers"
msgstr ""
#. i18n: context: Action (select_invisible_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2567
#, kde-format
msgctxt "action"
msgid "Invisible Layers"
msgstr ""
#. i18n: context: Action (select_invisible_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2569
#, kde-format
msgctxt "action"
msgid "Select all invisible layers"
msgstr ""
#. i18n: context: Action (select_unlocked_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2579
#, kde-format
msgctxt "action"
msgid "Unlocked Layers"
msgstr ""
#. i18n: context: Action (toggle_layer_lock), Actions (Layers), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:2318
#, kde-format
msgctxt "action"
msgid "&Lock/unlock layer"
msgstr ""
#. i18n: context: Action (toggle_layer_lock), Actions (Layers), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:2320
#, kde-format
msgctxt "action"
msgid "Lock/unlock layer"
msgstr ""
#. i18n: context: Action (select_unlocked_layers), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2581
#, kde-format
msgctxt "action"
msgid "Select all unlocked layers"
msgstr ""
#. i18n: context: Action (save_node_as_image), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2591
#, kde-format
msgctxt "action"
msgid "&Save Layer/Mask..."
msgstr ""
#. i18n: context: Action (save_node_as_image), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2593
#, kde-format
msgctxt "action"
msgid "Save Layer/Mask"
msgstr ""
#. i18n: context: Action (save_vector_node_to_svg), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2603
#, kde-format
msgctxt "action"
msgid "Save Vector Layer as SVG..."
msgstr ""
#. i18n: context: Action (save_vector_node_to_svg), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2605
#, kde-format
msgctxt "action"
msgid "Save Vector Layer as SVG"
msgstr ""
#. i18n: context: Action (save_groups_as_images), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2615
#, kde-format
msgctxt "action"
msgid "Save &Group Layers..."
msgstr ""
#. i18n: context: Action (save_groups_as_images), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2617
#, kde-format
msgctxt "action"
msgid "Save Group Layers"
msgstr ""
#. i18n: context: Action (convert_group_to_animated), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2627
#, kde-format
msgctxt "action"
msgid "Convert group to &animated layer"
msgstr ""
#. i18n: context: Action (convert_group_to_animated), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2629
#, kde-format
msgctxt "action"
msgid "Convert child layers into animation frames"
msgstr ""
#. i18n: context: Action (convert_layer_to_file_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2639
#, kde-format
msgctxt "action"
msgid "to &File Layer"
msgstr ""
#. i18n: context: Action (convert_layer_to_file_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5
#: krita/krita.action:2641
#, kde-format
msgctxt "action"
msgid "Saves out the layers into a new image and then references that image."
msgstr ""
#. i18n: context: Action (import_layer_from_file), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2651
#, kde-format
msgctxt "action"
msgid "I&mport Layer..."
msgstr ""
#. i18n: context: Action (import_layer_from_file), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2653
#, kde-format
msgctxt "action"
msgid "Import Layer"
msgstr ""
#. i18n: context: Action (import_layer_as_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2663
#, kde-format
msgctxt "action"
msgid "&as Paint Layer..."
msgstr ""
#. i18n: context: Action (import_layer_as_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2665
#, kde-format
msgctxt "action"
msgid "as Paint Layer"
msgstr ""
#. i18n: context: Action (import_layer_as_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2675
#, kde-format
msgctxt "action"
msgid "as &Transparency Mask..."
msgstr ""
#. i18n: context: Action (import_layer_as_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2677
#, kde-format
msgctxt "action"
msgid "as Transparency Mask"
msgstr ""
#. i18n: context: Action (import_layer_as_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2687
#, kde-format
msgctxt "action"
msgid "as &Filter Mask..."
msgstr ""
#. i18n: context: Action (import_layer_as_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2689
#, kde-format
msgctxt "action"
msgid "as Filter Mask"
msgstr ""
#. i18n: context: Action (import_layer_as_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2699
#, kde-format
msgctxt "action"
msgid "as &Selection Mask..."
msgstr ""
#. i18n: context: Action (import_layer_as_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2701
#, kde-format
msgctxt "action"
msgid "as Selection Mask"
msgstr ""
#. i18n: context: Action (convert_to_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2711
#, kde-format
msgctxt "action"
msgid "to &Paint Layer"
msgstr ""
#. i18n: context: Action (convert_to_paint_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2713
#, kde-format
msgctxt "action"
msgid "to Paint Layer"
msgstr ""
#. i18n: context: Action (convert_to_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2723
#, kde-format
msgctxt "action"
msgid "to &Transparency Mask"
msgstr ""
#. i18n: context: Action (convert_to_transparency_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2725
#, kde-format
msgctxt "action"
msgid "to Transparency Mask"
msgstr ""
#. i18n: context: Action (convert_to_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2735
#, kde-format
msgctxt "action"
msgid "to &Filter Mask..."
msgstr ""
#. i18n: context: Action (convert_to_filter_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2737
#, kde-format
msgctxt "action"
msgid "to Filter Mask"
msgstr ""
#. i18n: context: Action (convert_to_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2747
#, kde-format
msgctxt "action"
msgid "to &Selection Mask"
msgstr ""
#. i18n: context: Action (convert_to_selection_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2749
#, kde-format
msgctxt "action"
msgid "to Selection Mask"
msgstr ""
#. i18n: context: Action (split_alpha_into_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2759
#, kde-format
msgctxt "action"
msgid "&Alpha into Mask"
msgstr ""
#. i18n: context: Action (split_alpha_into_mask), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2761
#, kde-format
msgctxt "action"
msgid "Alpha into Mask"
msgstr ""
#. i18n: context: Action (split_alpha_write), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2771
#, kde-format
msgctxt "action"
msgid "&Write as Alpha"
msgstr ""
#. i18n: context: Action (split_alpha_write), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2773
#, kde-format
msgctxt "action"
msgid "Write as Alpha"
msgstr ""
#. i18n: context: Action (split_alpha_save_merged), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2783
#, kde-format
msgctxt "action"
msgid "&Save Merged..."
msgstr ""
#. i18n: context: Action (split_alpha_save_merged), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2785
#, kde-format
msgctxt "action"
msgid "Save Merged"
msgstr ""
#. i18n: context: Action (layersplit), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2795
#, kde-format
msgctxt "action"
msgid "Split Layer..."
msgstr ""
#. i18n: context: Action (layersplit), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2797
#, kde-format
msgctxt "action"
msgid "Split Layer"
msgstr ""
#. i18n: context: Action (waveletdecompose), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2807
#, kde-format
msgctxt "action"
msgid "Wavelet Decompose ..."
msgstr ""
#. i18n: context: Action (waveletdecompose), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2809
#, kde-format
msgctxt "action"
msgid "Wavelet Decompose"
msgstr ""
#. i18n: context: Action (mirrorNodeX), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2819
#, kde-format
msgctxt "action"
msgid "Mirror Layer Hori&zontally"
msgstr ""
#. i18n: context: Action (mirrorNodeX), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2821
#, kde-format
msgctxt "action"
msgid "Mirror Layer Horizontally"
msgstr ""
#. i18n: context: Action (mirrorNodeY), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2831
#, kde-format
msgctxt "action"
msgid "Mirror Layer &Vertically"
msgstr ""
#. i18n: context: Action (mirrorNodeY), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2833
#, kde-format
msgctxt "action"
msgid "Mirror Layer Vertically"
msgstr ""
#. i18n: context: Action (rotatelayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2843
#, kde-format
msgctxt "action"
msgid "&Rotate Layer..."
msgstr ""
#. i18n: context: Action (rotatelayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2845
#, kde-format
msgctxt "action"
msgid "Rotate Layer"
msgstr ""
#. i18n: context: Action (rotateLayerCW90), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2855
#, kde-format
msgctxt "action"
msgid "Rotate &Layer 90° to the Right"
msgstr ""
#. i18n: context: Action (rotateLayerCW90), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2857
#, kde-format
msgctxt "action"
msgid "Rotate Layer 90° to the Right"
msgstr ""
#. i18n: context: Action (rotateLayerCCW90), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2867
#, kde-format
msgctxt "action"
msgid "Rotate Layer &90° to the Left"
msgstr ""
#. i18n: context: Action (rotateLayerCCW90), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2869
#, kde-format
msgctxt "action"
msgid "Rotate Layer 90° to the Left"
msgstr ""
#. i18n: context: Action (rotateLayer180), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2879
#, kde-format
msgctxt "action"
msgid "Rotate Layer &180°"
msgstr ""
#. i18n: context: Action (rotateLayer180), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2881
#, kde-format
msgctxt "action"
msgid "Rotate Layer 180°"
msgstr ""
#. i18n: context: Action (layersize), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2891
#, kde-format
msgctxt "action"
msgid "Scale &Layer to new Size..."
msgstr ""
#. i18n: context: Action (layersize), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2893
#, kde-format
msgctxt "action"
msgid "Scale Layer to new Size"
msgstr ""
#. i18n: context: Action (shearlayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2903
#, kde-format
msgctxt "action"
msgid "&Shear Layer..."
msgstr ""
#. i18n: context: Action (shearlayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2905
#, kde-format
msgctxt "action"
msgid "Shear Layer"
msgstr ""
#. i18n: context: Action (offsetlayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2915
#, kde-format
msgctxt "action"
msgid "&Offset Layer..."
msgstr ""
#. i18n: context: Action (offsetlayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2917
#, kde-format
msgctxt "action"
msgid "Offset Layer"
msgstr ""
#. i18n: context: Action (clones_array), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2927
#, kde-format
msgctxt "action"
msgid "Clones &Array..."
msgstr ""
#. i18n: context: Action (clones_array), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2929
#, kde-format
msgctxt "action"
msgid "Clones Array"
msgstr ""
#. i18n: context: Action (EditLayerMetaData), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2939
#, kde-format
msgctxt "action"
msgid "&Edit metadata..."
msgstr ""
#. i18n: context: Action (EditLayerMetaData), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2941
#, kde-format
msgctxt "action"
msgid "Edit metadata"
msgstr ""
#. i18n: context: Action (histogram), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2951
#, kde-format
msgctxt "action"
msgid "&Histogram..."
msgstr ""
#. i18n: context: Action (histogram), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2953
#, kde-format
msgctxt "action"
msgid "Histogram"
msgstr ""
#. i18n: context: Action (layercolorspaceconversion), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2963
#, kde-format
msgctxt "action"
msgid "&Convert Layer Color Space..."
msgstr ""
#. i18n: context: Action (layercolorspaceconversion), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2965
#, kde-format
msgctxt "action"
msgid "Convert Layer Color Space"
msgstr ""
#. i18n: context: Action (merge_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2975
#, kde-format
msgctxt "action"
msgid "&Merge with Layer Below"
msgstr ""
#. i18n: context: Action (merge_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2977
#, kde-format
msgctxt "action"
msgid "Merge with Layer Below"
msgstr ""
#. i18n: context: Action (flatten_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2987
#, kde-format
msgctxt "action"
msgid "&Flatten Layer"
msgstr ""
#. i18n: context: Action (flatten_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2989
#, kde-format
msgctxt "action"
msgid "Flatten Layer"
msgstr ""
#. i18n: context: Action (rasterize_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:2999
#, kde-format
msgctxt "action"
msgid "Ras&terize Layer"
msgstr ""
#. i18n: context: Action (rasterize_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3001
#, kde-format
msgctxt "action"
msgid "Rasterize Layer"
msgstr ""
#. i18n: context: Action (flatten_image), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3011
#, kde-format
msgctxt "action"
msgid "Flatten ima&ge"
msgstr ""
#. i18n: context: Action (flatten_image), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3013
#, kde-format
msgctxt "action"
msgid "Flatten image"
msgstr ""
#. i18n: context: Action (layer_style), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3023
#, kde-format
msgctxt "action"
msgid "La&yer Style..."
msgstr ""
#. i18n: context: Action (layer_style), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3025
#, kde-format
msgctxt "action"
msgid "Layer Style"
msgstr ""
#. i18n: context: Action (LayerGroupSwitcher/previous), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/previous), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/previous), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/previous), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3035 krita/krita.action:3037
#, kde-format
msgctxt "action"
msgid "Move into previous group"
msgstr ""
#. i18n: context: Action (LayerGroupSwitcher/next), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/next), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/next), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (LayerGroupSwitcher/next), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3047 krita/krita.action:3049
#, kde-format
msgctxt "action"
msgid "Move into next group"
msgstr ""
#. i18n: context: Action (RenameCurrentLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (RenameCurrentLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (RenameCurrentLayer), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (RenameCurrentLayer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3059 krita/krita.action:3061
#, kde-format
msgctxt "action"
msgid "Rename current layer"
msgstr ""
#. i18n: context: Action (remove_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3071
#, kde-format
msgctxt "action"
msgid "&Remove Layer"
msgstr ""
#. i18n: context: Action (remove_layer), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3073
#, kde-format
msgctxt "action"
msgid "Remove Layer"
msgstr ""
#. i18n: context: Action (move_layer_up), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_up), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_up), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_up), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3083 krita/krita.action:3085
#, kde-format
msgctxt "action"
msgid "Move Layer or Mask Up"
msgstr ""
#. i18n: context: Action (move_layer_down), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_down), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_down), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (move_layer_down), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3093 krita/krita.action:3095
#, kde-format
msgctxt "action"
msgid "Move Layer or Mask Down"
msgstr ""
#. i18n: context: Action (image_properties), Actions (Image), ActionCollection (Menu)
#. i18n: context: Action (layer_properties), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (image_properties), Actions (Image), ActionCollection (Menu)
#. i18n: context: Action (layer_properties), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3103 krita/kritamenu.action:942
#, kde-format
msgctxt "action"
msgid "&Properties..."
msgstr ""
#. i18n: context: Action (image_properties), Actions (Image), ActionCollection (Menu)
#. i18n: context: Action (layer_properties), Actions (Layers), ActionCollection (Krita)
#. i18n: context: Action (image_properties), Actions (Image), ActionCollection (Menu)
#. i18n: context: Action (layer_properties), Actions (Layers), ActionCollection (Krita)
#. +> trunk5 stable5
#: krita/krita.action:3105 krita/kritamenu.action:944
#, kde-format
msgctxt "action"
msgid "Properties"
msgstr ""
#. i18n: context: Action (KisRulerAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisRulerAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisRulerAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. i18n: context: Action (KisRulerAssistantTool), Actions (tool-shortcuts), ActionCollection (Krita)
#. +> stable5
#: krita/krita.action:1606 krita/krita.action:1608
#, kde-format
msgctxt "action"
msgid "Ruler assistant editor tool"
msgstr ""
#. i18n: ectx: property (title), widget (QMenu, menuFile)
#. +> trunk5 stable5
#: krita/krita4.xmlgui:9 libs/widgetutils/xmlgui/ui_standards.xmlgui:5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:28
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:5
#, kde-format
msgid "&File"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:42 libs/widgetutils/xmlgui/ui_standards.xmlgui:61
#: plugins/extensions/resourcemanager/resourcemanager.xmlgui:4
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:11
#, kde-format
msgid "&Edit"
msgstr ""
#. +> trunk5
#: krita/krita4.xmlgui:59
#, kde-format
msgid "Fill Special"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:71 libs/widgetutils/xmlgui/ui_standards.xmlgui:101
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:28
#, kde-format
msgid "&View"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:80
#, kde-format
msgid "&Canvas"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:112
#, kde-format
msgid "&Snap To"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:133
#: plugins/extensions/colorspaceconversion/colorspaceconversion.xmlgui:4
#: plugins/extensions/offsetimage/offsetimage.xmlgui:5
#: plugins/extensions/rotateimage/rotateimage.xmlgui:4
#: plugins/extensions/shearimage/shearimage.xmlgui:4
#, kde-format
msgid "&Image"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, freeRotationRadioButton)
#. +> trunk5 stable5
#: krita/krita4.xmlgui:144 krita/krita4.xmlgui:226
#: plugins/extensions/rotateimage/rotateimage.xmlgui:5
#: plugins/extensions/rotateimage/rotateimage.xmlgui:18
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:561
#, kde-format
msgid "&Rotate"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:166 plugins/extensions/histogram/histogram.xmlgui:4
#: plugins/extensions/layersplit/layersplit.xmlgui:4
#: plugins/extensions/waveletdecompose/waveletdecompose.xmlgui:4
#, kde-format
msgid "&Layer"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:172
#, kde-format
msgid "New"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:181
#, kde-format
msgid "&Import/Export"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addPresetButton)
#. +> trunk5 stable5
#: krita/krita4.xmlgui:188
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:64
#, kde-format
msgid "Import"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:196 plugins/dockers/defaultdockers/kis_layer_box.cpp:602
#, kde-format
msgid "&Convert"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnSelect)
#. +> trunk5 stable5
#: krita/krita4.xmlgui:207 krita/krita4.xmlgui:263
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:578
#: plugins/extensions/colorrange/wdg_colorrange.ui:130
#: plugins/extensions/imagesize/imagesize.xmlgui:12
#: plugins/extensions/modify_selection/modify_selection.xmlgui:4
#, kde-format
msgid "&Select"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:215 plugins/dockers/defaultdockers/kis_layer_box.cpp:584
#, kde-format
msgid "&Group"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:221
#, kde-format
msgid "&Transform"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:237
#, kde-format
msgid "S&plit"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:239 plugins/dockers/defaultdockers/kis_layer_box.cpp:609
#, kde-format
msgid "S&plit Alpha"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:289
#, kde-format
msgid "Filte&r"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:309 libs/widgetutils/xmlgui/ui_standards.xmlgui:144
#: plugins/extensions/bigbrother/bigbrother.xmlgui:4
#, kde-format
msgid "&Tools"
msgstr ""
#. +> trunk5
#: krita/krita4.xmlgui:312 plugins/extensions/bigbrother/bigbrother.xmlgui:5
#, kde-format
msgid "Recording"
msgstr ""
#. +> trunk5
#: krita/krita4.xmlgui:317 plugins/extensions/bigbrother/bigbrother.xmlgui:9
#, kde-format
msgid "Macros"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:323 plugins/tools/svgtexttool/svgtexttool.xmlgui:62
#, kde-format
msgid "Setti&ngs"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:346 libs/widgetutils/xmlgui/khelpmenu.cpp:155
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:177
#, kde-format
msgid "&Help"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:361 libs/ui/kis_file_layer.cpp:130
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:69
#, kde-format
msgid "File"
msgstr ""
#. +> trunk5 stable5
#: krita/krita4.xmlgui:370
#, kde-format
msgid "Brushes and Stuff"
msgstr ""
#. i18n: context: Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:4
#, kde-format
msgctxt "action"
msgid "File"
msgstr ""
#. i18n: context: Action (file_new), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:7
#, kde-format
msgctxt "action"
msgid "&New"
msgstr ""
#. i18n: context: Action (file_new), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:9
#, kde-format
msgctxt "action"
msgid "Create new document"
msgstr ""
#. i18n: context: Action (file_open), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:19
#, kde-format
msgctxt "action"
msgid "&Open..."
msgstr ""
#. i18n: context: Action (file_open), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:21
#, kde-format
msgctxt "action"
msgid "Open an existing document"
msgstr ""
#. i18n: context: Action (file_open_recent), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:31
#, kde-format
msgctxt "action"
msgid "Open &Recent"
msgstr ""
#. i18n: context: Action (file_open_recent), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:33
#, kde-format
msgctxt "action"
msgid "Open a document which was recently opened"
msgstr ""
#. i18n: context: Action (file_save), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:43
#, kde-format
msgctxt "action"
msgid "&Save"
msgstr ""
#. i18n: context: Action (file_save), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:45
#, kde-format
msgctxt "action"
msgid "Save"
msgstr ""
#. i18n: context: Action (file_save_as), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:55
#, kde-format
msgctxt "action"
msgid "Save &As..."
msgstr ""
#. i18n: context: Action (file_save_as), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:57
#, kde-format
msgctxt "action"
msgid "Save document under a new name"
msgstr ""
#. i18n: context: Action (file_reload_file), Actions (File), ActionCollection (Menu)
#. i18n: context: Action (file_reload_file), Actions (File), ActionCollection (Menu)
#. i18n: context: Action (file_reload_file), Actions (File), ActionCollection (Menu)
#. i18n: context: Action (file_reload_file), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:68 krita/kritamenu.action:70
#, kde-format
msgctxt "action"
msgid "Reload"
msgstr ""
#. i18n: context: Action (file_import_file), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:81
#, kde-format
msgctxt "action"
msgid "Open ex&isting Document as Untitled Document..."
msgstr ""
#. i18n: context: Action (file_import_file), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:83
#, kde-format
msgctxt "action"
msgid "Open existing Document as Untitled Document"
msgstr ""
#. i18n: context: Action (file_export_file), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:93
#, kde-format
msgctxt "action"
msgid "E&xport..."
msgstr ""
#. i18n: context: Action (file_export_file), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:95
#, kde-format
msgctxt "action"
msgid "Export"
msgstr ""
#. i18n: context: Action (file_export_pdf), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:105
#, kde-format
msgctxt "action"
msgid "&Export as PDF..."
msgstr ""
#. i18n: context: Action (file_export_pdf), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:107
#, kde-format
msgctxt "action"
msgid "Export as PDF"
msgstr ""
#. i18n: context: Action (file_import_animation), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:117
#, kde-format
msgctxt "action"
msgid "Import animation frames..."
msgstr ""
#. i18n: context: Action (file_import_animation), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:119
#, kde-format
msgctxt "action"
msgid "Import animation frames"
msgstr ""
#. i18n: context: Action (render_animation), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:129
#, kde-format
msgctxt "action"
msgid "&Render Animation..."
msgstr ""
#. i18n: context: Action (render_animation), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:131
#, kde-format
msgctxt "action"
msgid "Render Animation to GIF, Image Sequence or Video"
msgstr ""
#. i18n: context: Action (render_image_sequence_again), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:141
#, kde-format
msgctxt "action"
msgid "&Render Image Sequence Again"
msgstr ""
#. i18n: context: Action (render_image_sequence_again), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:143
#, kde-format
msgctxt "action"
msgid "Render Animation to Image Sequence Again"
msgstr ""
#. i18n: context: Action (save_incremental_version), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:153
#, kde-format
msgctxt "action"
msgid "Save Incremental &Version"
msgstr ""
#. i18n: context: Action (save_incremental_version), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:155
#, kde-format
msgctxt "action"
msgid "Save Incremental Version"
msgstr ""
#. i18n: context: Action (save_incremental_backup), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:165
#, kde-format
msgctxt "action"
msgid "Save Incremental &Backup"
msgstr ""
#. i18n: context: Action (save_incremental_backup), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:167
#, kde-format
msgctxt "action"
msgid "Save Incremental Backup"
msgstr ""
#. i18n: context: Action (create_template), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:177
#, kde-format
msgctxt "action"
msgid "&Create Template From Image..."
msgstr ""
#. i18n: context: Action (create_template), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:179
#, kde-format
msgctxt "action"
msgid "Create Template From Image"
msgstr ""
#. i18n: context: Action (create_copy), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:189
#, kde-format
msgctxt "action"
msgid "Create Copy &From Current Image"
msgstr ""
#. i18n: context: Action (create_copy), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:191
#, kde-format
msgctxt "action"
msgid "Create Copy From Current Image"
msgstr ""
#. i18n: context: Action (file_print), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:201
#, kde-format
msgctxt "action"
msgid "&Print..."
msgstr ""
#. i18n: context: Action (file_print), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:203
#, kde-format
msgctxt "action"
msgid "Print document"
msgstr ""
#. i18n: context: Action (file_print_preview), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:213
#, kde-format
msgctxt "action"
msgid "Print Previe&w"
msgstr ""
#. i18n: context: Action (file_print_preview), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:215
#, kde-format
msgctxt "action"
msgid "Show a print preview of document"
msgstr ""
#. i18n: context: Action (file_documentinfo), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:225
#, kde-format
msgctxt "action"
msgid "&Document Information"
msgstr ""
#. i18n: context: Action (file_documentinfo), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:227
#, kde-format
msgctxt "action"
msgid "Document Information"
msgstr ""
#. i18n: context: Action (file_close_all), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:237
#, kde-format
msgctxt "action"
msgid "&Close All"
msgstr ""
#. i18n: context: Action (file_close_all), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:239
#, kde-format
msgctxt "action"
msgid "Close All"
msgstr ""
#. i18n: context: Action (file_close), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:249
#, kde-format
msgctxt "action"
msgid "C&lose"
msgstr ""
#. i18n: context: Action (file_close), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:251
#, kde-format
msgctxt "action"
msgid "Close"
msgstr ""
#. i18n: context: Action (file_quit), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:261
#, kde-format
msgctxt "action"
msgid "&Quit"
msgstr ""
#. i18n: context: Action (file_quit), Actions (File), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:263
#, kde-format
msgctxt "action"
msgid "Quit application"
msgstr ""
#. i18n: context: Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:274
#, kde-format
msgctxt "action"
msgid "Edit"
msgstr ""
#. i18n: context: Action (edit_undo), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:277
#, kde-format
msgctxt "action"
msgid "Undo"
msgstr ""
#. i18n: context: Action (edit_undo), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:279
#, kde-format
msgctxt "action"
msgid "Undo last action"
msgstr ""
#. i18n: context: Action (edit_redo), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:289
#, kde-format
msgctxt "action"
msgid "Redo"
msgstr ""
#. i18n: context: Action (edit_redo), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:291
#, kde-format
msgctxt "action"
msgid "Redo last undone action"
msgstr ""
#. i18n: context: Action (edit_cut), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:301
#, kde-format
msgctxt "action"
msgid "Cu&t"
msgstr ""
#. i18n: context: Action (edit_cut), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:303
#, kde-format
msgctxt "action"
msgid "Cut selection to clipboard"
msgstr ""
#. i18n: context: Action (edit_copy), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:313
#, kde-format
msgctxt "action"
msgid "&Copy"
msgstr ""
#. i18n: context: Action (edit_copy), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:315
#, kde-format
msgctxt "action"
msgid "Copy selection to clipboard"
msgstr ""
#. i18n: context: Action (copy_sharp), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:325
#, kde-format
msgctxt "action"
msgid "C&opy (sharp)"
msgstr ""
#. i18n: context: Action (copy_sharp), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:327
#, kde-format
msgctxt "action"
msgid "Copy (sharp)"
msgstr ""
#. i18n: context: Action (cut_sharp), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:337
#, kde-format
msgctxt "action"
msgid "Cut (&sharp)"
msgstr ""
#. i18n: context: Action (cut_sharp), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:339
#, kde-format
msgctxt "action"
msgid "Cut (sharp)"
msgstr ""
#. i18n: context: Action (copy_merged), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:349
#, kde-format
msgctxt "action"
msgid "Copy &merged"
msgstr ""
#. i18n: context: Action (copy_merged), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:351
#, kde-format
msgctxt "action"
msgid "Copy merged"
msgstr ""
#. i18n: context: Action (edit_paste), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:361
#, kde-format
msgctxt "action"
msgid "&Paste"
msgstr ""
#. i18n: context: Action (edit_paste), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:363
#, kde-format
msgctxt "action"
msgid "Paste clipboard content"
msgstr ""
#. i18n: context: Action (paste_at), Actions (Edit), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:373
#, kde-format
msgctxt "action"
msgid "Paste at Cursor"
msgstr ""
#. i18n: context: Action (paste_at), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:375
#, kde-format
msgctxt "action"
msgid "Paste at cursor"
msgstr ""
#. i18n: context: Action (paste_new), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:385
#, kde-format
msgctxt "action"
msgid "Paste into &New Image"
msgstr ""
#. i18n: context: Action (paste_new), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:387
#, kde-format
msgctxt "action"
msgid "Paste into New Image"
msgstr ""
#. i18n: context: Action (clear), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:397
#, kde-format
msgctxt "action"
msgid "C&lear"
msgstr ""
#. i18n: context: Action (clear), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:399
#, kde-format
msgctxt "action"
msgid "Clear"
msgstr ""
#. i18n: context: Action (fill_selection_foreground_color), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:409
#, kde-format
msgctxt "action"
msgid "&Fill with Foreground Color"
msgstr ""
#. i18n: context: Action (fill_selection_foreground_color), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:411
#, kde-format
msgctxt "action"
msgid "Fill with Foreground Color"
msgstr ""
#. i18n: context: Action (fill_selection_background_color), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:421
#, kde-format
msgctxt "action"
msgid "Fill &with Background Color"
msgstr ""
#. i18n: context: Action (fill_selection_background_color), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:423
#, kde-format
msgctxt "action"
msgid "Fill with Background Color"
msgstr ""
#. i18n: context: Action (fill_selection_pattern), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:433
#, kde-format
msgctxt "action"
msgid "F&ill with Pattern"
msgstr ""
#. i18n: context: Action (fill_selection_pattern), Actions (Edit), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:435
#, kde-format
msgctxt "action"
msgid "Fill with Pattern"
msgstr ""
#. i18n: context: Actions (EditFill), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:444
#, kde-format
msgctxt "action"
msgid "Fill Special"
msgstr ""
#. i18n: context: Action (stroke_shapes), Actions (EditFill), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:484
#, kde-format
msgctxt "action"
msgid "Stro&ke selected shapes"
msgstr ""
#. i18n: context: Action (stroke_shapes), Actions (EditFill), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:486
#, kde-format
msgctxt "action"
msgid "Stroke selected shapes"
msgstr ""
#. i18n: context: Action (stroke_selection), Actions (EditFill), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:496
#, kde-format
msgctxt "action"
msgid "Stroke Selec&tion..."
msgstr ""
#. i18n: context: Action (stroke_selection), Actions (EditFill), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:498
#, kde-format
msgctxt "action"
msgid "Stroke selection"
msgstr ""
#. i18n: context: Action (stroke_selection), Actions (Edit), ActionCollection (Menu)
#. +> stable5
#: krita/kritamenu.action:445
#, kde-format
msgctxt "action"
msgid "Stroke selec&tion"
msgstr ""
#. i18n: context: Action (delete_keyframe), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (delete_keyframe), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (delete_keyframe), Actions (EditFill), ActionCollection (Menu)
#. i18n: context: Action (delete_keyframe), Actions (EditFill), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:508 krita/kritamenu.action:510
#, kde-format
msgctxt "action"
msgid "Delete keyframe"
msgstr ""
#. i18n: context: Actions (Window), ActionCollection (Menu)
#. i18n: context: Action (window), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Actions (Window), ActionCollection (Menu)
#. i18n: context: Action (window), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:521 krita/kritamenu.action:1638
#, kde-format
msgctxt "action"
msgid "Window"
msgstr ""
#. i18n: context: Action (view_newwindow), Actions (Window), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:524
#, kde-format
msgctxt "action"
msgid "&New Window"
msgstr ""
#. i18n: context: Action (view_newwindow), Actions (Window), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:526
#, kde-format
msgctxt "action"
msgid "New Window"
msgstr ""
#. i18n: context: Action (windows_next), Actions (Window), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:536
#, kde-format
msgctxt "action"
msgid "N&ext"
msgstr ""
#. i18n: context: Action (windows_next), Actions (Window), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:538
#, kde-format
msgctxt "action"
msgid "Next"
msgstr ""
#. i18n: context: Action (windows_previous), Actions (Window), ActionCollection (Menu)
#. i18n: context: Action (windows_previous), Actions (Window), ActionCollection (Menu)
#. i18n: context: Action (windows_previous), Actions (Window), ActionCollection (Menu)
#. i18n: context: Action (windows_previous), Actions (Window), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:548 krita/kritamenu.action:550
#, kde-format
msgctxt "action"
msgid "Previous"
msgstr ""
#. i18n: context: Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:559
#, kde-format
msgctxt "action"
msgid "View"
msgstr ""
#. i18n: context: Action (view_show_canvas_only), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:562
#, kde-format
msgctxt "action"
msgid "&Show Canvas Only"
msgstr ""
#. i18n: context: Action (view_show_canvas_only), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:564
#, kde-format
msgctxt "action"
msgid "Show just the canvas or the whole window"
msgstr ""
#. i18n: context: Action (fullscreen), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:574
#, kde-format
msgctxt "action"
msgid "F&ull Screen Mode"
msgstr ""
#. i18n: context: Action (fullscreen), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:576
#, kde-format
msgctxt "action"
msgid "Display the window in full screen"
msgstr ""
#. i18n: context: Action (wrap_around_mode), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:586
#, kde-format
msgctxt "action"
msgid "&Wrap Around Mode"
msgstr ""
#. i18n: context: Action (wrap_around_mode), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:588
#, kde-format
msgctxt "action"
msgid "Wrap Around Mode"
msgstr ""
#. i18n: context: Action (level_of_detail_mode), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:598
#, kde-format
msgctxt "action"
msgid "&Instant Preview Mode"
msgstr ""
#. i18n: context: Action (level_of_detail_mode), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:600
#, kde-format
msgctxt "action"
msgid "Instant Preview Mode"
msgstr ""
#. i18n: context: Action (softProof), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:610
#, kde-format
msgctxt "action"
msgid "Soft Proofing"
msgstr ""
#. i18n: context: Action (softProof), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:612
#, kde-format
msgctxt "action"
msgid "Turns on Soft Proofing"
msgstr ""
#. i18n: context: Action (gamutCheck), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:620
#, kde-format
msgctxt "action"
msgid "Out of Gamut Warnings"
msgstr ""
#. i18n: context: Action (gamutCheck), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:622
#, kde-format
msgctxt "action"
msgid "Turns on warnings for colors out of proofed gamut, needs soft proofing to be turned on."
msgstr ""
#. i18n: context: Action (mirror_canvas), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (mirror_canvas), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (mirror_canvas), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (mirror_canvas), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:630 krita/kritamenu.action:632
#, kde-format
msgctxt "action"
msgid "Mirror View"
msgstr ""
#. i18n: context: Action (zoom_to_100pct), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:640
#, kde-format
msgctxt "action"
msgid "&Reset zoom"
msgstr ""
#. i18n: context: Action (zoom_to_100pct), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:642
#, kde-format
msgctxt "action"
msgid "Reset zoom"
msgstr ""
#. i18n: context: Action (view_zoom_in), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:652
#, kde-format
msgctxt "action"
msgid "Zoom &In"
msgstr ""
#. i18n: context: Action (view_zoom_in), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:654
#, kde-format
msgctxt "action"
msgid "Zoom In"
msgstr ""
#. i18n: context: Action (view_zoom_out), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:664
#, kde-format
msgctxt "action"
msgid "Zoom &Out"
msgstr ""
#. i18n: context: Action (view_zoom_out), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:666
#, kde-format
msgctxt "action"
msgid "Zoom Out"
msgstr ""
#. i18n: context: Action (rotate_canvas_right), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:676
#, kde-format
msgctxt "action"
msgid "Rotate &Canvas Right"
msgstr ""
#. i18n: context: Action (rotate_canvas_right), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:678
#, kde-format
msgctxt "action"
msgid "Rotate Canvas Right"
msgstr ""
#. i18n: context: Action (rotate_canvas_left), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:688
#, kde-format
msgctxt "action"
msgid "Rotate Canvas &Left"
msgstr ""
#. i18n: context: Action (rotate_canvas_left), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:690
#, kde-format
msgctxt "action"
msgid "Rotate Canvas Left"
msgstr ""
#. i18n: context: Action (reset_canvas_rotation), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (reset_canvas_rotation), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (reset_canvas_rotation), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (reset_canvas_rotation), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:700 krita/kritamenu.action:702
#, kde-format
msgctxt "action"
msgid "Reset Canvas Rotation"
msgstr ""
#. i18n: context: Action (view_ruler), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:712
#, kde-format
msgctxt "action"
msgid "Show &Rulers"
msgstr ""
#. i18n: context: Action (view_ruler), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:714
#, kde-format
msgctxt "action"
msgid "Show Rulers"
msgstr ""
#. i18n: context: Action (rulers_track_mouse), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (rulers_track_mouse), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (rulers_track_mouse), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (rulers_track_mouse), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:724 krita/kritamenu.action:726
#, kde-format
msgctxt "action"
msgid "Rulers Track Pointer"
msgstr ""
#. i18n: context: Action (view_show_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:736
#, kde-format
msgctxt "action"
msgid "Show Guides"
msgstr ""
#. i18n: context: Action (view_show_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:738
#, kde-format
msgctxt "action"
msgid "Show or hide guides"
msgstr ""
#. i18n: context: Action (view_lock_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:748
#, kde-format
msgctxt "action"
msgid "Lock Guides"
msgstr ""
#. i18n: context: Action (view_lock_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:750
#, kde-format
msgctxt "action"
msgid "Lock or unlock guides"
msgstr ""
#. i18n: context: Action (view_snap_to_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:760
#, kde-format
msgctxt "action"
msgid "Snap to Guides"
msgstr ""
#. i18n: context: Action (view_snap_to_guides), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:762
#, kde-format
msgctxt "action"
msgid "Snap cursor to guides position"
msgstr ""
#. i18n: context: Action (showStatusBar), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:772
#, kde-format
msgctxt "action"
msgid "Show Status &Bar"
msgstr ""
#. i18n: context: Action (showStatusBar), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:774
#, kde-format
msgctxt "action"
msgid "Show or hide the status bar"
msgstr ""
#. i18n: context: Action (view_pixel_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_pixel_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_pixel_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_pixel_grid), Actions (View), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:784 krita/kritamenu.action:786
#, kde-format
msgctxt "action"
msgid "Show Pixel Grid"
msgstr ""
#. i18n: context: Action (view_grid), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:796
#, kde-format
msgctxt "action"
msgid "Show &Grid"
msgstr ""
#. i18n: context: Action (view_grid), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:798
#, kde-format
msgctxt "action"
msgid "Show Grid"
msgstr ""
#. i18n: context: Action (view_snap_to_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_to_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_to_grid), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_to_grid), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:808 krita/kritamenu.action:810
#, kde-format
msgctxt "action"
msgid "Snap To Grid"
msgstr ""
#. i18n: context: Action (show_snap_options_popup), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (show_snap_options_popup), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (show_snap_options_popup), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (show_snap_options_popup), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:819 krita/kritamenu.action:821
#, kde-format
msgctxt "action"
msgid "Show Snap Options Popup"
msgstr ""
#. i18n: context: Action (view_snap_orthogonal), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_orthogonal), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_orthogonal), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_orthogonal), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:831 krita/kritamenu.action:833
#, kde-format
msgctxt "action"
msgid "Snap Orthogonal"
msgstr ""
#. i18n: context: Action (view_snap_node), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_node), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_node), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_node), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:843 krita/kritamenu.action:845
#, kde-format
msgctxt "action"
msgid "Snap Node"
msgstr ""
#. i18n: context: Action (view_snap_extension), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_extension), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_extension), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_extension), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:855 krita/kritamenu.action:857
#, kde-format
msgctxt "action"
msgid "Snap Extension"
msgstr ""
#. i18n: context: Action (view_snap_intersection), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_intersection), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_intersection), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_intersection), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:867 krita/kritamenu.action:869
#, kde-format
msgctxt "action"
msgid "Snap Intersection"
msgstr ""
#. i18n: context: Action (view_snap_bounding_box), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_bounding_box), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_bounding_box), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_bounding_box), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:879 krita/kritamenu.action:881
#, kde-format
msgctxt "action"
msgid "Snap Bounding Box"
msgstr ""
#. i18n: context: Action (view_snap_image_bounds), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_bounds), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_bounds), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_bounds), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:891 krita/kritamenu.action:893
#, kde-format
msgctxt "action"
msgid "Snap Image Bounds"
msgstr ""
#. i18n: context: Action (view_snap_image_center), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_center), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_center), Actions (View), ActionCollection (Menu)
#. i18n: context: Action (view_snap_image_center), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:903 krita/kritamenu.action:905
#, kde-format
msgctxt "action"
msgid "Snap Image Center"
msgstr ""
#. i18n: context: Action (view_toggle_painting_assistants), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:914
#, kde-format
msgctxt "action"
msgid "S&how Painting Assistants"
msgstr ""
#. i18n: context: Action (view_toggle_painting_assistants), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:916
#, kde-format
msgctxt "action"
msgid "Show Painting Assistants"
msgstr ""
#. i18n: context: Action (view_toggle_assistant_previews), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:926
#, kde-format
msgctxt "action"
msgid "Show &Assistant Previews"
msgstr ""
#. i18n: context: Action (view_toggle_assistant_previews), Actions (View), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:928
#, kde-format
msgctxt "action"
msgid "Show Assistant Previews"
msgstr ""
#. i18n: context: Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:939
#, kde-format
msgctxt "action"
msgid "Image"
msgstr ""
#. i18n: context: Action (image_color), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:954
#, kde-format
msgctxt "action"
msgid "&Image Background Color and Transparency..."
msgstr ""
#. i18n: context: Action (image_color), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:956
#, kde-format
msgctxt "action"
msgid "Change the background color of the image"
msgstr ""
#. i18n: context: Action (imagecolorspaceconversion), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:966
#, kde-format
msgctxt "action"
msgid "&Convert Image Color Space..."
msgstr ""
#. i18n: context: Action (imagecolorspaceconversion), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:968
#, kde-format
msgctxt "action"
msgid "Convert Image Color Space"
msgstr ""
#. i18n: context: Action (trim_to_image), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:978
#, kde-format
msgctxt "action"
msgid "&Trim to Image Size"
msgstr ""
#. i18n: context: Action (trim_to_image), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:980
#, kde-format
msgctxt "action"
msgid "Trim to Image Size"
msgstr ""
#. i18n: context: Action (resizeimagetolayer), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:990
#, kde-format
msgctxt "action"
msgid "Trim to Current &Layer"
msgstr ""
#. i18n: context: Action (resizeimagetolayer), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:992
#, kde-format
msgctxt "action"
msgid "Trim to Current Layer"
msgstr ""
#. i18n: context: Action (resizeimagetoselection), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1002
#, kde-format
msgctxt "action"
msgid "Trim to S&election"
msgstr ""
#. i18n: context: Action (resizeimagetoselection), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1004
#, kde-format
msgctxt "action"
msgid "Trim to Selection"
msgstr ""
#. i18n: context: Action (rotateimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1014
#, kde-format
msgctxt "action"
msgid "&Rotate Image..."
msgstr ""
#. i18n: context: Action (rotateimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1016
#, kde-format
msgctxt "action"
msgid "Rotate Image"
msgstr ""
#. i18n: context: Action (rotateImageCW90), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1026
#, kde-format
msgctxt "action"
msgid "Rotate &Image 90° to the Right"
msgstr ""
#. i18n: context: Action (rotateImageCW90), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1028
#, kde-format
msgctxt "action"
msgid "Rotate Image 90° to the Right"
msgstr ""
#. i18n: context: Action (rotateImageCCW90), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1038
#, kde-format
msgctxt "action"
msgid "Rotate Image &90° to the Left"
msgstr ""
#. i18n: context: Action (rotateImageCCW90), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1040
#, kde-format
msgctxt "action"
msgid "Rotate Image 90° to the Left"
msgstr ""
#. i18n: context: Action (rotateImage180), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1050
#, kde-format
msgctxt "action"
msgid "Rotate Image &180°"
msgstr ""
#. i18n: context: Action (rotateImage180), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1052
#, kde-format
msgctxt "action"
msgid "Rotate Image 180°"
msgstr ""
#. i18n: context: Action (shearimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1062
#, kde-format
msgctxt "action"
msgid "&Shear Image..."
msgstr ""
#. i18n: context: Action (shearimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1064
#, kde-format
msgctxt "action"
msgid "Shear Image"
msgstr ""
#. i18n: context: Action (mirrorImageHorizontal), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1074
#, kde-format
msgctxt "action"
msgid "&Mirror Image Horizontally"
msgstr ""
#. i18n: context: Action (mirrorImageHorizontal), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1076
#, kde-format
msgctxt "action"
msgid "Mirror Image Horizontally"
msgstr ""
#. i18n: context: Action (mirrorImageVertical), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1086
#, kde-format
msgctxt "action"
msgid "Mirror Image &Vertically"
msgstr ""
#. i18n: context: Action (mirrorImageVertical), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1088
#, kde-format
msgctxt "action"
msgid "Mirror Image Vertically"
msgstr ""
#. i18n: context: Action (imagesize), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1098
#, kde-format
msgctxt "action"
msgid "Scale Image To &New Size..."
msgstr ""
#. i18n: context: Action (imagesize), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1100
#, kde-format
msgctxt "action"
msgid "Scale Image To New Size"
msgstr ""
#. i18n: context: Action (offsetimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1110
#, kde-format
msgctxt "action"
msgid "&Offset Image..."
msgstr ""
#. i18n: context: Action (offsetimage), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1112
#, kde-format
msgctxt "action"
msgid "Offset Image"
msgstr ""
#. i18n: context: Action (canvassize), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1122
#, kde-format
msgctxt "action"
msgid "R&esize Canvas..."
msgstr ""
#. i18n: context: Action (canvassize), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1124
#, kde-format
msgctxt "action"
msgid "Resize Canvas"
msgstr ""
#. i18n: context: Action (imagesplit), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1134
#, kde-format
msgctxt "action"
msgid "Im&age Split "
msgstr ""
#. i18n: context: Action (imagesplit), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1136
#, kde-format
msgctxt "action"
msgid "Image Split"
msgstr ""
#. i18n: context: Action (separate), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1146
#, kde-format
msgctxt "action"
msgid "Separate Ima&ge..."
msgstr ""
#. i18n: context: Action (separate), Actions (Image), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1148
#, kde-format
msgctxt "action"
msgid "Separate Image"
msgstr ""
#. i18n: context: Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1159
#, kde-format
msgctxt "action"
msgid "Select"
msgstr ""
#. i18n: context: Action (deselect), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1174
#, kde-format
msgctxt "action"
msgid "&Deselect"
msgstr ""
#. i18n: context: Action (reselect), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1186
#, kde-format
msgctxt "action"
msgid "&Reselect"
msgstr ""
#. i18n: context: Action (reselect), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1188
#, kde-format
msgctxt "action"
msgid "Reselect"
msgstr ""
#. i18n: context: Action (krita_filter_invert), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1198
#, kde-format
msgctxt "action"
msgid "&Invert"
msgstr ""
#. i18n: context: Action (krita_filter_invert), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1200
#, kde-format
msgctxt "action"
msgid "Invert"
msgstr ""
#. i18n: context: Action (convert_to_vector_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1210
#, kde-format
msgctxt "action"
msgid "&Convert to Vector Selection"
msgstr ""
#. i18n: context: Action (convert_to_vector_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1212
#, kde-format
msgctxt "action"
msgid "Convert to Vector Selection"
msgstr ""
#. i18n: context: Action (convert_shapes_to_vector_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1222
#, kde-format
msgctxt "action"
msgid "Convert Shapes to &Vector Selection"
msgstr ""
#. i18n: context: Action (convert_shapes_to_vector_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1224
#, kde-format
msgctxt "action"
msgid "Convert Shapes to Vector Selection"
msgstr ""
#. i18n: context: Action (featherselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1234
#, kde-format
msgctxt "action"
msgid "&Feather Selection..."
msgstr ""
#. i18n: context: Action (featherselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1236
#, kde-format
msgctxt "action"
msgid "Feather Selection"
msgstr ""
#. i18n: context: Action (toggle_display_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1246
#, kde-format
msgctxt "action"
msgid "Dis&play Selection"
msgstr ""
#. i18n: context: Action (toggle_display_selection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1248
#, kde-format
msgctxt "action"
msgid "Display Selection"
msgstr ""
#. i18n: context: Action (selectionscale), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1258
#, kde-format
msgctxt "action"
msgid "Sca&le..."
msgstr ""
#. i18n: context: Action (selectionscale), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1260
#, kde-format
msgctxt "action"
msgid "Scale"
msgstr ""
#. i18n: context: Action (colorrange), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1270
#, kde-format
msgctxt "action"
msgid "S&elect from Color Range..."
msgstr ""
#. i18n: context: Action (colorrange), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1272
#, kde-format
msgctxt "action"
msgid "Select from Color Range"
msgstr ""
#. i18n: context: Action (selectopaque), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1282
#, kde-format
msgctxt "action"
msgid "Select &Opaque"
msgstr ""
#. i18n: context: Action (growselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1294
#, kde-format
msgctxt "action"
msgid "&Grow Selection..."
msgstr ""
#. i18n: context: Action (growselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1296
#, kde-format
msgctxt "action"
msgid "Grow Selection"
msgstr ""
#. i18n: context: Action (shrinkselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1306
#, kde-format
msgctxt "action"
msgid "S&hrink Selection..."
msgstr ""
#. i18n: context: Action (shrinkselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1308
#, kde-format
msgctxt "action"
msgid "Shrink Selection"
msgstr ""
#. i18n: context: Action (borderselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1318
#, kde-format
msgctxt "action"
msgid "&Border Selection..."
msgstr ""
#. i18n: context: Action (borderselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1320
#, kde-format
msgctxt "action"
msgid "Border Selection"
msgstr ""
#. i18n: context: Action (smoothselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1330
#, kde-format
msgctxt "action"
msgid "S&mooth"
msgstr ""
#. i18n: context: Action (smoothselection), Actions (Select), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1332
#, kde-format
msgctxt "action"
msgid "Smooth"
msgstr ""
#. i18n: context: Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1343
#, kde-format
msgctxt "action"
msgid "Filter"
msgstr ""
#. i18n: context: Action (filter_apply_again), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1346
#, kde-format
msgctxt "action"
msgid "&Apply Filter Again"
msgstr ""
#. i18n: context: Action (filter_apply_again), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1348
#, kde-format
msgctxt "action"
msgid "Apply Filter Again"
msgstr ""
#. i18n: context: Action (adjust_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (adjust_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (adjust_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (adjust_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1358 krita/kritamenu.action:1360
#, kde-format
msgctxt "action"
msgid "Adjust"
msgstr ""
#. i18n: context: Action (artistic_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (artistic_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (artistic_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (artistic_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1368 krita/kritamenu.action:1370
#, kde-format
msgctxt "action"
msgid "Artistic"
msgstr ""
#. i18n: context: Action (color_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (color_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (color_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (color_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1388 krita/kritamenu.action:1390
#, kde-format
msgctxt "action"
msgid "Colors"
msgstr ""
#. i18n: context: Action (edge_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (edge_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (edge_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (edge_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1398 krita/kritamenu.action:1400
#, kde-format
msgctxt "action"
msgid "Edge Detection"
msgstr ""
#. i18n: context: Action (enhance_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (enhance_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (enhance_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (enhance_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1408 krita/kritamenu.action:1410
#, kde-format
msgctxt "action"
msgid "Enhance"
msgstr ""
#. i18n: context: Action (emboss_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (emboss_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (emboss_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (emboss_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1418 krita/kritamenu.action:1420
#, kde-format
msgctxt "action"
msgid "Emboss"
msgstr ""
#. i18n: context: Action (map_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (map_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (map_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (map_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1428 krita/kritamenu.action:1430
#, kde-format
msgctxt "action"
msgid "Map"
msgstr ""
#. i18n: context: Action (other_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (other_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (other_filters), Actions (Filter), ActionCollection (Menu)
#. i18n: context: Action (other_filters), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1438 krita/kritamenu.action:1440
#, kde-format
msgctxt "action"
msgid "Other"
msgstr ""
#. i18n: context: Action (QMic), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1448
#, kde-format
msgctxt "action"
msgid "Start G'MIC-Qt"
msgstr ""
#. i18n: context: Action (QMic), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1450
#, kde-format
msgctxt "action"
msgid "Start G'Mic-Qt"
msgstr ""
#. i18n: context: Action (QMicAgain), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1458
#, kde-format
msgctxt "action"
msgid "Re-apply the last G'MIC filter"
msgstr ""
#. i18n: context: Action (QMicAgain), Actions (Filter), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1460
#, kde-format
msgctxt "action"
msgid "Apply the last G'Mic-Qt action again"
msgstr ""
#. i18n: context: Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1469
#, kde-format
msgctxt "action"
msgid "Tools"
msgstr ""
#. i18n: context: Action (Recording_Start_Recording_Macro), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1472
#, kde-format
msgctxt "action"
msgid "&Start recording macro"
msgstr ""
#. i18n: context: Action (Recording_Start_Recording_Macro), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1474
#, kde-format
msgctxt "action"
msgid "Start recording macro"
msgstr ""
#. i18n: context: Action (Recording_Stop_Recording_Macro), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1484
#, kde-format
msgctxt "action"
msgid "Stop &recording actions"
msgstr ""
#. i18n: context: Action (Recording_Stop_Recording_Macro), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1486
#, kde-format
msgctxt "action"
msgid "Stop recording actions"
msgstr ""
#. i18n: context: Action (Macro_Open_Play), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1496
#, kde-format
msgctxt "action"
msgid "&Open and play..."
msgstr ""
#. i18n: context: Action (Macro_Open_Play), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1498
#, kde-format
msgctxt "action"
msgid "Open and play"
msgstr ""
#. i18n: context: Action (Macro_Open_Edit), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1508
#, kde-format
msgctxt "action"
msgid "Open &and edit..."
msgstr ""
#. i18n: context: Action (Macro_Open_Edit), Actions (Tools), ActionCollection (Menu)
#. +> trunk5
#: krita/kritamenu.action:1510
#, kde-format
msgctxt "action"
msgid "Open and edit"
msgstr ""
#. i18n: context: Action (options_configure), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1524
#, kde-format
msgctxt "action"
msgid "&Configure Krita..."
msgstr ""
#. i18n: context: Action (options_configure), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1526
#, kde-format
msgctxt "action"
msgid "Configure Krita"
msgstr ""
#. i18n: context: Action (manage_bundles), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1536
#, kde-format
msgctxt "action"
msgid "&Manage Resources..."
msgstr ""
#. i18n: context: Action (manage_bundles), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1538
#, kde-format
msgctxt "action"
msgid "Manage Resources"
msgstr ""
#. i18n: context: Action (switch_application_language), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1548
#, kde-format
msgctxt "action"
msgid "Switch Application &Language..."
msgstr ""
#. i18n: context: Action (switch_application_language), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1550
#, kde-format
msgctxt "action"
msgid "Switch Application Language"
msgstr ""
#. i18n: context: Action (view_toggledockers), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1558
#, kde-format
msgctxt "action"
msgid "&Show Dockers"
msgstr ""
#. i18n: context: Action (view_toggledockers), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1560
#, kde-format
msgctxt "action"
msgid "Show Dockers"
msgstr ""
#. i18n: context: Action (view_toggledockertitlebars), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1570
#, kde-format
msgctxt "action"
msgid "Sho&w Docker Titlebars"
msgstr ""
#. i18n: context: Action (view_toggledockertitlebars), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1572
#, kde-format
msgctxt "action"
msgid "Show Docker Titlebars"
msgstr ""
#. i18n: context: Action (options_configure_toolbars), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1582
#, kde-format
msgctxt "action"
msgid "Configure Tool&bars..."
msgstr ""
#. i18n: context: Action (options_configure_toolbars), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1584
#, kde-format
msgctxt "action"
msgid "Configure Toolbars"
msgstr ""
#. i18n: context: Action (settings_dockers_menu), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_dockers_menu), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_dockers_menu), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_dockers_menu), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1594 krita/kritamenu.action:1596
#, kde-format
msgctxt "action"
msgid "Dockers"
msgstr ""
#. i18n: context: Action (theme_menu), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1604
#, kde-format
msgctxt "action"
msgid "&Themes"
msgstr ""
#. i18n: context: Action (theme_menu), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1606
#, kde-format
msgctxt "action"
msgid "Themes"
msgstr ""
#. i18n: context: Action (settings_active_author), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_active_author), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_active_author), Actions (Settings), ActionCollection (Menu)
#. i18n: context: Action (settings_active_author), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1614 krita/kritamenu.action:1616
#, kde-format
msgctxt "action"
msgid "Active Author Profile"
msgstr ""
#. i18n: context: Action (options_configure_keybinding), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1624
#, kde-format
msgctxt "action"
msgid "Configure S&hortcuts..."
msgstr ""
#. i18n: context: Action (options_configure_keybinding), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1626
#, kde-format
msgctxt "action"
msgid "Configure Shortcuts"
msgstr ""
#. i18n: context: Action (window), Actions (Settings), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1636
#, kde-format
msgctxt "action"
msgid "&Window"
msgstr ""
#. i18n: context: Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1647
#, kde-format
msgctxt "action"
msgid "Help"
msgstr ""
#. i18n: context: Action (help_contents), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1650
#, kde-format
msgctxt "action"
msgid "Krita &Handbook"
msgstr ""
#. i18n: context: Action (help_contents), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1652
#, kde-format
msgctxt "action"
msgid "Krita Handbook"
msgstr ""
#. i18n: context: Action (help_report_bug), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1660
#, kde-format
msgctxt "action"
msgid "&Report Bug..."
msgstr ""
#. i18n: context: Action (help_report_bug), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1662
#, kde-format
msgctxt "action"
msgid "Report Bug"
msgstr ""
#. i18n: context: Action (help_about_app), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1670
#, kde-format
msgctxt "action"
msgid "&About Krita"
msgstr ""
#. i18n: context: Action (help_about_app), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1672
#, kde-format
msgctxt "action"
msgid "About Krita"
msgstr ""
#. i18n: context: Action (help_about_kde), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1680
#, kde-format
msgctxt "action"
msgid "About &KDE"
msgstr ""
#. i18n: context: Action (help_about_kde), Actions (Help), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1682
#, kde-format
msgctxt "action"
msgid "About KDE"
msgstr ""
#. i18n: context: Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1691
#, kde-format
msgctxt "action"
msgid "Brushes and Stuff"
msgstr ""
#. i18n: context: Action (gradients), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1694
#, kde-format
msgctxt "action"
msgid "&Gradients"
msgstr ""
#. i18n: context: Action (gradients), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1696
#, kde-format
msgctxt "action"
msgid "Gradients"
msgstr ""
#. i18n: context: Action (patterns), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1704
#, kde-format
msgctxt "action"
msgid "&Patterns"
msgstr ""
#. i18n: context: Action (patterns), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1706
#, kde-format
msgctxt "action"
msgid "Patterns"
msgstr ""
#. i18n: context: Action (dual), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1714
#, kde-format
msgctxt "action"
msgid "&Color"
msgstr ""
#. i18n: context: Action (dual), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1716
#, kde-format
msgctxt "action"
msgid "Color"
msgstr ""
#. i18n: context: Action (paintops), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1724
#, kde-format
msgctxt "action"
msgid "&Painter's Tools"
msgstr ""
#. i18n: context: Action (paintops), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1726
#, kde-format
msgctxt "action"
msgid "Painter's Tools"
msgstr ""
#. i18n: context: Action (composite_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (composite_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (composite_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (composite_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1734 krita/kritamenu.action:1736
#, kde-format
msgctxt "action"
msgid "Brush composite"
msgstr ""
#. i18n: context: Action (brushslider1), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider1), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider1), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider1), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1744 krita/kritamenu.action:1746
#, kde-format
msgctxt "action"
msgid "Brush option slider 1"
msgstr ""
#. i18n: context: Action (brushslider2), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider2), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider2), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider2), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1754 krita/kritamenu.action:1756
#, kde-format
msgctxt "action"
msgid "Brush option slider 2"
msgstr ""
#. i18n: context: Action (brushslider3), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider3), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider3), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (brushslider3), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1764 krita/kritamenu.action:1766
#, kde-format
msgctxt "action"
msgid "Brush option slider 3"
msgstr ""
#. i18n: context: Action (mirror_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (mirror_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (mirror_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (mirror_actions), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1774 krita/kritamenu.action:1776
#, kde-format
msgctxt "action"
msgid "Mirror"
msgstr ""
#. i18n: context: Action (workspaces), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (workspaces), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (workspaces), Actions (BrushesAndStuff), ActionCollection (Menu)
#. i18n: context: Action (workspaces), Actions (BrushesAndStuff), ActionCollection (Menu)
#. +> trunk5 stable5
#: krita/kritamenu.action:1784 krita/kritamenu.action:1786
#, kde-format
msgctxt "action"
msgid "Workspaces"
msgstr ""
#. +> trunk5 stable5
#: krita/main.cc:161 libs/ui/dialogs/kis_dlg_preferences.cc:327
#: libs/ui/input/kis_tablet_debugger.cpp:104 libs/ui/kis_filter_manager.cc:219
#: libs/ui/kis_filter_manager.cc:228 libs/ui/kis_layer_manager.cc:346
#: libs/ui/kis_layer_manager.cc:905 libs/ui/kis_node_manager.cpp:1090
#: libs/ui/KisApplication.cpp:734 libs/ui/KisApplication.cpp:737
#: libs/ui/KisApplication.cpp:759 libs/ui/KisApplication.cpp:785
#: libs/ui/KisApplication.cpp:806 libs/ui/KisDocument.cpp:612
#: libs/ui/KisDocument.cpp:1002 libs/ui/KisDocument.cpp:1084
#: libs/ui/KisDocument.cpp:1124 libs/ui/KisDocument.cpp:1132
#: libs/ui/KisMainWindow.cpp:808 libs/ui/KisMainWindow.cpp:894
#: libs/ui/KisMainWindow.cpp:907 libs/ui/KisMainWindow.cpp:957
#: libs/ui/KisMainWindow.cpp:1704 libs/ui/KisMainWindow.cpp:1734
#: libs/ui/KisMainWindow.cpp:1811 libs/ui/KisMainWindow.cpp:1823
#: libs/ui/KisPart.cpp:428 libs/ui/KisPart.cpp:431
#: libs/ui/KisRemoteFileFetcher.cpp:56 libs/ui/KisTemplateCreateDia.cpp:298
#: libs/ui/KisTemplateCreateDia.cpp:404 libs/ui/KisView.cpp:712
#: libs/ui/opengl/kis_opengl_canvas2.cpp:342
#: libs/ui/opengl/kis_opengl_image_textures.cpp:652
#: libs/ui/widgets/kis_custom_image_widget.cc:267
#: plugins/assistants/Assistants/kis_assistant_tool.cc:682
#: plugins/assistants/Assistants/kis_assistant_tool.cc:685
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:159
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:469
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:473
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:479
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor.cpp:110
#: plugins/extensions/imagesplit/imagesplit.cpp:82
#: plugins/extensions/imagesplit/imagesplit.cpp:84
#: plugins/extensions/qmic/QMic.cpp:125 plugins/extensions/qmic/QMic.cpp:297
#: plugins/extensions/qmic/QMic.cpp:326
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:220
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:228
#: plugins/extensions/resourcemanager/resourcemanager.cpp:203
#: plugins/extensions/resourcemanager/resourcemanager.cpp:276
#: plugins/extensions/resourcemanager/resourcemanager.cpp:280
#: plugins/tools/basictools/kis_tool_colorpicker.cc:195
#: plugins/tools/basictools/kis_tool_colorpicker.cc:200
#: plugins/tools/basictools/kis_tool_colorpicker.cc:242
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:811
#: plugins/tools/tool_transform2/kis_free_transform_strategy_gsl_helpers.cpp:338
#, kde-format
msgctxt "@title:window"
msgid "Krita"
msgstr ""
#. +> trunk5
#: krita/main.cc:161
#, kde-format
msgid "XDG_DATA_DIRS is not set. Krita cannot run."
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/plugin/KoCreatePathToolFactory.cpp:30
#, kde-format
msgid "Draw path"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/plugin/KoPencilToolFactory.cpp:29
#, kde-format
msgid "Freehand path"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoCreatePathTool.cpp:475
#, kde-format
msgid "Angle snapping delta:"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoCreatePathTool.cpp:482
#, kde-format
msgid "Activate angle snap:"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoCreatePathTool.cpp:490
#, kde-format
msgid "Angle Constraints"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPrecision)
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:312
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:148
#, kde-format
msgid "Precision:"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:314
#, kde-format
msgctxt "The raw line data"
msgid "Raw"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:315
#: libs/flake/KoConnectionShapeConfigWidget.cpp:33
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.cpp:29
#: plugins/paintops/curvebrush/curve_paintop_plugin.cpp:41
#, kde-format
msgid "Curve"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:316
#: libs/flake/KoConnectionShapeConfigWidget.cpp:32
#, kde-format
msgid "Straight"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, optimize)
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:325
#: libs/basicflakes/tools/KoPencilTool.cpp:331
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:234
#, kde-format
msgid "Optimize"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:337
#, kde-format
msgid "Exactness:"
msgstr ""
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:370
#: libs/basicflakes/tools/KoPencilTool.cpp:371
#, kde-format
msgid "Pencil"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeCBox)
#. +> trunk5 stable5
#: libs/basicflakes/tools/KoPencilTool.cpp:376
#: libs/widgets/KoGradientEditWidget.cpp:164
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.cpp:30
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:47
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:846
#, kde-format
msgid "Line"
msgstr ""
#. +> trunk5 stable5
#: libs/brush/kis_auto_brush.cpp:392
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Brush Density recommended value 100.0"
msgstr ""
#. +> trunk5 stable5
#: libs/brush/kis_auto_brush.cpp:396
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Brush Randomness recommended value 0.0"
msgstr ""
#. +> trunk5 stable5
#: libs/brush/kis_brush.cpp:641
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Spacing > 0.5, consider disabling Instant Preview"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2group.cpp:359 libs/command/kundo2stack.cpp:1115
#, kde-format
msgctxt "Default text for undo action"
msgid "Undo"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2group.cpp:359 libs/command/kundo2stack.cpp:1115
#: libs/ui/KisUndoStackAction.cpp:54
#, kde-format
msgid "Undo %1"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2group.cpp:386 libs/command/kundo2stack.cpp:1141
#, kde-format
msgctxt "Default text for redo action"
msgid "Redo"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2group.cpp:386 libs/command/kundo2stack.cpp:1141
#: libs/ui/KisUndoStackAction.cpp:54
#, kde-format
msgid "Redo %1"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2model.cpp:67
#: plugins/dockers/historydocker/KisUndoModel.cpp:70
#, kde-format
msgid "<empty>"
msgstr ""
#. +> trunk5 stable5
#: libs/command/kundo2stack.cpp:1386 libs/ui/KisUndoStackAction.cpp:46
#: libs/widgetutils/xmlgui/kundoactions.cpp:45
#, kde-format
msgid "Redo"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, liquifyUndo)
#. +> trunk5 stable5
#: libs/command/kundo2stack.cpp:1405 libs/ui/KisUndoStackAction.cpp:38
#: libs/widgetutils/xmlgui/kundoactions.cpp:64
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1828
#, kde-format
msgid "Undo"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoConnectionShapeTypeCommand.cpp:31
msgctxt "(qtundo-format)"
msgid "Change Connection"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoMultiPathPointJoinCommand.cpp:30
#: libs/flake/commands/KoSubpathJoinCommand.cpp:53
msgctxt "(qtundo-format)"
msgid "Join subpaths"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoMultiPathPointMergeCommand.cpp:50
#: libs/flake/commands/KoPathPointMergeCommand.cpp:161
msgctxt "(qtundo-format)"
msgid "Merge points"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoParameterHandleMoveCommand.cpp:35
msgctxt "(qtundo-format)"
msgid "Change parameter"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoParameterToPathCommand.cpp:44
#: libs/flake/commands/KoParameterToPathCommand.cpp:53
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:610
msgctxt "(qtundo-format)"
msgid "Convert to Path"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathBreakAtPointCommand.cpp:40
msgctxt "(qtundo-format)"
msgid "Break subpath at points"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathCombineCommand.cpp:67
msgctxt "(qtundo-format)"
msgid "Combine paths"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathControlPointMoveCommand.cpp:42
msgctxt "(qtundo-format)"
msgid "Move control point"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathFillRuleCommand.cpp:44
msgctxt "(qtundo-format)"
msgid "Set fill rule"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathPointInsertCommand.cpp:79
msgctxt "(qtundo-format)"
msgid "Insert points"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathPointMoveCommand.cpp:43
#: libs/flake/commands/KoPathPointMoveCommand.cpp:59
msgctxt "(qtundo-format)"
msgid "Move points"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathPointRemoveCommand.cpp:104
#: libs/flake/commands/KoPathPointRemoveCommand.cpp:133
msgctxt "(qtundo-format)"
msgid "Remove points"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathPointTypeCommand.cpp:49
msgctxt "(qtundo-format)"
msgid "Set point type"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathReverseCommand.cpp:51
msgctxt "(qtundo-format)"
msgid "Reverse paths"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathSegmentBreakCommand.cpp:41
msgctxt "(qtundo-format)"
msgid "Break subpath"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathSegmentTypeCommand.cpp:134
msgctxt "(qtundo-format)"
msgid "Change segments to curves"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathSegmentTypeCommand.cpp:136
msgctxt "(qtundo-format)"
msgid "Change segments to lines"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoPathShapeMarkerCommand.cpp:41
msgctxt "(qtundo-format)"
msgid "Set marker"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeAlignCommand.cpp:84
msgctxt "(qtundo-format)"
msgid "Align shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeBackgroundCommand.cpp:66
#: libs/flake/commands/KoShapeBackgroundCommand.cpp:77
#: libs/flake/commands/KoShapeBackgroundCommand.cpp:92
msgctxt "(qtundo-format)"
msgid "Set background"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeClipCommand.cpp:70
#: libs/flake/commands/KoShapeClipCommand.cpp:85
msgctxt "(qtundo-format)"
msgid "Clip Shape"
msgstr ""
#. +> trunk5
#: libs/flake/commands/KoShapeCreateCommand.cpp:66
msgctxt "(qtundo-format)"
msgid "Create shape"
msgid_plural "Create shapes"
msgstr[0] ""
msgstr[1] ""
#. +: msgctxt-pad abcd1234efgh5665hgfe4321dcba
#. +> stable5
#: libs/flake/commands/KoShapeCreateCommand.cpp:52
msgctxt "(qtundo-format)|abcd1234efgh5665hgfe4321dcba"
msgid "Create shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeDeleteCommand.cpp:56
#: libs/flake/commands/KoShapeDeleteCommand.cpp:69
msgctxt "(qtundo-format)"
msgid "Delete shape"
msgid_plural "Delete shapes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeDistributeCommand.cpp:130
msgctxt "(qtundo-format)"
msgid "Distribute shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeGroupCommand.cpp:107
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1039
msgctxt "(qtundo-format)"
msgid "Group shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeGroupCommand.cpp:109
msgctxt "(qtundo-format)"
msgid "Add shapes to group"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeKeepAspectRatioCommand.cpp:30
msgctxt "(qtundo-format)"
msgid "Keep Aspect Ratio"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeLockCommand.cpp:36
msgctxt "(qtundo-format)"
msgid "Lock shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeMoveCommand.cpp:36
#: libs/flake/commands/KoShapeMoveCommand.cpp:48
msgctxt "(qtundo-format)"
msgid "Move shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeRenameCommand.cpp:41
msgctxt "(qtundo-format)"
msgid "Rename Shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeReorderCommand.cpp:52
msgctxt "(qtundo-format)"
msgid "Reorder shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeResizeCommand.cpp:47
#: plugins/tools/defaulttool/defaulttool/DefaultToolWidget.cpp:239
msgctxt "(qtundo-format)"
msgid "Resize"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeRunAroundCommand.cpp:72
msgctxt "(qtundo-format)"
msgid "Change Shape RunAround"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeShadowCommand.cpp:67
#: libs/flake/commands/KoShapeShadowCommand.cpp:84
#: libs/flake/commands/KoShapeShadowCommand.cpp:95
msgctxt "(qtundo-format)"
msgid "Set Shadow"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeShearCommand.cpp:51
msgctxt "(qtundo-format)"
msgid "Shear shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeSizeCommand.cpp:43
msgctxt "(qtundo-format)"
msgid "Resize shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeStrokeCommand.cpp:67
#: libs/flake/commands/KoShapeStrokeCommand.cpp:86
#: libs/flake/commands/KoShapeStrokeCommand.cpp:97
msgctxt "(qtundo-format)"
msgid "Set stroke"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeTransparencyCommand.cpp:49
#: libs/flake/commands/KoShapeTransparencyCommand.cpp:60
#: libs/flake/commands/KoShapeTransparencyCommand.cpp:73
msgctxt "(qtundo-format)"
msgid "Set opacity"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeUnclipCommand.cpp:96
msgctxt "(qtundo-format)"
msgid "Unclip Shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeUnclipCommand.cpp:105
msgctxt "(qtundo-format)"
msgid "Unclip Shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoShapeUngroupCommand.cpp:62
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1067
msgctxt "(qtundo-format)"
msgid "Ungroup shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoSubpathJoinCommand.cpp:51
msgctxt "(qtundo-format)"
msgid "Close subpath"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/commands/KoSubpathRemoveCommand.cpp:34
msgctxt "(qtundo-format)"
msgid "Remove subpath"
msgstr ""
#. +> trunk5
#: libs/flake/html/HtmlWriter.cpp:83
#, kde-format
msgid "Saving KoShapeLayer to html is not implemented yet!"
msgstr ""
#. +> trunk5
#: libs/flake/html/HtmlWriter.cpp:87
#, kde-format
msgid "KoShapeGroup to html is not implemented yet!"
msgstr ""
#. +> trunk5
#: libs/flake/html/HtmlWriter.cpp:93
#, kde-format
msgid "saving to html failed"
msgstr ""
#. +> trunk5
#: libs/flake/html/HtmlWriter.cpp:97
#, kde-format
msgid "Cannot save %1 to html"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSceneCaptureType)
#. +> trunk5 stable5
#: libs/flake/KoConnectionShapeConfigWidget.cpp:30
#: plugins/extensions/metadataeditor/editors/exif.ui:970
#, kde-format
msgid "Standard"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, linesRBox)
#. i18n: ectx: property (text), item, widget (KComboBox, selectSubdivisionStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectMainStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectGuidesStyle)
#. +> trunk5 stable5
#: libs/flake/KoConnectionShapeConfigWidget.cpp:31
#: plugins/dockers/griddocker/grid_config_widget.ui:357
#: plugins/dockers/griddocker/grid_config_widget.ui:398
#: plugins/dockers/griddocker/grid_config_widget.ui:626
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:216
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:262
#, kde-format
msgid "Lines"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. i18n: ectx: property (text), widget (QLabel, lblTypeDesc)
#. i18n: ectx: property (text), widget (QLabel, typeLabel)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. i18n: ectx: property (text), widget (QLabel, typeDescLabel)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, axisTypeLabel)
#. +> trunk5 stable5
#: libs/flake/KoConnectionShapeConfigWidget.ui:17
#: libs/ui/forms/wdgimageproperties.ui:347
#: libs/ui/forms/wdgstrokeselectionproperties.ui:62
#: libs/ui/widgets/KoFillConfigWidget.ui:205
#: libs/widgets/koDocumentInfoAboutWidget.ui:181
#: libs/widgets/KoGradientEditWidget.cpp:169
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:523
#: plugins/dockers/griddocker/grid_config_widget.ui:86
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:54
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:35
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.ui:20
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:195
#: plugins/impex/ppm/kis_wdg_options_ppm.ui:17
#: plugins/tools/basictools/wdgmultihandtool.ui:57
#, kde-format
msgid "Type:"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoConnectionShapeFactory.cpp:37
#, kde-format
msgid "Tie"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoConnectionShapeFactory.cpp:39
#, kde-format
msgid "A connection between two other shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoMarkerCollection.cpp:82
#: libs/flake/resources/KoSvgSymbolCollectionResource.cpp:154
#: libs/odf/KoOdfReadStore.cpp:133 libs/ui/flake/kis_shape_layer.cc:449
#, kde-format
msgid ""
"Parsing error in the main document at line %1, column %2\n"
"Error message: %3"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoPathShapeFactory.cpp:38
#, kde-format
msgid "Simple path shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoPathShapeFactory.cpp:40
#, kde-format
msgid "A simple path shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoShapeController.cpp:71
#: plugins/flake/textshape/kotext/InsertTextReferenceAction.cpp:63
#: plugins/flake/textshape/kotext/InsertVariableAction.cpp:58
#, kde-format
msgid "%1 Options"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoToolManager.cpp:671
#, kde-format
msgid "Active tool: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/KoToolProxy.cpp:423
msgctxt "(qtundo-format)"
msgid "Paste Image"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/svg/SvgShapeFactory.cpp:36
#, kde-format
msgid "Embedded svg shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/text/KoSvgTextShape.cpp:376
#: plugins/flake/textshape/TextShapeFactory.cpp:44
#: plugins/flake/textshape/TextShapeFactory.cpp:54
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:61
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:63
#, kde-format
msgid "Text"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShape.cpp:378
#: libs/flake/text/KoSvgTextShape.cpp:386
#, kde-format
msgid "SVG Text Shape"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShape.cpp:384
#, kde-format
msgid "SVG Text"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShapeMarkupConverter.cpp:143
#, kde-format
msgid "More than one 'text' node found!"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShapeMarkupConverter.cpp:152
#, kde-format
msgid "Unknown node of type '%1' found!"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShapeMarkupConverter.cpp:158
#, kde-format
msgid "No 'text' node found!"
msgstr ""
#. +> trunk5
#: libs/flake/text/KoSvgTextShapeMarkupConverter.cpp:366
#: libs/flake/text/KoSvgTextShapeMarkupConverter.cpp:609
#, kde-format
msgid "Unknown error writing SVG text element"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoCreateShapesToolFactory.cpp:29
#, kde-format
msgid "Create object"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathSegmentChangeStrategy.cpp:146
msgctxt "(qtundo-format)"
msgid "Change Segment"
msgstr ""
#. +> stable5
#: libs/flake/tools/KoPathTool.cpp:199
#, kde-format
msgid "Line/Curve"
msgstr ""
#. +> trunk5
#: libs/flake/tools/KoPathTool.cpp:211
#, kde-format
msgid "Edit Shape"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:622
#, kde-format
msgid "Drag to move handle."
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:686
#, kde-format
msgid "Drag to move point. Shift click to change point type."
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:688
#, kde-format
msgid "Drag to move control point."
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:716
#, kde-format
msgid "Drag to change curve directly. Double click to insert new path point."
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:724
#, kde-format
msgid "Press B to break path at selected point."
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoPathTool.cpp:726
#, kde-format
msgid "Press B to break path at selected segments."
msgstr ""
#. +> trunk5
#: libs/flake/tools/KoPathToolFactory.cpp:30
#, kde-format
msgid "Edit Shapes Tool"
msgstr ""
#. +> stable5
#: libs/flake/tools/KoPathToolFactory.cpp:30
#, kde-format
msgid "Path editing"
msgstr ""
#. +> trunk5 stable5
#: libs/flake/tools/KoZoomToolFactory.cpp:30
#: libs/widgets/KoZoomController_p.h:41 libs/widgets/KoZoomWidget.cpp:64
#, kde-format
msgid "Zoom"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, zoomInButton)
#. i18n: ectx: property (toolTip), widget (QPushButton, btnZoomIn)
#. +> trunk5 stable5
#: libs/flake/tools/KoZoomToolWidget.ui:20
#: libs/ui/forms/kis_previewwidgetbase.ui:123
#: libs/ui/input/kis_zoom_action.cpp:125
#, kde-format
msgid "Zoom In"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, zoomOutButton)
#. i18n: ectx: property (toolTip), widget (QPushButton, btnZoomOut)
#. +> trunk5 stable5
#: libs/flake/tools/KoZoomToolWidget.ui:30
#: libs/ui/forms/kis_previewwidgetbase.ui:110
#: libs/ui/input/kis_zoom_action.cpp:126
#, kde-format
msgid "Zoom Out"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, corner)
#. i18n: ectx: property (text), widget (QToolButton, smooth)
#. i18n: ectx: property (text), widget (QToolButton, symmetric)
#. i18n: ectx: property (text), widget (QToolButton, lineSegment)
#. i18n: ectx: property (text), widget (QToolButton, curveSegment)
#. i18n: ectx: property (text), widget (QToolButton, linePoint)
#. i18n: ectx: property (text), widget (QToolButton, curvePoint)
#. i18n: ectx: property (text), widget (QToolButton, addPoint)
#. i18n: ectx: property (text), widget (QToolButton, removePoint)
#. i18n: ectx: property (text), widget (QToolButton, breakPoint)
#. i18n: ectx: property (text), widget (QToolButton, breakSegment)
#. i18n: ectx: property (text), widget (QToolButton, joinSegment)
#. i18n: ectx: property (text), widget (QToolButton, mergePoints)
#. i18n: ectx: property (text), widget (QToolButton, btnSelectFile)
#. i18n: ectx: property (text), widget (QToolButton, add)
#. i18n: ectx: property (text), widget (QToolButton, remove)
#. i18n: ectx: property (text), widget (QToolButton, open)
#. i18n: ectx: property (text), widget (QToolButton, save)
#. i18n: ectx: property (text), widget (QToolButton, capNJoinButton)
#. i18n: ectx: property (text), widget (KoColorPopupButton, btnChooseSolidColor)
#. i18n: ectx: property (text), widget (QToolButton, btnSolidColorPick)
#. i18n: ectx: property (text), widget (KoColorPopupButton, btnChoosePredefinedGradient)
#. i18n: ectx: property (text), widget (QToolButton, btnSaveGradient)
#. i18n: ectx: property (text), widget (KisColorButton, paintColor)
#. i18n: ectx: property (text), widget (KisColorButton, backgroundColor)
#. i18n: ectx: property (text), widget (QToolButton, m_bnFileName)
#. i18n: ectx: property (text), widget (QToolButton, bnLandscape)
#. i18n: ectx: property (text), widget (QToolButton, bnPortrait)
#. i18n: ectx: property (text), widget (KoGroupButton, intersect)
#. i18n: ectx: property (text), widget (KoGroupButton, shape)
#. i18n: ectx: property (text), widget (KoGroupButton, replace)
#. i18n: ectx: property (text), widget (KoGroupButton, add)
#. i18n: ectx: property (text), widget (KoGroupButton, pixel)
#. i18n: ectx: property (text), widget (KoGroupButton, subtract)
#. i18n: ectx: property (text), widget (QToolButton, bnSwapFile)
#. i18n: ectx: property (text), widget (KisColorButton, bnColor)
#. i18n: ectx: property (text), widget (KisColorButton, bnHighlightColor)
#. i18n: ectx: property (text), widget (KisColorButton, bnShadowColor)
#. i18n: ectx: property (text), widget (QToolButton, bnFont)
#. i18n: ectx: property (text), widget (QToolButton, bnAdd)
#. i18n: ectx: property (text), widget (QToolButton, bnRemove)
#. i18n: ectx: property (text), widget (QToolButton, bnSelectSaveLocation)
#. i18n: ectx: property (text), widget (QToolButton, bnGetPreview)
#. i18n: ectx: property (text), widget (QToolButton, bnRenderOptions)
#. i18n: ectx: property (text), widget (QToolButton, bnExportOptions)
#. i18n: ectx: property (text), widget (KisToolButton, bnAdd)
#. i18n: ectx: property (text), widget (QToolButton, bnDuplicate)
#. i18n: ectx: property (text), widget (QToolButton, bnLower)
#. i18n: ectx: property (text), widget (QToolButton, bnRaise)
#. i18n: ectx: property (text), widget (QToolButton, bnProperties)
#. i18n: ectx: property (text), widget (QToolButton, bnDelete)
#. i18n: ectx: property (text), widget (QToolButton, bnAddGroup)
#. i18n: ectx: property (text), widget (QToolButton, bnAddDialog)
#. i18n: ectx: property (text), widget (QToolButton, btnFirstFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnPreviousKeyFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnPreviousFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnPlay)
#. i18n: ectx: property (text), widget (QToolButton, btnNextFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnNextKeyFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnLastFrame)
#. i18n: ectx: property (text), widget (KisToolButton, btnAddKeyframe)
#. i18n: ectx: property (text), widget (QToolButton, btnAddDuplicateFrame)
#. i18n: ectx: property (text), widget (KisToolButton, btnDeleteKeyframe)
#. i18n: ectx: property (text), widget (QToolButton, btnOnionSkinOptions)
#. i18n: ectx: property (text), widget (QToolButton, btnLazyFrame)
#. i18n: ectx: property (text), widget (QToolButton, btnDropFrames)
#. i18n: ectx: property (text), widget (QToolButton, m_bnSelectConfigurationFile)
#. i18n: ectx: property (text), widget (QToolButton, m_bnSelectLut)
#. i18n: ectx: property (text), widget (FormattingButton, bulletListButton)
#. i18n: ectx: property (text), widget (QToolButton, moreOptions)
#. i18n: ectx: property (text), widget (QToolButton, customCharacter)
#. i18n: ectx: property (text), widget (QToolButton, toolAutoSpellCheck)
#. i18n: ectx: property (text), widget (QToolButton, resetTextColor)
#. i18n: ectx: property (text), widget (QToolButton, resetBackground)
#. i18n: ectx: property (text), widget (QToolButton, resetBackgroundColor)
#. i18n: ectx: property (text), widget (QToolButton, splitSections)
#. i18n: ectx: property (text), widget (QToolButton, configureSection)
#. i18n: ectx: property (text), widget (QToolButton, insertSection)
#. i18n: ectx: property (text), widget (QuickTableButton, quickTable)
#. i18n: ectx: property (text), widget (QToolButton, insertVariable)
#. i18n: ectx: property (text), widget (QToolButton, insertSpecialChar)
#. i18n: ectx: property (text), widget (QToolButton, insertPageBreak)
#. i18n: ectx: property (text), widget (QPushButton, insertionColorButton)
#. i18n: ectx: property (text), widget (QPushButton, deletionColorButton)
#. i18n: ectx: property (text), widget (QPushButton, formatColorButton)
#. i18n: ectx: property (text), widget (QToolButton, toolButton)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_5)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_7)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_4)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_8)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_3)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_6)
#. i18n: ectx: property (text), widget (QToolButton, toolButton_2)
#. i18n: ectx: property (text), widget (QToolButton, splitCells)
#. i18n: ectx: property (text), widget (QToolButton, mergeCells)
#. i18n: ectx: property (text), widget (FormattingButton, border)
#. i18n: ectx: property (text), widget (QToolButton, removeEffect)
#. i18n: ectx: property (text), widget (QToolButton, addEffect)
#. i18n: ectx: property (text), widget (QToolButton, raiseEffect)
#. i18n: ectx: property (text), widget (QToolButton, lowerEffect)
#. i18n: ectx: property (text), widget (QToolButton, addPreset)
#. i18n: ectx: property (text), widget (QToolButton, removePreset)
#. +> trunk5 stable5
#: libs/flake/tools/PathToolOptionWidgetBase.ui:67
#: libs/flake/tools/PathToolOptionWidgetBase.ui:74
#: libs/flake/tools/PathToolOptionWidgetBase.ui:81
#: libs/flake/tools/PathToolOptionWidgetBase.ui:101
#: libs/flake/tools/PathToolOptionWidgetBase.ui:108
#: libs/flake/tools/PathToolOptionWidgetBase.ui:115
#: libs/flake/tools/PathToolOptionWidgetBase.ui:122
#: libs/flake/tools/PathToolOptionWidgetBase.ui:129
#: libs/flake/tools/PathToolOptionWidgetBase.ui:136
#: libs/flake/tools/PathToolOptionWidgetBase.ui:143
#: libs/flake/tools/PathToolOptionWidgetBase.ui:150
#: libs/flake/tools/PathToolOptionWidgetBase.ui:157
#: libs/flake/tools/PathToolOptionWidgetBase.ui:164
#: libs/ui/forms/wdggeneralsettings.ui:228 libs/ui/forms/wdgnewimage.ui:168
#: libs/ui/forms/wdgnewimage.ui:272 libs/ui/forms/wdgpaintactioneditor.ui:98
#: libs/ui/forms/wdgpaintactioneditor.ui:111
#: libs/ui/forms/wdgperformancesettings.ui:239
#: libs/ui/forms/wdgselectionoptions.ui:40
#: libs/ui/forms/wdgselectionoptions.ui:56
#: libs/ui/forms/wdgselectionoptions.ui:72
#: libs/ui/forms/wdgselectionoptions.ui:91
#: libs/ui/forms/wdgselectionoptions.ui:130
#: libs/ui/forms/wdgselectionoptions.ui:149
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:318
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:371
#: libs/ui/layerstyles/WdgColorOverlay.ui:57
#: libs/ui/layerstyles/wdgInnerGlow.ui:125 libs/ui/layerstyles/WdgSatin.ui:54
#: libs/ui/layerstyles/WdgStroke.ui:166
#: libs/ui/widgets/KoFillConfigWidget.ui:172
#: libs/ui/widgets/KoFillConfigWidget.ui:188
#: libs/ui/widgets/KoFillConfigWidget.ui:299
#: libs/ui/widgets/KoFillConfigWidget.ui:315
#: libs/ui/widgets/KoStrokeConfigWidget.ui:60
#: libs/widgets/KoEditColorSet.ui:48 libs/widgets/KoEditColorSet.ui:58
#: libs/widgets/KoEditColorSet.ui:68 libs/widgets/KoEditColorSet.ui:78
#: libs/widgets/wdg_file_name_requester.ui:35
#: plugins/dockers/animation/wdg_animation.ui:173
#: plugins/dockers/animation/wdg_animation.ui:205
#: plugins/dockers/animation/wdg_animation.ui:237
#: plugins/dockers/animation/wdg_animation.ui:269
#: plugins/dockers/animation/wdg_animation.ui:301
#: plugins/dockers/animation/wdg_animation.ui:333
#: plugins/dockers/animation/wdg_animation.ui:365
#: plugins/dockers/animation/wdg_animation.ui:412
#: plugins/dockers/animation/wdg_animation.ui:422
#: plugins/dockers/animation/wdg_animation.ui:432
#: plugins/dockers/animation/wdg_animation.ui:449
#: plugins/dockers/animation/wdg_animation.ui:459
#: plugins/dockers/animation/wdg_animation.ui:469
#: plugins/dockers/defaultdockers/wdglayerbox.ui:134
#: plugins/dockers/defaultdockers/wdglayerbox.ui:153
#: plugins/dockers/defaultdockers/wdglayerbox.ui:178
#: plugins/dockers/defaultdockers/wdglayerbox.ui:203
#: plugins/dockers/defaultdockers/wdglayerbox.ui:228
#: plugins/dockers/defaultdockers/wdglayerbox.ui:269
#: plugins/dockers/lut/wdglut.ui:196 plugins/dockers/lut/wdglut.ui:230
#: plugins/dockers/palettedocker/wdgpalettedock.ui:47
#: plugins/dockers/palettedocker/wdgpalettedock.ui:66
#: plugins/dockers/palettedocker/wdgpalettedock.ui:89
#: plugins/dockers/palettedocker/wdgpalettedock.ui:119
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:236
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:351
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:83
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:90
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:142
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:149
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:366
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:448
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:127
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:207
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:266
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:40
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:84
#: plugins/flake/textshape/dialogs/FontDecorations.ui:36
#: plugins/flake/textshape/dialogs/FontDecorations.ui:62
#: plugins/flake/textshape/dialogs/FontDecorations.ui:109
#: plugins/flake/textshape/dialogs/FontDecorations.ui:122
#: plugins/flake/textshape/dialogs/FontDecorations.ui:135
#: plugins/flake/textshape/dialogs/FontDecorations.ui:148
#: plugins/flake/textshape/dialogs/FontDecorations.ui:161
#: plugins/flake/textshape/dialogs/FontDecorations.ui:174
#: plugins/flake/textshape/dialogs/FontDecorations.ui:187
#: plugins/flake/textshape/dialogs/FontDecorations.ui:200
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:221
#: plugins/flake/textshape/dialogs/ParagraphDecorations.ui:55
#: plugins/flake/textshape/dialogs/SimpleCharacterWidget.ui:167
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:40
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:59
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:78
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:97
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:129
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:148
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:164
#: plugins/flake/textshape/dialogs/SimpleParagraphWidget.ui:65
#: plugins/flake/textshape/dialogs/SimpleParagraphWidget.ui:189
#: plugins/flake/textshape/dialogs/SimpleSpellCheckingWidget.ui:23
#: plugins/flake/textshape/dialogs/SimpleTableWidget.ui:128
#: plugins/flake/textshape/dialogs/SimpleTableWidget.ui:144
#: plugins/flake/textshape/dialogs/SimpleTableWidget.ui:176
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:87
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:57
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:67
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:74
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:81
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:102
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:109
#, kde-format
msgid "..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, convertToPath)
#. +> trunk5 stable5
#: libs/flake/tools/PathToolOptionWidgetBase.ui:231
#, kde-format
msgid "Convert To Path"
msgstr ""
#. +> trunk5 stable5
#: libs/global/kis_assert.cpp:83
#, kde-format
msgctxt "@title:window"
msgid "Krita: Internal Error"
msgstr ""
#. +> trunk5 stable5
#: libs/global/kis_dom_utils.cpp:115
#, kde-format
msgid "Could not find \"%1\" XML tag in \"%2\""
msgstr ""
#. +> trunk5 stable5
#: libs/global/kis_dom_utils.cpp:145
#, kde-format
msgid "Error: incorrect type (%2) for value %1. Expected %3"
msgstr ""
#. +> trunk5 stable5
#: libs/image/brushengine/kis_paintop_factory.cpp:48
#, kde-format
msgctxt "Category of brush engines"
msgid "Brush engines"
msgstr ""
#. +> trunk5 stable5
#: libs/image/brushengine/kis_paintop_registry.cc:143
#, kde-format
msgid "default"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgRectangleConstraints)
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.cpp:51
#: libs/image/brushengine/kis_standard_uniform_properties_factory.h:30
#: libs/ui/forms/wdgrectangleconstraints.ui:20
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:52
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:63
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:109
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:50
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:44
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:51
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:40
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:59
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:43
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:48
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:46
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:56
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:1027
#, kde-format
msgid "Size"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intWidth)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intCheckSize)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, sizeToStartFromSpinBox)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, deltaValueSpinBox)
#. i18n: ectx: property (suffix), widget (QSpinBox, intWidth)
#. i18n: ectx: property (suffix), widget (QSpinBox, intHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intHSpacing)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intVSpacing)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intXOffset)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intYOffset)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, popupSize)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, minimalShadeSelectorLineHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, lastUsedColorsWidth)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, lastUsedColorsHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, commonColorsWidth)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, commonColorsHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intHalfWidth)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intHalfHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, radius)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, spinMoveStep)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intX)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intY)
#. i18n: ectx: property (suffix), widget (QSpinBox, patchRadius)
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.cpp:60
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:593
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:596
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:833
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:840
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1090
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1255
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1258
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1340
#: libs/ui/forms/wdgdisplaysettings.ui:193
#: libs/ui/forms/wdgrectangleconstraints.ui:91
#: libs/ui/forms/wdgrectangleconstraints.ui:127 libs/ui/kis_paintop_box.cc:273
#: libs/ui/widgets/kis_lod_availability_widget.cpp:87
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:453
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:727
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:826
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:849
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1044
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1067
#: plugins/dockers/griddocker/grid_config_widget.cpp:51
#: plugins/dockers/griddocker/grid_config_widget.ui:226
#: plugins/dockers/griddocker/grid_config_widget.ui:258
#: plugins/dockers/griddocker/grid_config_widget.ui:472
#: plugins/dockers/griddocker/grid_config_widget.ui:517
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:148
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:187
#: plugins/filters/blur/kis_wdg_gaussian_blur.cpp:45
#: plugins/filters/blur/kis_wdg_gaussian_blur.cpp:53
#: plugins/filters/blur/wdgblur.ui:42 plugins/filters/blur/wdgblur.ui:81
#: plugins/paintops/curvebrush/kis_curve_line_option.cpp:33
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:79
#: plugins/paintops/deform/kis_brush_size_option.cpp:50
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:84
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:131
#: plugins/paintops/experiment/kis_experimentop_option.cpp:38
#: plugins/paintops/gridbrush/kis_gridop_option.cpp:43
#: plugins/paintops/gridbrush/kis_gridop_option.cpp:49
#: plugins/paintops/hatching/kis_hatching_options.cpp:33
#: plugins/paintops/hatching/kis_hatching_paintop_settings.cpp:164
#: plugins/paintops/hatching/kis_hatching_paintop_settings.cpp:195
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:105
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:128
#: plugins/paintops/libpaintop/kis_auto_brush_widget.cpp:63
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:114
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:43
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:45
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_fade.cpp:65
#: plugins/paintops/roundmarker/kis_roundmarker_option.cpp:31
#: plugins/paintops/sketch/kis_sketchop_option.cpp:44
#: plugins/paintops/spray/kis_spray_shape_option.cpp:57
#: plugins/paintops/spray/kis_spray_shape_option.cpp:61
#: plugins/paintops/spray/kis_spray_shape_option.cpp:134
#: plugins/paintops/spray/kis_spray_shape_option.cpp:136
#: plugins/paintops/spray/kis_sprayop_option.cpp:43
#: plugins/tools/basictools/kis_tool_brush.cc:358
#: plugins/tools/basictools/kis_tool_fill.cc:202
#: plugins/tools/basictools/kis_tool_fill.cc:209
#: plugins/tools/basictools/kis_tool_movetooloptionswidget.cpp:63
#: plugins/tools/basictools/kis_tool_movetooloptionswidget.cpp:64
#: plugins/tools/basictools/kis_tool_multihand.cpp:304
#: plugins/tools/basictools/wdgcolorpicker.ui:64
#: plugins/tools/basictools/wdgmovetool.ui:127
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:224
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:227
#: plugins/tools/tool_crop/wdg_tool_crop.ui:113
#: plugins/tools/tool_crop/wdg_tool_crop.ui:138
#: plugins/tools/tool_crop/wdg_tool_crop.ui:246
#: plugins/tools/tool_crop/wdg_tool_crop.ui:271
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:79
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:89
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch_options_widget.ui:130
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:108
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:109
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:118
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:119
#, kde-format
msgid " px"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, opacityCBox)
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.h:31
#: libs/image/kis_keyframe_channel.cpp:30 libs/image/kis_layer.cc:227
#: libs/widgets/KoColorPopupAction.cpp:89
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:190
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:51
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:35
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:61
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:115
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:49
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:43
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:50
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:39
#: plugins/paintops/hairy/wdghairyeoptions.ui:297
#: plugins/paintops/hairy/wdgInkOptions.ui:58
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:58
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:47
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:45
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:54
#, kde-format
msgid "Opacity"
msgstr ""
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.h:32
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:127
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:55
#, kde-format
msgid "Flow"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpAngle)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.h:33
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:108
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:46
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:194
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:110
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:77
#, kde-format
msgid "Angle"
msgstr ""
#. +> trunk5 stable5
#: libs/image/brushengine/kis_standard_uniform_properties_factory.h:34
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:53
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:65
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:44
#: plugins/paintops/spray/kis_spray_paintop_settings.cpp:115
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:60
#, kde-format
msgid "Spacing"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_change_filter_command.h:45
msgctxt "(qtundo-format)"
msgid "Change Filter"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_deselect_global_selection_command.cpp:30
msgctxt "(qtundo-format)"
msgid "Deselect"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_image_layer_add_command.cpp:32
#: libs/image/commands/kis_image_layer_add_command.cpp:48
msgctxt "(qtundo-format)"
msgid "Add Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_image_layer_move_command.cpp:37
#: libs/image/commands/kis_image_layer_move_command.cpp:50
msgctxt "(qtundo-format)"
msgid "Move Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_image_layer_remove_command.cpp:30
#: libs/image/commands/kis_image_layer_remove_command_impl.cpp:47
msgctxt "(qtundo-format)"
msgid "Remove Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_image_set_projection_color_space_command.cpp:29
msgctxt "(qtundo-format)"
msgid "Convert Image Type"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_compositeop_command.cpp:29
msgctxt "(qtundo-format)"
msgid "Composition Mode Change"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_opacity_command.cpp:26
msgctxt "(qtundo-format)"
msgid "Opacity Change"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_property_list_command.cpp:34
msgctxt "(qtundo-format)"
msgid "Property Changes"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_property_list_command.cpp:148
#: libs/image/kis_layer_properties_icons.cpp:33
#, kde-format
msgid "Visible"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_property_list_command.cpp:149
#: libs/image/kis_layer_properties_icons.cpp:32
#, kde-format
msgid "Locked"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_property_list_command.cpp:150
#: libs/image/kis_layer_properties_icons.cpp:39
#, kde-format
msgid "Active"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_node_property_list_command.cpp:157
#: libs/image/kis_layer_properties_icons.cpp:36
#: libs/image/kis_paint_layer.cc:211
#, kde-format
msgid "Alpha Locked"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands/kis_reselect_global_selection_command.cpp:30
msgctxt "(qtundo-format)"
msgid "Reselect"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands_new/kis_image_resize_command.cpp:28
#: libs/image/kis_image.cc:549
msgctxt "(qtundo-format)"
msgid "Resize Image"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands_new/kis_image_set_resolution_command.cpp:26
msgctxt "(qtundo-format)"
msgid "Set Image Resolution"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands_new/kis_move_command_common.h:40
#: plugins/tools/basictools/strokes/move_stroke_strategy.cpp:33
msgctxt "(qtundo-format)"
msgid "Move"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands_new/kis_set_layer_style_command.cpp:27
msgctxt "(qtundo-format)"
msgid "Change Layer Style"
msgstr ""
#. +> trunk5 stable5
#: libs/image/commands_new/kis_switch_current_time_command.cpp:27
msgctxt "(qtundo-format)"
msgid "Switch current time"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:35
#, kde-format
msgid "Adjust"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:40
#, kde-format
msgid "Artistic"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:45 plugins/filters/blur/kis_blur_filter.h:38
#, kde-format
msgid "Blur"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox)
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:50
#: plugins/flake/textshape/dialogs/FontDecorations.ui:17
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:72
#, kde-format
msgid "Colors"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:55
#: plugins/filters/edgedetection/kis_edge_detection_filter.h:43
#, kde-format
msgid "Edge Detection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:60
#, kde-format
msgid "Emboss"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:65
#, kde-format
msgid "Enhance"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:70
#, kde-format
msgid "Map"
msgstr ""
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:75
#, kde-format
msgid "Non-photorealistic"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. i18n: ectx: property (title), widget (QGroupBox, otherBox)
#. +> trunk5 stable5
#: libs/image/filter/kis_filter.cc:80
#: plugins/extensions/metadataeditor/editors/exif.ui:442
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:290
#, kde-format
msgid "Other"
msgstr ""
#. +> trunk5 stable5
#: libs/image/generator/kis_generator_layer.cpp:144
#, kde-format
msgid "Generator"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_adjustment_layer.cc:130
#, kde-format
msgctxt "property of a filter layer, noun"
msgid "Filter"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_base_mask_generator.h:35
#: libs/ui/kis_bookmarked_configurations_model.cc:66
#: plugins/extensions/layersplit/dlg_layersplit.cpp:62
#: plugins/flake/textshape/kotext/styles/KoStyleManager.cpp:106
#: plugins/flake/textshape/kotext/styles/KoStyleManager.cpp:111
#, kde-format
msgid "Default"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSharpness)
#. i18n: ectx: property (text), item, widget (QComboBox, editContrast)
#. +> trunk5 stable5
#: libs/image/kis_base_mask_generator.h:36
#: plugins/extensions/metadataeditor/editors/exif.ui:860
#: plugins/extensions/metadataeditor/editors/exif.ui:892
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:69
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:63
#, kde-format
msgid "Soft"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_base_mask_generator.h:37
#, kde-format
msgid "Gaussian"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_clone_layer.cpp:317
#, kde-format
msgid "Copy From"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:70
#, kde-format
msgid "Hermite"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:82
#, kde-format
msgid "Bicubic"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:88
#, kde-format
msgid "Adds pixels using the color of surrounding pixels. Produces smoother tonal gradations than Bilinear."
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:96
#, kde-format
msgid "Box"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:102
#, kde-format
msgid "Replicate pixels in the image. Preserves all the original detail, but can produce jagged effects."
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:115
#: libs/ui/canvas/kis_canvas_controller.cpp:312
#, kde-format
msgid "Bilinear"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:121
#, kde-format
msgid "Adds pixels averaging the color values of surrounding pixels. Produces medium quality results when the image is scaled from half to two times the original size."
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:131
#, kde-format
msgid "Bell"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:142
#, kde-format
msgid "BSpline"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:153
#, kde-format
msgid "Lanczos3"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:159
#, kde-format
msgid "Offers similar results than Bicubic, but maybe a little bit sharper. Can produce light and dark halos along strong edges."
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_filter_strategy.h:170
#, kde-format
msgid "Mitchell"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_group_layer.cc:316
#: libs/image/kis_layer_properties_icons.cpp:38
#, kde-format
msgid "Pass Through"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:444
#, kde-format
msgid "background"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: libs/image/kis_image.cc:448 plugins/extensions/imagesize/imagesize.xmlgui:9
#: plugins/tools/tool_crop/wdg_tool_crop.ui:393
#, kde-format
msgid "Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:548
msgctxt "(qtundo-format)"
msgid "Crop Image"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:590
msgctxt "(qtundo-format)"
msgid "Crop Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:591
msgctxt "(qtundo-format)"
msgid "Crop Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:623
msgctxt "(qtundo-format)"
msgid "Scale Image"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:624
msgctxt "(qtundo-format)"
msgid "Change Image Resolution"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:671
msgctxt "(qtundo-format)"
msgid "Scale Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:759
msgctxt "(qtundo-format)"
msgid "Rotate Image"
msgstr ""
#. +> trunk5
#: libs/image/kis_image.cc:765
msgctxt "(qtundo-format)"
msgid "Rotate Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:767
msgctxt "(qtundo-format)"
msgid "Rotate Layer"
msgstr ""
#. +> trunk5
#: libs/image/kis_image.cc:836
msgctxt "(qtundo-format)"
msgid "Shear Mask"
msgstr ""
#. +> trunk5
#: libs/image/kis_image.cc:839
msgctxt "(qtundo-format)"
msgid "Shear Layer"
msgstr ""
#. +> stable5
#: libs/image/kis_image.cc:833
msgctxt "(qtundo-format)"
msgid "Shear layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:846
msgctxt "(qtundo-format)"
msgid "Shear Image"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:858
msgctxt "(qtundo-format)"
msgid "Convert Image Color Space"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:893
msgctxt "(qtundo-format)"
msgid "Convert Projection Color Space"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_image.cc:1628
msgctxt "(qtundo-format)"
msgid "Crop Selections"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:29 libs/ui/forms/wdgnewimage.ui:370
#, kde-format
msgid "Content"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:31
#: libs/ui/tool/kis_selection_tool_helper.cpp:251
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1631
#, kde-format
msgid "Transform"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:32
#, kde-format
msgid "Position (X)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:33
#, kde-format
msgid "Position (Y)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:34
#, kde-format
msgid "Scale (X)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:35
#, kde-format
msgid "Scale (Y)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:36
#, kde-format
msgid "Shear (X)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:37
#, kde-format
msgid "Shear (Y)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:38
#, kde-format
msgid "Rotation (X)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:39
#, kde-format
msgid "Rotation (Y)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_keyframe_channel.cpp:40
#, kde-format
msgid "Rotation (Z)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer.cc:227 libs/widgets/KoZoomAction.cpp:207
#: libs/widgets/KoZoomAction.cpp:220 libs/widgets/KoZoomMode.cpp:26
#, kde-format
msgid "%1%"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer.cc:232
#, kde-format
msgid "Composite Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:34
#, kde-format
msgid "Layer Style"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:35
#, kde-format
msgid "Inherit Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:37
#: libs/image/kis_paint_layer.cc:214
#: plugins/dockers/animation/animation_docker.cpp:172
#: plugins/dockers/animation/onion_skins_docker.cpp:40
#, kde-format
msgid "Onion Skins"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:40
#, kde-format
msgid "Color Label"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:41
#, kde-format
msgid "Update Result"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:42
#, kde-format
msgid "Edit Key Strokes"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:43
#, kde-format
msgid "Show Coloring"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_properties_icons.cpp:44
#, kde-format
msgid "Open File"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:373
#, kde-format
msgid "Merged"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:834
msgctxt "(qtundo-format)"
msgid "Merge Down"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1034
#, kde-format
msgid "Copy of"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1096
msgctxt "(qtundo-format)"
msgid "Change projection color"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1193
msgctxt "(qtundo-format)"
msgid "Merge Selected Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1201
msgctxt "(qtundo-format)"
msgid "New From Visible"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1201
#, kde-format
msgctxt "New layer created from all the visible layers"
msgid "Visible"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1280
msgctxt "(qtundo-format)"
msgid "Merge Selection Masks"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1303
msgctxt "(qtundo-format)"
msgid "Flatten Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_layer_utils.cpp:1311
msgctxt "(qtundo-format)"
msgid "Flatten Image"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_processing_visitor.cpp:34
#, kde-format
msgid "Processing"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_psd_layer_style.cpp:99
#: libs/ui/KisApplicationArguments.cpp:335 libs/ui/KisDocument.cpp:1540
#: libs/ui/KisMainWindow.cpp:1076 libs/ui/KisMainWindow.cpp:1385
#: libs/ui/KisMainWindow.cpp:1404 plugins/impex/libkra/kis_kra_saver.cpp:83
#, kde-format
msgid "Unnamed"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_regenerate_frame_stroke_strategy.cpp:105
msgctxt "(qtundo-format)"
msgid "Render Animation"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:120
msgctxt "(qtundo-format)"
msgid "Erode Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:184
msgctxt "(qtundo-format)"
msgid "Dilate Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:254
msgctxt "(qtundo-format)"
msgid "Border Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:473
msgctxt "(qtundo-format)"
msgid "Feather Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:520
msgctxt "(qtundo-format)"
msgid "Grow Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:647
msgctxt "(qtundo-format)"
msgid "Shrink Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:790
msgctxt "(qtundo-format)"
msgid "Smooth Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_selection_filters.cpp:851
msgctxt "(qtundo-format)"
msgid "Invert Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_switch_time_stroke_strategy.cpp:44
msgctxt "(qtundo-format)"
msgid "Switch Frames"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_sync_lod_cache_stroke_strategy.cpp:70
msgctxt "(qtundo-format)"
msgid "Instant Preview"
msgstr ""
#. +> trunk5 stable5
#: libs/image/kis_update_scheduler.cpp:143
#, kde-format
msgid "Updating..."
msgstr ""
#. +> trunk5
#: libs/image/kis_update_time_monitor.cpp:202
#, kde-format
msgid "Stroke Time:"
msgstr ""
#. +> trunk5
#: libs/image/kis_update_time_monitor.cpp:203
#, kde-format
msgid "Mouse Speed:"
msgstr ""
#. +> trunk5
#: libs/image/kis_update_time_monitor.cpp:204
#, kde-format
msgid "Jobs/Update:"
msgstr ""
#. +> trunk5
#: libs/image/kis_update_time_monitor.cpp:205
#, kde-format
msgid "Non Update Time:"
msgstr ""
#. +> trunk5
#: libs/image/kis_update_time_monitor.cpp:206
#, kde-format
msgid "Response Time:"
msgstr ""
#. +> trunk5 stable5
#: libs/image/krita_utils.cpp:345
#, kde-format
msgid "off"
msgstr ""
#. +> trunk5 stable5
#: libs/image/krita_utils.cpp:345
#, kde-format
msgid "on"
msgstr ""
#. +> trunk5 stable5
#: libs/image/layerstyles/kis_ls_bevel_emboss_filter.cpp:56
#: libs/image/layerstyles/kis_ls_stroke_filter.cpp:49
#, kde-format
msgid "Stroke (style)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/layerstyles/kis_ls_drop_shadow_filter.cpp:48
#, kde-format
msgid "Drop Shadow (style)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/layerstyles/kis_ls_overlay_filter.cpp:50
#, kde-format
msgid "Overlay (style)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/layerstyles/kis_ls_satin_filter.cpp:46
#, kde-format
msgid "Satin (style)"
msgstr ""
#. +> trunk5 stable5
#: libs/image/lazybrush/kis_colorize_mask.cpp:929
msgctxt "(qtundo-format)"
msgid "Change Key Stroke Color"
msgstr ""
#. +> trunk5 stable5
#: libs/image/lazybrush/kis_colorize_mask.cpp:956
msgctxt "(qtundo-format)"
msgid "Remove Key Stroke"
msgstr ""
#. +> trunk5
#: libs/image/lazybrush/kis_colorize_stroke_strategy.cpp:86
msgctxt "(qtundo-format)"
msgid "Colorize"
msgstr ""
#. +> trunk5
#: libs/image/lazybrush/kis_colorize_stroke_strategy.cpp:86
msgctxt "(qtundo-format)"
msgid "Prefilter Colorize Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_filter_p.cc:51
#, kde-format
msgid "Anonymizer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_filter_p.cc:56
#, kde-format
msgid "Remove personal information: author, location..."
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_filter_p.cc:96
#, kde-format
msgid "Tool information"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_filter_p.cc:101
#, kde-format
msgid "Add the name of the tool used for creation and the modification date"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_filter_p.cc:110
#, kde-format
msgid "Krita %1"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:50
#, kde-format
msgid "Drop"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:55
#, kde-format
msgid "Drop all meta data"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:84
#, kde-format
msgid "Priority to first meta data"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:89
#, kde-format
msgid "Use in priority the meta data from the layers at the bottom of the stack."
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:124
#, kde-format
msgid "Only identical"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:129
#, kde-format
msgid "Keep only meta data that are identical"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:174
#, kde-format
msgid "Smart"
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_merge_strategy_p.cc:179
#, kde-format
msgid "This merge strategy attempts to find the best solution for merging, for instance by merging the list of authors together, or keeping identical photographic information."
msgstr ""
#. +> trunk5 stable5
#: libs/image/metadata/kis_meta_data_value.cc:414
#: libs/image/metadata/kis_meta_data_value.cc:453
#, kde-format
msgid "Invalid value."
msgstr ""
#. +> trunk5 stable5
#: libs/image/processing/kis_transform_processing_visitor.cpp:189
msgctxt "(qtundo-format)"
msgid "Transform Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_macro_player.cc:77
msgctxt "(qtundo-format)"
msgid "Play macro"
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_macro_player.cc:83
#: plugins/extensions/bigbrother/bigbrother.cc:117
#, kde-format
msgid "Playing back macro"
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_fill_paint_action.cpp:42
#: libs/widgets/KoGradientEditWidget.cpp:165
#: plugins/tools/defaulttool/defaulttool/DefaultToolTabbedWidget.cpp:53
#, kde-format
msgid "Fill"
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_filter_action.cpp:101
#, kde-format
msgctxt "(qtundo-format)"
msgid "Filter: \"%1\""
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_node_action.cc:54
#, kde-format
msgid "Applying action to all selected nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_path_paint_action.cpp:70
#, kde-format
msgid "Path"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeCBox)
#. i18n: ectx: property (text), item, widget (QComboBox, shapeBox)
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_shape_paint_action.cpp:55
#: plugins/assistants/Assistants/EllipseAssistant.cc:163
#: plugins/flake/pathshapes/ellipse/EllipseShapeFactory.cpp:35
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:37
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:232
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:66
#, kde-format
msgid "Ellipse"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeCBox)
#. i18n: ectx: property (text), item, widget (QComboBox, shapeBox)
#. i18n: ectx: property (text), item, widget (KComboBox, cbShape)
#. +> trunk5 stable5
#: libs/image/recorder/kis_recorded_shape_paint_action.cpp:57
#: plugins/dockers/griddocker/grid_config_widget.cpp:54
#: plugins/filters/blur/wdgblur.ui:159
#: plugins/flake/pathshapes/rectangle/RectangleShapeFactory.cpp:35
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:42
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:237
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:71
#, kde-format
msgid "Rectangle"
msgstr ""
#. +> trunk5
#: libs/impex/AnimationCheck.h:38
#, kde-format
msgctxt "image conversion warning"
msgid "This image has <b>animated layers</b>. Animation cannot be saved to this format."
msgstr ""
#. +> trunk5
#: libs/impex/CheckImageSize.h:40 libs/impex/ImageSizeCheck.h:39
#, kde-format
msgctxt "image conversion warning"
msgid "This image is larger than <b>%1 x %2</b>. Images this size cannot be saved to this format."
msgstr ""
#. +> trunk5
#: libs/impex/ColorModelCheck.h:44
#, kde-format
msgctxt "image conversion warning"
msgid "The color model <b>%1</b> or channel depth <b>%2</b> cannot be saved to this format. Your image will be converted."
msgstr ""
#. +> trunk5
#: libs/impex/ColorModelHomogenousCheck.h:125
#, kde-format
msgctxt "image conversion warning"
msgid "Your image contains layers with a color model that is different from the image. The layers will be converted."
msgstr ""
#. +> trunk5
#: libs/impex/ColorModelPerLayerCheck.h:129
#, kde-format
msgctxt "image conversion warning"
msgid "Your image contains layers with the color model <b>%1</b> and channel depth <b>%2</b> which cannot be saved to this format. The layers will be converted."
msgstr ""
#. +> trunk5
#: libs/impex/CompositionsCheck.h:36
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains <b>compositions</b>. The compositions will not be saved."
msgstr ""
#. +> trunk5
#: libs/impex/ExifCheck.h:40
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains <b>Exif</b> metadata. The metadata will not be saved."
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:101
#, kde-format
msgid "Clone Layer"
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:103
#, kde-format
msgid "Group Layer"
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:105
#, kde-format
msgid "File Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/impex/KisExportCheckRegistry.cpp:107
-#: plugins/impex/odg/kis_odg_import.cc:128
#: plugins/impex/svg/kis_svg_import.cc:71
#, kde-format
msgid "Vector Layer"
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:109
#, kde-format
msgid "Filter Layer"
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:111
#, kde-format
msgid "Generator Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/impex/KisExportCheckRegistry.cpp:113 libs/ui/kis_mask_manager.cc:237
#, kde-format
msgid "Colorize Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/impex/KisExportCheckRegistry.cpp:115 libs/ui/kis_mask_manager.cc:196
#, kde-format
msgid "Filter Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/impex/KisExportCheckRegistry.cpp:117 libs/ui/kis_mask_manager.cc:247
#, kde-format
msgid "Transform Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/impex/KisExportCheckRegistry.cpp:119 libs/ui/kis_mask_manager.cc:189
#: plugins/impex/psd/psd_loader.cpp:300
#, kde-format
msgid "Transparency Mask"
msgstr ""
#. +> trunk5
#: libs/impex/KisExportCheckRegistry.cpp:121
#, kde-format
msgid "Selection Mask"
msgstr ""
#. +> trunk5
#: libs/impex/MultiLayerCheck.h:37
#, kde-format
msgctxt "image conversion warning"
msgid "The image has <b>more than one layer</b>. Only the flattened image will be saved."
msgstr ""
#. +> trunk5
#: libs/impex/NodeTypeCheck.h:38
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains layers of unsupported type <b>%1</b>. Only the rendered result will be saved."
msgstr ""
#. +> trunk5
#: libs/impex/PSDLayerStylesCheck.h:117
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains <b>layer styles</b>. The layer styles will not be saved."
msgstr ""
#. +> trunk5
#: libs/impex/sRGBProfileCheck.h:41
#, kde-format
msgctxt "image conversion warning"
msgid "The image is not tagged as <b>non-linear gamma sRGB</b>. The image will be converted to sRGB."
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:161
#, kde-format
msgctxt "description of a file type"
msgid "Gimp Brush"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:166
#, kde-format
msgctxt "description of a file type"
msgid "Gimp Image Hose Brush"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:171
#, kde-format
msgctxt "description of a file type"
msgid "Adobe Brush Library"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:176
#, kde-format
msgctxt "description of a file type"
msgid "Krita Brush Preset"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:181
#, kde-format
msgctxt "description of a file type"
msgid "Krita Assistant"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:186
#, kde-format
msgctxt "description of a file type"
msgid "R32 Heightmap"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:191
#, kde-format
msgctxt "description of a file type"
msgid "R16 Heightmap"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:196
#, kde-format
msgctxt "description of a file type"
msgid "R8 Heightmap"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:201
#, kde-format
msgctxt "description of a file type"
msgid "Spriter SCML"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:206
#, kde-format
msgctxt "description of a file type"
msgid "Starview Metafile"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:211
#, kde-format
msgctxt "description of a file type"
msgid "OpenRaster Image"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:216
#, kde-format
msgctxt "description of a file type"
msgid "Photoshop Layer Style Library"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:221
#, kde-format
msgctxt "description of a file type"
msgid "Color Palette"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:226
#, kde-format
msgctxt "description of a file type"
msgid "OpenColorIO Configuration"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:231
#, kde-format
msgctxt "description of a file type"
msgid "Krita Recorded Action"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:236
#, kde-format
msgctxt "description of a file type"
msgid "GIMP Gradients"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:241
#, kde-format
msgctxt "description of a file type"
msgid "GIMP Patterns"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:246
#, kde-format
msgctxt "description of a file type"
msgid "Karbon Gradients"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:251
#, kde-format
msgctxt "description of a file type"
msgid "Krita Resource Bundle"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:256
#, kde-format
msgctxt "description of a file type"
msgid "Krita Workspace"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:261
#, kde-format
msgctxt "description of a file type"
msgid "Krita Taskset"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:266
#, kde-format
msgctxt "description of a file type"
msgid "Camera Raw Files"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:271
#, kde-format
msgctxt "description of a file type"
msgid "OpenEXR (Extended)"
msgstr ""
#. +> trunk5 stable5
#: libs/koplugin/KisMimeDatabase.cpp:276
#, kde-format
msgctxt "description of a file type"
msgid "Photoshop Image (Large)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. i18n: ectx: property (text), item, widget (QComboBox, editSubjectDistanceRange)
#. i18n: ectx: property (text), item, widget (QComboBox, editFlashMode)
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: libs/odf/KoDocumentInfo.cpp:54 libs/ui/kis_paintop_options_model.cpp:52
#: plugins/extensions/metadataeditor/editors/exif.ui:407
#: plugins/extensions/metadataeditor/editors/exif.ui:464
#: plugins/extensions/metadataeditor/editors/exif.ui:569
#: plugins/extensions/metadataeditor/editors/exif.ui:708
#, kde-format
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoOdfReadStore.cpp:102 libs/ui/flake/kis_shape_layer.cc:495
#, kde-format
msgid "No store backend"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoOdfReadStore.cpp:109 plugins/impex/kra/kra_converter.cpp:242
#, kde-format
msgid "Could not find %1"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:66
#, kde-format
msgctxt "Page size"
msgid "ISO A3"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:67
#, kde-format
msgctxt "Page size"
msgid "ISO A4"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:68
#, kde-format
msgctxt "Page size"
msgid "ISO A5"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:69
#, kde-format
msgctxt "Page size"
msgid "US Letter"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:70
#, kde-format
msgctxt "Page size"
msgid "US Legal"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:71
#, kde-format
msgctxt "Page size"
msgid "Screen"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:72
#, kde-format
msgctxt "Page size"
msgid "Custom"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:73
#, kde-format
msgctxt "Page size"
msgid "ISO B5"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:74
#, kde-format
msgctxt "Page size"
msgid "US Executive"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:75
#, kde-format
msgctxt "Page size"
msgid "ISO A0"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:76
#, kde-format
msgctxt "Page size"
msgid "ISO A1"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:77
#, kde-format
msgctxt "Page size"
msgid "ISO A2"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:78
#, kde-format
msgctxt "Page size"
msgid "ISO A6"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:79
#, kde-format
msgctxt "Page size"
msgid "ISO A7"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:80
#, kde-format
msgctxt "Page size"
msgid "ISO A8"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:81
#, kde-format
msgctxt "Page size"
msgid "ISO A9"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:82
#, kde-format
msgctxt "Page size"
msgid "ISO B0"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:83
#, kde-format
msgctxt "Page size"
msgid "ISO B1"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:84
#, kde-format
msgctxt "Page size"
msgid "ISO B10"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:85
#, kde-format
msgctxt "Page size"
msgid "ISO B2"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:86
#, kde-format
msgctxt "Page size"
msgid "ISO B3"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:87
#, kde-format
msgctxt "Page size"
msgid "ISO B4"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:88
#, kde-format
msgctxt "Page size"
msgid "ISO B6"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:89
#, kde-format
msgctxt "Page size"
msgid "ISO C5"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:90
#, kde-format
msgctxt "Page size"
msgid "US Common 10"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:91
#, kde-format
msgctxt "Page size"
msgid "ISO DL"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:92
#, kde-format
msgctxt "Page size"
msgid "US Folio"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:93
#, kde-format
msgctxt "Page size"
msgid "US Ledger"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoPageFormat.cpp:94
#, kde-format
msgctxt "Page size"
msgid "US Tabloid"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:50
#, kde-format
msgid "Millimeters (mm)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:52
#, kde-format
msgid "Centimeters (cm)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:54
#, kde-format
msgid "Decimeters (dm)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:56
#, kde-format
msgid "Inches (in)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:58
#, kde-format
msgid "Pica (pi)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:60
#, kde-format
msgid "Cicero (cc)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:62
#, kde-format
msgid "Points (pt)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:64
#, kde-format
msgid "Pixels (px)"
msgstr ""
#. +> trunk5 stable5
#: libs/odf/KoUnit.cpp:66
#, kde-format
msgid "Unsupported unit"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoAlphaColorSpace.cpp:58
#: libs/pigment/compositeops/KoCompositeOps.h:148
#: libs/pigment/KoCompositeOpRegistry.cpp:50
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:49
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:39
#, kde-format
msgid "Multiply"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoAlphaColorSpace.cpp:89
#: libs/pigment/colorspaces/KoLabColorSpace.cpp:46
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.cpp:48
#: plugins/color/lcms2engine/colorspaces/cmyk_f32/CmykF32ColorSpace.cpp:42
#: plugins/color/lcms2engine/colorspaces/cmyk_u16/CmykU16ColorSpace.cpp:37
#: plugins/color/lcms2engine/colorspaces/cmyk_u8/CmykU8ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/gray_f16/GrayF16ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/gray_f32/GrayF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/gray_u16/GrayU16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/gray_u8/GrayU8ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/lab_f32/LabF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/lab_u16/LabColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/lab_u8/LabU8ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/rgb_f16/RgbF16ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/rgb_f32/RgbF32ColorSpace.cpp:42
#: plugins/color/lcms2engine/colorspaces/rgb_u16/RgbU16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/rgb_u8/RgbU8ColorSpace.cpp:70
#: plugins/color/lcms2engine/colorspaces/xyz_f16/XyzF16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/xyz_f32/XyzF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/xyz_u16/XyzU16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/xyz_u8/XyzU8ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/ycbcr_f32/YCbCrF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/ycbcr_u16/YCbCrU16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/ycbcr_u8/YCbCrU8ColorSpace.cpp:37
#, kde-format
msgid "Alpha"
msgstr ""
#. +> trunk5
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:47
#, kde-format
msgid "Alpha (8-bit integer)"
msgstr ""
#. +> trunk5
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:48
#, kde-format
msgid "Alpha (16-bit integer)"
msgstr ""
#. +> trunk5
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:49
#, kde-format
msgid "Alpha (32-bit floating point)"
msgstr ""
#. +> trunk5
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:53
#, kde-format
msgid "Alpha (16-bit floating point)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:142
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:147
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:152
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:157
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:161
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:165
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:169
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:173
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:180
#: libs/pigment/colorspaces/KoAlphaColorSpace.h:184
#, kde-format
msgid "Undefined operation in the alpha color space"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoLabColorSpace.cpp:39
#: libs/pigment/colorspaces/KoLabColorSpace.h:75
#, kde-format
msgid "L*a*b* (16-bit integer/channel, unmanaged)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, csl_hslL)
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoLabColorSpace.cpp:43
#: libs/pigment/compositeops/KoCompositeOps.h:215
#: libs/pigment/KoCompositeOpRegistry.cpp:126
#: plugins/color/lcms2engine/colorspaces/lab_f32/LabF32ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/lab_u16/LabColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/lab_u8/LabU8ColorSpace.cpp:33
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1292
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:72
#: plugins/filters/colorsfilters/virtual_channel_info.cpp:41
#, kde-format
msgid "Lightness"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoLabColorSpace.cpp:44
#: libs/pigment/KoBasicHistogramProducers.cpp:450
#: plugins/color/lcms2engine/colorspaces/lab_f32/LabF32ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/lab_u16/LabColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/lab_u8/LabU8ColorSpace.cpp:34
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:223
#, kde-format
msgid "a*"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoLabColorSpace.cpp:45
#: libs/pigment/KoBasicHistogramProducers.cpp:451
#: plugins/color/lcms2engine/colorspaces/lab_f32/LabF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/lab_u16/LabColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/lab_u8/LabU8ColorSpace.cpp:35
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:255
#, kde-format
msgid "b*"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoRgbU16ColorSpace.cpp:38
#: libs/pigment/colorspaces/KoRgbU16ColorSpace.h:63
#, kde-format
msgid "RGB (16-bit integer/channel, unmanaged)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.cpp:40
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.h:64
#, kde-format
msgid "RGB (8-bit integer/channel, unmanaged)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.cpp:45
#: plugins/color/lcms2engine/colorspaces/rgb_f16/RgbF16ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/rgb_f32/RgbF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/rgb_u16/RgbU16ColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/rgb_u8/RgbU8ColorSpace.cpp:67
#: plugins/filters/colorsfilters/wdg_color_balance.ui:348
#, kde-format
msgid "Blue"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.cpp:46
#: plugins/color/lcms2engine/colorspaces/rgb_f16/RgbF16ColorSpace.cpp:37
#: plugins/color/lcms2engine/colorspaces/rgb_f32/RgbF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/rgb_u16/RgbU16ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/rgb_u8/RgbU8ColorSpace.cpp:68
#: plugins/filters/colorsfilters/wdg_color_balance.ui:109
#: plugins/filters/colorsfilters/wdg_color_balance.ui:231
#: plugins/filters/colorsfilters/wdg_color_balance.ui:402
#, kde-format
msgid "Green"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoRgbU8ColorSpace.cpp:47
#: plugins/color/lcms2engine/colorspaces/rgb_f16/RgbF16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/rgb_f32/RgbF32ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/rgb_u16/RgbU16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/rgb_u8/RgbU8ColorSpace.cpp:69
#, kde-format
msgid "Red"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:72
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:79
#, kde-format
msgid "Undefined operation in the %1 space"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:96
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:101
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:106
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:111
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:116
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:120
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:124
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:127
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:130
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:136
#: libs/pigment/colorspaces/KoSimpleColorSpace.h:139
#, kde-format
msgid "Undefined operation in the %1 color space"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/colorspaces/KoSimpleColorSpaceEngine.cpp:71
#, kde-format
msgid "Simple Color Conversion Engine"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpAlphaDarken.h:41
#: libs/pigment/compositeops/KoOptimizedCompositeOpAlphaDarken128.h:207
#: libs/pigment/compositeops/KoOptimizedCompositeOpAlphaDarken32.h:248
#, kde-format
msgid "Alpha darken"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpBehind.h:39
#: libs/pigment/KoCompositeOpRegistry.cpp:80
#, kde-format
msgid "Behind"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpCopy.h:37
#: libs/pigment/compositeops/KoCompositeOpCopy2.h:45
#: libs/pigment/KoCompositeOpRegistry.cpp:102
#: libs/ui/widgets/kis_paintop_presets_save.cpp:84
#, kde-format
msgid "Copy"
msgstr ""
#. +> trunk5
#: libs/pigment/compositeops/KoCompositeOpDestinationAtop.h:42
#: libs/pigment/KoCompositeOpRegistry.cpp:92
#, kde-format
msgid "Destination Atop"
msgstr ""
#. +> trunk5
#: libs/pigment/compositeops/KoCompositeOpDestinationIn.h:42
#: libs/pigment/KoCompositeOpRegistry.cpp:93
#, kde-format
msgid "Destination In"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpDissolve.h:61
#: libs/pigment/KoCompositeOpRegistry.cpp:98
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpDissolve.h:33
#, kde-format
msgid "Dissolve"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpErase.h:40
#: libs/pigment/KoCompositeOpRegistry.cpp:83
#, kde-format
msgid "Erase"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpGreater.h:43
#: libs/pigment/KoCompositeOpRegistry.cpp:81
#, kde-format
msgid "Greater"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSharpness)
#. i18n: ectx: property (text), item, widget (QComboBox, editContrast)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOpOver.h:62
#: libs/pigment/compositeops/KoOptimizedCompositeOpOver128.h:251
#: libs/pigment/compositeops/KoOptimizedCompositeOpOver32.h:248
#: libs/pigment/KoCompositeOpRegistry.cpp:79
#: libs/pigment/KoCompositeOpRegistry.cpp:149
#: plugins/extensions/metadataeditor/editors/exif.ui:855
#: plugins/extensions/metadataeditor/editors/exif.ui:887
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:286
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:297
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:38
#, kde-format
msgid "Normal"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:118
#: libs/pigment/KoCompositeOpRegistry.cpp:82
#, kde-format
msgid "Overlay"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:119
#: libs/pigment/KoCompositeOpRegistry.cpp:87
#, kde-format
msgid "Grain Merge"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:120
#: libs/pigment/KoCompositeOpRegistry.cpp:88
#, kde-format
msgid "Grain Extract"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:121
#: libs/pigment/KoCompositeOpRegistry.cpp:85
#, kde-format
msgid "Hard Mix"
msgstr ""
#. +> trunk5
#: libs/pigment/compositeops/KoCompositeOps.h:122
#: libs/pigment/KoCompositeOpRegistry.cpp:86
#, kde-format
msgid "Hard Mix (Photoshop)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:123
#: libs/pigment/KoCompositeOpRegistry.cpp:91
#, kde-format
msgid "Geometric Mean"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:124
#: libs/pigment/KoCompositeOpRegistry.cpp:89
#, kde-format
msgid "Parallel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:125
#: libs/pigment/KoCompositeOpRegistry.cpp:90
#, kde-format
msgid "Allanon"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:126
#: libs/pigment/KoCompositeOpRegistry.cpp:94
#, kde-format
msgid "Hard Overlay"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:128
#: libs/pigment/KoCompositeOpRegistry.cpp:64
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:40
#, kde-format
msgid "Screen"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:129
#: libs/pigment/KoCompositeOpRegistry.cpp:60
#, kde-format
msgid "Color Dodge"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:130
#: libs/pigment/KoCompositeOpRegistry.cpp:61
#, kde-format
msgid "Linear Dodge"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:131
#: libs/pigment/KoCompositeOp.cpp:36 libs/pigment/KoCompositeOpRegistry.cpp:39
#: libs/pigment/KoCompositeOpRegistry.cpp:62
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpLighten.h:33
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:42
#, kde-format
msgid "Lighten"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:132
#: libs/pigment/KoCompositeOpRegistry.cpp:67
#, kde-format
msgid "Hard Light"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:133
#: libs/pigment/KoCompositeOpRegistry.cpp:69
#, kde-format
msgid "Soft Light (SVG)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:134
#: libs/pigment/KoCompositeOpRegistry.cpp:68
#, kde-format
msgid "Soft Light (Photoshop)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:135
#: libs/pigment/KoCompositeOpRegistry.cpp:70
#, kde-format
msgid "Gamma Light"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:136
#: libs/pigment/KoCompositeOpRegistry.cpp:66
#, kde-format
msgid "Vivid Light"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:137
#: libs/pigment/KoCompositeOpRegistry.cpp:65
#, kde-format
msgid "Pin Light"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:138
#: libs/pigment/KoCompositeOpRegistry.cpp:63
#, kde-format
msgid "Linear Light"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:140
#, kde-format
msgid "Color Burn"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:141
#: libs/pigment/KoCompositeOpRegistry.cpp:55
#, kde-format
msgid "Linear Burn"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:142
#: libs/pigment/KoCompositeOp.cpp:37 libs/pigment/KoCompositeOpRegistry.cpp:38
#: libs/pigment/KoCompositeOpRegistry.cpp:56
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpDarken.h:33
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:76
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:41
#, kde-format
msgid "Darken"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:143
#: libs/pigment/KoCompositeOpRegistry.cpp:57
#, kde-format
msgid "Gamma Dark"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:145
#: libs/pigment/KoCompositeOpRegistry.cpp:48
#, kde-format
msgid "Addition"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:146
#: libs/pigment/KoCompositeOpRegistry.cpp:49
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:49
#, kde-format
msgid "Subtract"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:147
#, kde-format
msgid "Inversed-Subtract"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:149
#: libs/pigment/KoCompositeOpRegistry.cpp:51
#, kde-format
msgid "Divide"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:151
#: libs/pigment/KoCompositeOpRegistry.cpp:77
#, kde-format
msgid "Arcus Tangent"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:152
#: libs/pigment/KoCompositeOpRegistry.cpp:73
#, kde-format
msgid "Difference"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:153
#: libs/pigment/KoCompositeOpRegistry.cpp:76
#, kde-format
msgid "Exclusion"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:154
#: libs/pigment/KoCompositeOpRegistry.cpp:74
#, kde-format
msgid "Equivalence"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:155
#, kde-format
msgid "Additive-Subtractive"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:184
#: libs/pigment/KoCompositeOpRegistry.cpp:99
#, kde-format
msgid "Copy Red"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:185
#: libs/pigment/KoCompositeOpRegistry.cpp:100
#, kde-format
msgid "Copy Green"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:186
#: libs/pigment/KoCompositeOpRegistry.cpp:101
#, kde-format
msgid "Copy Blue"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:187
#: libs/pigment/KoCompositeOpRegistry.cpp:103
#, kde-format
msgid "Tangent Normalmap"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:188
#, kde-format
msgid "Combine Normal Maps"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpMode)
#. i18n: ectx: property (text), widget (KColorButton, colorSelector)
#. i18n: ectx: property (text), widget (KColorButton, colorFillSelector)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFillType)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:190
#: libs/pigment/KoCompositeOp.cpp:31
#: libs/pigment/KoCompositeOpRegistry.cpp:105
#: libs/ui/dialogs/kis_dlg_preferences.cc:1090 libs/ui/forms/wdgnewimage.ui:66
#: libs/ui/forms/wdgstrokeselectionproperties.ui:150
#: libs/ui/forms/wdgstrokeselectionproperties.ui:188
#: libs/ui/kis_palette_view.cpp:101 libs/ui/kis_palette_view.cpp:326
#: libs/ui/layerstyles/WdgColorOverlay.ui:23
#: libs/ui/layerstyles/WdgStroke.ui:134
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpColor.h:38
#: plugins/extensions/layersplit/layersplit.cpp:202
#: plugins/generators/solid/colorgenerator.h:53
#, kde-format
msgid "Color"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsvH)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hslH)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsiH)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsyH)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:191
#: libs/pigment/KoCompositeOpRegistry.cpp:106
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpHue.h:37
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1248
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1278
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1308
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1338
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:67
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:70
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:73
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:76
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:78
#, kde-format
msgid "Hue"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbIntent)
#. i18n: ectx: property (text), item, widget (KComboBox, cmbMonitorIntent)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbProofingIntent)
#. i18n: ectx: property (text), widget (QRadioButton, radioSaturation)
#. i18n: ectx: property (text), widget (QCheckBox, saturationCBox)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsvS)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hslS)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsiS)
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsyS)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:192
#: libs/pigment/KoCompositeOpRegistry.cpp:107
#: libs/ui/forms/wdgapplyprofile.ui:116 libs/ui/forms/wdgcolorsettings.ui:204
#: libs/ui/forms/wdgcolorsettings.ui:289
#: libs/ui/forms/wdgimageproperties.ui:251
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:475
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpSaturation.h:37
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1255
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1285
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1315
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1345
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:68
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:71
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:74
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:77
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:87
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:79
#: plugins/paintops/hairy/wdghairyeoptions.ui:310
#: plugins/paintops/hairy/wdgInkOptions.ui:71
#, kde-format
msgid "Saturation"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:193
#: libs/pigment/KoCompositeOpRegistry.cpp:110
#, kde-format
msgid "Increase Saturation"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:194
#: libs/pigment/KoCompositeOpRegistry.cpp:109
#, kde-format
msgid "Decrease Saturation"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:195
#: libs/pigment/KoCompositeOpRegistry.cpp:108
#, kde-format
msgid "Luminosity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:196
#: libs/pigment/KoCompositeOpRegistry.cpp:112
#, kde-format
msgid "Increase Luminosity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:197
#: libs/pigment/KoCompositeOpRegistry.cpp:111
#, kde-format
msgid "Decrease Luminosity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:198
#: libs/pigment/KoCompositeOpRegistry.cpp:58
#, kde-format
msgid "Darker Color"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:199
#: libs/pigment/KoCompositeOpRegistry.cpp:71
#, kde-format
msgid "Lighter Color"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:201
#: libs/pigment/KoCompositeOpRegistry.cpp:114
#, kde-format
msgid "Color HSI"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:202
#: libs/pigment/KoCompositeOpRegistry.cpp:115
#, kde-format
msgid "Hue HSI"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:203
#: libs/pigment/KoCompositeOpRegistry.cpp:116
#, kde-format
msgid "Saturation HSI"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:204
#: libs/pigment/KoCompositeOpRegistry.cpp:119
#, kde-format
msgid "Increase Saturation HSI"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:205
#: libs/pigment/KoCompositeOpRegistry.cpp:118
#, kde-format
msgid "Decrease Saturation HSI"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsiI)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:206
#: libs/pigment/KoCompositeOpRegistry.cpp:117
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1322
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:75
#, kde-format
msgid "Intensity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:207
#: libs/pigment/KoCompositeOpRegistry.cpp:121
#, kde-format
msgid "Increase Intensity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:208
#: libs/pigment/KoCompositeOpRegistry.cpp:120
#, kde-format
msgid "Decrease Intensity"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:210
#: libs/pigment/KoCompositeOpRegistry.cpp:123
#, kde-format
msgid "Color HSL"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:211
#: libs/pigment/KoCompositeOpRegistry.cpp:124
#, kde-format
msgid "Hue HSL"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:212
#: libs/pigment/KoCompositeOpRegistry.cpp:125
#, kde-format
msgid "Saturation HSL"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:213
#: libs/pigment/KoCompositeOpRegistry.cpp:128
#, kde-format
msgid "Increase Saturation HSL"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:214
#: libs/pigment/KoCompositeOpRegistry.cpp:127
#, kde-format
msgid "Decrease Saturation HSL"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:216
#: libs/pigment/KoCompositeOpRegistry.cpp:130
#, kde-format
msgid "Increase Lightness"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:217
#: libs/pigment/KoCompositeOpRegistry.cpp:129
#, kde-format
msgid "Decrease Lightness"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:219
#: libs/pigment/KoCompositeOpRegistry.cpp:132
#, kde-format
msgid "Color HSV"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:220
#: libs/pigment/KoCompositeOpRegistry.cpp:133
#, kde-format
msgid "Hue HSV"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:221
#: libs/pigment/KoCompositeOpRegistry.cpp:134
#, kde-format
msgid "Saturation HSV"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:222
#: libs/pigment/KoCompositeOpRegistry.cpp:137
#, kde-format
msgid "Increase Saturation HSV"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:223
#: libs/pigment/KoCompositeOpRegistry.cpp:136
#, kde-format
msgid "Decrease Saturation HSV"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsvV)
#. i18n: ectx: property (text), widget (QTreeWidget, listViewChannels)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:224
#: libs/pigment/KoCompositeOpRegistry.cpp:135
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpValue.h:37
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1262
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:69
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:108
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:34
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:80
#: plugins/tools/basictools/wdgcolorpicker.ui:29
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:164
#, kde-format
msgid "Value"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:225
#: libs/pigment/KoCompositeOpRegistry.cpp:139
#, kde-format
msgid "Increase Value"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/compositeops/KoCompositeOps.h:226
#: libs/pigment/KoCompositeOpRegistry.cpp:138
#, kde-format
msgid "Decrease Value"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:372
#: libs/pigment/KoBasicHistogramProducers.cpp:439
#, kde-format
msgid "Generic RGB Histogram"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:376
#, kde-format
msgid "R"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:377
#, kde-format
msgid "G"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:378
#, kde-format
msgid "B"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:445
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:143
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:147
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:151
#, kde-format
msgid "L*a*b* Histogram"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:449
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:175
#, kde-format
msgid "L*"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoBasicHistogramProducers.cpp:523
#, kde-format
msgid "Generic L*a*b* Histogram"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:25
#, kde-format
msgid "Alpha mask"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:26
#, kde-format
msgid "RGB/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:27
#, kde-format
msgid "XYZ/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:28
#, kde-format
msgid "L*a*b*/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:29
#, kde-format
msgid "CMYK/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:30
#, kde-format
msgid "Grayscale/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:31
#, kde-format
msgid "Grayscale (without transparency)"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:32
#, kde-format
msgid "YCbCr/Alpha"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:34
#, kde-format
msgid "8-bit integer/channel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:35
#, kde-format
msgid "16-bit integer/channel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:36
#, kde-format
msgid "16-bit float/channel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:37
#, kde-format
msgid "32-bit float/channel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoColorModelStandardIds.cpp:38
#, kde-format
msgid "64-bit float/channel"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:34 libs/pigment/KoCompositeOpRegistry.cpp:37
#, kde-format
msgid "Arithmetic"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:35 libs/pigment/KoCompositeOpRegistry.cpp:40
#, kde-format
msgid "Negative"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnHsy)
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:38 libs/pigment/KoCompositeOpRegistry.cpp:43
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:19
#, kde-format
msgid "HSY"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnHsi)
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:39 libs/pigment/KoCompositeOpRegistry.cpp:44
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:78
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:87
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:35
#, kde-format
msgid "HSI"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnHsl)
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:40 libs/pigment/KoCompositeOpRegistry.cpp:45
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:77
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:86
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:48
#, kde-format
msgid "HSL"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnHsv)
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:41 libs/pigment/KoCompositeOpRegistry.cpp:46
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:76
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:85
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:61
#, kde-format
msgid "HSV"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:42 libs/pigment/KoCompositeOpRegistry.cpp:41
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:77
#, kde-format
msgid "Mix"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOp.cpp:43 libs/pigment/KoCompositeOpRegistry.cpp:42
#: plugins/extensions/metadataeditor/editors/exif.ui:948
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:115
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:116
#, kde-format
msgid "Misc"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:52
#, kde-format
msgid "Inverse Subtract"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:54
#: plugins/filters/dodgeburn/DodgeBurnPlugin.cpp:31
#, kde-format
msgid "Burn"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:75
#, kde-format
msgid "Additive Subtractive"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:84
#, kde-format
msgid "Alpha Darken"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:96
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpBumpmap.h:33
#, kde-format
msgid "Bumpmap"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/KoCompositeOpRegistry.cpp:97
#, kde-format
msgid "Combine Normal Map"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/resources/KoColorSet.cpp:643
#: libs/pigment/resources/KoColorSet.cpp:741
#: libs/pigment/resources/KoColorSet.cpp:760
#: libs/pigment/resources/KoColorSet.cpp:801
#: libs/pigment/resources/KoColorSet.cpp:1228
#: libs/ui/actions/kis_selection_action_factories.cpp:392
#: libs/ui/KisView.cpp:709
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:65
#, kde-format
msgid "Untitled"
msgstr ""
#. +> trunk5 stable5
#: libs/pigment/resources/KoStopGradient.cpp:442
#, kde-format
msgid "SVG Gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:139
msgctxt "(qtundo-format)"
msgid "Select All"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:213
msgctxt "(qtundo-format)"
msgid "Flood Fill Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:291
#, kde-format
msgctxt "floating message when cannot copy from a node"
msgid "Cannot copy pixels from this type of layer "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:300
#, kde-format
msgctxt "floating message when copying empty selection"
msgid "Selection is empty: no pixels were copied "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:349
#: plugins/flake/textshape/TextTool.cpp:1135
msgctxt "(qtundo-format)"
msgid "Cut"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:350
msgctxt "(qtundo-format)"
msgid "Copy"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:377
msgctxt "(qtundo-format)"
msgid "Copy Merged"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:397
#, kde-format
msgid "Pasted"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:399
#: libs/ui/actions/KisPasteActionFactory.cpp:187
#, kde-format
msgid "(pasted)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:441
msgctxt "(qtundo-format)"
msgid "Convert to Vector Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:459
msgctxt "(qtundo-format)"
msgid "Convert shapes to vector selection"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/actions/kis_selection_action_factories.cpp:511
#: libs/ui/actions/kis_selection_action_factories.cpp:571
#: plugins/tools/tool_polyline/kis_tool_polyline.cc:75
msgctxt "(qtundo-format)"
msgid "Draw Polyline"
msgstr ""
#. +> trunk5
#: libs/ui/actions/KisPasteActionFactory.cpp:85
msgctxt "(qtundo-format)"
msgid "Paste shapes"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, KisDlgConfigureBrushHud)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:20
#, kde-format
msgid "Brush HUD configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:33
#, kde-format
msgid "Available properties:"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnAdd)
#. i18n: ectx: property (text), widget (QPushButton, rightScrollBtn)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:60
#: libs/ui/forms/wdgpresetselectorstrip.ui:88
#, kde-format
msgid ">"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnRemove)
#. i18n: ectx: property (text), widget (QPushButton, leftScrollBtn)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:67
#: libs/ui/forms/wdgpresetselectorstrip.ui:47
#, kde-format
msgid "<"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:91
#, kde-format
msgid "Current properties:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnUp)
#. i18n: ectx: property (text), widget (QToolButton, bnUp)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:103
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:80
#, kde-format
msgid "Up"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnDown)
#. +> trunk5 stable5
#: libs/ui/brushhud/kis_dlg_brush_hud_config.ui:110
#, kde-format
msgid "Down"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_animation_player.cpp:227
#, kde-format
msgctxt "floating on-canvas message"
msgid ""
"Cannot open audio: \"%1\"\n"
"Error: %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:197
#, kde-format
msgctxt "floating message about mirroring"
msgid "Horizontal mirroring: %1 "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:197
#: libs/ui/canvas/kis_canvas_controller.cpp:300
#, kde-format
msgid "OFF"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:197
#: libs/ui/canvas/kis_canvas_controller.cpp:300
#, kde-format
msgid "ON"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:215
#, kde-format
msgctxt "floating message about rotation"
msgid "Rotation: %1° "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:264
#, kde-format
msgid ""
"You are activating wrap-around mode, but have not enabled OpenGL.\n"
"To visualize wrap-around mode, enable OpenGL."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:299
#, kde-format
msgid "Instant Preview Mode: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:306
#, kde-format
msgid "Instant Preview is only supported with OpenGL activated"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFilterMode)
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:312
#: libs/ui/forms/wdgdisplaysettings.ui:54
#, kde-format
msgid "Nearest Neighbour"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:313
#, kde-format
msgid ""
"Instant Preview is supported\n"
" in Trilinear or High Quality filtering modes.\n"
"Current mode is %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_canvas_controller.cpp:317
#, kde-format
msgid ""
"Failed activating Instant Preview mode!\n"
"\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_change_guides_command.cpp:37
msgctxt "(qtundo-format)"
msgid "Edit Guides"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:736
#, kde-format
msgid "Snap to:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:737
#: plugins/dockers/griddocker/grid_config_widget.ui:39
#, kde-format
msgid "Grid"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:738
#: plugins/dockers/griddocker/grid_config_widget.ui:564
#, kde-format
msgid "Guides"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:739
#, kde-format
msgid "Orthogonal"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:741
#, kde-format
msgid "Node"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:742
#, kde-format
msgid "Extension"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:743
#, kde-format
msgid "Intersection"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:745
#, kde-format
msgid "Bounding Box"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:746
#, kde-format
msgid "Image Bounds"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/canvas/kis_guides_manager.cpp:747
#, kde-format
msgid "Image Center"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:41
#, kde-format
msgid "About Krita"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:53
#, kde-format
msgid "About"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:60
#, kde-format
msgid ""
"<html><head/><body>"
"<h1 align=\"center\">Created By</h1>"
"</p>"
"<p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:77
#, kde-format
msgid "Authors"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:82
#, kde-format
msgid ""
"<html><head/><body>"
"<h1 align=\"center\">Backed By</h1>"
"<p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:96
#, kde-format
msgid ""
".</p>"
"<p><i>Thanks! You were all <b>awesome</b>!</i></p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:98
#, kde-format
msgid "Backers"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:104
#, kde-format
msgid ""
"<html><head/><body>"
"<h1 align=\"center\">Thanks To</h1>"
"<p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:123
#, kde-format
msgid ""
".</p>"
"<p><i>For supporting Krita development with advice, icons, brush sets and more.</i></p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:126
#, kde-format
msgid "Also Thanks To"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:130
#, kde-format
msgid ""
"<html><head/><body>"
"<h1 align=\"center\"><b>Your Rights</h1>"
"<p>Krita is released under the GNU General Public License (version 2 or any later version).</p>"
"<p>This license grants people a number of freedoms:</p>"
"<ul>"
"<li>You are free to use Krita, for any purpose</li>"
"<li>You are free to distribute Krita</li>"
"<li>You can study how Krita works and change it</li>"
"<li>You can distribute changed versions of Krita</li>"
"</ul>"
"<p>The Krita Foundation and its projects on krita.org are <b>committed</b> to preserving Krita as free software.</p>"
"<h1 align=\"center\">Your artwork</h1>"
"<p>What you create with Krita is your sole property. All your artwork is free for you to use as you like.</p>"
"<p>That means that Krita can be used commercially, for any purpose. There are no restrictions whatsoever.</p>"
"<p>Krita’s GNU GPL license guarantees you this freedom. Nobody is ever permitted to take it away, in contrast to trial or educational versions of commercial software that will forbid your work in commercial situations.</p>"
"<br/>"
"<hr/>"
"<pre>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:158
#, kde-format
msgid "License"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonClose)
#. i18n: ectx: property (text), widget (QToolButton, bnImgClose)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_about_application.cpp:160
#: libs/ui/forms/wdgbookmarkedconfigurationseditor.ui:70
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:227
#, kde-format
msgid "Close"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, cancelBrushNameUpdateButton)
#. i18n: ectx: property (text), widget (QPushButton, cancelNewDocumentButton)
#. i18n: ectx: property (text), widget (QPushButton, cancelButton)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.cpp:62
#: libs/ui/dialogs/KisAsyncAnimationRenderDialogBase.cpp:126
#: libs/ui/forms/wdgnewimage.ui:626 libs/ui/forms/wdgpaintopsettings.ui:226
#: libs/ui/forms/wdgsavebrushpreset.ui:208
#: libs/ui/input/kis_tool_invocation_action.cpp:58
#: libs/ui/kis_clipboard.cc:274 libs/ui/KisView.cpp:534
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:70
#, kde-format
msgid "Cancel"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, KisDelayedSaveDialog)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgSplash)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.ui:17 libs/ui/wdgsplash.ui:305
#, kde-format
msgid "Krita"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblMessage)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.ui:26
#, kde-format
msgid "Waiting for image operation to complete..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnDontWait)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.ui:61
#, kde-format
msgid "Save without waiting"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnCancel)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.ui:68
#, kde-format
msgid "Cancel Operation and Save"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnDontSave)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_delayed_save_dialog.ui:75
#, kde-format
msgid "Close, do not save"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_adj_layer_props.cc:80
#, kde-format
msgid "Layer name:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_adj_layer_props.cc:101
#, kde-format
msgid "No configuration options are available for this filter"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_blacklist_cleanup.cpp:34
#, kde-format
msgid "Cleanup resource files"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_filter.cpp:127
#, kde-format
msgctxt "@title:window"
msgid "Filter"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_filter.cpp:127
#, kde-format
msgctxt "@title:window"
msgid "Filter: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_image_properties.cc:59
#, kde-format
msgid "Image Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_image_properties.cc:105
#, kde-format
msgid "Set color used for warning"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:62
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.cpp:109
#, kde-format
msgid "Ascending"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:63
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.cpp:110
#, kde-format
msgid "Descending"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:66
#, kde-format
msgid "Alphabetical"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:67
#, kde-format
msgid "Numerical"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:125
#: libs/ui/KisMainWindow.cpp:871
#, kde-format
msgid "Import Images"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_import_image_sequence.cpp:148
#, kde-format
msgid "Source fps: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_internal_color_selector.cpp:152
#, kde-format
msgid "This is a hexcode input, for webcolors. It can only get colors in the sRGB space."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_properties.cc:90
#, kde-format
msgid "Layer Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_properties.cc:170
#: libs/ui/dialogs/kis_dlg_layer_properties.cc:171
#, kde-format
msgid "*varies*"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_properties.cc:212
msgctxt "(qtundo-format)"
msgid "Change Layer Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:68
#, kde-format
msgid "Layer Styles"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:250
#, kde-format
msgctxt "@title:window"
msgid "Enter new style name"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:251 libs/ui/KisMainWindow.cpp:2063
#, kde-format
msgctxt "@label:textbox"
msgid "Name:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:252
#, kde-format
msgctxt "Default name for a new style"
msgid "New Style"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:265
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:278
#, kde-format
msgid "Select ASL file"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, proportional)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, scaleXBox)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, scaleYBox)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:590
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:607
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:610
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:631
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:639
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:642
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:795
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:830
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:837
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:843
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1006
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1009
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1081
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1084
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1087
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1093
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1096
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1211
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1214
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1252
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1343
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1346
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1349
#: libs/ui/dialogs/kis_dlg_preferences.cc:671
#: libs/ui/dialogs/kis_dlg_preferences.cc:675
#: libs/ui/dialogs/kis_dlg_preferences.cc:679 libs/ui/kis_autogradient.cc:76
#: libs/ui/kis_autogradient.cc:80
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:134
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:97
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:912
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:928
#, kde-format, no-c-format
msgid " %"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:778
#: libs/ui/widgets/kis_cmb_contour.cpp:25
#, kde-format
msgid "Not Implemented Yet"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:870
#: libs/ui/layerstyles/wdglayerstyles.ui:48
#, kde-format
msgid "Inner Shadow"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:871
#, kde-format
msgid "Choke:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_layer_style.cpp:1120
#, kde-format
msgctxt "layer styles parameter"
msgid "Spread:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:96
#, kde-format
msgid "No Cursor"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:97
#, kde-format
msgid "Tool Icon"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:98
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:201
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:235
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:269
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:303
#, kde-format
msgid "Arrow"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:99
#, kde-format
msgid "Small Circle"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDecor)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:100
#: plugins/tools/tool_crop/wdg_tool_crop.ui:444
#, kde-format
msgid "Crosshair"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:101
#, kde-format
msgid "Triangle Righthanded"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:102
#, kde-format
msgid "Triangle Lefthanded"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:103
#, kde-format
msgid "Black Pixel"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:104
#, kde-format
msgid "White Pixel"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbOutline)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:106
#: libs/ui/forms/wdggeometryoptions.ui:47
#, kde-format
msgid "No Outline"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:107
#, kde-format
msgid "Circle Outline"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:108
#, kde-format
msgid "Preview Outline"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:109
#, kde-format
msgid "Tilt Outline"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:111
#: plugins/flake/textshape/dialogs/TableOfContentsStyleDelegate.cpp:56
#: plugins/flake/textshape/dialogs/TableOfContentsStyleModel.cpp:113
#, kde-format
msgid "Disabled"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/kis_dlg_preferences.cc:112
#, kde-format
msgid "On Touch Drag"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/kis_dlg_preferences.cc:113
#, kde-format
msgid "On Click Drag"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:315
#, kde-format
msgid "Select a Background Image"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:327
#: libs/ui/KisTemplateCreateDia.cpp:404
#, kde-format
msgid "%1 is not a valid image file!"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:413
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:65
#: libs/ui/widgets/kis_color_space_selector.cc:62
#, kde-format
msgid "Open Color Profile"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:418
#: libs/ui/dialogs/kis_dlg_preferences.cc:594
#, kde-format
msgctxt "The number of the screen"
msgid "Screen %1:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:479
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:772
#: libs/ui/widgets/kis_color_space_selector.cc:226
#, kde-format
msgid "Install Color Profiles"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:518
#, kde-format
msgctxt "The display/screen we got from Qt"
msgid "Screen %1:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:669
#, kde-format
msgid "%1 MiB"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intSwapSize)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:718
#: libs/ui/forms/wdgperformancesettings.ui:202
#, kde-format
msgid " GiB"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/kis_dlg_preferences.cc:737
#, kde-format
msgid " fps"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:811
#, kde-format
msgctxt "@title:window"
msgid "Select a swap directory"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:841
#, kde-format
msgctxt "canvas renderer"
msgid "OpenGL"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:842
#, kde-format
msgctxt "canvas renderer"
msgid "Direct3D 11 via ANGLE"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:851
#, kde-format
msgctxt "canvas renderer"
msgid "Auto (%1)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:905
#, kde-format
msgid "Warning(s):"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1044
#, kde-format
msgid "Configure Krita"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: ectx: attribute (title), widget (QWidget, generalTab)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1052
#: libs/ui/dialogs/kis_dlg_preferences.cc:1054
#: libs/ui/forms/wdgcolorsettings.ui:24
#: libs/ui/forms/wdgperformancesettings.ui:34
#: libs/widgets/KoDocumentInfoDlg.cpp:103
#: libs/widgets/KoDocumentInfoDlg.cpp:104
#: plugins/flake/textshape/dialogs/CharacterGeneral.ui:27
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1061
#, kde-format
msgid "Keyboard Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1063
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:287
#, kde-format
msgid "Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1072
#, kde-format
msgid "Canvas Input Settings"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1073
#, kde-format
msgid "Canvas Input"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgDisplayBlacklist)
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgDisplaySettings)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1079
#: libs/ui/dialogs/kis_dlg_preferences.cc:1081
#: libs/ui/forms/wdgcolorsettings.ui:131
#: libs/ui/forms/wdgdisplaysettings.ui:20
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:20
#: libs/ui/widgets/kis_paintop_presets_chooser_popup.cpp:54
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:141
#, kde-format
msgid "Display"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1088
#, kde-format
msgid "Color Management"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1097
#: libs/ui/dialogs/kis_dlg_preferences.cc:1099
#, kde-format
msgid "Performance"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1106
#, kde-format
msgid "Tablet settings"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1108
#, kde-format
msgid "Tablet"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1115
#, kde-format
msgid "Canvas-only settings"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1117
#, kde-format
msgid "Canvas-only"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1124
#, kde-format
msgctxt "@title:tab Author page"
msgid "Author"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/dialogs/kis_dlg_preferences.cc:1126
#: libs/widgets/KoDocumentInfoDlg.cpp:126
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:109
#, kde-format
msgid "Author"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/kis_dlg_stroke_selection_properties.cpp:61
#, kde-format
msgctxt "@title:window"
msgid "Stroke Selection Properties"
msgstr ""
#. +> stable5
#: libs/ui/dialogs/kis_dlg_stroke_selection_properties.cpp:61
#, kde-format
msgid "Stroke selection properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/KisAsyncAnimationCacheRenderDialog.cpp:114
#, kde-format
msgid "Regenerating cache..."
msgstr ""
#. +> stable5
#: libs/ui/kis_animation_exporter.cpp:69
#, kde-format
msgid "Export sequence"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/KisAsyncAnimationFramesSaveDialog.cpp:113
#, kde-format
msgid "Delete old frames?"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/KisAsyncAnimationFramesSaveDialog.cpp:114
#, kde-format
msgid ""
"Frames with the same naming scheme exist in the destination directory. They are going to be deleted, continue?\n"
"\n"
"Directory: %1\n"
"Files: %2"
msgstr ""
#. +> stable5
#: libs/ui/kis_animation_exporter.cpp:343
#, kde-format
msgid ""
"Frames with the same naming scheme exist in the destination directory. The are going to be deleted, continue?\n"
"\n"
"Directory: %1\n"
"Files: %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/KisAsyncAnimationFramesSaveDialog.cpp:128
#, kde-format
msgid "Failed to delete"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/dialogs/KisAsyncAnimationFramesSaveDialog.cpp:129
#, kde-format
msgid ""
"Failed to delete an old frame file:\n"
"\n"
"%1\n"
"\n"
"Rendering cancelled."
msgstr ""
#. +> stable5
#: libs/ui/kis_animation_exporter.cpp:150
#, kde-format
msgid "Export frames..."
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/KisAsyncAnimationRenderDialogBase.cpp:278
#, kde-format
msgid ""
"\n"
"\n"
"Memory limit is reached!\n"
"The number of clones is limited to %1\n"
"\n"
msgstr ""
#. +> trunk5
#: libs/ui/dialogs/KisAsyncAnimationRenderDialogBase.cpp:282
#, kde-format
msgid ""
"%1\n"
"\n"
"Elapsed: %2\n"
"Estimated: %3\n"
"\n"
"%4"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/flake/kis_shape_controller.cpp:187
#, kde-format
msgid "Vector Layer %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/flake/kis_take_all_shapes_command.cpp:27
msgctxt "(qtundo-format)"
msgid "Clear Vector Selection"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KisMatrixWidget)
#. +> trunk5 stable5
#: libs/ui/forms/kis_matrix_widget.ui:14
#, kde-format
msgid "Matrix Widget"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxPreview)
#. i18n: ectx: property (title), widget (QGroupBox, m_groupBox)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:32
#: libs/ui/forms/wdgfilterdialog.ui:63
#, kde-format
msgid "Preview"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioBtnPreview)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:74
#, kde-format
msgid "Preview modified layer"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBtnPreview)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:77
#, kde-format
msgid "Pr&eview"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioBtnOriginal)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:87
#, kde-format
msgid "Show original layer"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBtnOriginal)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:90
#, kde-format
msgid "Ori&ginal"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, btnZoomOneToOne)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:136
#, kde-format
msgid "1 : 1"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, btnUpdate)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:149
#, kde-format
msgid "Update preview"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBoxAutoUpdate)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:164
#, kde-format
msgid "Automatically update the preview whenever the filter settings change"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxAutoUpdate)
#. +> trunk5 stable5
#: libs/ui/forms/kis_previewwidgetbase.ui:167
#, kde-format
msgid "&Autoupdate"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_alwaysUseCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/KisDetailsPaneBase.ui:94
#, kde-format
msgid "Always use this template at application start up"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_alwaysUseCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/KisDetailsPaneBase.ui:97
#, kde-format
msgid "Always use this template"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgResolution)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:14
#, kde-format
msgid "Image Resolution"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, lblWidth)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lblSize)
#. i18n: ectx: property (text), widget (QLabel, widthInfoLbl)
#. i18n: ectx: property (text), widget (QLabel, lblNewWidth)
#. i18n: ectx: property (text), widget (QLabel, lblPixelWidth)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, widthLabel)
#. i18n: ectx: property (text), widget (QLabel, intWidthzqffs)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:20 libs/ui/forms/wdgimageproperties.ui:44
#: libs/ui/forms/wdgrectangleconstraints.ui:101
#: libs/ui/forms/wdgstrokeselectionproperties.ui:85
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:77
#: libs/widgets/KoPageLayoutWidget.ui:98
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1057
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:161
#: plugins/extensions/imagesize/wdg_canvassize.ui:45
#: plugins/extensions/imagesize/wdg_imagesize.ui:67
#: plugins/extensions/imagesize/wdg_layersize.ui:58
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:161
#: plugins/impex/pdf/pdfimportwidgetbase.ui:163
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:94
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:91
#, kde-format
msgid "Width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblHeight)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, heightInfoLbl)
#. i18n: ectx: property (text), widget (QLabel, lblNewHeight)
#. i18n: ectx: property (text), widget (QLabel, lblPixelHeight)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. i18n: ectx: property (text), widget (QLabel, heightLabel)
#. i18n: ectx: property (text), widget (QLabel, intHeightqsdfq)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:27 libs/ui/forms/wdgimageproperties.ui:67
#: libs/ui/forms/wdgrectangleconstraints.ui:147
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:114
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:816
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1034
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:171
#: plugins/extensions/imagesize/wdg_canvassize.ui:29
#: plugins/extensions/imagesize/wdg_imagesize.ui:97
#: plugins/extensions/imagesize/wdg_layersize.ui:125
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:108
#: plugins/impex/pdf/pdfimportwidgetbase.ui:195
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:129
#, kde-format
msgid "Height:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblImageXRes)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:48
#, kde-format
msgid "X resolution:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblYResolution)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:77
#, kde-format
msgid "Y resolution:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblResolution)
#. i18n: ectx: property (text), widget (QLabel, lblYResolution_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdg_resolution.ui:106 libs/ui/forms/wdgimageproperties.ui:90
#: libs/ui/forms/wdgnewimage.ui:223
#: plugins/extensions/imagesize/wdg_imagesize.ui:240
#, kde-format
msgid "Resolution:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:23
#, kde-format
msgid "Apply Profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:29
#, kde-format
msgid "The image data you want to paste does not have an ICM profile associated with it. If you do not select a profile, Krita will assume that the image data is encoded in the import profile defined in the Settings dialog."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblProfile)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:56
#, kde-format
msgid "&Profiles:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, grpRenderIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:84
#, kde-format
msgid "Rendering intent determines the bias in the color conversion."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, grpRenderIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:87 libs/ui/forms/wdgimageproperties.ui:231
#, kde-format
msgid "Rendering Intent"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioPerceptual)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:93
#, kde-format
msgid "Hue hopefully maintained (but not required), lightness and saturation sacrificed to maintain the perceived color. White point changed to result in neutral grays. Intended for images."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbIntent)
#. i18n: ectx: property (text), item, widget (KComboBox, cmbMonitorIntent)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbProofingIntent)
#. i18n: ectx: property (text), widget (QRadioButton, radioPerceptual)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:96 libs/ui/forms/wdgcolorsettings.ui:194
#: libs/ui/forms/wdgcolorsettings.ui:279
#: libs/ui/forms/wdgimageproperties.ui:241
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:466
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:41
#, kde-format
msgid "Perceptual"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioRelativeColorimetric)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:103
#, kde-format
msgid "Within and outside gamut; same as Absolute Colorimetric. White point changed to result in neutral grays."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioRelativeColorimetric)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:106
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:63
#, kde-format
msgid "Relative colorimetric"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioSaturation)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:113
#, kde-format
msgid "Hue and saturation maintained with lightness sacrificed to maintain saturation. White point changed to result in neutral grays. Intended for business graphics (make it colorful charts, graphs, overheads, ...)"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioAbsoluteColorimetric)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:123
#, kde-format
msgid "Within the destination device gamut; hue, lightness and saturation are maintained. Outside the gamut; hue and lightness are maintained, saturation is sacrificed. White point for source and destination; unchanged. Intended for spot colors (Pantone, TruMatch, logo colors, ...)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioAbsoluteColorimetric)
#. +> trunk5 stable5
#: libs/ui/forms/wdgapplyprofile.ui:126
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:108
#, kde-format
msgid "Absolute colorimetric"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lblName)
#. i18n: ectx: property (text), widget (QLabel, brushNameLbl)
#. i18n: ectx: property (text), widget (QLabel, labelName)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:25
#: libs/ui/forms/wdgstopgradienteditor.ui:19
#: libs/ui/KisColorsetChooser.cpp:113
#: plugins/dockers/tasksetdocker/tasksetdocker_dock.cpp:189
#: plugins/extensions/pykrita/plugin/info.ui:213
#: plugins/impex/brush/wdg_export_gih.ui:37
#: plugins/paintops/libpaintop/forms/wdgclipboardbrush.ui:106
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:91
#, kde-format
msgid "Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:63
#, kde-format
msgid "Segment Color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, opacityLabel)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:81 libs/ui/forms/wdgdisplaysettings.ui:266
#: libs/ui/forms/wdgpaintactioneditor.ui:63 libs/ui/kis_paintop_box.cc:244
#: libs/ui/kis_paintop_box.cc:249
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:70
#: plugins/dockers/defaultdockers/wdglayerbox.ui:75
#: plugins/filters/noisefilter/wdgnoiseoptions.ui:29
#: plugins/filters/randompickfilter/wdgrandompickoptions.ui:65
#: plugins/paintops/libpaintop/forms/wdgflowopacityoption.ui:59
#, kde-format
msgid "Opacity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelLeftColor)
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:99
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:26
#, kde-format
msgid "Left:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelRightColor)
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:180
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:55
#, kde-format
msgid "Right:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbGradientType)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxInterpolationType)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:294
#: libs/ui/layerstyles/WdgGradientOverlay.ui:134
#: libs/ui/layerstyles/WdgStroke.ui:227
#: libs/ui/widgets/KoFillConfigWidget.ui:225
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:66
#, kde-format
msgid "Linear"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:299
#, kde-format
msgid "Curved"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:304
#, kde-format
msgid "Sine"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:309
#, kde-format
msgid "Sphere Inc."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:314
#, kde-format
msgid "Sphere Dec."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxColorInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:337
#, kde-format
msgid "RGB"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxColorInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:342
#, kde-format
msgid "HSV CW"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxColorInterpolationType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgautogradient.ui:347
#, kde-format
msgid "HSV CCW"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgBookmarkedConfigurationsEditor)
#. +> trunk5 stable5
#: libs/ui/forms/wdgbookmarkedconfigurationseditor.ui:19
#, kde-format
msgid "Edit presets"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonBookmarkCurrent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgbookmarkedconfigurationseditor.ui:43
#, kde-format
msgid "Bookmark current"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonDelete)
#. i18n: ectx: property (text), widget (QPushButton, bDelete)
#. +> trunk5 stable5
#: libs/ui/forms/wdgbookmarkedconfigurationseditor.ui:50
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:76
#: plugins/flake/textshape/dialogs/StyleManager.ui:75
#: plugins/flake/textshape/kotext/commands/ChangeTrackedDeleteCommand.cpp:277
#: plugins/flake/textshape/TextTool.cpp:2639
#, kde-format
msgid "Delete"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgTabletSettings)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgColorSettings)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:14 libs/ui/forms/wdgtabletsettings.ui:20
#, kde-format
msgid "Color Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:32
#, kde-format
msgid "Default color model for new images:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpPasteBehaviour)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:60
#, kde-format
msgid "When Pasting Into Krita From Other Applications"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioPasteWeb)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:66
#, kde-format
msgid "Assume sRGB (like images from the web are supposed to be seen)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioPasteMonitor)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:73
#, kde-format
msgid "Assume &monitor profile (like you see it in the other application)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioPasteAsk)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:80
#, kde-format
msgid "As&k each time"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:87
#, kde-format
msgid "Note: When copying/pasting inside Krita color info is always preserved."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkBlackpoint)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:97
#, kde-format
msgid "Use Blackpoint Compensation"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAllowLCMSOptimization)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:107
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:131
#, kde-format
msgid "Allow Little CMS optimizations (uncheck when using linear light RGB or XYZ)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUseSystemMonitorProfile)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:137
#, kde-format
msgid "Use system monitor profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, lblRenderingIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:171
#, kde-format
msgid "The icm profile for your calibrated monitor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRenderingIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:174
#, kde-format
msgid "&Rendering intent:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbIntent)
#. i18n: ectx: property (text), item, widget (KComboBox, cmbMonitorIntent)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbProofingIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:199 libs/ui/forms/wdgcolorsettings.ui:284
#: libs/ui/forms/wdgimageproperties.ui:246
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:469
#, kde-format
msgid "Relative Colorimetric"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbIntent)
#. i18n: ectx: property (text), item, widget (KComboBox, cmbMonitorIntent)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbProofingIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:209 libs/ui/forms/wdgcolorsettings.ui:294
#: libs/ui/forms/wdgimageproperties.ui:256
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:472
#, kde-format
msgid "Absolute Colorimetric"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:221
#, kde-format
msgid "Add new color profile:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:270
#, kde-format
msgid "Soft Proofing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblAdaptationState)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:302
#: libs/ui/forms/wdgimageproperties.ui:272
#, kde-format
msgid "Adaptation State:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblProofingIntent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:312
#, kde-format
msgid "Proofing Rendering Intent:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblGamutWarning)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:319
#: libs/ui/forms/wdgimageproperties.ui:296
#, kde-format
msgid "Gamut Warning:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ckbBlackPointComp)
#. i18n: ectx: property (text), widget (QCheckBox, ckbProofBlackPoint)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:343
#: libs/ui/forms/wdgimageproperties.ui:313
#, kde-format
msgid "Black Point Compensation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorsettings.ui:375
#, kde-format
msgid "Note: these are the default proofing settings for new images."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColorSpaces)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:19
#, kde-format
msgid "&Model:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColorModels)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:39
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:105
#, kde-format
msgid "Depth:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnAdvanced)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:59
#, kde-format
msgid "Color Space Browser"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblProfiles)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:70
#, kde-format
msgid "Profi&le:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bnInstallProfile)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:90
#, kde-format
msgid "Install a new profile from a file"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, bnInstallProfile)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselector.ui:93
#, kde-format
msgid "Install a new profile from a file."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:32
#, kde-format
msgid "Profile Picker"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:40
#: plugins/filters/embossfilter/kis_emboss_filter.cpp:159
#, kde-format
msgid "Depth"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:47
#, kde-format
msgid "Model"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:54
#: libs/ui/input/config/kis_input_configuration_page.ui:19
#, kde-format
msgid "Profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbl_descriptionwidget)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:144
#, kde-format
msgid ""
"<html><head/><body>"
"<p><a href=\"https://en.wikipedia.org/wiki/Color_space\"><span style=\" font-weight:600; text-decoration: underline; color:#006e28;\">Color Spaces</span></a> determine how colors are encoded in your files. Different color spaces have different properties and are used for different purposes.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:197
#, kde-format
msgid "Profile Properties"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblWhitepoint)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:216
#, kde-format
msgid "White Point:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblXYZ_W)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcolorspaceselectoradvanced.ui:223
#, kde-format
msgid "xyz"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, sourcetypeLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:19
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:52
#, kde-format
msgid "Source:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSource)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSources)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:33
#: plugins/tools/basictools/wdgcolorpicker.ui:146
#, kde-format
msgid "Current Layer"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSource)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:38
#, kde-format
msgid "Entire Image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, updateButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:118
#, kde-format
msgid "&Update"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, patternButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:125
#, kde-format
msgid "use as &Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgcustompattern.ui:132
#, kde-format
msgid "&Add to Predefined Patterns"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpOpenGL)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:35
#, kde-format
msgid "Canvas &Graphics Acceleration"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFilterMode)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:59
#, kde-format
msgid "Bilinear Filtering"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFilterMode)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:64
#, kde-format
msgid "Trilinear Filtering"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFilterMode)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:69
#, kde-format
msgid "High Quality Filtering"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkDisableVsync)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:83
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Try to disable vsync for Krita. This makes painting more responsive. Uncheck only when experiencing crashes with some GPU/driver combinations.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDisableVsync)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:86
#, kde-format
msgid "Disable vsync (needs restart)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkUseTextureBuffer)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:102
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use Texture Buffering. This can be faster on some GPU/Driver combinations (like Intel) or broken on some others (like AMD/Radeon).</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUseTextureBuffer)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:105
#, kde-format
msgid "Use texture buffer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:118
#, kde-format
msgid "Scaling Mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRenderer)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:134
#, kde-format
msgid "Renderer (needs restart):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCheckSize)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:180
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:156
#, kde-format
msgid "Si&ze:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, gridThresholdLabel)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:223
#, kde-format
msgid "Start showing at:"
msgstr ""
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, pixelGridDrawingThresholdBox)
#. i18n: ectx: property (suffix), widget (KisSliderSpinBox, intChoke)
#. i18n: ectx: property (suffix), widget (KisSliderSpinBox, intRange)
#. i18n: ectx: property (suffix), widget (KisSliderSpinBox, intJitter)
#. i18n: ectx: property (text), widget (QToolButton, alignPercent)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:239
#: libs/ui/layerstyles/wdgInnerGlow.ui:216
#: libs/ui/layerstyles/wdgInnerGlow.ui:318
#: libs/ui/layerstyles/wdgInnerGlow.ui:347
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:142
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:94
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:169
#: plugins/paintops/spray/kis_spray_paintop_settings.cpp:189
#: plugins/tools/defaulttool/connectionTool/ConnectionPointWidget.ui:116
#, kde-format, no-c-format
msgid "%"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCanvasBorderColor_2)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:298
#, kde-format
msgid "Pixel Grid:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:314
#, kde-format
msgid "Selection Overlay:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> stable5
#: libs/ui/forms/wdgdisplaysettings.ui:333
#, kde-format
msgid "Selection Overlay"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:330
#, kde-format
msgid "Transparency Checkerboard:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpCheckers)
#. +> stable5
#: libs/ui/forms/wdgdisplaysettings.ui:66
#, kde-format
msgid "Transparency Checkerboard Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCanvasBorderColor)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:357
#, kde-format
msgid "Canvas Border Color:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpCanvasBorder)
#. +> stable5
#: libs/ui/forms/wdgdisplaysettings.ui:288
#, kde-format
msgid "Canvas border"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hideScrollbars)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:390
#, kde-format
msgid "Hide Window Scrollbars"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hideScrollbars)
#. +> stable5
#: libs/ui/forms/wdgdisplaysettings.ui:320
#, kde-format
msgid "Hide Scrollbars"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkHidePopups)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:400
#, kde-format
msgid "Hide layer thumbnail popup"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkCurveAntialiasing)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:407
#, kde-format
msgid "Enable curve anti-aliasing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkChannelsAsColor)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:414
#, kde-format
msgid "Color channels in color"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSelectionOutlineAntialiasing)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:424
#, kde-format
msgid "Enable selection outline anti-aliasing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkMoving)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:431
#, kde-format
msgid "If checked, the checkers will move when scrolling the canvas."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, chkMoving)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdisplaysettings.ui:434
#, kde-format
msgid "Determines whether the checks will stay put or whether they will scroll together with the canvas"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMoving)
#. +> trunk5
#: libs/ui/forms/wdgdisplaysettings.ui:437
#, kde-format
msgid "&Move checkers when scrolling"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMoving)
#. +> stable5
#: libs/ui/forms/wdgdisplaysettings.ui:146
#, kde-format
msgid "&Move checkers when scrolling"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbRemoveWorkspaces)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:26
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:266
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:155
#, kde-format
msgid "Workspaces"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:55
#, kde-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Ubuntu'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">Warning</span>: Cleanup will remove resource files permanently.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbRemoveGradients)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:70
#, kde-format
msgid "Use trilinear filtering when zooming. Disabling this may improve painting performance."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbRemoveGradients)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:73 libs/ui/kis_control_frame.cpp:86
#: libs/ui/kis_control_frame.cpp:226
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:254
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:152
#, kde-format
msgid "Gradients"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnPatternFill)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFill)
#. i18n: ectx: property (text), widget (QCheckBox, cbRemovePattern)
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:83
#: libs/ui/forms/wdggeometryoptions.ui:89
#: libs/ui/widgets/KoFillConfigWidget.ui:106
#: plugins/extensions/metadataeditor/editors/exif.ui:432
#: plugins/generators/pattern/patterngenerator.h:53
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:67
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:88
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:54
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:64
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:59
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:71
#, kde-format
msgid "Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, presetsSidebarLabel)
#. i18n: ectx: property (text), widget (QCheckBox, cbRemovePresets)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:93
#: libs/ui/forms/wdgpaintopsettings.ui:438
#, kde-format
msgid "Presets"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbRemoveColorsets)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:103
#, kde-format
msgid "Colorsets"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbRemoveBrushes)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgblacklistcleanup.ui:113
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:260
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:150
#, kde-format
msgid "Brushes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:25
#, kde-format
msgid "&Layer Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:41
#, kde-format
msgid "File:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpScalingOptions)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:59
#, kde-format
msgid "Scaling Options"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioDontScale)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:65
#, kde-format
msgid "No Scaling"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioScaleToImageSize)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:75
#, kde-format
msgid "Scale to Image Size"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioScalePPI)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgfilelayer.ui:82
#, kde-format
msgid "Adapt to Image Resolution (ppi)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlggeneratorlayer.ui:22
#: libs/ui/forms/wdgfilternodecreation.ui:24
#, kde-format
msgid "Layer Name:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, FilterDialog)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgImportImageSequence)
#. i18n: ectx: property (windowTitle), widget (QDialog, WdgDlgInternalColorSelector)
#. i18n: ectx: property (windowTitle), widget (QDialog, AcceptRejectChangeDialog)
#. i18n: ectx: property (windowTitle), widget (QDialog, TableOfContentsConfigure)
#. i18n: ectx: property (windowTitle), widget (QDialog, TableOfContentsStyleConfigure)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlginternalcolorselector.ui:14
#: libs/ui/forms/wdgfilterdialog.ui:26
#: libs/ui/forms/wdgimportimagesequence.ui:14
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:26
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:14
#: plugins/flake/textshape/dialogs/TableOfContentsStyleConfigure.ui:14
#, kde-format
msgid "Dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblProfileTitle)
#. i18n: ectx: property (text), widget (QLabel, lblProfiles)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdgdlgpngimport.ui:17 libs/ui/forms/wdglayerproperties.ui:131
#: plugins/impex/video/video_export_options_dialog.ui:65
#, kde-format
msgid "Profile:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonCreateMaskEffect)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfilterdialog.ui:86
#, kde-format
msgid "Create Filter Mask"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, FilterSelector)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfilterselector.ui:26
#, kde-format
msgid "Filter selection"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonEditPressets)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfilterselector.ui:124
#, kde-format
msgid "Edit Presets"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, btnXML)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfilterselector.ui:131
#, kde-format
msgid "Get the XML for the current filter configuration."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnXML)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfilterselector.ui:134
#, kde-format
msgid "XML"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:17
#, kde-format
msgid "Select which parts of Krita will be hidden in canvas-only mode."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMenu)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:27
#, kde-format
msgid "Menu"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkToolbar)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:34
#, kde-format
msgid "Toolbars"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDockers)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:41
#, kde-format
msgid "Toolbox and palettes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkScrollbars)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:48
#, kde-format
msgid "Scrollbars"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkTitlebar)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:55
#, kde-format
msgid "Titlebar (hiding the titlebar will make Krita go full-screen)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkStatusbar)
#. +> trunk5 stable5
#: libs/ui/forms/wdgfullscreensettings.ui:62
#, kde-format
msgid "Statusbar"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:36
#, kde-format
msgid "Cursor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:68
#, kde-format
msgid "Cursor Shape:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:87
#, kde-format
msgid "Outline Shape:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_showOutlinePainting)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:112
#, kde-format
msgid "Show brush outline while painting"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:119
#, kde-format
msgid "Cursor Color:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:155
#, kde-format
msgid "Window"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:167
#, kde-format
msgid "Multiple Document Mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_cmbMDIType)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:187
#, kde-format
msgid "Subwindows"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_cmbMDIType)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:192
#, kde-format
msgid "Tabs"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:200
#, kde-format
msgid "Background Image (overrides color):"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearBgImageButton)
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. i18n: ectx: property (text), widget (QToolButton, m_bnClearLut)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:241
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpClear.h:33
#: plugins/dockers/lut/wdglut.ui:237
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:101
#, kde-format
msgid "Clear"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:250
#, kde-format
msgid "Window Background:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:273
#, kde-format
msgid "Don't show contents when moving sub-windows:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:293
#, kde-format
msgid "Show on-canvas popup messages:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:327
#, kde-format
msgid "Enable Hi-DPI support:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_r98)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:341
#, kde-format
msgid "Allow only one instance of Krita:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, Tools)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:349 libs/widgets/KoToolBoxDocker.cpp:41
#, kde-format
msgid "Tools"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:372
#, kde-format
msgid "Tool Options Location (needs restart)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioToolOptionsInDocker)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:378
#, kde-format
msgid "In Doc&ker"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioToolOptionsInToolbar)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:385
#, kde-format
msgid "In Tool&bar"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkSwitchSelectionCtrlAlt)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:398
#, kde-format
msgid "Switch Control/Alt Selection Modifiers"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkEnableTouch)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:405
#, kde-format
msgid "Enable Touch Painting"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxKineticScrollingSettings)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:412
#, kde-format
msgid "Kinetic Scrolling (needs restart)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelKineticScrollingSensitivity)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:423
#, kde-format
msgid "Sensitivity (0-100):"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkKineticScrollingScrollbar)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:460
#, kde-format
msgid "Show Scrollbar"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, Miscellaneous)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:499
#, kde-format
msgid "Miscellaneous"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_autosaveCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:514
#, kde-format
msgid "Autosave every:"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, m_autosaveSpinBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:536
#, kde-format
msgid " min"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> stable5
#: libs/ui/forms/wdggeneralsettings.ui:548
#, kde-format
msgid "Favorite presets:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkCompressKra)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:555
#, kde-format
msgid "Compress .kra files more (slows loading/saving)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_backupFileCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:562
#, kde-format
msgid "Create backup file "
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkConvertOnImport)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:569
#, kde-format
msgid "On importing images as layers, convert to the image colorspace"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:582
#, kde-format
msgid "Undo stack size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:626
#, kde-format
msgid "Number of Palette Presets"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowRootLayer)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:658
#, kde-format
msgid "Show root layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_hideSplashScreen)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:665
#, kde-format
msgid "Hide splash screen on startup"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_chkNativeFileDialog)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeneralsettings.ui:672
#, kde-format
msgid "Warning: if you enable this setting and the file dialogs do weird stuff, do not report a bug."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkNativeFileDialog)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:675
#, kde-format
msgid "Enable native file dialogs (warning: may not work correctly on some systems)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkNativeFileDialog)
#. +> stable5
#: libs/ui/forms/wdggeneralsettings.ui:610
#, kde-format
msgid "Enable native file dialogs (warning: they may not work correctly on systems)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:682
#, kde-format
msgid "Maximum brush size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, intMaxBrushSize)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:697
#, kde-format
msgid "The maximum diameter of a brush in pixels."
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, intMaxBrushSize)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:700
#, kde-format
msgctxt "pixel"
msgid "px"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:716
#, kde-format
msgid "(Needs restart)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_chkCacheAnimatioInBackground)
#. +> trunk5
#: libs/ui/forms/wdggeneralsettings.ui:738
#, kde-format
msgid "Recalculate animation cache in background"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgGeometryOptions)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:6
#, kde-format
msgid "Geometry Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabelOutline)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:33
#, kde-format
msgid "Outline:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbOutline)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:52
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:41
#, kde-format
msgid "Brush"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabelFill)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:60
#: libs/ui/forms/wdgstrokeselectionproperties.ui:55
#, kde-format
msgid "Fill:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFill)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:74
#, kde-format
msgid "Not Filled"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFill)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:79
#, kde-format
msgid "Foreground Color"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFill)
#. i18n: ectx: property (text), widget (QLabel, insertionColorLabel)
#. i18n: ectx: property (text), widget (QLabel, deletionColorLabel)
#. i18n: ectx: property (text), widget (QLabel, formatColorLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdggeometryoptions.ui:84
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:105
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:188
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:247
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:1050
#, kde-format
msgid "Background Color"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgImageProperties)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgNewImage)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgStrokeSelection)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:14 libs/ui/forms/wdgnewimage.ui:32
#: libs/ui/forms/wdgstrokeselectionproperties.ui:20
#, kde-format
msgid "New Image"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:24 libs/ui/forms/wdgnewimage.ui:54
#: plugins/impex/pdf/pdfimportwidgetbase.ui:60
#, kde-format
msgid "Dimensions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:115 libs/ui/forms/wdgnewimage.ui:246
#, kde-format
msgid "pixels-per-inch"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:118 libs/ui/forms/wdgnewimage.ui:249
#, kde-format
msgid "ppi"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblBgColor)
#. +> trunk5
#: libs/ui/forms/wdgimageproperties.ui:146
#, kde-format
msgctxt "The background color of the image's projection"
msgid "Background Color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblBgColor)
#. +> stable5
#: libs/ui/forms/wdgimageproperties.ui:106
#, kde-format
msgctxt "The background color of the image's projection"
msgid "Background Color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: libs/ui/forms/wdgimageproperties.ui:179
#, kde-format
msgid "Background Opacity:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, grpMode)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:192
#, kde-format
msgid "Image Color Space"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:201
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Note:</span> This changes only the colorspace of the rendered image. To convert the colorspace of the layers, use Convert Image Colorspace.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, grpSoftProof)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:215
#, kde-format
msgid "Softproofing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSaveProofing)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:221
#, kde-format
msgid "Store Softproofing configuration in the image"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, sldAdaptationState)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:282
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Set how much you wish to correct the adaptation state. This will affect how <span style=\" font-style:italic;\">Absolute Colorimetric</span> changes the whites of your image. In Layman's terms: how much do you wish to have the color management correct the paper-color to screen white while using <span style=\" font-style:italic;\">Absolute Colorimetric</span>?</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, ckbBlackPointComp)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:310
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Black Point compensation matches the darkest color of the source device to the darkest color of the destination device. Relative Colorimetric without Black Point Compensation will show the difference between the darkest values. With blackpoint compensation, black is black.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:336
#, kde-format
msgid "Annotations"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblDescription)
#. i18n: ectx: property (text), widget (QLabel, lblPreview)
#. i18n: ectx: property (text), widget (QLabel, lblSwapFileLocation)
#. i18n: ectx: property (text), widget (QLabel, lblSaveLocation)
#. i18n: ectx: property (text), widget (QLabel, stylesAvailableLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimageproperties.ui:360 libs/ui/forms/wdgnewimage.ui:338
#: libs/ui/forms/wdgperformancesettings.ui:229
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:353
#: plugins/flake/textshape/dialogs/TableOfContentsStyleConfigure.ui:20
#, kde-format
msgid "TextLabel"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnAddImages)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:29
#, kde-format
msgid "Add images..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, remove)
#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#. i18n: ectx: property (text), widget (QPushButton, btnRemove)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:36
#: libs/ui/input/config/kis_edit_profiles_dialog.ui:40
#: libs/widgets/KoEditColorSet.ui:55
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:419
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:155
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:49
#, kde-format
msgid "Order"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:64
#, kde-format
msgid "Timing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:70
#, kde-format
msgid "Start at"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, spinFirstFrame)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:77
#, kde-format
msgid "The frame number for the first image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:87
#, kde-format
msgid "Step"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, spinStep)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:94
#, kde-format
msgid "Number of frames between images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFramerate)
#. +> trunk5 stable5
#: libs/ui/forms/wdgimportimagesequence.ui:107
#, kde-format
msgid "Source FPS:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblName)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:24 libs/ui/forms/wdgnewimage.ui:547
#, kde-format
msgid "&Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblOpacity)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:50
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:327
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:380
#: libs/ui/layerstyles/wdgblendingoptions.ui:52
#: libs/ui/layerstyles/WdgColorOverlay.ui:66
#: libs/ui/layerstyles/wdgInnerGlow.ui:52
#: libs/ui/layerstyles/WdgPatternOverlay.ui:55
#, kde-format
msgid "&Opacity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCompositeOp)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:76
#, kde-format
msgid "Composite mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColorSpaceTitle)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:102
#, kde-format
msgid "Color space:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColorLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:160
#, kde-format
msgid "Color label:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpProperties)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:205
#, kde-format
msgid "Properties"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QGroupBox, grpActiveChannels)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:219
#, kde-format
msgid "Select the set of active channels."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, grpActiveChannels)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:222
#, kde-format
msgid "Select the set of active channels. Only active channels will be visible, filtered or affected by painting."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpActiveChannels)
#. +> trunk5 stable5
#: libs/ui/forms/wdglayerproperties.ui:225
#, kde-format
msgid "&Active Channels"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpSelectionSource)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:16
#, kde-format
msgid "Source Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLocal)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:22
#, kde-format
msgid "&Layer Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkImage)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:29
#, kde-format
msgid "&Image Selection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:39
#, kde-format
msgid "Combination method"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:45
#, kde-format
msgid "&Combined area"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmaskfromselection.ui:55
#, kde-format
msgid "&Shared area"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpMaskSource)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmasksource.ui:16
#, kde-format
msgid "Mask Source"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioNone)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmasksource.ui:22
#, kde-format
msgid "&None"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioMask)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmasksource.ui:29
#, kde-format
msgid "current &Mask"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmasksource.ui:36
#, kde-format
msgid "&Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmasksource.ui:46
#, kde-format
msgid "current &Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmetadatamergestrategychooser.ui:23
#, kde-format
msgid "Merge strategy:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbCommentsDesc)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, description)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, labelTopics)
#. +> trunk5 stable5
#: libs/ui/forms/wdgmetadatamergestrategychooser.ui:49
#: libs/widgets/koDocumentInfoAboutWidget.ui:81
#: plugins/extensions/metadataeditor/editors/dublincore.ui:99
#: plugins/extensions/pykrita/plugin/info.ui:44
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:239
#, kde-format
msgid "Description:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpImage)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgImagesplit)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgLayerSplit)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:92
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:14
#: plugins/extensions/layersplit/wdg_layersplit.ui:14
#, kde-format
msgid "Image Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:109
#, kde-format
msgid "P&redefined:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:132
#, kde-format
msgid "Save As:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bnSaveAsPredefined)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:149
#, kde-format
msgid "Save the current dimensions"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnSaveAsPredefined)
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:152
#: libs/widgetutils/config/kstandardaction_p.h:44
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:131
#, kde-format
msgid "&Save"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, landscape)
#. i18n: ectx: property (toolTip), widget (QToolButton, bnLandscape)
#. i18n: ectx: property (text), item, widget (QComboBox, editSceneCaptureType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:165 libs/widgets/KoPageLayoutWidget.ui:166
#: plugins/extensions/metadataeditor/editors/exif.ui:975
#, kde-format
msgid "Landscape"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, heightLabel)
#. i18n: ectx: property (text), widget (QLabel, lblHeight)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:197 libs/widgets/KoPageLayoutWidget.ui:134
#, kde-format
msgid "&Height:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblWidth)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:256
#, kde-format
msgid "W&idth:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnPortrait)
#. i18n: ectx: property (text), item, widget (QComboBox, editSceneCaptureType)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:269
#: plugins/extensions/metadataeditor/editors/exif.ui:980
#, kde-format
msgid "Portrait"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpClipboard)
#. i18n: ectx: property (text), widget (QPushButton, clipboardButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:317
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:90
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:300
#, kde-format
msgid "Clipboard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:376
#, kde-format
msgid "Layers:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblOpacity)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:386
#, kde-format
msgid "Ima&ge Background Opacity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColor)
#. +> trunk5
#: libs/ui/forms/wdgnewimage.ui:418
#, kde-format
msgid "Image Bac&kground Color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColor)
#. +> stable5
#: libs/ui/forms/wdgnewimage.ui:442
#, kde-format
msgid "&Image Background Color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblBackgroundStyle)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:431
#, kde-format
msgid "Background:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblDescription)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:441
#, kde-format
msgid "&Description:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBackgroundAsLayer)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:472
#, kde-format
msgid "As fi&rst layer"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBackgroundAsProjection)
#. +> trunk5
#: libs/ui/forms/wdgnewimage.ui:479
#, kde-format
msgid "As can&vas color"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBackgroundAsProjection)
#. +> stable5
#: libs/ui/forms/wdgnewimage.ui:503
#, kde-format
msgid "As ca&nvas color"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisColorButton, cmbColor)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:500
#, kde-format
msgid "Reset the image background color in the Image Properties dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, txtName)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:560
#, kde-format
msgid "untitled-1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblDocumentInfo)
#. +> trunk5
#: libs/ui/forms/wdgnewimage.ui:598
#, kde-format
msgid "This document..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, createButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnewimage.ui:633
#, kde-format
msgid "&Create"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButtonCurrentLayer)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnodequerypatheditor.ui:17
#, kde-format
msgid "current layer"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioButtonCustomPath)
#. +> trunk5 stable5
#: libs/ui/forms/wdgnodequerypatheditor.ui:27
#, kde-format
msgid "path"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: ectx: attribute (title), widget (QWidget, textureOptionsTab)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:24
#: libs/ui/KisImportExportManager.cpp:511
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:59
#, kde-format
msgid "Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:30
#, kde-format
msgid "Paint color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, backgroundColorLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:40
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:71
#: plugins/flake/textshape/dialogs/FontDecorations.ui:69
#, kde-format
msgid "Background color:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:119
#, kde-format
msgid "Current preset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:125
#, kde-format
msgid "Paint op:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintactioneditor.ui:162
#, kde-format
msgid "Preset Collection"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgPaintOpSettings)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:14 libs/ui/kis_paintop_box.cc:407
#, kde-format
msgid "Brush Editor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, currentBrushNameLabel)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:159
#, kde-format
msgid "current brush"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, txtPreset)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:181
#, kde-format
msgid "Current Brush Preset. Typed in italic when the preset has unsaved settings."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bnSave)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:188
#, kde-format
msgid "Save the current brush settings under this name"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, reload)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:198
#, kde-format
msgid "Reload"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, updateBrushNameButton)
#. i18n: ectx: property (text), widget (QPushButton, savePresetButton)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:213
#: libs/ui/forms/wdgsavebrushpreset.ui:215 libs/ui/KisColorsetChooser.cpp:100
#: libs/ui/KisMainWindow.cpp:772 libs/ui/widgets/kis_workspace_chooser.cpp:93
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:61
#, kde-format
msgid "Save"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnDefaultPreset)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:239
#, kde-format
msgid "Default preset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, currentBrushEngineLabel)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:253
#, kde-format
msgid "Current Brush Engine"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, saveNewBrushPresetButton)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:363
#, kde-format
msgid "Save New Brush Preset..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnSave)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:191
#, kde-format
msgid "&Save to Presets"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, saveBrushPresetButton)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:382
#, kde-format
msgid "Overwrite Brush"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, engineFilterLabel)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:455
#, kde-format
msgid "Engine:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, eraserBrushSizeCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:674
#, kde-format
msgid "Erase mode will use a separate brush size"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, eraserBrushSizeCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:677
#, kde-format
msgid "Eraser switch size"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, dirtyPresetCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:693
#, kde-format
msgid "Temporarily Save Tweaks To Presets"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, eraserBrushOpacityCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:709
#, kde-format
msgid "Erase mode will use a separate brush opacity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, eraserBrushOpacityCheckBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:712
#, kde-format
msgid "Eraser switch opacity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scratchpadSidebarLabel)
#. +> trunk5
#: libs/ui/forms/wdgpaintopsettings.ui:820
#, kde-format
msgid "Scratchpad"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, fillGradient)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:891
#, kde-format
msgid "Fill area with gradient"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, paintPresetIcon)
#. +> stable5
#: libs/ui/forms/wdgpaintopsettings.ui:71
#, kde-format
msgid "Fill preset area with current icon"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, fillSolid)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:901
#, kde-format
msgid "Fill area with background color"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, eraseScratchPad)
#. +> trunk5 stable5
#: libs/ui/forms/wdgpaintopsettings.ui:911
#, kde-format
msgid "Reset area to white"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:17
#, kde-format
msgid "RAM (needs restarting Krita)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:23
#, kde-format
msgid "Note: Krita will need to be restarted for changes to take affect"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:40
#, kde-format
msgid "RAM"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:46
#, kde-format
msgid "Memory available:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTotalMemory)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:59
#, kde-format
msgid "XXX MiB"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, sliderMemoryLimit)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:69
#: libs/ui/forms/wdgperformancesettings.ui:87
#, kde-format
msgid "Krita will not use more memory than this limit."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:72
#, kde-format
msgid "Memory Limit:"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intMemoryLimit)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intPoolLimit)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intUndoLimit)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:94
#: libs/ui/forms/wdgperformancesettings.ui:122
#: libs/ui/forms/wdgperformancesettings.ui:156
#, kde-format
msgid " MiB"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:103
#, kde-format
msgid "Internal Pool:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, sliderUndoLimit)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:131
#: libs/ui/forms/wdgperformancesettings.ui:149
#, kde-format
msgid "When undo information reaches this limit, it will be stored in a temporary file and memory will be freed. Undo will be slower."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:134
#, kde-format
msgid "Swap Undo After:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:145
#, kde-format
msgid "Swap File Size (needs restarting Krita)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:168
#, kde-format
msgid "Swap File Size"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, sliderSwapSize)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:177
#: libs/ui/forms/wdgperformancesettings.ui:195
#, kde-format
msgid "The swap file will not be bigger than this limit."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:180
#, kde-format
msgid "File Size Limit:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:211
#, kde-format
msgid "Swap File Location:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:222
#, kde-format
msgid "Advanced (needs restarting Krita)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnSwapFile)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:236
#, kde-format
msgid "Select the location where Krita writes its swap files."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:265
#, kde-format
msgid "Advanced"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:271
#, kde-format
msgid "Multithreading"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:277
#, kde-format
msgid "CPU Limit:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, sliderThreadsLimit)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:290
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Krita will not use more CPU cores than selected by this limit</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:297
#, kde-format
msgid "Frame Rendering Clones Limit"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, sliderFrameClonesLimit)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:310
#, kde-format, no-c-format
msgid ""
"<html><head/><body>"
"<p>When rendering animation frames (into files or during animation cache regeneration), Krita will make the specified number of copies of your image and will work on them in parallel. Each copy will demand more RAM for its storage (about 20% of the size of you image), so raise this limit only if you have enough RAM installed.</p>"
"<p><br/>"
"</p>"
"<p><span style=\" font-weight:600;\">Recommended value:</span> set Clones Limit to the number of <span style=\" text-decoration: underline;\">physical</span> (non-hyperthreaded) cores your CPU has</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_fps)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:322
#, kde-format
msgid "Limit frames per second while painting:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, sliderFpsLimit)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:335
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Krita will try to limit the number of screen updates per second to the given number. A lower number will decrease visual responsiveness but increase stylus precision on some systems like macOS."
"<p></body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkOpenGLFramerateLogging)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:344
#, kde-format
msgid "Debug logging of OpenGL framerate"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkOpenGLFramerateLogging)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:255
#, kde-format
msgid "Enable debug logging of OpenGL framerate"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkBrushSpeedLogging)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:351
#, kde-format
msgid "Debug logging for brush rendering speed"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDisableVectorOptimizations)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:358
#, kde-format
msgid "Disable vector optimizations (for AMD CPUs)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkProgressReporting)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:365
#, kde-format
msgid "Progress reporting (might affect performance)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkProgressReporting)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:228
#, kde-format
msgid "Enable progress reporting (might affect performance)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPerformanceLogging)
#. +> trunk5
#: libs/ui/forms/wdgperformancesettings.ui:372
#, kde-format
msgid "Performance logging"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPerformanceLogging)
#. +> stable5
#: libs/ui/forms/wdgperformancesettings.ui:235
#, kde-format
msgid "Enable performance logging"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: libs/ui/forms/wdgperformancesettings.ui:382
#, kde-format
msgid ""
"<html><head/><body>"
"<p>When performance logging is enabled Krita saves timing information into the '&lt;working_dir&gt;/log' folder. If you experience performance problems and want to help us, enable this option and add the contents of the directory to a bug report.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:37
#, kde-format
msgid "Color adjustment:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:44
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Choose the optional emblem icon that indicates extra information, such as the preset being a special effects brush, or just using tilt, or angled in some way.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:47
#, kde-format
msgid "Emblem icon:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QListView, vwOptional)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:54
#, kde-format
msgid "Upper left emblem indicating a special feature of the brush."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QListView, vwBase)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:125
#, kde-format
msgid "Base tool image to base this preset on."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: libs/ui/forms/wdgpreseticonlibrary.ui:166
#, kde-format
msgid "Tool image:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, intHeight)
#. i18n: ectx: property (text), widget (QLabel, heightLabel)
#. i18n: ectx: property (toolTip), widget (QLabel, heightLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgrectangleconstraints.ui:88
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:274
#: plugins/tools/tool_crop/wdg_tool_crop.ui:218
#: plugins/tools/tool_crop/wdg_tool_crop.ui:243
#, kde-format
msgid "Height"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, doubleRatio)
#. +> trunk5 stable5
#: libs/ui/forms/wdgrectangleconstraints.ui:111
#, kde-format
msgid "Aspect ratio"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, intWidth)
#. i18n: ectx: property (text), widget (QLabel, widthLabel)
#. i18n: ectx: property (toolTip), widget (QLabel, widthLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgrectangleconstraints.ui:124
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:257
#: plugins/tools/tool_crop/wdg_tool_crop.ui:268
#: plugins/tools/tool_crop/wdg_tool_crop.ui:316
#, kde-format
msgid "Width"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, lblRatio)
#. i18n: ectx: property (text), widget (QLabel, aspectLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgrectangleconstraints.ui:137
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:181
#: plugins/tools/tool_crop/wdg_tool_crop.ui:306
#, kde-format
msgid "Ratio:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgSaveBrushPreset)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:20
#: libs/ui/widgets/kis_paintop_presets_save.cpp:89
#, kde-format
msgid "Save Brush Preset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, newBrushNameLabel)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:31
#, kde-format
msgid "Brush Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, currentBrushNameLabel)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:53
#, kde-format
msgid "BrushName"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:85
#, kde-format
msgid "Paint in this area"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadExistingThumbnailButton)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:139
#, kde-format
msgid "Load Existing Thumbnail"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadScratchPadThumbnailButton)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:146
#, kde-format
msgid "Load Scratchpad Thumbnail"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadImageIntoThumbnailButton)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:153
#, kde-format
msgid "Load Image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadIconLibraryThumbnailButton)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:160
#, kde-format
msgid "Load from Icon Library"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearBrushPresetThumbnailButton)
#. +> trunk5
#: libs/ui/forms/wdgsavebrushpreset.ui:167
#, kde-format
msgid "Clear Thumbnail"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, intersect)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:37
#, kde-format
msgid "Intersect"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, shape)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:53
#, kde-format
msgid "Vector Selection"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, replace)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:69
#, kde-format
msgid "Replace (Shortcut R)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, add)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:88
#, kde-format
msgid "Add (Shortcut A)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblMode)
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:107
#: plugins/extensions/metadataeditor/editors/exif.ui:555
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1974
#, kde-format
msgid "Mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblAction)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:117
#: plugins/extensions/pykrita/plugin/info.ui:133
#, kde-format
msgid "Action:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, pixel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:127
#, kde-format
msgid "Pixel Selection"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KoGroupButton, subtract)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:146
#, kde-format
msgid "Subtract (Shortcut S)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAntiAliasing)
#. i18n: ectx: property (text), widget (QCheckBox, ckbAntialiasing)
#. +> trunk5 stable5
#: libs/ui/forms/wdgselectionoptions.ui:177
#: plugins/filters/halftone/wdg_halftone_filter.ui:83
#, kde-format
msgid "Anti-aliasing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, stopLabel)
#. +> trunk5
#: libs/ui/forms/wdgstopgradienteditor.ui:87
#, kde-format
msgid "Stop: "
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:30
#: libs/ui/layerstyles/wdglayerstyles.ui:128
#: libs/ui/layerstyles/WdgStroke.ui:17
#: plugins/tools/defaulttool/defaulttool/DefaultToolTabbedWidget.cpp:41
#, kde-format
msgid "Stroke"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, typeBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:42
#, kde-format
msgid "Current Brush"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, typeBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:47
#, kde-format
msgid "Line selection"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, intWidth)
#. i18n: ectx: property (suffix), widget (QSpinBox, intXOffset)
#. i18n: ectx: property (suffix), widget (QSpinBox, intHeight)
#. i18n: ectx: property (suffix), widget (QSpinBox, intYOffset)
#. i18n: ectx: property (text), item, widget (QComboBox, sizeBox)
#. i18n: ectx: property (suffix), widget (KisSliderSpinBox, intSize)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, columnXOffset)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, columnYOffset)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, rowXOffset)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, rowYOffset)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, columnDistance)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, rowDistance)
#. i18n: ectx: property (text), widget (QLabel, pxLabel)
#. i18n: ectx: property (text), widget (QLabel, pxLabel2)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intHeight)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intWidth)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:96
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:84
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:101
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:121
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:138
#: libs/ui/layerstyles/wdgInnerGlow.ui:242
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:173
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:186
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:238
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:251
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:290
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:300
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:115
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:138
#: plugins/impex/pdf/pdfimportwidgetbase.ui:153
#: plugins/impex/pdf/pdfimportwidgetbase.ui:185
#: plugins/paintops/libpaintop/sensors/SensorDistanceConfiguration.ui:85
#, kde-format
msgid "px"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sizeBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:101
#, kde-format
msgid "mm"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sizeBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:106
#, kde-format
msgid "inch"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnNoFill)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbGradientRepeat)
#. i18n: ectx: property (text), item, widget (QComboBox, fillBox)
#. i18n: ectx: property (text), item, widget (QComboBox, editGainControl)
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxPredictor)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDecor)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:115
#: libs/ui/widgets/KoFillConfigWidget.ui:37
#: libs/ui/widgets/KoFillConfigWidget.ui:258
#: plugins/extensions/metadataeditor/editors/exif.ui:666
#: plugins/flake/textshape/dialogs/StylesModel.cpp:51
#: plugins/flake/textshape/dialogs/StylesModel.cpp:131
#: plugins/flake/textshape/dialogs/StylesModel.cpp:214
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:57
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:129
#: plugins/tools/basictools/kis_tool_brush.cc:321
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:50
#: plugins/tools/tool_crop/wdg_tool_crop.ui:424
#, kde-format
msgid "None"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, fillBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:120
#, kde-format
msgid "Paint color"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, fillBox)
#. i18n: ectx: property (text), item, widget (QComboBox, lineColorBox)
#. i18n: ectx: property (text), widget (QLabel, backgroundColorLabel)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:125
#: libs/ui/forms/wdgstrokeselectionproperties.ui:175
#: plugins/flake/textshape/dialogs/ParagraphDecorations.ui:65
#, kde-format
msgid "Background color"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, fillBox)
#. i18n: ectx: property (text), item, widget (QComboBox, lineColorBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:130
#: libs/ui/forms/wdgstrokeselectionproperties.ui:180
#, kde-format
msgid "Custom color"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, fillBox)
#. i18n: ectx: property (text), item, widget (QComboBox, lineColorBox)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:135
#: libs/ui/forms/wdgstrokeselectionproperties.ui:170
#, kde-format
msgid "Foreground color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgstrokeselectionproperties.ui:143
#, kde-format
msgid "Line:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:70
#, kde-format
msgid "Low Pressure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:96
#, kde-format
msgid "High Pressure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:107
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:59
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:60
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:33
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:76
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:55
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:56
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:57
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:281
#: plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp:33
#: plugins/paintops/libpaintop/kis_pressure_sharpness_option_widget.cpp:35
#, kde-format
msgid "1.0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:127
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:59
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:60
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:33
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:76
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:55
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:56
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:57
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:234
#: plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp:33
#: plugins/paintops/libpaintop/kis_pressure_sharpness_option_widget.cpp:35
#, kde-format
msgid "0.0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:138
#, kde-format
msgid "Input Pressure Global Curve"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpTabletApi)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:171
#, kde-format
msgid "Tablet Input API (changing this requires restarting Krita)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioWintab)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:177
#, kde-format
msgid "WinTab"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioWin8PointerInput)
#. +> trunk5 stable5
#: libs/ui/forms/wdgtabletsettings.ui:184
#, kde-format
msgid "Windows 8+ Pointer Input (depends on Windows Ink) (EXPERIMENTAL)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:67
#, kde-format
msgid "Add shortcut..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:79
#, kde-format
msgctxt "Shortcut type"
msgid "Key Combination"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:82
#, kde-format
msgctxt "Shortcut type"
msgid "Mouse Button"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:85
#, kde-format
msgctxt "Shortcut type"
msgid "Mouse Wheel"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:88
#, kde-format
msgctxt "Shortcut type"
msgid "Gesture"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:91
#, kde-format
msgid "Unknown Input"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:186
#, kde-format
msgctxt "Type of shortcut"
msgid "Type"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:189
#, kde-format
msgctxt "Input for shortcut"
msgid "Input"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_action_shortcuts_model.cpp:192
#, kde-format
msgctxt "Action to trigger with shortcut"
msgid "Action"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, editProfilesButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.cpp:66
#: libs/ui/input/config/kis_input_configuration_page.ui:51
#, kde-format
msgid "Edit Profiles"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.cpp:83
#, kde-format
msgid "Copy of %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.cpp:96
#, kde-format
msgctxt "@title:window"
msgid "Reset All Profiles"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.cpp:97
#, kde-format
msgid "You will lose all changes to any input profiles. Do you wish to continue?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, duplicateButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.ui:20
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:48
#, kde-format
msgid "Duplicate"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.ui:30
#, kde-format
msgid "Reset All"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, renameButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_edit_profiles_dialog.ui:47
#, kde-format
msgid "Rename"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_button.cpp:53
#, kde-format
msgctxt "No input for this button"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_button.cpp:140
#: libs/ui/input/config/kis_input_button.cpp:202
#, kde-format
msgctxt "Waiting for user input"
msgid "Input..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, editProfilesButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_configuration_page.ui:48
#, kde-format
msgid "Duplicate current profile"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_configuration_page_item.cpp:46
#, kde-format
msgid "Delete Shortcut"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, descriptionLabel)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_configuration_page_item.ui:23
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Action Description</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, collapseButton)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_configuration_page_item.ui:61
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:283
#, kde-format
msgid "Action Name"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_type_delegate.cpp:47
#, kde-format
msgid "Key Combination"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, mouseLabel)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_type_delegate.cpp:48
#: libs/ui/input/config/kis_mouse_input_editor.ui:59
#, kde-format
msgid "Mouse Button"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, wheelLabel)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_input_type_delegate.cpp:49
#: libs/ui/input/config/kis_wheel_input_editor.ui:36
#, kde-format
msgid "Mouse Wheel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_key_input_editor.ui:29
#, kde-format
msgid "Edit Key Combination"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, keysLabel)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_key_input_editor.ui:42
#, kde-format
msgid "Keys"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, modifiersLabel)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_mouse_input_editor.ui:46
#: libs/ui/input/config/kis_wheel_input_editor.ui:75
#, kde-format
msgid "Modifiers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_mouse_input_editor.ui:75
#, kde-format
msgid "Edit Mouse Input"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/input/config/kis_wheel_input_editor.ui:52
#, kde-format
msgid "Edit Mouse Wheel Input"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_abstract_input_action.cpp:45
#: libs/ui/input/kis_tool_invocation_action.cpp:56
#, kde-format
msgid "Activate"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:39
#, kde-format
msgid "Alternate Invocation"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:40
#, kde-format
msgid "The <i>Alternate Invocation</i> action performs an alternate action with the current tool. For example, using the brush tool it picks a color from the canvas."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:42
#, kde-format
msgid "Primary Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:43
#, kde-format
msgid "Secondary Mode"
msgstr ""
#. +> trunk5
#: libs/ui/input/kis_alternate_invocation_action.cpp:44
#, kde-format
msgid "Tertiary Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:47
#, kde-format
msgid "Pick Foreground Color from Current Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:48
#, kde-format
msgid "Pick Background Color from Current Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:50
#, kde-format
msgid "Pick Foreground Color from Merged Image"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_alternate_invocation_action.cpp:51
#, kde-format
msgid "Pick Background Color from Merged Image"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_frame_action.cpp:38
#, kde-format
msgid "Switch Time"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_frame_action.cpp:39
#, kde-format
msgid "The <i>Switch Time</i> action changes the current time of the image."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_frame_action.cpp:42
#: plugins/dockers/animation/animation_docker.cpp:76
#, kde-format
msgid "Next Frame"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_frame_action.cpp:43
#: plugins/dockers/animation/animation_docker.cpp:72
#, kde-format
msgid "Previous Frame"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_primary_setting_action.cpp:34
#, kde-format
msgid "Change Primary Setting"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_change_primary_setting_action.cpp:35
#, kde-format
msgid "The <i>Change Primary Setting</i> action changes a tool's \"Primary Setting\", for example the brush size for the brush tool."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:73
#, kde-format
msgid "Exposure and Gamma"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:74
#, kde-format
msgid "The <i>Exposure and Gamma</i> action changes the display mode of the canvas."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:77
#, kde-format
msgid "Exposure Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:78
#, kde-format
msgid "Gamma Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:80
#, kde-format
msgid "Exposure +0.5"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:81
#, kde-format
msgid "Exposure -0.5"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:82
#, kde-format
msgid "Gamma +0.5"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:83
#, kde-format
msgid "Gamma -0.5"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:85
#, kde-format
msgid "Exposure +0.2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:86
#, kde-format
msgid "Exposure -0.2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:87
#, kde-format
msgid "Gamma +0.2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:88
#, kde-format
msgid "Gamma -0.2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_gamma_exposure_action.cpp:90
#, kde-format
msgid "Reset Exposure and Gamma"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:50
#, kde-format
msgid "Pan Canvas"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:51
#, kde-format
msgid "The <i>Pan Canvas</i> action pans the canvas."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:54
#, kde-format
msgid "Pan Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:55
#, kde-format
msgid "Pan Left"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:56
#, kde-format
msgid "Pan Right"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:57
#, kde-format
msgid "Pan Up"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_pan_action.cpp:58
#, kde-format
msgid "Pan Down"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:46
#, kde-format
msgid "Rotate Canvas"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:47
#, kde-format
msgid "The <i>Rotate Canvas</i> action rotates the canvas."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:50
#, kde-format
msgid "Rotate Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:51
#, kde-format
msgid "Discrete Rotate Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:52
#, kde-format
msgid "Rotate Left"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:53
#, kde-format
msgid "Rotate Right"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_rotate_canvas_action.cpp:54
#, kde-format
msgid "Reset Rotation"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_select_layer_action.cpp:48
#, kde-format
msgid "Select Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_select_layer_action.cpp:49
#, kde-format
msgid "Selects a layer under cursor position"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_select_layer_action.cpp:52
#, kde-format
msgid "Select Layer Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_select_layer_action.cpp:53
#, kde-format
msgid "Select Multiple Layer Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:234
#, kde-format
msgctxt "Separator in the list of mouse buttons for shortcut"
msgid " + "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:239
#, kde-format
msgctxt "Left Mouse Button"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:248
#, kde-format
msgctxt "Right Mouse Button"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:256
#, kde-format
msgctxt "Middle Mouse Button"
msgid "Middle"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:264
#, kde-format
msgctxt "Mouse Back Button"
msgid "Back"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:272
#, kde-format
msgctxt "Mouse Forward Button"
msgid "Forward"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:276
#, kde-format
msgctxt "No mouse buttons for shortcut"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:282
#, kde-format
msgctxt "%1 = List of mouse buttons for shortcut. Plural form is chosen upon the number of buttons in that list."
msgid "%1 Button"
msgid_plural "%1 Buttons"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:294
#, kde-format
msgctxt "Separator in the list of keys for shortcut"
msgid " + "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:299
#, kde-format
msgctxt "Ctrl key"
msgid "Ctrl"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:303
#, kde-format
msgctxt "Meta key"
msgid "Meta"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:307
#, kde-format
msgctxt "Alt key"
msgid "Alt"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:311
#, kde-format
msgctxt "Shift key"
msgid "Shift"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:323
#, kde-format
msgctxt "No keys for shortcut"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:333
#, kde-format
msgid "Mouse Wheel Up"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:337
#, kde-format
msgid "Mouse Wheel Down"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:341
#, kde-format
msgid "Mouse Wheel Left"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:345
#, kde-format
msgid "Mouse Wheel Right"
msgstr ""
#. +> trunk5
#: libs/ui/input/kis_shortcut_configuration.cpp:349
#, kde-format
msgid "Trackpad Pan"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:353
#, kde-format
msgctxt "No mouse wheel buttons for shortcut"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:365
#, kde-format
msgctxt "%1 = modifier keys in shortcut; %2 = mouse buttons in shortcut"
msgid "%1 + %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_shortcut_configuration.cpp:381
#, kde-format
msgctxt "%1 = modifier keys in shortcut; %2 = mouse wheel buttons in shortcut"
msgid "%1 + %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_show_palette_action.cpp:36
#, kde-format
msgid "Show Popup Palette"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_show_palette_action.cpp:37
#, kde-format
msgid "The <i>Show Popup Palette</i> displays the popup palette."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tablet_debugger.cpp:105
#, kde-format
msgid "Tablet Event Logging Enabled"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tablet_debugger.cpp:106
#, kde-format
msgid "Tablet Event Logging Disabled"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tool_invocation_action.cpp:52
#, kde-format
msgid "Tool Invocation"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tool_invocation_action.cpp:53
#, kde-format
msgid "The <i>Tool Invocation</i> action invokes the current tool, for example, using the brush tool, it will start painting."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tool_invocation_action.cpp:57
#, kde-format
msgid "Confirm"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_tool_invocation_action.cpp:59
#, kde-format
msgid "Activate Line Tool"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:117
#, kde-format
msgid "Zoom Canvas"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:118
#, kde-format
msgid "The <i>Zoom Canvas</i> action zooms the canvas."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:121
#, kde-format
msgid "Zoom Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:122
#, kde-format
msgid "Discrete Zoom Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:123
#, kde-format
msgid "Relative Zoom Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:124
#, kde-format
msgid "Relative Discrete Zoom Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:127
#, kde-format
msgid "Reset Zoom to 100%"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:128
#, kde-format
msgid "Fit to Page"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/kis_zoom_action.cpp:129
#, kde-format
msgid "Fit to Width"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.cpp:33
#, kde-format
msgctxt "Screen rect when choosing Wintab/Qt settings"
msgid "%1x%2 offset: %3,%4"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.cpp:59
#, kde-format
msgctxt "@option:radio"
msgid "%1 (Wintab)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.cpp:60
#, kde-format
msgctxt "@option:radio"
msgid "%1 (Qt)"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, KisScreenSizeChoiceDialog)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:14
#, kde-format
msgid "Choose screen resolution"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTitleMessage)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:20
#, kde-format
msgid ""
"<html><head/><body>"
"<p>The driver for your drawing tablet and Windows do not agree on the size of the screen your tablet is connected to. Please select the right option.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioManual)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:52
#, kde-format
msgid "If both are wrong, enter the size manually:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblXOffset)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:94
#: plugins/dockers/griddocker/grid_config_widget.ui:491
#, kde-format
msgid "X offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblYOffset)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:131
#: plugins/dockers/griddocker/grid_config_widget.ui:504
#, kde-format
msgid "Y offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkRememberSetting)
#. +> trunk5 stable5
#: libs/ui/input/wintab/kis_screen_size_choice_dialog.ui:155
#, kde-format
msgid "Do not ask again (hold Shift to ask again)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_animation_importer.cpp:69
msgctxt "(qtundo-format)"
msgid "Import animation"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_bookmarked_configurations_editor.cc:69
#, kde-format
msgid "New configuration %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_bookmarked_configurations_model.cc:68
#, kde-format
msgid "Last Used"
msgstr ""
#. +> trunk5
#: libs/ui/kis_change_file_layer_command.h:34
msgctxt "(qtundo-format)"
msgid "Change File Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_clipboard.cc:262
#, kde-format
msgid "Remember"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_clipboard.cc:268
#, kde-format
msgctxt "@title:window"
msgid "Missing Color Profile"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_clipboard.cc:269
#, kde-format
msgid ""
"The image data you are trying to paste has no color profile information. How do you want to interpret these data? \n"
"\n"
" As Web (sRGB) - Use standard colors that are displayed from computer monitors. This is the most common way that images are stored. \n"
"\n"
"As on Monitor - If you know a bit about color management and want to use your monitor to determine the color profile.\n"
"\n"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_clipboard.cc:272
#, kde-format
msgid "As &Web"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_clipboard.cc:273
#, kde-format
msgid "As on &Monitor"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_composite_ops_model.cc:30
#, kde-format
msgid "Favorites"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:82
#, kde-format
msgid "Fill Patterns"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:100
#, kde-format
msgid "&Patterns"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:105
#, kde-format
msgid "&Gradients"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:118
#, kde-format
msgid "&Color"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:133
#, kde-format
msgid "&Painter's Tools"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:180
#: plugins/dockers/patterndocker/patterndocker_dock.cpp:31
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:257
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:153
#: plugins/tools/karbonplugins/tools/KarbonPatternTool.cpp:306
#, kde-format
msgid "Patterns"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_control_frame.cpp:183 libs/ui/kis_control_frame.cpp:185
#, kde-format
msgid "Custom Pattern"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_custom_pattern.cc:182
#, kde-format
msgid "The current image is too big to create a pattern. The pattern will be scaled down."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_filter_manager.cc:220
#, kde-format
msgid "The %1 filter will convert your %2 data to 16-bit L*a*b* and vice versa. "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_filter_manager.cc:229
#, kde-format
msgid "The %1 filter will convert your %2 data to 16-bit RGBA and vice versa. "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_filter_manager.cc:318
#, kde-format
msgid "Apply Filter Again: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_image_manager.cc:118
#, kde-format
msgid "Import Image"
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:202
#, kde-format
msgctxt "@action:inmenu"
msgid "Merge Group"
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:203
#, kde-format
msgctxt "@action:inmenu"
msgid "Merge with Layer Below"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:222
#, kde-format
msgctxt "floating message in layer manager"
msgid "Layer is empty "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:255
#, kde-format
msgid "Filter Layer Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:300
#, kde-format
msgid "Fill Layer Properties"
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:337
#, kde-format
msgid "File Layer Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:346 libs/ui/kis_layer_manager.cc:905
#, kde-format
msgid "No file name specified"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:437
msgctxt "(qtundo-format)"
msgid "Convert to a Paint Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:464
msgctxt "(qtundo-format)"
msgid "Convert to an animated layer"
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:481
#, kde-format
msgid "Save layers to..."
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:482
#, kde-format
msgid "Choose the location where the layer will be saved to. The new file layer will then reference this location."
msgstr ""
#. +> trunk5
#: libs/ui/kis_layer_manager.cc:542
msgctxt "(qtundo-format)"
msgid "Convert to a file layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:630
#, kde-format
msgid "New Filter Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:685
#, kde-format
msgctxt "@title:window"
msgid "Flatten Image"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:686
#, kde-format
msgid "The image contains hidden layers that will be lost. Do you want to flatten the image?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:767
#, kde-format
msgctxt "floating message in layer manager"
msgid "Layer is locked "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:813
msgctxt "(qtundo-format)"
msgid "Rasterize Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:852
#, kde-format
msgid "Convert Invisible Groups"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_layer_manager.cc:855
#, kde-format
msgid "Export Only Toplevel Groups"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:182
msgctxt "(qtundo-format)"
msgid "Add Selection Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:182
#, kde-format
msgid "Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:189
msgctxt "(qtundo-format)"
msgid "Add Transparency Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:196
msgctxt "(qtundo-format)"
msgid "Add Filter Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:207
#, kde-format
msgid "New Filter Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:237
msgctxt "(qtundo-format)"
msgid "Add Colorize Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:247
msgctxt "(qtundo-format)"
msgid "Add Transform Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mask_manager.cc:267
#, kde-format
msgid "Filter Mask Properties"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_mirror_manager.cpp:45
#, kde-format
msgid "Mirror View"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:437
msgctxt "(qtundo-format)"
msgid "Move Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:444
msgctxt "(qtundo-format)"
msgid "Copy Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:451
msgctxt "(qtundo-format)"
msgid "Add Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:587
msgctxt "(qtundo-format)"
msgid "Convert to a Selection Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:784
msgctxt "(qtundo-format)"
msgid "Duplicate Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:807
msgctxt "(qtundo-format)"
msgid "Raise Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:814
msgctxt "(qtundo-format)"
msgid "Lower Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:832
msgctxt "(qtundo-format)"
msgid "Remove Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:848
msgctxt "(qtundo-format)"
msgid "Mirror Layer X"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:850
msgctxt "(qtundo-format)"
msgid "Mirror Mask X"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:861
msgctxt "(qtundo-format)"
msgid "Mirror Layer Y"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:863
msgctxt "(qtundo-format)"
msgid "Mirror Mask Y"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1006
#, kde-format
msgid "Export \"%1\""
msgstr ""
#. +> trunk5
#: libs/ui/kis_node_manager.cpp:1070
#, kde-format
msgctxt "@title:window"
msgid "Export to SVG"
msgstr ""
#. +> trunk5
#: libs/ui/kis_node_manager.cpp:1090
#, kde-format
msgid "Could not save to svg: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1110
msgctxt "(qtundo-format)"
msgid "Split Alpha into a Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1140
#, kde-format
msgctxt "@title:window"
msgid "Layer %1 is not editable"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1141
#, kde-format
msgid ""
"Cannot write alpha channel of the parent layer \"%1\".\n"
"The operation will be cancelled."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1172
msgctxt "(qtundo-format)"
msgid "Write Alpha into a Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1287
msgctxt "(qtundo-format)"
msgid "Cut Nodes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1360
msgctxt "(qtundo-format)"
msgid "Quick Group"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1371
msgctxt "(qtundo-format)"
msgid "Quick Clipping Group"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1378
#, kde-format
msgctxt "default name for a clipping group layer"
msgid "Clipping Group"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1380
#, kde-format
msgctxt "default name for quick clip group mask layer"
msgid "Mask Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_node_manager.cpp:1394
msgctxt "(qtundo-format)"
msgid "Quick Ungroup"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:119
#, kde-format
msgid "Painter's Toolchest"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:130
#, kde-format
msgid "Tool Settings"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:136
#, kde-format
msgid "Edit brush settings"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:141
#, kde-format
msgid "Choose brush preset"
msgstr ""
#. +> stable5
#: libs/ui/kis_paintop_box.cc:175 libs/ui/kis_paintop_box.cc:195
#, kde-format
msgid "Hide Mirror Line"
msgstr ""
#. +> stable5
#: libs/ui/kis_paintop_box.cc:185 libs/ui/kis_paintop_box.cc:206
#, kde-format
msgid "Move to Canvas Center"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFlow)
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:245 libs/ui/kis_paintop_box.cc:250
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1908
#, kde-format
msgid "Flow:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, brushSizeLabel)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lblSize)
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:246 libs/ui/kis_paintop_box.cc:251
#: plugins/filters/halftone/wdg_halftone_filter.ui:42
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:183
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1930
#, kde-format
msgid "Size:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:289
#, kde-format
msgid "Choose workspace"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_box.cc:323
#, kde-format
msgid "Brush composite"
msgstr ""
#. +> stable5
#: libs/ui/kis_paintop_box.cc:352
#, kde-format
msgid "Pressure usage (small button)"
msgstr ""
#. +> trunk5
#: libs/ui/kis_paintop_box.cc:1079 libs/ui/kis_paintop_box.cc:1101
#: libs/ui/kis_paintop_box.cc:1116
#, kde-format
msgid ""
"%1\n"
"selected"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_options_model.cpp:37
#, kde-format
msgctxt "option category"
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_options_model.cpp:40
#, kde-format
msgctxt "option category"
msgid "Color"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_options_model.cpp:43
#, kde-format
msgctxt "option category"
msgid "Texture"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_paintop_options_model.cpp:46
#, kde-format
msgctxt "option category"
msgid "Filter"
msgstr ""
#. +> trunk5
#: libs/ui/kis_paintop_options_model.cpp:49
#, kde-format
msgctxt "option category"
msgid "Masked Brush"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:85
#, kde-format
msgctxt "@title:window"
msgid "Add a new Colorset Entry"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:89
#, kde-format
msgctxt "Name for default group"
msgid "Default"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:97 libs/ui/kis_palette_view.cpp:323
#, kde-format
msgctxt "@info:tooltip"
msgid "A spot color is a color that the printer is able to print without mixing the paints it has available to it. The opposite is called a process color."
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:98
#, kde-format
msgid "Group"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:99 libs/ui/kis_palette_view.cpp:324
#, kde-format
msgid "ID"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:100 libs/ui/kis_palette_view.cpp:325
#, kde-format
msgid "Name"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: libs/ui/kis_palette_view.cpp:102 libs/ui/kis_palette_view.cpp:327
#: plugins/extensions/metadataeditor/editors/exif.ui:422
#, kde-format
msgid "Spot"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:104
#, kde-format
msgctxt "Part of a default name for a color"
msgid "Color"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:130
#, kde-format
msgctxt "@title:window"
msgid "Add a new group"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:134
#, kde-format
msgctxt "Name for a group"
msgid "Name"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:135
#, kde-format
msgctxt "Part of default name for a new group"
msgid "Color Group"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:150
#, kde-format
msgctxt "@title:window"
msgid "Removing Group"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:154
#, kde-format
msgctxt "Shows up when deleting a group"
msgid "Keep the Colors"
msgstr ""
#. +> trunk5
#: libs/ui/kis_palette_view.cpp:312
#, kde-format
msgctxt "Name for a colorgroup"
msgid "Name"
msgstr ""
#. +> trunk5
#: libs/ui/kis_popup_palette.cpp:217
#, kde-format
msgid "Mirror Canvas"
msgstr ""
#. +> trunk5
#: libs/ui/kis_popup_palette.cpp:225
#, kde-format
msgid "Canvas Only"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoom100)
#. +> trunk5 stable5
#: libs/ui/kis_popup_palette.cpp:229
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:48
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:52
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:65
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:36
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:37
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:63
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:64
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:82
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:108
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:126
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:133
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:50
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:44
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:47
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:38
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:51
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:40
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:59
#: plugins/paintops/libpaintop/kis_pressure_spacing_option_widget.cpp:35
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:41
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:43
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:48
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:50
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:51
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:52
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:54
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:46
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:54
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:55
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:56
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:68
#, kde-format, no-c-format
msgid "100%"
msgstr ""
#. +> trunk5
#: libs/ui/kis_popup_palette.cpp:232
#, kde-format
msgid "Zoom to 100%"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_popup_palette.cpp:801
#, kde-format
msgid "There are no tags available to show in this popup. To add presets, you need to tag them and then select the tag here."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_psd_layer_style_resource.cpp:132
#, kde-format
msgctxt "Auto-generated layer style name for embedded styles (style itself)"
msgid "<%1> (embedded)"
msgstr ""
#. +> trunk5
#: libs/ui/kis_script_manager.cpp:69
#, kde-format
msgid "Scripts"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_selection_manager.cc:538
#, kde-format
msgid "Stroked Shapes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_selection_manager.cc:540
msgctxt "(qtundo-format)"
msgid "Stroke Shapes"
msgstr ""
#. +> stable5
#: libs/ui/kis_splash_screen.cpp:54
#, kde-format
msgid "Version: %1"
msgstr ""
#. +> trunk5
#: libs/ui/kis_splash_screen.cpp:117
#, kde-format
msgid ""
"<html><head/><body>"
"<p><b><span style=\" color:%1;\">Recent Files</span></b></p>"
msgstr ""
#. +> stable5
#: libs/ui/kis_splash_screen.cpp:93
#, kde-format
msgid ""
"<html><head/><body>"
"<p align=\"center\"><b><span style=\" color:%1;\">Recent Files</span></b></p>"
msgstr ""
#. +> trunk5
#: libs/ui/kis_splash_screen.cpp:157
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" color:%1;\"><b>Links</b></span></p>"
"<p><a href=\"https://krita.org/support-us/\"><span style=\" text-decoration: underline; color:%1;\">Support Krita</span></a></p>"
"<p><a href=\"https://docs.krita.org/Category:Getting_Started\"><span style=\" text-decoration: underline; color:%1;\">Getting Started</span></a></p>"
"<p><a href=\"https://docs.krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Manual</span></a></p>"
"<p><a href=\"https://krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Krita Website</span></a></p>"
"<p><a href=\"https://forum.kde.org/viewforum.php?f=136\"><span style=\" text-decoration: underline; color:%1;\">User Community</span></a></p>"
"<p><a href=\"https://phabricator.kde.org/source/krita/\"><span style=\" text-decoration: underline; color:%1;\">Source Code</span></a></p>"
"</body></html>"
msgstr ""
#. +> stable5
#: libs/ui/kis_splash_screen.cpp:132
#, kde-format
msgid ""
"<html><head/><body>"
"<p align=\"center\"><span style=\" color:%1;\"><b>Links</b></span></p>"
"<p><a href=\"https://krita.org/support-us/\"><span style=\" text-decoration: underline; color:%1;\">Support Krita</span></a></p>"
"<p><a href=\"https://docs.krita.org/Category:Getting_Started\"><span style=\" text-decoration: underline; color:%1;\">Getting Started</span></a></p>"
"<p><a href=\"https://docs.krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Manual</span></a></p>"
"<p><a href=\"https://krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Krita Website</span></a></p>"
"<p><a href=\"https://forum.kde.org/viewforum.php?f=136\"><span style=\" text-decoration: underline; color:%1;\">User Community</span></a></p>"
"<p><a href=\"https://phabricator.kde.org/source/krita/\"><span style=\" text-decoration: underline; color:%1;\">Source Code</span></a></p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:249
#, kde-format
msgctxt "very shortened 'byte' suffix (for statusbar)"
msgid "b"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:254
#, kde-format
msgctxt "very shortened KiB suffix (for statusbar)"
msgid "K"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:259
#, kde-format
msgctxt "very shortened MiB suffix (for statusbar)"
msgid "M"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:264
#, kde-format
msgctxt "very shortened GiB suffix (for statusbar)"
msgid "G"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:269
#, kde-format
msgctxt "very shortened TiB suffix (for statusbar)"
msgid "T"
msgstr ""
#. +> trunk5
#: libs/ui/kis_statusbar.cc:283
#, kde-format
msgctxt "tooltip on statusbar memory reporting button (image stats)"
msgid ""
"Image size:\t %1\n"
" - layers:\t\t %2\n"
" - projections:\t %3\n"
" - instant preview:\t %4\n"
msgstr ""
#. +> trunk5
#: libs/ui/kis_statusbar.cc:294
#, kde-format
msgctxt "tooltip on statusbar memory reporting button (total stats)"
msgid ""
"Memory used:\t %1 / %2\n"
" image data:\t %3 / %4\n"
" pool:\t\t %5 / %6\n"
" undo data:\t %7\n"
"\n"
"Swap used:\t %8"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:324
#, kde-format
msgctxt "tooltip on statusbar memory reporting button"
msgid ""
"\n"
"\n"
"WARNING:\tOut of memory! Swapping has been started.\n"
"\t\tPlease configure more RAM for Krita in Settings dialog"
msgstr ""
#. +> stable5
#: libs/ui/kis_statusbar.cc:279
#, kde-format
msgctxt "tooltip on statusbar memory reporting button"
msgid ""
"Image size:\t %1\n"
"\n"
"Memory used:\t %2 / %3\n"
" image data:\t %4 / %5\n"
" pool:\t\t %6 / %7\n"
" undo data:\t %8\n"
"\n"
"Swap used:\t %9"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:353
#, kde-format
msgid "Hidden"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:355
#, kde-format
msgid "Ants"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:355
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:328
#, kde-format
msgid "Mask"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:358
#, kde-format
msgid ""
"Selection: x = %1 y = %2 width = %3 height = %4\n"
"Display Mode: %5"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:363
#, kde-format
msgid "No Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_statusbar.cc:382
#, kde-format
msgid "No profile"
msgstr ""
#. +> trunk5
#: libs/ui/kis_stopgradient_editor.cpp:44
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.cpp:308
#, kde-format
msgid "Opacity: "
msgstr ""
#. +> trunk5
#: libs/ui/kis_stopgradient_editor.cpp:50
#: libs/ui/kis_stopgradient_editor.cpp:55
#, kde-format
msgid "Flip Gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kis_zoom_manager.cc:321
#, kde-format
msgctxt "floating message about zoom"
msgid "Zoom: %1 %"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:295
#, kde-format
msgid "Loading Gradients..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:301
#, kde-format
msgid "Loading Patterns..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:305
#, kde-format
msgid "Loading Palettes..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:309
#, kde-format
msgid "Loading Brushes..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:314
#, kde-format
msgid "Loading Paint Operations..."
msgstr ""
#. +> trunk5
#: libs/ui/KisApplication.cpp:319
#, kde-format
msgid "Loading SVG Symbol Collections..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:323
#, kde-format
msgid "Loading Resource Bundles..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:340
#, kde-format
msgid "Loading Plugins for Krita/Tool..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:347
#, kde-format
msgid "Loading Plugins for Krita/Dock..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:353
#, kde-format
msgid "Loading Plugins Exiv/IO..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:368
#, kde-format
msgctxt "@title:window"
msgid "Krita: Warning"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:369
#, kde-format
msgid ""
"You are running a 32 bits build on a 64 bits Windows.\n"
"This is not recommended.\n"
"Please download and install the x64 build instead."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:386
#, kde-format
msgid "Initializing Globals"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:424
#, kde-format
msgid "Adding resource types"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:436
#, kde-format
msgid "Loading Main Window..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:510
#, kde-format
msgid "Mimetype not found, try using the -mimetype option"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:735
#, kde-format
msgid "No template found for: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:738
#, kde-format
msgid "Too many templates found for: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:760
#, kde-format
msgid "Template %1 failed to load."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:786
#, kde-format
msgid ""
"Failed to clear %1\n"
"\n"
"Please make sure no other program is using the file and try again."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplication.cpp:807
#, kde-format
msgid "Do you want to clear the settings file?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:78
#, kde-format
msgid "Only print and exit"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:79
#, kde-format
msgid "Open a new document with a template"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:80
#, kde-format
msgid ""
"Create a new image on startup.\n"
"Possible colorspace values are:\n"
" * RGBA\n"
" * XYZA\n"
" * LABA\n"
" * CMYKA\n"
" * GRAY\n"
" * YCbCrA\n"
"Possible channel depth arguments are\n"
" * U8 (8 bits integer)\n"
" * U16 (16 bits integer)\n"
" * F16 (16 bits floating point)\n"
" * F32 (32 bits floating point)\n"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:94
#, kde-format
msgid "The name of the workspace to open Krita with"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:95
#, kde-format
msgid "Start Krita in canvas-only mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:96
#, kde-format
msgid "Do not show the splash screen"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:97
#, kde-format
msgid "Start Krita in full-screen mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:98
#, kde-format
msgid "Override display DPI"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:99
#, kde-format
msgid "Only export to PDF and exit"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:100
#, kde-format
msgid "Export to the given filename and exit"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:101
#, kde-format
msgid "Filename for export/export-pdf"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisApplicationArguments.cpp:102
#, kde-format
msgid "File(s) or URL(s) to open"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisAutoSaveRecoveryDialog.cpp:181
#, kde-format
msgctxt "@title:window"
msgid "Recover Files"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisAutoSaveRecoveryDialog.cpp:183
#, kde-format
msgid "Discard All"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisAutoSaveRecoveryDialog.cpp:188
#, kde-format
msgid "The following autosave file can be recovered:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisAutoSaveRecoveryDialog.cpp:191
#, kde-format
msgid "The following autosave files can be recovered:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisAutoSaveRecoveryDialog.cpp:238
#, kde-format
msgid ""
"If you select Cancel, all recoverable files will be kept.\n"
"If you press OK, selected files will be recovered, the unselected files discarded."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisColorsetChooser.cpp:104
#: libs/ui/widgets/kis_workspace_chooser.cpp:97
#, kde-format
msgid "Insert name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/KisColorsetChooser.cpp:115
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:118
#, kde-format
msgid "Columns:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisColorsetChooser.cpp:144
#: libs/widgets/KoEditColorSetDialog.cpp:217
#: plugins/dockers/palettedocker/palettedocker_dock.cpp:61
#, kde-format
msgid "Palette"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisColorsetChooser.cpp:155
#, kde-format
msgid "Palette %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisDocument.cpp:515
#, kde-format
msgid "%1 cannot be written to. Please save under a different name."
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:528
#, kde-format
msgid "Exporting Document..."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1072
#, kde-format
msgid "Exporting document..."
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:529
#, kde-format
msgid "Saving Document..."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:724
#, kde-format
msgid "Saving Document"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:606
#, kde-format
msgctxt "%1 --- failing file name, %2 --- error message"
msgid "Error during saving %1: %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisDocument.cpp:612 plugins/extensions/imagesplit/imagesplit.cpp:84
#, kde-format
msgid ""
"Could not save %1\n"
"Reason: %2"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:802
#, kde-format
msgid "Could not remove saved original file: %1"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:631
#, kde-format
msgid "Finished saving %1"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:741 libs/ui/KisDocument.cpp:997
#, kde-format
msgid "The image was still busy while saving. Your saved image might be incomplete."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:746 libs/ui/KisDocument.cpp:1002
#, kde-format
msgid "Could not lock the image for saving."
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:763
#, kde-format
msgid "Autosaving... %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisDocument.cpp:766
#, kde-format
msgid "Autosaving..."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:784
#, kde-format
msgid "Could not rename original file to %1: %2"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:789
#, kde-format
msgctxt "%1 --- failing file name, %2 --- error message"
msgid "Error during autosaving %1: %2"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:792
#, kde-format
msgid "Copying the temporary file failed: %1 to %2: %3"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:797
#, kde-format
msgid "Could not remove temporary file %1: %2"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:802
#, kde-format
msgid "Finished autosaving %1"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:808
#, kde-format
msgid "The temporary file %1 is gone before we could copy it!"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:939
#, kde-format
msgid "The password of this encrypted document is not known. Autosave aborted! Please save your work manually."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:954
#, kde-format
msgid "Error during autosave! Partition full?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisDocument.cpp:987
#, kde-format
msgid ""
"Malformed URL\n"
"%1"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1003
#, kde-format
msgid ""
"An autosaved file exists for this document.\n"
"Do you want to open the autosaved file instead?"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1297
#, kde-format
msgid ""
"An autosaved file exists for this document.\n"
"Do you want to open it instead?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisDocument.cpp:1084
#, kde-format
msgid "File %1 does not exist."
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1114
#, kde-format
msgid "Opening document"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1377
#, kde-format
msgid "Opening Document"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1125
#, kde-format
msgid ""
"Could not open %2.\n"
"Reason: %1."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1389
#, kde-format
msgid ""
"Could not open %2.\n"
"Reason: %1.\n"
"%3"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2038
#, kde-format
msgid ""
"Could not open\n"
"%1"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2041
#, kde-format
msgid ""
"Could not open %1\n"
"Reason: %2"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1133
#, kde-format
msgid "There were problems opening %1."
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1250
#, kde-format
msgid "Not Saved"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1535
#, kde-format
msgid "%1 is not a file."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1550
#, kde-format
msgid "Could not open the file for reading (check read permissions)."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1561
#, kde-format
msgid "Could not read the beginning of the file."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1591
#, kde-format
msgid ""
"parsing error in the main document at line %1, column %2\n"
"Error message: %3"
msgstr ""
#. +> trunk5
#: libs/ui/KisDocument.cpp:1596
#, kde-format
msgctxt "progress dialog message when the user closes the document that is being saved"
msgid "Waiting for saving to complete..."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1607
#, kde-format
msgid "Not a valid Krita file: %1"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:1729 libs/ui/KisDocument.cpp:1737
#, kde-format
msgid "Krita does not support the OpenDocument file format."
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2105
#, kde-format
msgid "a word processing"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2106
#, kde-format
msgid "a spreadsheet"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2107
#, kde-format
msgid "a presentation"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2108
#, kde-format
msgid "a chart"
msgstr ""
#. +> stable5
#: libs/ui/KisDocument.cpp:2109
#, kde-format
msgid "a drawing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, exif)
#. +> trunk5 stable5
#: libs/ui/kisexiv2/kis_exif_io.h:35
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:270
#, kde-format
msgid "Exif"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/kisexiv2/kis_iptc_io.h:36
#, kde-format
msgid "Iptc"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, xmp)
#. +> trunk5 stable5
#: libs/ui/kisexiv2/kis_xmp_io.h:35
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:290
#, kde-format
msgid "XMP"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:113
#, kde-format
msgid "Error in embedded document"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:125
#, kde-format
msgid "Document is password protected"
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportFilter.cpp:127
#, kde-format
msgid "Krita does not support this file format"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:130
#, kde-format
msgid "Could not create the output document"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:98
#, kde-format
msgid "Could not create the filter plugin"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:133
#, kde-format
msgid "File not found"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:136
#, kde-format
msgid "Cannot create storage"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:138
#, kde-format
msgid "Out of memory"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:139
#, kde-format
msgid "Bad MIME type"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:141
#, kde-format
msgid "Empty Filter Plugin"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:142
#, kde-format
msgid "Format not recognized"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:144
#, kde-format
msgid "Trying to load into the wrong kind of document"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:145
#, kde-format
msgid "Not implemented"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportFilter.cpp:147
#, kde-format
msgid "Failed to download remote file"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:148
#, kde-format
msgid "Parsing error"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:151
#, kde-format
msgid "Invalid file format"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:155
#, kde-format
msgid "Internal error"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:158
#, kde-format
msgid "Cancelled by user"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:162
#: plugins/impex/heightmap/kis_heightmap_import.cpp:82
#, kde-format
msgid "Unknown file type"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:166
#, kde-format
msgid "Unsupported file version"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportFilter.cpp:174
#, kde-format
msgid "Unknown error"
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportFilter.cpp:263
#, kde-format
msgctxt "image conversion warning"
msgid "%1 cannot save images with color model <b>%2</b> and depth <b>%3</b>. The image will be converted."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportFilter.cpp:268
#, kde-format
msgctxt "image conversion warning"
msgid "%1 cannot save layers with color model <b>%2</b> and depth <b>%3</b>. The layers will be converted or skipped."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportFilter.cpp:273
#, kde-format
msgctxt "image conversion warning"
msgid "%1 cannot save images with color model <b>%2</b> and depth <b>%3</b>. The image will not be saved."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportFilter.cpp:278
#, kde-format
msgctxt "image conversion warning"
msgid "%1 cannot save layers with color model <b>%2</b> and depth <b>%3</b>. The layers will be skipped."
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportManager.cpp:202
#: libs/ui/KisImportExportManager.cpp:214
#, kde-format
msgid "Could not export file: the export filter is missing."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportManager.cpp:270
#, kde-format
msgctxt "@titile:window"
msgid "Open Audio"
msgstr ""
#. +> stable5
#: libs/ui/KisImportExportManager.cpp:314
#, kde-format
msgid ""
"Could not import file of type\n"
"%1. The import filter is missing."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:349
#, kde-format
msgid "Opening document..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisImportExportManager.cpp:376
#, kde-format
msgid "Saving document..."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:438
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains <b>assistants</b>. The assistants will not be saved."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:441
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains <b>guides</b>. The guides will not be saved."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:444
#, kde-format
msgctxt "image conversion warning"
msgid "The image contains a <b>custom grid configuration</b>. The configuration will not be saved."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:449
#, kde-format
msgid "Error: cannot save this image as a %1."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:458
#, kde-format
msgctxt "@title:window"
msgid "Krita: Export Error"
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:481
#, kde-format
msgctxt "Keep the extra space at the end of the sentence, please"
msgid "Warning: saving as %1 will lose information from your image. "
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:492
#, kde-format
msgid "You will lose information when saving this image as a %1."
msgstr ""
#. +> trunk5
#: libs/ui/KisImportExportManager.cpp:520
#, kde-format
msgid "Also save your image as a Krita file."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:177
#, kde-format
msgctxt "@action:inmenu"
msgid "&Dockers"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:178
#, kde-format
msgctxt "@action:inmenu"
msgid "&Window"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:179
#, kde-format
msgctxt "@action:inmenu"
msgid "New &View"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:180
#, kde-format
msgctxt "@action:inmenu"
msgid "Wor&kspace"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:454
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:130
#, kde-format
msgid "Show %1 Toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:456
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:132
#, kde-format
msgid "Hide %1 Toolbar"
msgstr ""
#. +> trunk5
#: libs/ui/KisMainWindow.cpp:736
#, kde-format
msgid "Write Protected"
msgstr ""
#. +> stable5
#: libs/ui/KisMainWindow.cpp:731
#, kde-format
msgid "(write protected)"
msgstr ""
#. +> trunk5
#: libs/ui/KisMainWindow.cpp:740
#, kde-format
msgid "Recovered"
msgstr ""
#. +> trunk5
#: libs/ui/KisMainWindow.cpp:749
#, kde-format
msgid "Modified"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:770
#, kde-format
msgid "Save as %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:808
#, kde-format
msgid "The file %1 does not exist."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:871
#, kde-format
msgid "Open Images"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:958
#, kde-format
msgid ""
"You are saving a file while the image is still rendering. The saved file may be incomplete or corrupted.\n"
"\n"
"Please select a location where the original file will not be overridden!"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1023
#, kde-format
msgid "Exporting"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1023
#, kde-format
msgid "Saving As"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1364
#: libs/widgetutils/config/kstandardaction_p.h:41
#, kde-format
msgid "Create new document"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1406
#, kde-format
msgid "Create from Clipboard"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1662
#, kde-format
msgid "Export as PDF"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1704
#, kde-format
msgid "Cannot export to the specified file"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1726
#, kde-format
msgid "Import frames"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1734
#, kde-format
msgid ""
"Could not finish import animation:\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1812
#, kde-format
msgid ""
"You will lose all changes made since your last save\n"
"Do you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:1823
#, kde-format
msgid "Error: Could not reload this document"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2041
#, kde-format
msgctxt "@action:inmenu"
msgid "&Import Workspace..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2053 libs/widgets/KoResourceItemChooser.cpp:209
#, kde-format
msgctxt "@title:window"
msgid "Choose File to Add"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2059
#, kde-format
msgctxt "@action:inmenu"
msgid "&New Workspace..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2062
#, kde-format
msgctxt "@title:window"
msgid "New Workspace..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2076 libs/ui/widgets/kis_workspace_chooser.cpp:128
#, kde-format
msgid "Workspace"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2087 libs/ui/widgets/kis_workspace_chooser.cpp:139
#, kde-format
msgid "Workspace %1"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2115
#, kde-format
msgid "&%1 %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2118
#, kde-format
msgid "%1 %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2225
#, kde-format
msgid "The Krita LittleCMS color management plugin is not installed. Krita will quit now."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2233
#, kde-format
msgid "Krita cannot find any brush presets! Krita will quit now."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2242
#, kde-format
msgctxt "@title:window"
msgid "Installation error"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2303
#, kde-format
msgid "%1 unsaved document (%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2368
#, kde-format
msgctxt "@action:inmenu"
msgid "&Themes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisMainWindow.cpp:2406
#, kde-format
msgid "Expanding Spacer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisNodeDelegate.cpp:895
#, kde-format
msgid "%1 %"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisNodeToolTip.cpp:52
#, kde-format
msgid "No"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisNodeToolTip.cpp:52
#, kde-format
msgid "Yes"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisOpenPane.cpp:199
#, kde-format
msgid "Open Existing Document"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisOpenPane.cpp:291
#, kde-format
msgid "Custom Document"
msgstr ""
#. +> trunk5
#: libs/ui/KisPart.cpp:428
#, kde-format
msgid ""
"Could not create document from template\n"
"%1"
msgstr ""
#. +> trunk5
#: libs/ui/KisPart.cpp:431
#, kde-format
msgid ""
"Could not create document from template\n"
"%1\n"
"Reason: %2"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisResourceBundle.cpp:698
#, kde-format
msgid "The following resources had mismatching MD5 sums. They may have gotten corrupted, for example, during download."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:101
#, kde-format
msgid "Create Template"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:110
#, kde-format
msgctxt "Template name"
msgid "Name:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:120
#, kde-format
msgid "Group:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:134
#, kde-format
msgid "&Add Group..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:137
#, kde-format
msgid "&Remove"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:143
#, kde-format
msgid "Picture"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:146
#, kde-format
msgid "&Preview"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:151
#: libs/widgetutils/xmlgui/KisShortcutEditWidget.cpp:71
#, kde-format
msgid "Custom:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:155
#, kde-format
msgid "&Select..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:164
#, kde-format
msgid "Use the new template as default"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:167
#, kde-format
msgid "Use the new template every time Krita starts"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:299
#, kde-format
msgid "Do you really want to overwrite the existing '%1' template?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:393
#, kde-format
msgid "Select an image"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:421 libs/ui/KisTemplateCreateDia.cpp:424
#, kde-format
msgid "Add Group"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:421
#, kde-format
msgid "Enter group name:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:424
#, kde-format
msgid "This name is already used."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:448
#, kde-format
msgid "Do you really want to remove that group?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:449
#, kde-format
msgctxt "@title:window"
msgid "Remove Group"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:451
#, kde-format
msgid "Do you really want to remove that template?"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:452
#, kde-format
msgctxt "@title:window"
msgid "Remove Template"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:509
#, kde-format
msgid "Could not load picture."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplateCreateDia.cpp:513
#, kde-format
msgid "No picture available."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisTemplatesPane.cpp:51
#, kde-format
msgid "Use This Template"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:525
#, kde-format
msgid "Insert as New Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:526
#, kde-format
msgid "Insert Many Layers"
msgstr ""
#. +> trunk5
#: libs/ui/KisView.cpp:528
#, kde-format
msgid "Insert as New File Layer"
msgstr ""
#. +> trunk5
#: libs/ui/KisView.cpp:529
#, kde-format
msgid "Insert Many File Layers"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:531
#, kde-format
msgid "Open in New Document"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:532
#, kde-format
msgid "Open Many Documents"
msgstr ""
#. +> stable5
#: libs/ui/KisView.cpp:691
#, kde-format
msgid "Cannot close the document while saving is in progress"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:713
#, kde-format
msgid ""
"<p>The document <b>'%1'</b> has been modified.</p>"
"<p>Do you want to save it?</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:851
#, kde-format
msgid "Soft Proofing doesn't work in floating point."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:856
#, kde-format
msgid "Soft Proofing turned on."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:858
#, kde-format
msgid "Soft Proofing turned off."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:870
#, kde-format
msgid "Gamut Warnings don't work in floating point."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:876
#, kde-format
msgid "Gamut Warnings turned on."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:878
#, kde-format
msgid "But Soft Proofing is still off."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisView.cpp:881
#, kde-format
msgid "Gamut Warnings turned off."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:727
#, kde-format
msgid "Active Author Profile"
msgstr ""
#. +> stable5
#: libs/ui/KisViewManager.cpp:1285 libs/widgets/KoConfigAuthorPage.cpp:82
#, kde-format
msgid "Default Author Profile"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:860
#, kde-format
msgid "%1 (Copy)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:982 libs/ui/KisViewManager.cpp:1059
#, kde-format
msgid "Alternative names exhausted, try manually saving with a higher number"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:982
#, kde-format
msgctxt "@title:window"
msgid "Couldn't save incremental version"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:1059
#, kde-format
msgctxt "@title:window"
msgid "Couldn't save incremental backup"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:1240
#, kde-format
msgid ""
"Going into Canvas-Only mode.\n"
"Press %1 to go back."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/KisViewManager.cpp:1350 libs/ui/KisViewManager.cpp:1368
#, kde-format
msgctxt "choice for author profile"
msgid "Anonymous"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:72
#, kde-format
msgid "Bevel and Emboss"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:23
#: libs/ui/layerstyles/wdgdropshadow.ui:96
#: libs/ui/layerstyles/wdgInnerGlow.ui:23 libs/ui/layerstyles/WdgSatin.ui:23
#: libs/ui/layerstyles/WdgStroke.ui:23
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:84
#, kde-format
msgid "Structure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:29
#: libs/ui/layerstyles/WdgGradientOverlay.ui:115
#: libs/ui/layerstyles/WdgStroke.ui:208
#, kde-format
msgid "St&yle:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:46
#, kde-format
msgid "Outer Bevel"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:51
#, kde-format
msgid "Inner Bevel"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:56
#, kde-format
msgctxt "@item:inlistbox Bevel/emboss style"
msgid "Emboss"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:61
#, kde-format
msgid "Pillow Emboss"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:66
#, kde-format
msgid "Stroke Emboss"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:74
#: libs/ui/layerstyles/wdgInnerGlow.ui:160
#, kde-format
msgid "&Technique:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbTechnique)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:91
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:126
#, kde-format
msgid "Smooth"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbTechnique)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:96
#, kde-format
msgid "Chisel Hard"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbTechnique)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:101
#, kde-format
msgid "Chisel Soft"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:109
#: libs/ui/layerstyles/wdgTexture.ui:92
#, kde-format
msgid "&Depth:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:129
#, kde-format
msgctxt "@label:listbox Bevel direction"
msgid "Direction:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDirection)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:143
#, kde-format
msgctxt "@item:inlistbox Bevel direction"
msgid "Up"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDirection)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:148
#, kde-format
msgctxt "@item:inlistbox Bevel direction"
msgid "Down"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:176
#, kde-format
msgid "So&ften:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:199
#, kde-format
msgid "Shading"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:207
#: libs/ui/layerstyles/WdgGradientOverlay.ui:171
#: libs/ui/layerstyles/WdgStroke.ui:264
#, kde-format
msgid "&Angle:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDial, dialAngle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:217
#: libs/ui/layerstyles/wdgdropshadow.ui:172
#: libs/ui/layerstyles/WdgGradientOverlay.ui:183
#: libs/ui/layerstyles/WdgSatin.ui:110 libs/ui/layerstyles/WdgStroke.ui:276
#, kde-format
msgid "Set the angle of the light source"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUseGlobalLight)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:256
#, kde-format
msgid "Use &Global Light"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:275
#, kde-format
msgid "&Gloss Contour:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAntiAliased)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:290
#: libs/ui/layerstyles/wdgContour.ui:44
#: libs/ui/layerstyles/wdgdropshadow.ui:61
#: libs/ui/layerstyles/wdgInnerGlow.ui:293 libs/ui/layerstyles/WdgSatin.ui:191
#, kde-format
msgid "Anti-aliased"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:299
#, kde-format
msgid "H&ighlight Mode:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisCompositeOpComboBox, cmbCompositeOp)
#. i18n: ectx: property (toolTip), widget (KisCompositeOpComboBox, cmbHighlightMode)
#. i18n: ectx: property (toolTip), widget (KisCompositeOpComboBox, cmbShadowMode)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:311
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:364
#: libs/ui/layerstyles/wdgblendingoptions.ui:45
#: libs/ui/layerstyles/WdgColorOverlay.ui:50
#: libs/ui/layerstyles/wdgdropshadow.ui:118
#: libs/ui/layerstyles/WdgGradientOverlay.ui:45
#: libs/ui/layerstyles/wdgInnerGlow.ui:45
#: libs/ui/layerstyles/WdgPatternOverlay.ui:48
#: libs/ui/layerstyles/WdgSatin.ui:47
#, kde-format
msgid "Set the blend mode for the layer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intOpacity)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intOpacity2)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intNoise)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:352
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:405
#: libs/ui/layerstyles/wdgblendingoptions.ui:74
#: libs/ui/layerstyles/WdgColorOverlay.ui:88
#: libs/ui/layerstyles/wdgdropshadow.ui:150
#: libs/ui/layerstyles/WdgGradientOverlay.ui:74
#: libs/ui/layerstyles/wdgInnerGlow.ui:74
#: libs/ui/layerstyles/wdgInnerGlow.ui:106
#: libs/ui/layerstyles/WdgPatternOverlay.ui:77
#: libs/ui/layerstyles/WdgSatin.ui:85
#, kde-format
msgid "Set the master opacity for the layer"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KisSliderSpinBox, intOpacity)
#. i18n: ectx: property (whatsThis), widget (KisSliderSpinBox, intFillOpacity)
#. i18n: ectx: property (whatsThis), widget (KisSliderSpinBox, intOpacity2)
#. i18n: ectx: property (whatsThis), widget (KisSliderSpinBox, intNoise)
#. i18n: ectx: property (whatsThis), widget (KisDoubleSliderSpinBox, doubleOpacity)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:355
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:408
#: libs/ui/layerstyles/wdgblendingoptions.ui:77
#: libs/ui/layerstyles/wdgblendingoptions.ui:118
#: libs/ui/layerstyles/WdgColorOverlay.ui:91
#: libs/ui/layerstyles/wdgdropshadow.ui:153
#: libs/ui/layerstyles/WdgGradientOverlay.ui:77
#: libs/ui/layerstyles/wdgInnerGlow.ui:77
#: libs/ui/layerstyles/wdgInnerGlow.ui:109
#: libs/ui/layerstyles/WdgPatternOverlay.ui:80
#: libs/ui/layerstyles/WdgSatin.ui:88
#: plugins/dockers/defaultdockers/wdglayerbox.ui:91
#, kde-format
msgid "Adjust the transparency of the layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:415
#, kde-format
msgid "Altitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgBevelAndEmboss.ui:428
#, kde-format
msgid "Sh&adow Mode:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpBlendingOptions)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:35
#, kde-format
msgid "Blending Options"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpGeneralBlending)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:23
#, kde-format
msgid "General Blending"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:29
#: libs/ui/layerstyles/WdgColorOverlay.ui:32
#: libs/ui/layerstyles/WdgGradientOverlay.ui:29
#: libs/ui/layerstyles/wdgInnerGlow.ui:29
#: libs/ui/layerstyles/WdgPatternOverlay.ui:32
#: libs/ui/layerstyles/WdgSatin.ui:29
#, kde-format
msgid "Ble&nd Mode:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpAdvancedBlending)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:87
#, kde-format
msgid "Advanced Blending"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:93
#, kde-format
msgid "&Fill Opacity:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intFillOpacity)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:115
#, kde-format
msgid "Set the interior opacity for the layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:125
#, kde-format
msgid "Channels:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel1_2)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel2_2)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel3_2)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel4_2)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel5_2)
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkChannel6_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:134
#: libs/ui/layerstyles/wdgblendingoptions.ui:144
#: libs/ui/layerstyles/wdgblendingoptions.ui:154
#: libs/ui/layerstyles/wdgblendingoptions.ui:164
#: libs/ui/layerstyles/wdgblendingoptions.ui:174
#: libs/ui/layerstyles/wdgblendingoptions.ui:184
#, kde-format
msgid "Choose channels to blend"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel1_2)
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel2_2)
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel3_2)
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel4_2)
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel5_2)
#. i18n: ectx: property (text), widget (QCheckBox, chkChannel6_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:137
#: libs/ui/layerstyles/wdgblendingoptions.ui:147
#: libs/ui/layerstyles/wdgblendingoptions.ui:157
#: libs/ui/layerstyles/wdgblendingoptions.ui:167
#: libs/ui/layerstyles/wdgblendingoptions.ui:177
#: libs/ui/layerstyles/wdgblendingoptions.ui:187
#, kde-format
msgid "1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:196
#, kde-format
msgid "K&nockout:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cmbKnockout)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:212
#, kde-format
msgid "Set the interior transparency. Shallow = Group, Deep = Background"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbKnockout)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:216
#, kde-format
msgctxt "@item:inlistbox Knockout option"
msgid "None"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbKnockout)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:221
#, kde-format
msgid "Shallow"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbKnockout)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:226
#, kde-format
msgid "Deep"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_7)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:234
#, kde-format
msgid "Blend inner glow, satin, and overlay with layer before blending with document."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_7)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:237
#, kde-format
msgid "Blend &Interior Effects as Group"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_8)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:244
#, kde-format
msgid "Blend clipping group before blending with document"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_8)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:247
#, kde-format
msgid "Blend Cl&ipped Layers as Group"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_9)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:254
#, kde-format
msgid "Use layer transparency in determining the shape of the interior and the effects"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_9)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:257
#, kde-format
msgid "&Transparency Shapes Layer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_10)
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_11)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:264
#: libs/ui/layerstyles/wdgblendingoptions.ui:274
#, kde-format
msgid "Use layer mask to hide layer and effects rather than shaping the layer and effects"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_10)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:267
#, kde-format
msgid "Layer Mask Hid&es Effect"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_11)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:277
#, kde-format
msgid "Vector Mask &Hides Effect"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpBlendIf)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:287
#, kde-format
msgid "Blend If"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:298
#, kde-format
msgid "This Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblThisMin_2)
#. i18n: ectx: property (text), widget (QLabel, lblUnderMin_2)
#. i18n: ectx: property (text), widget (QLabel, lblPrecisionValue)
#. i18n: ectx: property (text), widget (QLabel, colorCount)
#. i18n: ectx: property (text), widget (QLabel, fileSizeLabel)
#. i18n: ectx: property (text), widget (QLabel, bppLabel)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:305
#: libs/ui/layerstyles/wdgblendingoptions.ui:333
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:156
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:45
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:188
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:135
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:207
#, kde-format
msgid "0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblThisMax_2)
#. i18n: ectx: property (text), widget (QLabel, lblUnderMax_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:312
#: libs/ui/layerstyles/wdgblendingoptions.ui:340
#, kde-format
msgid "255"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgblendingoptions.ui:326
#, kde-format
msgid "Underlying Layer"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgColorOverlay.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:104
#, kde-format
msgid "Color Overlay"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:80
#, kde-format
msgid "Contour"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:23
#: libs/ui/layerstyles/wdgInnerGlow.ui:154 libs/ui/layerstyles/wdgTexture.ui:23
#, kde-format
msgid "Elements"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:29
#: libs/ui/layerstyles/wdgdropshadow.ui:39
#: libs/ui/layerstyles/wdgInnerGlow.ui:281 libs/ui/layerstyles/WdgSatin.ui:178
#, kde-format
msgid "Contour:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkAntiAliased)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:41
#: libs/ui/layerstyles/wdgdropshadow.ui:58 libs/ui/layerstyles/WdgSatin.ui:188
#, kde-format
msgid "Smooth the contour"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:53 libs/ui/layerstyles/wdgInnerGlow.ui:302
#, kde-format
msgid "&Range:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intNoise)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intRange)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgContour.ui:69 libs/ui/layerstyles/wdgdropshadow.ui:86
#, kde-format
msgid "Add noise to shadow"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpMain)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:40
#, kde-format
msgid "Drop Shadow"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkLayerKnocksOutDropShadow)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:23
#, kde-format
msgid "Use to obscure the shadow when fill is transparent"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLayerKnocksOutDropShadow)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:26
#, kde-format
msgid "Layer knocks O&ut Drop Shadow"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:33
#: libs/ui/layerstyles/wdgInnerGlow.ui:275
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:71
#, kde-format
msgid "Quality"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:70
#: libs/ui/layerstyles/wdgInnerGlow.ui:84
#, kde-format
msgid "&Noise:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:102 libs/ui/layerstyles/WdgStroke.ui:84
#, kde-format
msgid "&Blend Mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:128 libs/ui/layerstyles/WdgSatin.ui:63
#, kde-format
msgid "Opaci&ty:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:160 libs/ui/layerstyles/WdgSatin.ui:98
#, kde-format
msgid "An&gle:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkUseGlobalLight)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:198
#, kde-format
msgid "Use current setting for global light source"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUseGlobalLight)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:201
#, kde-format
msgid "Use &Global light"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:210 libs/ui/layerstyles/WdgSatin.ui:138
#, kde-format
msgid "&Distance:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpread)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:230
#, kde-format
msgid "Sp&read:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgdropshadow.ui:250
#: libs/ui/layerstyles/WdgSatin.ui:158 libs/ui/layerstyles/WdgStroke.ui:29
#: libs/widgets/KoPageLayoutWidget.ui:82
#, kde-format
msgid "S&ize:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:112
#, kde-format
msgid "Gradient Overlay"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnGradientFill)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFillType)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:23
#: libs/ui/layerstyles/WdgStroke.ui:139
#: libs/ui/widgets/KoFillConfigWidget.ui:84
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:65
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:56
#, kde-format
msgid "Gradient"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:52
#, kde-format
msgid "Opac&ity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:84
#: libs/ui/layerstyles/WdgStroke.ui:177
#, kde-format
msgid "&Gradient:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkReverse)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:106
#: libs/ui/layerstyles/WdgStroke.ui:199
#, kde-format
msgid "&Reverse"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbGradientType)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:139
#: libs/ui/layerstyles/WdgStroke.ui:232
#: libs/ui/widgets/KoFillConfigWidget.ui:230
#, kde-format
msgid "Radial"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:144
#: libs/ui/layerstyles/WdgStroke.ui:237
#, kde-format
msgctxt "@item:inlistbox Gradient style"
msgid "Angle"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:149
#: libs/ui/layerstyles/WdgStroke.ui:242
#, kde-format
msgid "Reflected"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:154
#: libs/ui/layerstyles/WdgStroke.ui:247
#, kde-format
msgid "Diamond"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAlignWithLayer)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:162
#: libs/ui/layerstyles/WdgStroke.ui:255
#, kde-format
msgid "Ali&gn with Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:211
#: libs/ui/layerstyles/WdgPatternOverlay.ui:127
#: libs/ui/layerstyles/WdgStroke.ui:304 libs/ui/layerstyles/WdgStroke.ui:371
#: libs/ui/layerstyles/wdgTexture.ui:69
#, kde-format
msgid "S&cale:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intScale)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intDepth)
#. i18n: ectx: property (toolTip), widget (KisSliderSpinBox, intScale_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgGradientOverlay.ui:227
#: libs/ui/layerstyles/WdgPatternOverlay.ui:137
#: libs/ui/layerstyles/WdgStroke.ui:320 libs/ui/layerstyles/WdgStroke.ui:381
#: libs/ui/layerstyles/wdgTexture.ui:85 libs/ui/layerstyles/wdgTexture.ui:108
#, kde-format
msgid "Set size of gradation"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:17
#: libs/ui/layerstyles/wdglayerstyles.ui:64
#, kde-format
msgid "Inner Glow"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbTechnique)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:177
#, kde-format
msgid "Softer"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbTechnique)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:182
#, kde-format
msgid "Precise"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSource)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:190
#, kde-format
msgid "&Source:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblChoke)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:200
#, kde-format
msgid "&Choke:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:226
#, kde-format
msgid "&Size:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSource)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:259
#, kde-format
msgctxt "@item:inlistbox Layer Style: Source"
msgid "Center"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSource)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:264
#, kde-format
msgctxt "@item:inlistbox Layer Style: Source"
msgid "Edge"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgInnerGlow.ui:331
#, kde-format
msgid "&Jitter:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMasterFxSwitch)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:19
#, kde-format
msgid "Enable Effects"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpStyleSelector)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. i18n: ectx: attribute (title), widget (QWidget, tabSvgStylesEdit)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:30
#: libs/ui/layerstyles/wdgstylesselector.ui:17
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:81
#: plugins/flake/textshape/dialogs/TableOfContentsStyleModel.cpp:251
#: plugins/tools/svgtexttool/WdgSvgTextEditor.ui:58
#, kde-format
msgid "Styles"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:56
#, kde-format
msgid "Outer Glow"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. i18n: ectx: attribute (title), widget (QWidget, textureTab)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:88
#: libs/ui/layerstyles/wdgTexture.ui:17
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:33
#, kde-format
msgid "Texture"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:96 libs/ui/layerstyles/WdgSatin.ui:17
#, kde-format
msgid "Satin"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), item, widget (QListWidget, lstStyleSelector)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:120
#: libs/ui/layerstyles/WdgPatternOverlay.ui:17
#, kde-format
msgid "Pattern Overlay"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnNewStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:146
#, kde-format
msgid "Ne&w..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnLoadStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:153
#, kde-format
msgid "&Import..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnSaveStyle)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:160
#, kde-format
msgid "&Export..."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPreview)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdglayerstyles.ui:167
#, kde-format
msgid "Pre&view"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbFillType)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgPatternOverlay.ui:23
#: libs/ui/layerstyles/WdgStroke.ui:144
#, kde-format
msgctxt "@title:group In Layer Style"
msgid "Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgPatternOverlay.ui:87
#: libs/ui/layerstyles/WdgStroke.ui:331 libs/ui/layerstyles/wdgTexture.ui:29
#, kde-format
msgid "Pattern:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnSnapToOrigin)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgPatternOverlay.ui:118
#: libs/ui/layerstyles/WdgStroke.ui:362 libs/ui/layerstyles/wdgTexture.ui:60
#, kde-format
msgid "Sn&ap to Origin"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLinkWithLayer)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgPatternOverlay.ui:144
#, kde-format
msgid "Li&nk with layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkInvert)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgSatin.ui:198 libs/ui/layerstyles/wdgTexture.ui:115
#, kde-format
msgctxt "@option:check In Layer Style"
msgid "&Invert"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:49
#, kde-format
msgid "Positio&n:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbPosition)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:66
#, kde-format
msgctxt "@item:inlistbox Layer Style: Stroke position"
msgid "Outside"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbPosition)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:71
#, kde-format
msgctxt "@item:inlistbox Layer Style: Stroke position"
msgid "Inside"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbPosition)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:76
#, kde-format
msgctxt "@item:inlistbox Layer Style: Stroke position"
msgid "Center"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:104
#, kde-format
msgid "Opacit&y:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:127
#, kde-format
msgctxt "@title:group In Layer Style"
msgid "Fill"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, soldStrokeColorLabel)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, shadowColorLabel)
#. i18n: ectx: property (text), widget (QLabel, colorLabel4)
#. i18n: ectx: property (text), widget (QLabel, colorLabel2)
#. i18n: ectx: property (text), widget (QLabel, colorLabel1)
#. i18n: ectx: property (text), widget (QLabel, colorLabel3)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:159
#: libs/ui/widgets/KoFillConfigWidget.ui:159
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:94
#: plugins/filters/colors/wdgcolortoalphabase.ui:40
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:454
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:634
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:826
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1012
#: plugins/flake/textshape/dialogs/FontDecorations.ui:244
#, kde-format
msgid "Color:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLinkWithLayer)
#. +> trunk5 stable5
#: libs/ui/layerstyles/WdgStroke.ui:388
#, kde-format
msgid "Lin&k with Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLinkWithLayer)
#. +> trunk5 stable5
#: libs/ui/layerstyles/wdgTexture.ui:122
#, kde-format
msgid "Li&nk with Layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_canvas2.cpp:343
#, kde-format
msgid ""
"Krita could not initialize the OpenGL canvas:\n"
"\n"
"%1\n"
"\n"
" Krita will disable OpenGL and close now."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_image_textures.cpp:653
#, kde-format
msgid ""
"You enabled OpenColorIO based color management, but your image is not an RGB image.\n"
"OpenColorIO-based color management only works with RGB images.\n"
"Please check the settings in the LUT docker.\n"
"OpenColorIO will now be deactivated."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_win.cpp:116
#, kde-format
msgid "The Intel graphics driver in use is known to have issues with OpenGL."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_win.cpp:118
#, kde-format
msgid "Intel graphics drivers tend to have issues with OpenGL so ANGLE will be used by default. You may manually switch to OpenGL but it is not guaranteed to work properly."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_win.cpp:248
#, kde-format
msgid "The graphics driver in use does not meet the OpenGL requirements."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_win.cpp:250
#, kde-format
msgid "The graphics driver in use may not work well with OpenGL."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/opengl/kis_opengl_win.cpp:262
#, kde-format
msgid "ANGLE is using a software Direct3D renderer, which is not hardware-accelerated and may be very slow. This can happen if the graphics drivers are not properly installed, or when using a Remote Desktop session."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/recorder/kis_node_query_path_editor.cc:86
#, kde-format
msgid ""
"<b>/</b> represents the root of the image, or a separator<br/>"
"\n"
"<b>a number</b> represents a layer<br/>"
"\n"
"<b>.</b> represents the current layer<br/>"
"\n"
"<b>..</b> represents the parent layer<br/>"
"\n"
"\n"
"<b>Examples:</b><br/>"
"\n"
"<i>/0</i> represents the bottom layer of the image<br/>"
"\n"
"<i>../1</i> represents the second layer from the bottom of the parent of the current layer<br/>"
"\n"
"<i>./0</i> represents the first child of the current layer"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/recorder/kis_recorded_filter_action_creator.cpp:61
#, kde-format
msgctxt "recorded filter action"
msgid "Apply Filter"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/recorder/kis_recorded_filter_action_editor.cc:57
#: libs/ui/recorder/kis_recorded_paint_action_editor.cc:149
#, kde-format
msgid "No configuration option."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_selection_tool_helper.cpp:151
#, kde-format
msgid "Shape selection does not fully support wraparound mode. Please use pixel selection instead"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:559
#, kde-format
msgid "No options"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:674
#, kde-format
msgid "Layer is locked and invisible."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:676
#, kde-format
msgid "Layer is locked."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:678
#, kde-format
msgid "Layer is invisible."
msgstr ""
#. +> trunk5
#: libs/ui/tool/kis_tool.cc:680
#, kde-format
msgid "Layer can be painted in Wash Mode only."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:682
#, kde-format
msgid "Group not editable."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool.cc:697
#, kde-format
msgid "Local selection is locked."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool_freehand.cc:219
#, kde-format
msgid "The brush tool cannot paint on this layer. Please select a paint layer or mask."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool_paint.cc:115
#, kde-format
msgid "Increase Brush Size"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool_paint.cc:121
#, kde-format
msgid "Decrease Brush Size"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/kis_tool_utils.cpp:122
#: plugins/dockers/animation/kis_animation_utils.cpp:89
msgctxt "(qtundo-format)"
msgid "Clear"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/tool/strokes/kis_filter_stroke_strategy.cpp:74
#, kde-format
msgctxt "(qtundo-format)"
msgid "Filter \"%1\""
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblLinks)
#. +> trunk5 stable5
#: libs/ui/wdgsplash.ui:435
#, kde-format
msgid ""
"<html><head/><body>"
"<p align=\"left\"><span style=\" font-weight:600;\">Links</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRecent)
#. +> trunk5 stable5
#: libs/ui/wdgsplash.ui:489
#, kde-format
msgid ""
"<html><head/><body>"
"<p align=\"left\"><span style=\" font-weight:600;\">Recent files</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowAtStartup)
#. +> trunk5 stable5
#: libs/ui/wdgsplash.ui:590
#, kde-format
msgid "Hide after startup."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnClose)
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. i18n: ectx: property (text), widget (QPushButton, closeButton)
#. +> trunk5 stable5
#: libs/ui/wdgsplash.ui:1012 libs/widgetutils/config/kstandardaction_p.h:47
#: plugins/extensions/pykrita/plugin/krita/excepthook.ui:57
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:59
#, kde-format
msgid "&Close"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:108
#: libs/ui/widgets/kis_color_space_selector.cc:75
#, kde-format
msgctxt "This is appended to the color profile which is the default for the given colorspace and bit-depth"
msgid "(Default)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:151
#, kde-format
msgctxt "Not Applicable, used where there's no colorants or gamma curve found"
msgid "N/A"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:152
#, kde-format
msgctxt "@info:tooltip"
msgid "This profile has no colorants."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:153
#, kde-format
msgctxt "Shows up instead of the name when there's no profile"
msgid "No Profile Found"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:154
#, kde-format
msgid "Colorant in d50-adapted xyY."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:167
#, kde-format
msgctxt "@info:tooltip"
msgid "This profile has the following xyY colorants:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, RedLabel)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:168
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:50
#, kde-format
msgid "Red:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, GreenLabel)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:169
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:97
#, kde-format
msgid "Green:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, BlueLabel)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:170
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:138
#, kde-format
msgid "Blue:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:185
#, kde-format
msgctxt "Estimated Gamma indicates how the TRC (Tone Response Curve or Tone Reproduction Curve) is bent. A Gamma of 1.0 means linear."
msgid "<b>Estimated Gamma</b>: "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:186
#, kde-format
msgctxt "This is for special Gamma types that LCMS cannot differentiate between"
msgid "<b>Estimated Gamma</b>: sRGB, L* or rec709 TRC"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:187
#, kde-format
msgctxt "@info:tooltip"
msgid "The Tone Response Curve of this color space is either sRGB, L* or rec709 TRC."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:290
#, kde-format
msgctxt "@info:tooltip"
msgid "Estimated Gamma cannot be retrieved for CMYK."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:334
#, kde-format
msgctxt "@info:tooltip"
msgid "This is assumed to be the L * TRC. "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:355
#, kde-format
msgctxt "@info:tooltip"
msgid "Estimated Gamma cannot be retrieved for YCrCb."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:360
#, kde-format
msgctxt "About <Profilename>"
msgid "About "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:361
#, kde-format
msgctxt "ICC profile version"
msgid "ICC Version: "
msgstr ""
#. i18nc("Who made the profile?","Manufacturer: ") + currentColorSpace()->profile()->manufacturer() + "</p>"); //This would work if people actually wrote the manufacturer into the manufacturer fiedl...
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:363
#, kde-format
msgctxt "What is the copyright? These are from embedded strings from the icc profile, so they default to english."
msgid "Copyright: "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:370
#, kde-format
msgctxt "If the selected model is RGB"
msgid ""
"<b><a href=\"https://en.wikipedia.org/wiki/RGB_color_space\">RGB (Red, Green, Blue)</a></b>, is the color model used by screens and other light-based media.<br/>"
"RGB is an additive color model: adding colors together makes them brighter. This color model is the most extensive of all color models, and is recommended as a model for painting,that you can later convert to other spaces. RGB is also the recommended colorspace for HDR editing."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:376
#, kde-format
msgctxt "If the selected model is CMYK"
msgid ""
"<b><a href=\"https://en.wikipedia.org/wiki/CMYK_color_model\">CMYK (Cyan, Magenta, Yellow, Key)</a></b>, is the model used by printers and other ink-based media.<br/>"
"CMYK is a subtractive model, meaning that adding colors together will turn them darker. Because of CMYK profiles being very specific per printer, it is recommended to work in RGB space, and then later convert to a CMYK profile, preferably one delivered by your printer. <br/>"
"CMYK is <b>not</b> recommended for painting.Unfortunately, Krita cannot retrieve colorants or the TRC for this space."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:385
#, kde-format
msgctxt "If the selected model is XYZ"
msgid "<b><a href=\"https://en.wikipedia.org/wiki/CIE_1931_color_space\">CIE XYZ</a></b>is the space determined by the CIE as the space that encompasses all other colors, and used to convert colors between profiles. XYZ is an additive color model, meaning that adding colors together makes them brighter. XYZ is <b>not</b> recommended for painting, but can be useful to encode in. The Tone Response Curve is assumed to be linear."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:392
#, kde-format
msgctxt "If the selected model is Grayscale"
msgid ""
"<b><a href=\"https://en.wikipedia.org/wiki/Grayscale\">Grayscale</a></b> only allows for gray values and transparent values. Grayscale images use half the memory and disk space compared to an RGB image of the same bit-depth.<br/>"
"Grayscale is useful for inking and greyscale images. In Krita, you can mix Grayscale and RGB layers in the same image."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:399
#, kde-format
msgctxt "If the selected model is LAB"
msgid ""
"<b><a href=\"https://en.wikipedia.org/wiki/Lab_color_space\">L*a*b</a></b>. <b>L<b> stands for Lightness, the <b>a</b> and <b>b</b> components represent color channels.<br/>"
"L*a*b is a special model for color correction. It is based on human perception, meaning that it tries to encode the difference in lightness, red-green balance and yellow-blue balance. This makes it useful for color correction, but the vast majority of color maths in the blending modes do <b>not</b> work as expected here.<br/>"
"Similarly, Krita does not support HDR in LAB, meaning that HDR images converted to LAB lose color information. This colorspace is <b>not</b> recommended for painting, nor for export, but best as a space to do post-processing in. The TRC is assumed to be the L* TRC."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:410
#, kde-format
msgctxt "If the selected model is YCbCr"
msgid "<b><a href=\"https://en.wikipedia.org/wiki/YCbCr\">YCbCr (Luma, Blue Chroma, Red Chroma)</a></b>, is a model designed for video encoding. It is based on human perception, meaning that it tries to encode the difference in lightness, red-green balance and yellow-blue balance. Chroma in this case is then a word indicating a special type of saturation, in these cases the saturation of Red and Blue, of which the desaturated equivalents are Green and Yellow respectively. It is available to open up certain images correctly, but Krita does not currently ship a profile for this due to lack of open source ICC profiles for YCrCb."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:423
#, kde-format
msgctxt "When the selected Bitdepth is 8"
msgid "<b>8 bit integer</b>: The default amount of colors per channel. Each channel will have 256 values available, leading to a total amount of 256*amount of channels. Recommended to use for images intended for the web, or otherwise simple images."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:429
#, kde-format
msgctxt "When the selected Bitdepth is 16"
msgid "<b>16 bit integer</b>: Also known as 'deep color'. 16 bit is ideal for editing images with a linear TRC, large color space, or just when you need more precise color blending. This does take twice as much space on the RAM and hard-drive than any given 8 bit image of the same properties, and for some devices it takes much more processing power. We recommend watching the RAM usage of the file carefully, or otherwise use 8 bit if your computer slows down. Take care to disable conversion optimization when converting from 16 bit/channel to 8 bit/channel."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:438
#, kde-format
msgctxt "When the selected Bitdepth is 16 bit float"
msgid "<b>16 bit floating point</b>: Also known as 'Half Floating Point', and the standard in VFX industry images. 16 bit float is ideal for editing images with a linear Tone Response Curve, large color space, or just when you need more precise color blending. It being floating point is an absolute requirement for Scene Referred (HDR) images. This does take twice as much space on the RAM and hard-drive than any given 8 bit image of the same properties, and for some devices it takes much more processing power. We recommend watching the RAM usage of the file carefully, or otherwise use 8 bit if your computer slows down."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:447
#, kde-format
msgctxt "When the selected Bitdepth is 32bit float"
msgid "<b>32 bit float point</b>: Also known as 'Full Floating Point'. 32 bit float is ideal for editing images with a linear TRC, large color space, or just when you need more precise color blending. It being floating point is an absolute requirement for Scene Referred (HDR) images. This does take four times as much space on the RAM and hard-drive than any given 8 bit image of the same properties, and for some devices it takes much more processing power. We recommend watching the RAM usage of the file carefully, or otherwise use 8 bit if your computer slows down."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:456
#, kde-format
msgctxt "When the selected Bitdepth is 64bit float, but this isn't actually available in Krita at the moment."
msgid "<b>64 bit float point</b>: 64 bit float is as precise as it gets in current technology, and this depth is used most of the time for images that are generated or used as an input for software. It being floating point is an absolute requirement for Scene Referred (HDR) images. This does take eight times as much space on the RAM and hard-drive than any given 8 bit image of the same properties, and for some devices it takes much more processing power. We recommend watching the RAM usage of the file carefully, or otherwise use 8 bit if your computer slows down."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:464
#, kde-format
msgid "The following conversion intents are possible: "
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:483
#, kde-format
msgctxt "These are Elle Stone's notes on her profiles that we ship."
msgid ""
"<p><b>Extra notes on profiles by Elle Stone:</b></p>"
"<p><i>Krita comes with a number of high quality profiles created by <a href=\"http://ninedegreesbelow.com\">Elle Stone</a>. This is a summary. Please check <a href=\"http://ninedegreesbelow.com/photography/lcms-make-icc-profiles.html\">the full documentation</a> as well.</i></p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:491
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>Quoting Wikipedia, 'Academy Color Encoding System (ACES) is a color image encoding system proposed by the Academy of Motion Picture Arts and Sciences that will allow for a fully encompassing color accurate workflow, with 'seamless interchange of high quality motion picture images regardless of source'.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:499
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>The ACEScg color space is smaller than the ACES color space, but large enough to contain the 'Rec-2020 gamut and the DCI-P3 gamut', unlike the ACES color space it has no negative values and contains only few colors that fall just barely outside the area of real colors humans can see</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:506
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>To avoid possible copyright infringement issues, I used 'ClayRGB' (following ArgyllCMS) as the base name for these profiles. As used below, 'Compatible with Adobe RGB 1998' is terminology suggested in the preamble to the AdobeRGB 1998 color space specifications.</p>"
"<p>The Adobe RGB 1998 color gamut covers a higher percentage of real-world cyans, greens, and yellow-greens than sRGB, but still doesn't include all printable cyans, greens, yellow-greens, especially when printing using today's high-end, wider gamut, ink jet printers. BetaRGB (not included in the profile pack) and Rec.2020 are better matches for the color gamuts of today's wide gamut printers.</p>"
"<p>The Adobe RGB 1998 color gamut is a reasonable approximation to some of today's high-end wide gamut monitors.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:520
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>This profile's color gamut is roughly the same size and shape as the ACES color space gamut, and like the ACES color space, AllColorsRGB holds all possible real colors. But AllColorsRGB actually has a slightly larger color gamut (to capture some fringe colors that barely qualify as real when viewed by the standard observer) and uses the D50 white point.</p>"
"<p>Just like the ACES color space, AllColorsRGB holds a high percentage of imaginary colors. See the Completely <a href=\"http://ninedegreesbelow.com/photography/xyz-rgb.html\">Painless Programmer's Guide to XYZ, RGB, ICC, xyY, and TRCs</a> for more information about imaginary colors.</p>"
"<p>There is no particular reason why anyone would want to use this profile for editing, unless one needs to make sure your color space really does hold all possible real colors.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:535
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>This profile is included mostly for its historical significance. It's the color space that was used in the original color matching experiments that led to the creation of the XYZ reference color space.</p>"
"<p>The ASTM E white point is probably the right E white point to use when making the CIERGB color space profile. It's not clear to me what the correct CIERGB primaries really are. Lindbloom gives one set. The LCMS version 1 tutorial gives a different set. Experts in the field contend that the real primaries should be calculated from the spectral wavelengths, so I did.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:548
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>The IdentityRGB working space is included in the profile pack because it's a mathematically obvious way to include all possible visible colors, though it has a higher percentage of imaginary colors than the ACES and AllColorsRGB color spaces. I cannot think of any reason why you'd ever want to actually edit images in the IdentityRGB working space.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:556
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>To avoid possible copyright infringement issues, I used 'LargeRGB' (following RawTherapee) as the base name for these profiles."
"<p>Kodak designed the RIMM/ROMM (ProPhotoRGB) color gamut to include all printable and most real world colors. It includes some imaginary colors and excludes some of the real world blues and violet blues that can be captured by digital cameras. It also excludes some very saturated 'camera-captured' yellows as interpreted by some (and probably many) camera matrix input profiles."
"<p>The ProPhotoRGB primaries are hard-coded into Adobe products such as Lightroom and the Dng-DCP camera 'profiles'. However, other than being large enough to hold a lot of colors, ProPhotoRGB has no particular merit as an RGB working space. Personally and for most editing purposes, I recommend BetaRGB, Rec2020, or the ACEScg profiles ProPhotoRGB.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:572
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>Rec.2020 is the up-and-coming replacement for the thoroughly outdated sRGB color space. As of June 2015, very few (if any) display devices (and certainly no affordable display devices) can display all of Rec.2020. However, display technology is closing in on Rec.2020, movies are already being made for Rec.2020, and various cameras offer support for Rec.2020. And in the digital darkroom Rec.2020 is much more suitable as a general RGB working space than the exceedingly small sRGB color space.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:581
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>Hewlett-Packard and Microsoft designed sRGB to match the color gamut of consumer-grade CRTs from the 1990s. sRGB is the standard color space for the world wide web and is still the best choice for exporting images to the internet.</p>"
"<p>The sRGB color gamut was a good match to calibrated decent quality CRTs. But sRGB is not a good match to many consumer-grade LCD monitors, which often cannot display the more saturated sRGB blues and magentas (the good news: as technology progresses, wider gamuts are trickling down to consumer grade monitors).</p>"
"<p>Printer color gamuts can easily exceed the sRGB color gamut in cyans, greens, and yellow-greens. Colors from interpolated camera raw files also often exceed the sRGB color gamut.</p>"
"<p>As a very relevant aside, using perceptual intent when converting to sRGB does not magically makes otherwise out of gamut colors fit inside the sRGB color gamut! The standard sRGB color space (along with all the other the RGB profiles provided in my profile pack) is a matrix profile, and matrix profiles don't have perceptual intent tables.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:597
#, kde-format
msgctxt "From Elle's notes."
msgid ""
"<p>To avoid possible copyright infringement issues, I used 'WideRGB' as the base name for these profiles.</p>"
"<p>WideGamutRGB was designed by Adobe to be a wide gamut color space that uses spectral colors as its primaries. Pascale's primary values produce a profile that matches old V2 Widegamut profiles from Adobe and Canon. It is an interesting color space, but shortly after its introduction, Adobe switched their emphasis to the ProPhotoRGB color space.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:605
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>These profiles are for use with RGB images that have been converted to monotone gray (black and white). The main reason to convert from RGB to Gray is to save the file space needed to encode the image. Google places a premium on fast-loading web pages, and images are one of the slower-loading elements of a web page. So converting black and white images to Grayscale images does save some kilobytes. For grayscale images uploaded to the internet, convert the image to the V2 Gray profile with the sRGB TRC.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:613
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>The profiles that end in '-g10.icc' are linear gamma (gamma=1.0, 'linear light', etc) profiles and should only be used when editing at high bit depths (16-bit floating point, 16-bit integer, 32-bit floating point, 32-bit integer). Many editing operations produce better results in linear gamma color spaces.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:620
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>The profiles that end in '-labl.icc' have perceptually uniform TRCs. A few editing operations really should be done on perceptually uniform RGB. Make sure you use the V4 versions for editing high bit depth images.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:626
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>The profiles that end in '-srgbtrc.icc', '-g22.icc', and '-bt709.icc' have approximately but not exactly perceptually uniform TRCs. ProPhotoRGB's gamma=1.8 TRC is not quite as close to being perceptually uniform.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:631
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>When editing 8-bit images, you should use a profile with a small color gamut and an approximately or exactly perceptually uniform TRC. Of the profiles supplied in my profile pack, only the sRGB and AdobeRGB1998 (ClayRGB) color spaces are small enough for 8-bit editing. Even with the AdobeRGB1998 color space you need to be careful to not cause posterization. And of course you cannot use the linear gamma versions of these profiles for 8-bit editing.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:639
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>Use V4 profiles for editing images using high bit depth image editors that use LCMS as the Color Management Module. This includes Krita, digiKam/showFoto, and GIMP 2.9.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_advanced_color_space_selector.cc:644
#, kde-format
msgctxt "From Elle's notes."
msgid "<p>Use V2 profiles for exporting finished images to be uploaded to the web or for use with imaging software that cannot read V4 profiles.</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_categorized_list_view.cpp:124
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_drawing_angle.cpp:78
#, kde-format
msgid "Lock"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_categorized_list_view.cpp:124
#, kde-format
msgid "Unlock (restore settings from preset)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_categorized_list_view.cpp:129
#, kde-format
msgid "Unlock (keep current settings)"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cie_tongue_widget.cpp:700
#, kde-format
msgid "Uncalibrated color space"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cie_tongue_widget.cpp:706
#, kde-format
msgid "No profile available..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisCompositeOpComboBox, cmbComposite)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:70
#: plugins/dockers/defaultdockers/wdglayerbox.ui:52
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:50
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:38
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:60
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:48
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:42
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:35
#: plugins/paintops/experiment/kis_experiment_paintop_settings_widget.cpp:36
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:49
#: plugins/paintops/gridbrush/kis_grid_paintop_settings_widget.cpp:40
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:38
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:54
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:38
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:42
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:46
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:47
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:53
#, kde-format
msgid "Blending Mode"
msgstr ""
#. i18n("Next Blending Mode"), this);
#. action->setDefaultShortcut(QKeySequence(Qt::SHIFT + Qt::ALT + Qt::Key_Plus));
#. connect(action, SIGNAL(triggered()), SLOT(slotNextBlendingMode()));
#. m_actions << action;
#. action = new KisAction(i18n("Previous Blending Mode"), this);
#. action->setDefaultShortcut(QKeySequence(Qt::SHIFT + Qt::ALT + Qt::Key_Minus));
#. connect(action, SIGNAL(triggered()), SLOT(slotPreviousBlendingMode()));
#. m_actions << action;
#. Normal
#. Shift + Alt + N
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:96
#, kde-format
msgid "Select Normal Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:103
#, kde-format
msgid "Select Dissolve Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:110
#, kde-format
msgid "Select Behind Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:117
#, kde-format
msgid "Select Clear Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:124
#, kde-format
msgid "Select Darken Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:131
#, kde-format
msgid "Select Multiply Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:138
#, kde-format
msgid "Select Color Burn Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:145
#, kde-format
msgid "Select Linear Burn Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:152
#, kde-format
msgid "Select Lighten Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:159
#, kde-format
msgid "Select Screen Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:166
#, kde-format
msgid "Select Color Dodge Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:173
#, kde-format
msgid "Select Linear Dodge Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:180
#, kde-format
msgid "Select Overlay Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:187
#, kde-format
msgid "Select Hard Overlay Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:194
#, kde-format
msgid "Select Soft Light Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:201
#, kde-format
msgid "Select Hard Light Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:208
#, kde-format
msgid "Select Vivid Light Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:215
#, kde-format
msgid "Select Linear Light Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:222
#, kde-format
msgid "Select Pin Light Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:229
#, kde-format
msgid "Select Hard Mix Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:236
#, kde-format
msgid "Select Difference Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:243
#, kde-format
msgid "Select Exclusion Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:250
#, kde-format
msgid "Select Hue Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:257
#, kde-format
msgid "Select Saturation Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:264
#, kde-format
msgid "Select Color Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_cmb_composite.cc:271
#, kde-format
msgid "Select Luminosity Blending Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_color_button.cpp:347
#, kde-format
msgid "Choose a color"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_color_filter_combo.cpp:183
#, kde-format
msgctxt "combo box: show all layers"
msgid "All"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_color_filter_combo.cpp:193
#, kde-format
msgctxt "combo box: select all layers without a label"
msgid "No Label"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_color_input.cpp:59
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:81
#, kde-format
msgid "%1:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_color_input.cpp:342
#: libs/widgets/KoEditColorSetDialog.cpp:174
#, kde-format
msgid "Color name:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_custom_image_widget.cc:268
#, kde-format
msgid ""
"Linear gamma RGB color spaces are not supposed to be used in 8-bit integer modes. It is suggested to use 16-bit integer or any floating point colorspace for linear profiles.\n"
"\n"
"Press \"Continue\" to create a 8-bit integer linear RGB color space or \"Cancel\" to return to the settings dialog."
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_custom_image_widget.cc:494
#, kde-format
msgid "bytes"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_custom_image_widget.cc:497
#, kde-format
msgctxt "Abbreviation for kilobyte"
msgid "KB"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_custom_image_widget.cc:501
#, kde-format
msgctxt "Abbreviation for megabyte"
msgid "MB"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_custom_image_widget.cc:505
#, kde-format
msgctxt "Abbreviation for gigabyte"
msgid "GB"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_custom_image_widget.cc:508
#, kde-format
msgctxt "arg1: width. arg2: height. arg3: colorspace name. arg4: size of a channel in bits. arg5: size in unites of arg6. Arg6: KB, MB or GB"
msgid "This document will be %1 pixels by %2 pixels in %3, which means the pixel size is %4 bit. A single paint layer will thus take up %5 %6 of RAM."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_filter_selector_widget.cc:165
#, kde-format
msgid "Filter configuration XML"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_filter_selector_widget.cc:220
#, kde-format
msgid "No configuration options"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:49
#: libs/ui/widgets/kis_gradient_chooser.cc:57
#: libs/ui/widgets/kis_gradient_chooser.cc:61
#, kde-format
msgid "Custom Gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:91
#, kde-format
msgid "Add..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:98
#, kde-format
msgid "Stop gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:102
#, kde-format
msgid "Segmented gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:110
#, kde-format
msgid "Edit..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_chooser.cc:178
#, kde-format
msgid "unnamed"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_slider_widget.cc:48
#, kde-format
msgid "Split Segment"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_slider_widget.cc:49
#, kde-format
msgid "Duplicate Segment"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_slider_widget.cc:50
#, kde-format
msgid "Mirror Segment"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_gradient_slider_widget.cc:52
#, kde-format
msgid "Remove Segment"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:40
#, kde-format
msgctxt "@label:slider"
msgid "Threshold:"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:41
#, kde-format
msgctxt "@label:slider"
msgid "Instant preview threshold:"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:74
#, kde-format
msgid "Enable after:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:155
#, kde-format
msgid "(Instant Preview)*"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:155
#, kde-format
msgid "Instant Preview"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:161
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Instant Preview Mode is disabled by the following options:"
"<ul>%1</ul>"
"</p>"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:169
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Instant Preview Mode is disabled by instant preview threshold. Please right-click here to change the threshold"
"<ul>"
"<li>Brush size %1</li>"
"<li>Threshold: %2</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:178
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Instant Preview may look different from the final result. In case of troubles try disabling the following options:"
"<ul>%1</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_lod_availability_widget.cpp:183
#, kde-format
msgctxt "@info:tooltip"
msgid "<p>Instant Preview Mode is available</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_meta_data_merge_strategy_chooser_widget.cc:75
#, kde-format
msgid "Choose meta data merge strategy"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_multipliers_double_slider_spinbox.cpp:55
#, kde-format
msgid "x%1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_paintop_preset_icon_library.cpp:37
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:69
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:70
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:38
#, kde-format
msgid "Hue:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/widgets/kis_paintop_preset_icon_library.cpp:41
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:69
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:70
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:58
#, kde-format
msgid "Saturation:"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_preset_icon_library.cpp:45
#, kde-format
msgid "Mid-gray level:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_paintop_presets_chooser_popup.cpp:60
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:147
#, kde-format
msgid "Thumbnails"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_paintop_presets_chooser_popup.cpp:65
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:152
#, kde-format
msgid "Details"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_paintop_presets_chooser_popup.cpp:83
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:171
#: libs/widgets/KoToolBox.cpp:342 libs/widgetutils/xmlgui/ktoolbar.cpp:335
#, kde-format
msgid "Icon Size"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:111
#, kde-format
msgid "The settings for this preset have changed from their default."
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:114
#, kde-format
msgid "Toggle showing presets"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:116
#, kde-format
msgid "Toggle showing scratchpad"
msgstr ""
#. +> stable5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:299
#, kde-format
msgid "Show Scratchpad"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:118
#, kde-format
msgid "Reload the brush preset"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:119
#, kde-format
msgid "Rename the brush preset"
msgstr ""
#. +> stable5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:264
#, kde-format
msgid "Overwrite Preset"
msgstr ""
#. +> stable5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:264
#, kde-format
msgid "Save to Presets"
msgstr ""
#. +> stable5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:295
#, kde-format
msgid "Show Preset Strip"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_popup.cpp:643
#, kde-format
msgid "All"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_save.cpp:77
#, kde-format
msgid "Save New Brush Preset"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_paintop_presets_save.cpp:137
#, kde-format
msgid "Preset Icon Library"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/kis_preset_live_preview_view.cpp:164
#, kde-format
msgid "No Preview for this engine"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_tone_curve_widget.cpp:341
#, kde-format
msgid "No tone curve available..."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_tool_options_popup.cpp:151
#, kde-format
msgid "Attach to Toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_tool_options_popup.cpp:151
#, kde-format
msgid "Detach from Toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/kis_wdg_generator.cpp:143
#: libs/ui/widgets/kis_wdg_generator.cpp:155
#, kde-format
msgid "No configuration options."
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoDualColorButton.cpp:101
#, kde-format
msgid "Select a color"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.cpp:255
#, kde-format
msgid "Change the filling color"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.cpp:290
#, kde-format
msgid "Change filling gradient"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.cpp:311
#, kde-format
msgid "Change the filling pattern"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.cpp:545
#, kde-format
msgctxt "default prefix for the saved gradient"
msgid "gradient"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.cpp:549
#, kde-format
msgid "Enter gradient name:"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.cpp:549
#, kde-format
msgctxt "@title:window"
msgid "Save Gradient"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnNoFill)
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.ui:34
#, kde-format
msgid "No fill"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnSolidFill)
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.ui:59
#, kde-format
msgid "Solid color fill"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, btnSolidFill)
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.ui:62
#, kde-format
msgid "Solid"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnGradientFill)
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.ui:81
#, kde-format
msgid "Gradient fill"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnPatternFill)
#. +> trunk5
#: libs/ui/widgets/KoFillConfigWidget.ui:103
#, kde-format
msgid "Pattern fill"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, repeatLabel)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.ui:238
#: libs/widgets/KoGradientEditWidget.cpp:176
#: plugins/tools/basictools/kis_tool_gradient.cc:240
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:29
#, kde-format
msgid "Repeat:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbGradientRepeat)
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.ui:263
#: libs/widgets/KoGradientEditWidget.cpp:180
#, kde-format
msgid "Repeat"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbGradientRepeat)
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.ui:268
#: libs/widgets/KoGradientEditWidget.cpp:179
#, kde-format
msgid "Reflect"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, presetLabel)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/ui/widgets/KoFillConfigWidget.ui:280
#: plugins/impex/video/video_export_options_dialog.ui:55
#, kde-format
msgid "Preset:"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:103
#: libs/widgets/KoStrokeConfigWidget.cpp:98
#, kde-format
msgid "Butt cap"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:110
#: libs/widgets/KoStrokeConfigWidget.cpp:105
#, kde-format
msgid "Round cap"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:117
#: libs/widgets/KoStrokeConfigWidget.cpp:112
#, kde-format
msgid "Square cap"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:128
#: libs/widgets/KoStrokeConfigWidget.cpp:123
#, kde-format
msgid "Miter join"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:135
#: libs/widgets/KoStrokeConfigWidget.cpp:130
#, kde-format
msgid "Round join"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:142
#: libs/widgets/KoStrokeConfigWidget.cpp:137
#, kde-format
msgid "Bevel join"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:152
#: libs/widgets/KoStrokeConfigWidget.cpp:146
#, kde-format
msgid "Miter limit"
msgstr ""
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:246
#: libs/widgets/KoStrokeConfigWidget.cpp:230
#, kde-format
msgid "Set line width of actual selection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, strokeStyleLabel)
#. +> trunk5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:257
#: libs/ui/widgets/KoStrokeConfigWidget.ui:77
#, kde-format
msgid "Line Style:"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:260
#, kde-format
msgctxt "@info:tooltip"
msgid "Line style"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:271
#, kde-format
msgctxt "@info:tooltip"
msgid "Start marker"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:278
#, kde-format
msgctxt "@info:tooltip"
msgid "Node marker"
msgstr ""
#. +> trunk5
#: libs/ui/widgets/KoStrokeConfigWidget.cpp:285
#, kde-format
msgctxt "@info:tooltip"
msgid "End marker"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, thicknessLabel)
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5 stable5
#: libs/ui/widgets/KoStrokeConfigWidget.ui:50
#: libs/widgets/KoStrokeConfigWidget.cpp:220
#: plugins/paintops/hatching/wdghatchingoptions.ui:128
#, kde-format
msgid "Thickness:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/kis_file_name_requester.cpp:89
#, kde-format
msgid "Select a file to load..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/kis_file_name_requester.cpp:93
#, kde-format
msgid "Select a directory to load..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoColorSetWidget.cpp:224
#, kde-format
msgid "Recent:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoColorSetWidget.cpp:242
#, kde-format
msgid "Add / Remove Colors..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.cpp:79
#, kde-format
msgid "Add new author profile (starts out as a copy of current)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.cpp:83
#, kde-format
msgid "Delete the author profile"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:93
#, kde-format
msgctxt "This is a list of suggestions for positions an artist can take, comma-separated"
msgid "Adapter,Animator,Artist,Art Director,Author,Assistant,Editor,Background,Cartoonist,Colorist,Concept Artist,Corrector,Cover Artist,Creator,Designer,Inker,Letterer,Matte Painter,Painter,Penciller,Proofreader,Pixel Artist,Redliner,Sprite Artist,Typographer,Texture Artist,Translator,Writer,Other"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.cpp:101
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:80
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:81
#, kde-format
msgid "Email"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:101
#, kde-format
msgid "Fax"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:101
#, kde-format
msgid "Homepage"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:101
#, kde-format
msgid "Post Address"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:101
#, kde-format
msgid "Telephone"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:104
#, kde-format
msgid "Entry"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.cpp:104
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:106
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:135
#, kde-format
msgid "Type"
msgstr ""
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.cpp:108
#, kde-format
msgid "Anonymous"
msgstr ""
#. +> trunk5 stable5
-#: libs/widgets/KoConfigAuthorPage.cpp:295
+#: libs/widgets/KoConfigAuthorPage.cpp:293
#, kde-format
msgid "Name (not duplicate or blank name):"
msgstr ""
#. +> trunk5 stable5
-#: libs/widgets/KoConfigAuthorPage.cpp:295
+#: libs/widgets/KoConfigAuthorPage.cpp:293
#, kde-format
msgid "Name of Profile"
msgstr ""
#. +> trunk5
-#: libs/widgets/KoConfigAuthorPage.cpp:348
+#: libs/widgets/KoConfigAuthorPage.cpp:346
#, kde-format
msgid "New Contact Info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblInitialsDesc)
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.ui:48
#: libs/widgets/koDocumentInfoAuthorWidget.ui:27
#, kde-format
msgid "Initials:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPositionDesc)
#. +> trunk5 stable5
#: libs/widgets/KoConfigAuthorPage.ui:61
#: libs/widgets/koDocumentInfoAuthorWidget.ui:67
#, kde-format
msgid "Position:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPostalDesc)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:191
#: libs/widgets/koDocumentInfoAuthorWidget.ui:154
#, kde-format
msgid "Postal code:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFirst)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:80
#, kde-format
msgid "Given Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTitleDesc)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:103
#, kde-format
msgctxt "Contact title"
msgid "Title:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fullNameLabel)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:119
#: libs/widgets/koDocumentInfoAuthorWidget.ui:114
#, kde-format
msgid "Nickname:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPhoneHome)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:127
#: libs/widgets/koDocumentInfoAuthorWidget.ui:114
#, kde-format
msgid "Telephone (home):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCompanyDesc)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:129
#, kde-format
msgid "Co&mpany:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, LabelFamily)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:142
#, kde-format
msgid "Family Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPhoneWork)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:143
#: libs/widgets/koDocumentInfoAuthorWidget.ui:124
#, kde-format
msgid "Telephone (work):"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnAdd)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:152
#, kde-format
msgid "Add contact info"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnRemove)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:159
#, kde-format
msgid "Remove contact info"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFaxDesc)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:159
#: libs/widgets/koDocumentInfoAuthorWidget.ui:134
#, kde-format
msgid "Fax:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: libs/widgets/KoConfigAuthorPage.ui:166
#, kde-format
msgid "Contact:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblStreetDesc)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:175
#: libs/widgets/koDocumentInfoAuthorWidget.ui:144
#, kde-format
msgid "Street:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCityDesc)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:207
#: libs/widgets/koDocumentInfoAuthorWidget.ui:164
#, kde-format
msgid "City:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCountryDesc)
#. +> stable5
#: libs/widgets/KoConfigAuthorPage.ui:223
#: libs/widgets/koDocumentInfoAuthorWidget.ui:174
#, kde-format
msgid "Country:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDialog.cpp:264
#, kde-format
msgid "&Try"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDialog.cpp:477
#, kde-format
msgid "modified"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDialog.cpp:488
#, kde-format
msgctxt "Document/application separator in titlebar"
msgid " – "
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDialog.cpp:863
#, kde-format
msgid "&Details"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDialog.cpp:1021
#, kde-format
msgid "Get help..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDockWidgetTitleBar.cpp:54
#, kde-format
msgctxt "@info:tooltip"
msgid "Float Docker"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDockWidgetTitleBar.cpp:62
#, kde-format
msgctxt "@info:tooltip"
msgid "Close Docker"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDockWidgetTitleBar.cpp:72
#, kde-format
msgctxt "@info:tooltip"
msgid "Collapse Docker"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDockWidgetTitleBar.cpp:82
#, kde-format
msgctxt "@info:tooltip"
msgid "Lock Docker"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblLastPrintedDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:31
#, kde-format
msgid "Last printed:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pbReset)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:57
#, kde-format
msgid "&Reset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblModifiedDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:64
#, kde-format
msgid "Modified:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRevisionDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:94
#, kde-format
msgid "Revision number:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblKeywordsDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:104
#, kde-format
msgid "Keywords:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, filePathInfoLabel)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:117
#, kde-format
msgid "Path:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbLanguageDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:141
#, kde-format
msgid "Language:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSubjectDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:151
#, kde-format
msgid "Subject:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblEditingDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:191
#, kde-format
msgid "Total editing time:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTitleDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:211
#, kde-format
msgctxt "Document title"
msgid "Title:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCreatedDesc)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAboutWidget.ui:231
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:453
#, kde-format
msgid "Created:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblLicense)
#. +> trunk5
#: libs/widgets/koDocumentInfoAboutWidget.ui:250
#, kde-format
msgid "License/Rights:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTitleDesc)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, titleLabel)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAuthorWidget.ui:50
#: plugins/extensions/metadataeditor/editors/dublincore.ui:83
#: plugins/extensions/pykrita/plugin/info.ui:174
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:183
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:32
#, kde-format
msgid "Title:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblCompanyDesc)
#. +> trunk5 stable5
#: libs/widgets/koDocumentInfoAuthorWidget.ui:84
#, kde-format
msgid "Company:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblLastName)
#. +> trunk5
#: libs/widgets/koDocumentInfoAuthorWidget.ui:127
#, kde-format
msgid "Last Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblfirstname)
#. +> trunk5
#: libs/widgets/koDocumentInfoAuthorWidget.ui:134
#, kde-format
msgid "First Name:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:85
#, kde-format
msgid "Document Information"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:127
#, kde-format
msgid "Last saved by"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:184
#, kde-format
msgid "Use ';' (Example: Office;KDE;Calligra)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:311
#, kde-format
msgid "%1 week"
msgid_plural "%1 weeks"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:312
#: libs/widgets/KoDocumentInfoDlg.cpp:314
#, kde-format
msgid "%1 day"
msgid_plural "%1 days"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:315
#: libs/widgets/KoDocumentInfoDlg.cpp:317
#, kde-format
msgid "%1 hour"
msgid_plural "%1 hours"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:318
#: libs/widgets/KoDocumentInfoDlg.cpp:320
#, kde-format
msgid "%1 minute"
msgid_plural "%1 minutes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:321
#: libs/widgets/KoDocumentInfoDlg.cpp:323
#, kde-format
msgid "%1 second"
msgid_plural "%1 seconds"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgets/KoDocumentInfoDlg.cpp:329
#, kde-format
msgctxt "major time unit and minor time unit"
msgid "%1 and %2"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, add)
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSet.ui:45
#, kde-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, open)
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSet.ui:65
#, kde-format
msgid "Open palette"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, save)
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSet.ui:75
#, kde-format
msgid "Save palette"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSetDialog.cpp:174
#, kde-format
msgid "Add Color To Palette"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSetDialog.cpp:217
#, kde-format
msgid "Cannot write to palette file %1. Maybe it is read-only. "
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoEditColorSetDialog.cpp:231
#, kde-format
msgid "Add/Remove Colors"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:162
#, kde-format
msgid "Target:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:171
#, kde-format
msgctxt "Linear gradient type"
msgid "Linear"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:172
#, kde-format
msgctxt "Radial gradient type"
msgid "Radial"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:173
#, kde-format
msgctxt "Conical gradient type"
msgid "Conical"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:178
#, kde-format
msgctxt "No gradient spread"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:183
#, kde-format
msgid "Overall opacity:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:188
#, kde-format
msgid "Color stop:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:196
#, kde-format
msgid "Stop color."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoGradientEditWidget.cpp:199
#, kde-format
msgid "&Add to Predefined Gradients"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoIconToolTip.cpp:53
#, kde-format
msgid "Tags"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutDialog.cpp:46
#, kde-format
msgid "Page Layout"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, beginAtCombo)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutDialog.cpp:50
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:144
#, kde-format
msgid "Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutDialog.cpp:108
#, kde-format
msgid "Apply to document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:186
#, kde-format
msgid "Left Edge:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:187
#, kde-format
msgid "Right Edge:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:190
#, kde-format
msgid "Binding Edge:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:191
#, kde-format
msgid "Page Edge:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:287
#, kde-format
msgid "Facing Pages:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, facingPages)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:288
#: libs/widgets/KoPageLayoutWidget.ui:190
#, kde-format
msgid "Facing pages"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:291
#, kde-format
msgid "Page Layout:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.cpp:292
#, kde-format
msgid "Page spread"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, unitsLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:43
#, kde-format
msgid "&Unit:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, stylesLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:66
#, kde-format
msgid "&Follow style:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, orientationLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:149
#, kde-format
msgid "Orientation:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, portrait)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:159
#, kde-format
msgid "Po&rtrait"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, facingPageLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:173
#, kde-format
msgid "Facing pages:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, singleSided)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:183
#, kde-format
msgid "Single sided"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, directionLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:197
#, kde-format
msgid "&Text direction:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, textDirection)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:217
#, kde-format
msgid "Automatic"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, textDirection)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:222
#, kde-format
msgid "Left to right"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, textDirection)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:227
#, kde-format
msgid "Right to left"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, margins)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:237
#, kde-format
msgid "Margins"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:243
#, kde-format
msgid "Top:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, leftLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:263
#, kde-format
msgid "&Binding edge:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, rightLabel)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:283
#, kde-format
msgid "Pa&ge edge:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5 stable5
#: libs/widgets/KoPageLayoutWidget.ui:303
#, kde-format
msgid "Botto&m:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooser.cpp:151
#, kde-format
msgctxt "@info:tooltip"
msgid "Import resource"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooser.cpp:157
#, kde-format
msgctxt "@info:tooltip"
msgid "Delete resource"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooserContextMenu.cpp:133
#: libs/widgets/KoTagToolButton.cpp:66
#, kde-format
msgid "New tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooserContextMenu.cpp:166
#, kde-format
msgid "Assign to tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooserContextMenu.cpp:175
#, kde-format
msgid "Remove from this tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceItemChooserContextMenu.cpp:183
#, kde-format
msgid "Remove from other tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceTaggingManager.cpp:158
#, kde-format
msgid "Unable to undelete tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceTaggingManager.cpp:159
#, kde-format
msgid ""
"<qt>The tag you are trying to undelete already exists in tag list.<br>"
"Please enter a new, unique name for it.</qt>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoResourceTaggingManager.cpp:166
#, kde-format
msgid "Tag was not undeleted."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoRuler.cpp:1260
#, kde-format
msgid "First line indent"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoRuler.cpp:1261
#, kde-format
msgid "Left indent"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoRuler.cpp:1262
#, kde-format
msgid "Right indent"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoShadowConfigWidget.cpp:68
#, kde-format
msgid "Change the color of the shadow"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: libs/widgets/KoShadowConfigWidget.ui:67
#, kde-format
msgid "Blur:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, shadowDistanceLabel)
#. +> trunk5 stable5
#: libs/widgets/KoShadowConfigWidget.ui:84
#: plugins/flake/textshape/dialogs/FontDecorations.ui:257
#: plugins/tools/basictools/kis_tool_brush.cc:333
#: plugins/tools/basictools/kis_tool_measure.cc:52
#, kde-format
msgid "Distance:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoStrokeConfigWidget.cpp:246
#, kde-format
msgid "Change the color of the line/border"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagChooserWidget.cpp:54 libs/widgets/KoTagToolButton.cpp:57
#, kde-format
msgid "Tag"
msgstr ""
#. +> trunk5
#: libs/widgets/KoTagFilterWidget.cpp:52
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"Entering search terms here will add to, or remove resources from the current tag view."
"<p>To filter based on the partial, case insensitive name of a resource:<br/>"
"<tt>partialname</tt> or <tt>!partialname</tt>.</p>"
"<p>In-/exclusion of other tag sets:<br/>"
"<tt>[Tagname]</tt> or <tt>![Tagname]</tt>.</p>"
"<p>Case sensitive and full name matching in-/exclusion:<br/>"
"<tt>\"ExactMatch\"</tt> or <tt>!\"ExactMatch\"</tt>.</p>"
"Filter results cannot be saved for the <b>All Presets</b> view.<br/>"
"In this view, pressing <b>Enter</b> or clearing the filter box will restore all items.<br/>"
"Create and/or switch to a different tag if you want to save filtered resources into named sets."
msgstr ""
#. +> stable5
#: libs/widgets/KoTagFilterWidget.cpp:52
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"Entering search terms here will add to, or remove resources from the current tag view."
"<p>To filter based on the partial, case insensitive name of a resource:<br/>"
"<tt>partialname</tt> or <tt>!partialname</tt>.</p>"
"<p>In-/exclusion of other tag sets:<br/>"
"<tt>[Tagname]</tt> or <tt>![Tagname]</tt>.</p>"
"<p>Case sensitive and full name matching in-/exclusion:<br/>"
"<tt>\"ExactMatch\"</tt> or <tt>!\"ExactMatch\"</tt>.</p>"
"Filter results cannot be saved for the <b>All Presets</b> view.<br>"
"In this view, pressing <b>Enter</b> or clearing the filter box will restore all items.<br/>"
"Create and/or switch to a different tag if you want to save filtered resources into named sets."
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagFilterWidget.cpp:66
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"Entering search terms here will add to, or remove resources from the current tag view."
"<p>To filter based on the partial, case insensitive name of a resource:<br/>"
"<tt>partialname</tt> or <tt>!partialname</tt>.</p>"
"<p>In-/exclusion of other tag sets:<br/>"
"<tt>[Tagname]</tt> or <tt>![Tagname]</tt>.</p>"
"<p>Case sensitive and full name matching in-/exclusion:<br/>"
"<tt>\"ExactMatch\"</tt> or <tt>!\"ExactMatch\"</tt>.</p>"
"Pressing <b>Enter</b> or clicking the <b>Save</b> button will save the changes."
msgstr ""
#. +> trunk5
#: libs/widgets/KoTagFilterWidget.cpp:81
#, kde-format
msgid "Search"
msgstr ""
#. +> stable5
#: libs/widgets/KoTagFilterWidget.cpp:81
#, kde-format
msgid "Enter resource filters here"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagFilterWidget.cpp:92
#, kde-format
msgctxt "@info:tooltip"
msgid "<qt>Save the currently filtered set as the new members of the current tag.</qt>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagToolButton.cpp:59
#, kde-format
msgctxt "@info:tooltip"
msgid "<qt>Show the tag box options.</qt>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagToolButton.cpp:75
#, kde-format
msgid "Rename tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagToolButton.cpp:86
#, kde-format
msgid "Delete this tag"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagToolButton.cpp:104
#, kde-format
msgid "Clear undelete list"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoTagToolButton.cpp:134
#, kde-format
msgid "Undelete"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolBox.cpp:343 libs/widgetutils/xmlgui/ktoolbar.cpp:337
#, kde-format
msgctxt "@item:inmenu Icon size"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolBox.cpp:350
#, kde-format
msgid "%1x%2"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolBoxButton.cpp:66
#, kde-format
msgctxt "@info:tooltip"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolBoxButton.cpp:67
#, kde-format
msgctxt "@info:tooltip %2 is shortcut"
msgid "%1 (%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolBoxDocker.cpp:29
#, kde-format
msgid "Toolbox"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolDocker.cpp:196
#, kde-format
msgid "Tool Options"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoToolDocker.cpp:227
#, kde-format
msgid "Toggles organizing the options in tabs or not"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomMode.cpp:27
#, kde-format
msgid "Fit Page Width"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomMode.cpp:28
#, kde-format
msgid "Fit Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomMode.cpp:30
#, kde-format
msgid "Actual Pixels"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomMode.cpp:34
#, kde-format
msgid "Fit Text Width"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomWidget.cpp:81
#, kde-format
msgid "Use same aspect as pixels"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomWidget.cpp:90
#, kde-format
msgid "Zoom to Selection"
msgstr ""
#. +> trunk5 stable5
#: libs/widgets/KoZoomWidget.cpp:99
#, kde-format
msgid "Zoom to All"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, txtFileName)
#. +> trunk5 stable5
#: libs/widgets/wdg_file_name_requester.ui:25
#, kde-format
msgid "Selected file name"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnSelectFile)
#. +> trunk5 stable5
#: libs/widgets/wdg_file_name_requester.ui:32
#, kde-format
msgid "Select file name..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/klanguagebutton.cpp:194
#, kde-format
msgid "without name"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/krecentfilesaction.cpp:78
#, kde-format
msgid "No Entries"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/krecentfilesaction.cpp:84
#, kde-format
msgid "Clear List"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:90
#, kde-format
msgctxt "go back"
msgid "&Back"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:97
#, kde-format
msgctxt "go forward"
msgid "&Forward"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:104
#, kde-format
msgctxt "home page"
msgid "&Home"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:107
#, kde-format
msgctxt "show help"
msgid "&Help"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:520
#: libs/widgetutils/config/kstandardaction_p.h:96
#, kde-format
msgid "Show &Menubar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:529
#, kde-format
msgid ""
"Show Menubar"
"<p>Shows the menubar again after it has been hidden</p>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:547
#: libs/widgetutils/config/kstandardaction_p.h:98
#, kde-format
msgid "Show St&atusbar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction.cpp:550
#, kde-format
msgid ""
"Show Statusbar"
"<p>Shows the statusbar, which is the bar at the bottom of the window used for status information.</p>"
msgstr ""
#. i18n: ectx: property (title), widget (QMenu, menu_New)
#. i18n: ectx: property (text), widget (QPushButton, bNew)
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:41
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:32
#: plugins/flake/textshape/dialogs/StyleManager.ui:68
#, kde-format
msgid "&New"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:42
#, kde-format
msgid "&Open..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:42
#, kde-format
msgid "Open an existing document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:43
#, kde-format
msgid "Open &Recent"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:43
#, kde-format
msgid "Open a document which was recently opened"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:44
#, kde-format
msgid "Save document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:45
#, kde-format
msgid "Save &As..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:45
#, kde-format
msgid "Save document under a new name"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:46
#, kde-format
msgid "Re&vert"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:46
#, kde-format
msgid "Revert unsaved changes made to document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:47
#, kde-format
msgid "Close document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:48
#, kde-format
msgid "&Print..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:48
#, kde-format
msgid "Print document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:49
#, kde-format
msgid "Print Previe&w"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:49
#, kde-format
msgid "Show a print preview of document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:50
#, kde-format
msgid "&Mail..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:50
#, kde-format
msgid "Send document by mail"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:51
#, kde-format
msgid "&Quit"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:51
#, kde-format
msgid "Quit application"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:53
#, kde-format
msgid "&Undo"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:53
#, kde-format
msgid "Undo last action"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:54
#, kde-format
msgid "Re&do"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:54
#, kde-format
msgid "Redo last undone action"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:55
#, kde-format
msgid "Cu&t"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:55
#, kde-format
msgid "Cut selection to clipboard"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:56
#, kde-format
msgid "&Copy"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:56
#, kde-format
msgid "Copy selection to clipboard"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:57
#: libs/widgetutils/config/kstandardaction_p.h:58
#, kde-format
msgid "&Paste"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:57
#: libs/widgetutils/config/kstandardaction_p.h:58
#, kde-format
msgid "Paste clipboard content"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:59
#, kde-format
msgid "C&lear"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:60
#, kde-format
msgid "Select &All"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:61
#, kde-format
msgid "Dese&lect"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:62
#, kde-format
msgid "&Find..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:63
#, kde-format
msgid "Find &Next"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:64
#, kde-format
msgid "Find Pre&vious"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:65
#, kde-format
msgid "&Replace..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:67
#, kde-format
msgid "&Actual Size"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:67
#, kde-format
msgid "View document at its actual size"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:68
#, kde-format
msgid "&Fit to Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:68
#, kde-format
msgid "Zoom to fit page in window"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:69
#, kde-format
msgid "Fit to Page &Width"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:69
#, kde-format
msgid "Zoom to fit page width in window"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:70
#, kde-format
msgid "Fit to Page &Height"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:70
#, kde-format
msgid "Zoom to fit page height in window"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:71
#, kde-format
msgid "Zoom &In"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:72
#, kde-format
msgid "Zoom &Out"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:73
#, kde-format
msgid "&Zoom..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:73
#, kde-format
msgid "Select zoom level"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:74
#, kde-format
msgid "&Redisplay"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:74
#, kde-format
msgid "Redisplay document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:76
#, kde-format
msgid "&Up"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:76
#, kde-format
msgid "Go up"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:81
#, kde-format
msgid "&Previous Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:81
#, kde-format
msgid "Go to previous page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:82
#, kde-format
msgid "&Next Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:82
#, kde-format
msgid "Go to next page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:83
#, kde-format
msgid "&Go To..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:84
#, kde-format
msgid "&Go to Page..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:85
#, kde-format
msgid "&Go to Line..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:86
#, kde-format
msgid "&First Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:86
#, kde-format
msgid "Go to first page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:87
#, kde-format
msgid "&Last Page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:87
#, kde-format
msgid "Go to last page"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:88
#, kde-format
msgid "&Back"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:88
#, kde-format
msgid "Go back in document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:89
#, kde-format
msgid "&Forward"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:89
#, kde-format
msgid "Go forward in document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:91
#, kde-format
msgid "&Add Bookmark"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:92
#, kde-format
msgid "&Edit Bookmarks..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:94
#, kde-format
msgid "&Spelling..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:94
#, kde-format
msgid "Check spelling in document"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:96
#, kde-format
msgid "Show or hide menubar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:97
#, kde-format
msgid "Show &Toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:97
#, kde-format
msgid "Show or hide toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:98
#, kde-format
msgid "Show or hide statusbar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:99
#, kde-format
msgid "F&ull Screen Mode"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:100
#, kde-format
msgid "&Save Settings"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:101
#, kde-format
msgid "Configure S&hortcuts..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:102
#, kde-format
msgid "&Configure %1..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:103
#, kde-format
msgid "Configure Tool&bars..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:104
#, kde-format
msgid "Configure &Notifications..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:109
#, kde-format
msgid "%1 &Handbook"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:110
#, kde-format
msgid "What's &This?"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:111
#, kde-format
msgid "Tip of the &Day"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:112
#, kde-format
msgid "&Report Bug..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:113
#, kde-format
msgid "Switch Application &Language..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:114
#, kde-format
msgid "&About %1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/config/kstandardaction_p.h:115
#, kde-format
msgid "About &KDE"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:197
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:226
#, kde-format
msgid "percent (%)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:207
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:236
#, kde-format
msgid "percent of view height (vh)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:207
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:236
#, kde-format
msgid "percent of view width (vw)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:246
#, kde-format
msgid "degrees (°)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:246
#, kde-format
msgid "gons (gon)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:246
#, kde-format
msgid "percent of circle (%)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:246
#, kde-format
msgid "radians (rad)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:255
#, kde-format
msgid "frames (f)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:262
#, kde-format
msgid "percent of animation (%)"
msgstr ""
#. +> trunk5
#: libs/widgetutils/kis_spin_box_unit_manager.cpp:262
#, kde-format
msgid "seconds (s)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/KoFileDialog.cpp:407
#, kde-format
msgid "All supported formats"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/KoGroupButton.cpp:162
#, kde-format
msgctxt "@info:tooltip of custom triple button"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:43
#, kde-format
msgid "About KDE"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:46
#, kde-format
msgid "<html><font size=\"5\">KDE - Be Free!</font></html>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:55
#, kde-format
msgid ""
"<html><b>KDE</b> is a world-wide network of software engineers, artists, writers, translators and facilitators who are committed to <a href=\"%1\">Free Software</a> development. This community has created hundreds of Free Software applications as part of the KDE frameworks, workspaces and applications.<br />"
"<br />"
"KDE is a cooperative enterprise in which no single entity controls the efforts or products of KDE to the exclusion of others. Everyone is welcome to join and contribute to KDE, including you.<br />"
"<br />"
"Visit <a href=\"%2\">%2</a> for more information about the KDE community and the software we produce.</html>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:74
#, kde-format
msgid ""
"<html>Software can always be improved, and the KDE team is ready to do so. However, you - the user - must tell us when something does not work as expected or could be done better.<br />"
"<br />"
"KDE has a bug tracking system. Visit <a href=\"%1\">%1</a> or use the \"Report Bug...\" dialog from the \"Help\" menu to report bugs.<br />"
"<br />"
"If you have a suggestion for improvement then you are welcome to use the bug tracking system to register your wish. Make sure you use the severity called \"Wishlist\".</html>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:92
#, kde-format
msgid ""
"<html>You do not have to be a software developer to be a member of the KDE team. You can join the national teams that translate program interfaces. You can provide graphics, themes, sounds, and improved documentation. You decide!<br />"
"<br />"
"Visit <a href=\"%1\">%1</a> for information on some projects in which you can participate.<br />"
"<br />"
"If you need more information or documentation, then a visit to <a href=\"%2\">%2</a> will provide you with what you need.</html>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:114
#, kde-format
msgid ""
"<html>KDE software is and will always be available free of charge, however creating it is not free.<br />"
"<br />"
"To support development the KDE community has formed the KDE e.V., a non-profit organization legally founded in Germany. KDE e.V. represents the KDE community in legal and financial matters. See <a href=\"%1\">%1</a> for information on KDE e.V.<br />"
"<br />"
"KDE benefits from many kinds of contributions, including financial. We use the funds to reimburse members and others for expenses they incur when contributing. Further funds are used for legal support and organizing conferences and meetings. <br />"
" <br />"
"We would like to encourage you to support our efforts with a financial donation, using one of the ways described at <a href=\"%2\">%2</a>.<br />"
"<br />"
"Thank you very much in advance for your support.</html>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:133
#, kde-format
msgctxt "About KDE"
msgid "&About"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:134
#, kde-format
msgid "&Report Bugs or Wishes"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:135
#, kde-format
msgid "&Join KDE"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kaboutkdedialog_p.cpp:136
#, kde-format
msgid "&Support KDE"
msgstr ""
#. +> trunk5
#: libs/widgetutils/xmlgui/kactionconflictdetector.cpp:49
#, kde-format
msgid ""
"The key sequence '%1' is ambiguous. Use the 'Keyboard Shortcuts'\n"
"tab in 'Settings->Configure Krita...' dialog to solve the ambiguity.\n"
"No action will be triggered."
msgstr ""
#. +> stable5
#: libs/widgetutils/xmlgui/kactionconflictdetector.cpp:49
#, kde-format
msgid ""
"The key sequence '%1' is ambiguous. Use 'Configure Shortcuts'\n"
"from the 'Settings' menu to solve the ambiguity.\n"
"No action will be triggered."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kactionconflictdetector.cpp:53
#, kde-format
msgid "Ambiguous shortcut detected"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:93
#: libs/widgetutils/xmlgui/kbugreport.cpp:109
#, kde-format
msgid "Submit Bug Report"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:119
#, kde-format
msgid "The application for which you wish to submit a bug report - if incorrect, please use the Report Bug menu item of the correct application"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:120
#, kde-format
msgid "Application: "
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:145
#, kde-format
msgid "The version of this application - please make sure that no newer version is available before sending a bug report"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:146
#, kde-format
msgid "Version:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:151
#, kde-format
msgid "no version set (programmer error)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:159
#, kde-format
msgid "OS:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:167
#, kde-format
msgid "Compiler:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:176
#, kde-format
msgid "<qt>To submit a bug report, click on the button below. This will open a web browser window on <a href=\"http://bugs.kde.org\">http://bugs.kde.org</a> where you will find a form to fill in. The information displayed above will be transferred to that server.</qt>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kbugreport.cpp:191
#, kde-format
msgid "&Launch Bug Report Wizard"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:229
#, kde-format
msgctxt "@title:window"
msgid "Dr. Klash' Accelerator Diagnosis"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:236
#, kde-format
msgctxt "@option:check"
msgid "Disable automatic checking"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:240
#, kde-format
msgctxt "@action:button"
msgid "Close"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:281
#, kde-format
msgid "<h2>Accelerators changed</h2>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:283
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:294
#, kde-format
msgid "Old Text"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:285
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:303
#, kde-format
msgid "New Text"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:292
#, kde-format
msgid "<h2>Accelerators removed</h2>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kcheckaccelerators.cpp:301
#, kde-format
msgid "<h2>Accelerators added (just for your info)</h2>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:62
#, kde-format
msgid "--- separator ---"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:368
#, kde-format
msgid "Change Text"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:379
#, kde-format
msgid "Icon te&xt:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:384
#, kde-format
msgid "&Hide text when toolbar shows text alongside icons"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:622
#, kde-format
msgid "Configure Toolbars"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:685
#, kde-format
msgid "Do you really want to reset all toolbars of this application to their default? The changes will be applied immediately."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnReset)
#. i18n: ectx: property (text), widget (QPushButton, resetButton)
#. i18n: ectx: property (text), widget (QPushButton, reset)
#. i18n: ectx: property (text), widget (QPushButton, btnResetCustomLine)
#. i18n: ectx: property (text), widget (QPushButton, resetOriginButton)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:685
#: plugins/dockers/artisticcolorselector/forms/wdgArtisticColorSelector.ui:32
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:235
#: plugins/filters/colorsfilters/wdg_perchannel.ui:374
#: plugins/impex/video/video_export_options_dialog.ui:128
#: plugins/tools/basictools/wdgmultihandtool.ui:97
#, kde-format
msgid "Reset"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:685
#, kde-format
msgid "Reset Toolbars"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1010
#, kde-format
msgid "&Toolbar:"
msgstr ""
#. i18n("&New"), this);
#. new_toolbar->setPixmap(BarIcon("document-new", KisIconUtils::SizeSmall));
#. new_toolbar->setEnabled(false); // disabled until implemented
#. QPushButton *del_toolbar = new QPushButton(i18n("&Delete"), this);
#. del_toolbar->setPixmap(BarIcon("edit-delete", KisIconUtils::SizeSmall));
#. del_toolbar->setEnabled(false); // disabled until implemented
#. our list of inactive actions
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1025
#, kde-format
msgid "A&vailable actions:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1040
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1059
#, kde-format
msgid "Filter"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1043
#, kde-format
msgid "Curr&ent actions:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1200
#, kde-format
msgctxt "@item:intable Action name in toolbar editor"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1220
#, kde-format
msgid "This element will be replaced with all the elements of an embedded component."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1222
#, kde-format
msgid "<Merge>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1224
#, kde-format
msgid "<Merge %1>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1230
#, kde-format
msgid "This is a dynamic list of actions. You can move it, but if you remove it you will not be able to re-add it."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1231
#, kde-format
msgid "ActionList: %1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1331
#: libs/widgetutils/xmlgui/kedittoolbar.cpp:1352
#, kde-format
msgctxt "@label Action tooltip in toolbar editor, below the action list"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kgesture.cpp:505
#, kde-format
msgctxt "left mouse button"
msgid "left button"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kgesture.cpp:508
#, kde-format
msgctxt "middle mouse button"
msgid "middle button"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kgesture.cpp:511
#, kde-format
msgctxt "right mouse button"
msgid "right button"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kgesture.cpp:514
#, kde-format
msgctxt "a nonexistent value of mouse button"
msgid "invalid button"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kgesture.cpp:528
#, kde-format
msgctxt "a kind of mouse gesture: hold down one mouse button, then press another button"
msgid "Hold %1, then push %2"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutEditWidget.cpp:63
#, kde-format
msgid "Default:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutEditWidget.cpp:64
#: libs/widgetutils/xmlgui/KisShortcutEditWidget.cpp:67
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:602
#, kde-format
msgctxt "No shortcut defined"
msgid "None"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KTreeWidgetSearchLineWidget, searchFilter)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog.ui:16
#, kde-format
msgid "Search interactively for shortcut names (e.g. Copy) or combination of keys (e.g. Ctrl+C) by typing them here."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog.ui:23
#, kde-format
msgid "Here you can see a list of key bindings, i.e. associations between actions (e.g. 'Copy') shown in the left column and keys or combination of keys (e.g. Ctrl+V) shown in the right column."
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog.ui:33
#, kde-format
msgid "Action"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog.ui:38
#, kde-format
msgid "Shortcut"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, list)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog.ui:43
#, kde-format
msgid "Alternate"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsDialog_p.cpp:55
#, kde-format
msgid "The current shortcut scheme is modified. Save before switching to the new one?"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:249
#, kde-format
msgctxt "header for an applications shortcut list"
msgid "Shortcuts for %1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, priLabel)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:267
#: libs/widgetutils/xmlgui/kshortcutwidget.ui:22
#, kde-format
msgid "Main:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, altLabel)
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:268
#: libs/widgetutils/xmlgui/kshortcutwidget.ui:52
#, kde-format
msgid "Alternate:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsEditor_p.cpp:291
#, kde-format
msgid "Description"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/KisShortcutsEditorItem.cpp:41
#, kde-format
msgctxt "@item:intable Action name in shortcuts configuration"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:180
#, kde-format
msgctxt "%1 is the number of conflicts"
msgid "Shortcut Conflict"
msgid_plural "Shortcut Conflicts"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:184
#, kde-format
msgid "Shortcut '%1' for action '%2'\n"
msgstr ""
#. +> trunk5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:189
#, kde-format
msgctxt "%1 is the number of ambiguous shortcut clashes (hidden)"
msgid ""
"The \"%2\" shortcut is ambiguous with the following shortcut.\n"
"Do you want to assign an empty shortcut to this action?\n"
"%3"
msgid_plural ""
"The \"%2\" shortcut is ambiguous with the following shortcuts.\n"
"Do you want to assign an empty shortcut to these actions?\n"
"%3"
msgstr[0] ""
msgstr[1] ""
#. +> stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:189
#, kde-format
msgctxt "%1 is the number of ambigious shortcut clashes (hidden)"
msgid ""
"The \"%2\" shortcut is ambiguous with the following shortcut.\n"
"Do you want to assign an empty shortcut to this action?\n"
"%3"
msgid_plural ""
"The \"%2\" shortcut is ambiguous with the following shortcuts.\n"
"Do you want to assign an empty shortcut to these actions?\n"
"%3"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:199
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:555
#, kde-format
msgid "Reassign"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:208
#, kde-format
msgid "Shortcut conflict"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:209
#, kde-format
msgid ""
"<qt>The '%1' key combination is already used by the <b>%2</b> action.<br>"
"Please select a different one.</qt>"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:239
#, kde-format
msgid ""
"Click on the button, then enter the shortcut like you would in the program.\n"
"Example for Ctrl+A: hold the Ctrl key and press A."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:549
#, kde-format
msgid "Conflict with Standard Application Shortcut"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:550
#, kde-format
msgid ""
"The '%1' key combination is also used for the standard action \"%2\" that some applications use.\n"
"Do you really want to use it as a global shortcut as well?"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:595
#, kde-format
msgctxt "What the user inputs now will be taken as the new shortcut"
msgid "Input"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:648
#, kde-format
msgid "The key you just pressed is not supported by Qt."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kkeysequencewidget.cpp:649
#, kde-format
msgid "Unsupported Key"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kmenumenuhandler_p.cpp:50
#, kde-format
msgid "Add to Toolbar"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kmenumenuhandler_p.cpp:227
#, kde-format
msgid "Configure Shortcut..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:63
#, kde-format
msgid "Shortcut Schemes:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:73
#, kde-format
msgid "New..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:79
#, kde-format
msgid "Save/Load"
msgstr ""
#. i18n("Save as Scheme Defaults"),
#. this, SLOT(saveAsDefaultsForScheme()));
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:86
#, kde-format
msgid "Save Custom Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:88
#, kde-format
msgid "Load Custom Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:90
#, kde-format
msgid "Export Scheme..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:92
#, kde-format
msgid "Import Scheme..."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:108
#, kde-format
msgid "Name for New Scheme"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:109
#, kde-format
msgid "Name for new scheme:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:109
#, kde-format
msgid "New Scheme"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:115
#, kde-format
msgid "A scheme with this name already exists."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:139
#, kde-format
msgid ""
"Do you really want to delete the scheme %1?\n"
"Note that this will not remove any system wide shortcut schemes."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:161
#, kde-format
msgid "Export Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:163
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:182
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:200
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:215
#, kde-format
msgid "Shortcuts (*.shortcuts)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:180
#, kde-format
msgid "Save Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:198
#: libs/widgetutils/xmlgui/kshortcutschemeseditor.cpp:215
#, kde-format
msgid "Import Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:154
#, kde-format
msgid "Switch Application Language"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:159
#, kde-format
msgid "Please choose the language which should be used for this application:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:186
#, kde-format
msgid "Add Fallback Language"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:187
#, kde-format
msgid "Adds one more language which will be used if other translations do not contain a proper translation."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:282
#, kde-format
msgctxt "@title:window:"
msgid "Application Language Changed"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:283
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:302
#, kde-format
msgid "The language for this application has been changed. The change will take effect the next time the application is started."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:303
#, kde-format
msgid "Application Language Changed"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:400
#, kde-format
msgid "Fallback language:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:400
#, kde-format
msgid "Primary language:"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:430
#, kde-format
msgid "This is the main application language which will be used first, before any other languages."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kswitchlanguagedialog_p.cpp:431
#, kde-format
msgid "This is the language which will be used if any previous languages do not contain a proper translation."
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:303
#, kde-format
msgctxt "@title:menu"
msgid "Show Text"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:306
#, kde-format
msgctxt "@title:menu"
msgid "Toolbar Settings"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:308
#, kde-format
msgctxt "Toolbar orientation"
msgid "Orientation"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:310
#, kde-format
msgctxt "toolbar position string"
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:312
#, kde-format
msgctxt "toolbar position string"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:313
#, kde-format
msgctxt "toolbar position string"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:314
#, kde-format
msgctxt "toolbar position string"
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:322
#, kde-format
msgid "Text Position"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:324
#, kde-format
msgid "Icons Only"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:325
#, kde-format
msgid "Text Only"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:326
#, kde-format
msgid "Text Alongside Icons"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:327
#, kde-format
msgid "Text Under Icons"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:350
#: libs/widgetutils/xmlgui/ktoolbar.cpp:371
#, kde-format
msgid "Small (%1x%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:352
#: libs/widgetutils/xmlgui/ktoolbar.cpp:373
#, kde-format
msgid "Medium (%1x%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:354
#: libs/widgetutils/xmlgui/ktoolbar.cpp:375
#, kde-format
msgid "Large (%1x%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:356
#: libs/widgetutils/xmlgui/ktoolbar.cpp:377
#, kde-format
msgid "Huge (%1x%2)"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbar.cpp:399
#, kde-format
msgid "Lock Toolbar Positions"
msgstr ""
#. +> trunk5 stable5
-#: libs/widgetutils/xmlgui/ktoolbar.cpp:1289
+#: libs/widgetutils/xmlgui/ktoolbar.cpp:1290
#, kde-format
msgctxt "@action:intoolbar Text label of toolbar button"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
-#: libs/widgetutils/xmlgui/ktoolbar.cpp:1290
+#: libs/widgetutils/xmlgui/ktoolbar.cpp:1291
#, kde-format
msgctxt "@info:tooltip Tooltip of toolbar button"
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ktoolbarhandler.cpp:105
#, kde-format
msgid "Toolbars Shown"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/kxmlguibuilder.cpp:198
#: libs/widgetutils/xmlgui/kxmlguibuilder.cpp:362
#, kde-format
msgid "No text"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:34
#, kde-format
msgid "&Game"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:84
#, kde-format
msgctxt "@title:menu Game move"
msgid "&Move"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:117
#, kde-format
msgid "&Go"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:138
#, kde-format
msgid "&Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:148
#, kde-format
msgid "&Settings"
msgstr ""
#. +> trunk5 stable5
#: libs/widgetutils/xmlgui/ui_standards.xmlgui:194
#, kde-format
msgid "Main Toolbar"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:25
#, kde-format
msgid "Add:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, loadAssistantButton)
#. +> trunk5 stable5
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:39
#, kde-format
msgid "Open..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, saveAssistantButton)
#. +> trunk5 stable5
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:46
#, kde-format
msgid "Save..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, deleteAllAssistantsButton)
#. +> trunk5 stable5
#: plugins/assistants/Assistants/AssistantsToolOptions.ui:55
#, kde-format
msgid "Delete all"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/ConcentricEllipseAssistant.cc:34
#, kde-format
msgid "Concentric Ellipse assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/ConcentricEllipseAssistant.cc:189
#, kde-format
msgid "Concentric Ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/EllipseAssistant.cc:34
#, kde-format
msgid "Ellipse assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/FisheyePointAssistant.cc:38
#, kde-format
msgid "Fish Eye Point assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/FisheyePointAssistant.cc:221
#, kde-format
msgid "Fish Eye Point"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/InfiniteRulerAssistant.cc:37
#, kde-format
msgid "Infinite Ruler assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/InfiniteRulerAssistant.cc:156
#, kde-format
msgid "Infinite Ruler"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/kis_assistant_tool.cc:593
#, kde-format
msgid "Select an Assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/kis_assistant_tool.cc:685
#, kde-format
msgid "Errors were encountered. Not all assistants were successfully loaded."
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/kis_assistant_tool.cc:731
#, kde-format
msgid "Save Assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/kis_assistant_tool.h:154
#, kde-format
msgid "Assistant Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/ParallelRulerAssistant.cc:37
#, kde-format
msgid "Parallel Ruler assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/ParallelRulerAssistant.cc:163
#, kde-format
msgid "Parallel Ruler"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/PerspectiveAssistant.cc:38
#, kde-format
msgid "Perspective assistant"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, perspectiveTransformButton)
#. i18n: ectx: property (text), widget (QToolButton, perspectiveTransformButton)
#. +> trunk5 stable5
#: plugins/assistants/Assistants/PerspectiveAssistant.cc:457
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:62
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:127
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:130
#, kde-format
msgid "Perspective"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/RulerAssistant.cc:34
#, kde-format
msgid "Ruler assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/RulerAssistant.cc:160
#, kde-format
msgid "Ruler"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/SplineAssistant.cc:37
#, kde-format
msgid "Spline assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/SplineAssistant.cc:218
#, kde-format
msgid "Spline"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/VanishingPointAssistant.cc:37
#, kde-format
msgid "Vanishing Point assistant"
msgstr ""
#. +> trunk5 stable5
#: plugins/assistants/Assistants/VanishingPointAssistant.cc:239
#, kde-format
msgid "Vanishing Point"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/cmyk_f32/CmykF32ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/cmyk_u16/CmykU16ColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/cmyk_u8/CmykU8ColorSpace.cpp:34
#: plugins/filters/colorsfilters/wdg_color_balance.ui:143
#: plugins/filters/colorsfilters/wdg_color_balance.ui:245
#: plugins/filters/colorsfilters/wdg_color_balance.ui:368
#, kde-format
msgid "Cyan"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/cmyk_f32/CmykF32ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/cmyk_u16/CmykU16ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/cmyk_u8/CmykU8ColorSpace.cpp:35
#: plugins/filters/colorsfilters/wdg_color_balance.ui:92
#: plugins/filters/colorsfilters/wdg_color_balance.ui:269
#: plugins/filters/colorsfilters/wdg_color_balance.ui:426
#, kde-format
msgid "Magenta"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/cmyk_f32/CmykF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/cmyk_u16/CmykU16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/cmyk_u8/CmykU8ColorSpace.cpp:36
#: plugins/filters/colorsfilters/wdg_color_balance.ui:119
#: plugins/filters/colorsfilters/wdg_color_balance.ui:279
#: plugins/filters/colorsfilters/wdg_color_balance.ui:378
#, kde-format
msgid "Yellow"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/cmyk_f32/CmykF32ColorSpace.cpp:41
#: plugins/color/lcms2engine/colorspaces/cmyk_u16/CmykU16ColorSpace.cpp:36
#: plugins/color/lcms2engine/colorspaces/cmyk_u8/CmykU8ColorSpace.cpp:37
#, kde-format
msgid "Black"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/gray_f16/GrayF16ColorSpace.cpp:37
#: plugins/color/lcms2engine/colorspaces/gray_f32/GrayF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/gray_u16/GrayU16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/gray_u8/GrayU8ColorSpace.cpp:34
#, kde-format
msgid "Gray"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/xyz_f16/XyzF16ColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/xyz_f32/XyzF32ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/xyz_u16/XyzU16ColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/xyz_u8/XyzU8ColorSpace.cpp:33
#, kde-format
msgid "X"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/xyz_f16/XyzF16ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/xyz_f32/XyzF32ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/xyz_u16/XyzU16ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/xyz_u8/XyzU8ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/ycbcr_f32/YCbCrF32ColorSpace.cpp:38
#: plugins/color/lcms2engine/colorspaces/ycbcr_u16/YCbCrU16ColorSpace.cpp:33
#: plugins/color/lcms2engine/colorspaces/ycbcr_u8/YCbCrU8ColorSpace.cpp:34
#, kde-format
msgid "Y"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/xyz_f16/XyzF16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/xyz_f32/XyzF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/xyz_u16/XyzU16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/xyz_u8/XyzU8ColorSpace.cpp:35
#, kde-format
msgid "Z"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/ycbcr_f32/YCbCrF32ColorSpace.cpp:39
#: plugins/color/lcms2engine/colorspaces/ycbcr_u16/YCbCrU16ColorSpace.cpp:34
#: plugins/color/lcms2engine/colorspaces/ycbcr_u8/YCbCrU8ColorSpace.cpp:35
#, kde-format
msgid "Cb"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/colorspaces/ycbcr_f32/YCbCrF32ColorSpace.cpp:40
#: plugins/color/lcms2engine/colorspaces/ycbcr_u16/YCbCrU16ColorSpace.cpp:35
#: plugins/color/lcms2engine/colorspaces/ycbcr_u8/YCbCrU8ColorSpace.cpp:36
#, kde-format
msgid "Cr"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpDiff.h:35
#, kde-format
msgid "Diff"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpIn.h:36
#, kde-format
msgid "In"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/compositeops/RgbCompositeOpOut.h:36
#, kde-format
msgid "Out"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/IccColorSpaceEngine.cpp:179
#, kde-format
msgid "ICC Engine"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:169
#, kde-format
msgid "RGB8 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:173
#, kde-format
msgid "RGB16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:179
#, kde-format
msgid "RGBF16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:185
#, kde-format
msgid "RGBF32 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:206
#, kde-format
msgid "GRAY/Alpha8 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:210
#, kde-format
msgid "GRAY/Alpha16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:215
#, kde-format
msgid "GRAYF16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:221
#, kde-format
msgid "GRAY/Alpha 32 float Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:231
#, kde-format
msgid "CMYK8 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:235
#, kde-format
msgid "CMYK16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:239
#, kde-format
msgid "CMYK F32 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:257
#, kde-format
msgid "XYZ8 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:261
#, kde-format
msgid "XYZ16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:267
#, kde-format
msgid "XYZF16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:273
#, kde-format
msgid "XYZF32 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:286
#, kde-format
msgid "YCBCR8 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:290
#, kde-format
msgid "YCBCR16 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/color/lcms2engine/LcmsEnginePlugin.cpp:294
#, kde-format
msgid "YCBCRF32 Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_ng_dock.cpp:35
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:54
#, kde-format
msgid "Advanced Color Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:55
#: plugins/dockers/colorslider/kis_color_slider_dock.cpp:42
#, kde-format
msgid "Color Sliders"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:56
#, kde-format
msgid "Color Hotkeys"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:64
#, kde-format
msgid "Change to a Horizontal Layout"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:65
#, kde-format
msgid "Hide Shade Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:66
#, kde-format
msgid "Do Nothing"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:70
#, kde-format
msgid "When Pressing Middle Mouse Button"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:71
#, kde-format
msgid "On Mouse Over"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:72
#, kde-format
msgid "Never"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:79
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:88
#, kde-format
msgid "HSY'"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:92
#, kde-format
msgid "MyPaint"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:93
#, kde-format
msgid "Minimal"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:94
#, kde-format
msgid "Do Not Show"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KisColorSelectorSettings)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:152
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:20
#, kde-format
msgid "Color Selector Settings"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:320
#, kde-format
msgid "Values goes from black to white, or black to the most saturated colour. Saturation, in turn, goes from the most saturated colour to white, grey or black."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:323
#, kde-format
msgid "Lightness goes from black to white, with middle grey being equal to the most saturated colour."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:326
#, kde-format
msgid "Intensity maps to the sum of rgb components"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_color_selector_settings.cpp:329
#, kde-format
msgid "Luma(Y') is weighted by its coefficients which are configurable. Default values are set to 'rec 709'."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_common_colors.cpp:46
#, kde-format
msgid "Create a list of colors from the image"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_shade_selector_line.cpp:204
#, kde-format
msgid "delta h=%1 s=%2 v=%3 shift h=%4 s=%5 v=%6"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_shade_selector_line_editor.cpp:31
#, kde-format
msgid "Delta: "
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/kis_shade_selector_line_editor.cpp:42
#, kde-format
msgid "Shift: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, dockerColorSettingsLabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:37
#, kde-format
msgid "Docker:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_typeshape)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:78
#, kde-format
msgid "Color Selector"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, l_type)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:143
#, kde-format
msgid "Color &Model Type: "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lumaCoefficientGroupbox)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:195
#, kde-format
msgid "Luma Coefficients"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, redlabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:218
#, kde-format
msgid "Red': "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, greenlabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:253
#, kde-format
msgid "Green':"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bluelabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:266
#, kde-format
msgid "Blue':"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, SP_Gamma)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:311
#, kde-format
msgid ""
"<html><head/><body>"
"<p>This sets the gamma value that the linearised HSY Luminosity is crunched with. 1 makes the selector fully linear, 2.2 is a practical default value.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, gamma_label)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:333
#: plugins/dockers/lut/wdglut.ui:266
#, kde-format
msgid "Gamma:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, useDifferentColorSpaceCheckbox)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:355
#, kde-format
msgid "Color Selector Uses Different Color Space than Ima&ge"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_general)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:397
#, kde-format
msgid "Behavior"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:414
#, kde-format
msgid "When Docker Resizes: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:427
#, kde-format
msgid "Show Zoom Selector UI: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:437
#, kde-format
msgid "Zoom Selector Size: "
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hidePopupOnClickCheck)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:485
#, kde-format
msgid "Hide Popup on click."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabShadeSelector)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:511
#, kde-format
msgid "Shade Selector"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, myPaintColorModelLabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:530
#, kde-format
msgid "Color model:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:571
#, kde-format
msgid "Update Selector When:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, shadeSelectorUpdateOnRightClick)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:578
#, kde-format
msgid "Right clicking on shade selector"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, shadeSelectorUpdateOnLeftClick)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:585
#, kde-format
msgid "Left clicking on shade selector"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, shadeSelectorUpdateOnForeground)
#. i18n: ectx: property (toolTip), widget (QCheckBox, shadeSelectorUpdateOnBackground)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:592
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:605
#, kde-format
msgid "this doesn't include a color change by the shade selector"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, shadeSelectorUpdateOnForeground)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:595
#, kde-format
msgid "Foreground color changes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, shadeSelectorUpdateOnBackground)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:608
#, kde-format
msgid "Background color change"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, minimalShadeSelectorGroup)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:628
#, kde-format
msgid "Minimal Shade Selector"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:644
#, kde-format
msgid "Display:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, minimalShadeSelectorAsGradient)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:651
#, kde-format
msgid "&Gradient"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, minimalShadeSelectorAsColorPatches)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:658
#, kde-format
msgid "Colo&r Patches"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:694
#, kde-format
msgid "Line Count: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:717
#, kde-format
msgid "Line Height: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, patchesPerLineLabel)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:743
#, kde-format
msgid "Patches Per Line: "
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_ColorHistory)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:787
#, kde-format
msgid "Color History"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lastUsedColorsShow)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:799
#, kde-format
msgid "Show Color Histor&y"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:810
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1028
#, kde-format
msgid "Patch Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:839
#, kde-format
msgid "Width: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:859
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1077
#, kde-format
msgid "Max Patches: "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:895
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1113
#, kde-format
msgid "Layout"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lastUsedColorsAlignVertical)
#. i18n: ectx: property (text), widget (QRadioButton, commonColorsAlignVertical)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:904
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1125
#, kde-format
msgid "&Vertical"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbl_lastUsedNumCols)
#. i18n: ectx: property (text), widget (QLabel, lbl_commonColorsNumCols)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:914
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1132
#, kde-format
msgid "Colu&mns:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lastUsedColorsAlignHorizontal)
#. i18n: ectx: property (text), widget (QRadioButton, commonColorsAlignHorizontal)
#. +> trunk5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:940
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1158
#, kde-format
msgid "Hori&zontal"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lastUsedColorsAlignHorizontal)
#. i18n: ectx: property (text), widget (QRadioButton, commonColorsAlignHorizontal)
#. +> stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:848
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1063
#, kde-format
msgid "&Horizontal"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lbl_lastUsedNumRows)
#. i18n: ectx: property (text), widget (QLabel, lbl_commonColorsNumRows)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:947
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1168
#, kde-format
msgid "&Rows:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lastUsedColorsAllowScrolling)
#. i18n: ectx: property (text), widget (QCheckBox, commonColorsAllowScrolling)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:978
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1209
#, kde-format
msgid "Allow scrolling"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_colorsFromImage)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1008
#, kde-format
msgid "Colors from Image"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, commonColorsShow)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1017
#, kde-format
msgid "Show Colors from the ima&ge"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, commonColorsAutoUpdate)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1199
#, kde-format
msgid "this can be slow on big images"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, commonColorsAutoUpdate)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1202
#, kde-format
msgid "Update after every stroke"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupHsv)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1242
#, kde-format
msgid "HSV Sliders to Show"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupHsl)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1272
#, kde-format
msgid "HSL Sliders to Show"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupHsi)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1302
#, kde-format
msgid "HSI Sliders to Show"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupHsy)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1332
#, kde-format
msgid "HSY' Sliders to Show"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, csl_hsyY)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1352
#: plugins/dockers/colorslider/kis_color_slider_input.cpp:78
#, kde-format
msgid "Luma"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, hsy)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1368
#, kde-format
msgid "Lightness, Saturation and Hue hotkey steps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1374
#, kde-format
msgid "Lightness: "
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, sb_lightness)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, sb_saturation)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, sb_hue)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, sb_rg)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, sb_by)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1381
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1408
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1435
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1458
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1485
#, kde-format
msgid " steps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1401
#, kde-format
msgid "Saturation: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1428
#, kde-format
msgid "Hue: "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, horizontalGroupBox_2)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1445
#, kde-format
msgid "YUV Redder/Greener/Bluer/Yellower hotkey steps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1451
#, kde-format
msgid "Redder/Greener: "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5 stable5
#: plugins/dockers/advancedcolorselector/wdg_color_selector_settings.ui:1478
#, kde-format
msgid "Bluer/Yellower: "
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:61
#, kde-format
msgid "Animation"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:80
#, kde-format
msgid "Previous Key Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:84
#, kde-format
msgid "Next Key Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:88
#, kde-format
msgid "First Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:92
#, kde-format
msgid "Last Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:96
#, kde-format
msgid "Play / Stop"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:301
msgctxt "(qtundo-format)"
msgid "Add transform keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:544
#, kde-format
msgid "Effective FPS:\t%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:545
#, kde-format
msgid "Real FPS:\t%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/animation_docker.cpp:546
#, kde-format
msgid "Frames dropped:\t%1%"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curve_docker.cpp:60
#, kde-format
msgid "Animation curves"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curves_model.cpp:204
msgctxt "(qtundo-format)"
msgid "Adjust keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curves_model.cpp:207
msgctxt "(qtundo-format)"
msgid "Insert keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curves_model.cpp:223
#: plugins/dockers/animation/kis_animation_curves_view.cpp:512
msgctxt "(qtundo-format)"
msgid "Adjust tangent"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curves_model.cpp:232
#: plugins/dockers/animation/kis_animation_curves_model.cpp:245
#: plugins/dockers/animation/kis_animation_curves_view.cpp:642
#: plugins/dockers/animation/kis_animation_curves_view.cpp:651
#: plugins/dockers/animation/kis_animation_curves_view.cpp:660
#: plugins/dockers/animation/kis_animation_curves_view.cpp:669
#: plugins/dockers/animation/kis_animation_curves_view.cpp:697
msgctxt "(qtundo-format)"
msgid "Set interpolation mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_curves_model.cpp:285
#, kde-format
msgctxt "(qtundo-format)"
msgid "Adjust Keyframe"
msgid_plural "Adjust %1 Keyframes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:36
#, kde-format
msgid "New Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:37
#, kde-format
msgid "Copy Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:38
#, kde-format
msgid "Remove Frame"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:39
#, kde-format
msgid "Remove Frames"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:40
#, kde-format
msgid "Auto Frame Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:41
#, kde-format
msgid "Drop Frames"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:42
#, kde-format
msgid "Show in Timeline"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:44
#, kde-format
msgid "New Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:45
#, kde-format
msgid "Add Existing Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:46
#, kde-format
msgid "Remove Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:48
#, kde-format
msgid "Add opacity keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:49
#, kde-format
msgid "Add transform keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:50
#, kde-format
msgid "Remove opacity keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:51
#, kde-format
msgid "Remove transform keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:57
#: plugins/dockers/animation/kis_animation_utils.cpp:184
#, kde-format
msgctxt "(qtundo-format)"
msgid "Copy Keyframe"
msgid_plural "Copy %1 Keyframes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:58
msgctxt "(qtundo-format)"
msgid "Add Keyframe"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:111
msgctxt "(qtundo-format)"
msgid "Remove Keyframe"
msgid_plural "Remove Keyframes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: plugins/dockers/animation/kis_animation_utils.cpp:181
#, kde-format
msgctxt "(qtundo-format)"
msgid "Move Keyframe"
msgid_plural "Move %1 Keyframes"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.cpp:53
#, kde-format
msgid "Tint: "
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.cpp:56
#, kde-format
msgid "Tint color for past frames"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.cpp:57
#, kde-format
msgid "Tint color for future frames"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, OnionSkinsDocker)
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.ui:14
#, kde-format
msgid "Onion skin options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisColorFilterCombo, cmbColorLabelFilter)
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.ui:48
#, kde-format
msgid "Filter by frame color"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, zoomIn)
#. i18n: ectx: property (text), widget (QToolButton, btnShowHide)
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.ui:71
#: plugins/extensions/histogram/wdghistogram.ui:136
#, kde-format
msgid "+"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPrevColor)
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.ui:108
#, kde-format
msgid "Previous frames"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblNextColor)
#. +> trunk5 stable5
#: plugins/dockers/animation/onion_skins_docker.ui:128
#, kde-format
msgid "Next frames"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_docker.cpp:58
#, kde-format
msgid "Timeline"
msgstr ""
#. +> trunk5
#: plugins/dockers/animation/timeline_frames_view.cpp:206
#, kde-format
msgctxt "@item:inmenu"
msgid "Audio playback is not supported in this build!"
msgstr ""
#. +> stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:213
#, kde-format
msgctxt "@item:inmenu"
msgid "Audio playback is not suported in this build!"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:213
#, kde-format
msgctxt "@item:inmenu"
msgid "Mute"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:218
#, kde-format
msgctxt "@item:inmenu"
msgid "Remove audio"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:225
#, kde-format
msgctxt "@item:inmenu, slider"
msgid "Volume:"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:268
#, kde-format
msgctxt "@info:tooltip"
msgid "Zoom Timeline. Hold down and drag left or right."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:449
#, kde-format
msgctxt "@item:inmenu"
msgid "Open audio..."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_frames_view.cpp:452
#, kde-format
msgctxt "@item:inmenu"
msgid "Change audio (%1)..."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_ruler_header.cpp:391
#, kde-format
msgid "Insert %1 left"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_ruler_header.cpp:392
#, kde-format
msgid "Insert %1 right"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_ruler_header.cpp:393
#, kde-format
msgid "Clear %1 columns"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/animation/timeline_ruler_header.cpp:394
#, kde-format
msgid "Remove %1 columns"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation.ui:77
#, kde-format
msgid "Start:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation.ui:97
#, kde-format
msgid "End:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPlaySpeed)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation.ui:501
#, kde-format
msgid "Play Speed:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFramerate)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation.ui:524
#, kde-format
msgid "Frame Rate:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisZoomButton, btnHorizontalZoom)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:19
#, kde-format
msgid "Zoom time"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisZoomButton, btnVerticalZoom)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:29
#, kde-format
msgid "Zoom values"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnZoomToFit)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:39
#, kde-format
msgid "Zoom to fit"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnAddKeyframe)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:62
#, kde-format
msgid "Add new keyframe"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnRemoveKeyframes)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:72
#, kde-format
msgid "Remove selected keyframes"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnConstantInterpolation)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:95
#, kde-format
msgid "Hold value"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnLinearInterpolation)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:105
#, kde-format
msgid "Linear interpolation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnBezierInterpolation)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:115
#, kde-format
msgid "Custom interpolation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnSharp)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:141
#, kde-format
msgid "Sharp node"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnSmooth)
#. +> trunk5 stable5
#: plugins/dockers/animation/wdg_animation_curves.ui:151
#, kde-format
msgid "Smooth node"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/arrangedocker/arrangedocker_dock.cpp:30
#, kde-format
msgid "Arrange"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/artisticcolorselector_dock.cpp:51
#, kde-format
msgid "Artistic Color Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/artisticcolorselector_dock.cpp:59
#, kde-format
msgid "Reset All Rings"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/artisticcolorselector_dock.cpp:60
#, kde-format
msgid "Reset Selected Ring"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/artisticcolorselector_dock.cpp:61
#, kde-format
msgid "Reset Light"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/artisticcolorselector_dock.cpp:62
#, kde-format
msgid "Reset Everything"
msgstr ""
#. i18n: ectx: property (text), widget (KisPopupButton, bnColorPrefs)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgArtisticColorSelector.ui:25
#, kde-format
msgid "Pref."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnAbsLight)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgArtisticColorSelector.ui:39
#, kde-format
msgid "Abs."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, huePiecesLabel)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:78
#, kde-format
msgid "Hue Pieces:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, saturationRingsLabel)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:98
#, kde-format
msgid "Saturation Rings:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lightPiecesLabel)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:118
#, kde-format
msgid "Light Pieces"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnInverseSat)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:142
#, kde-format
msgid "Invert Saturation"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnDefault)
#. +> trunk5 stable5
#: plugins/dockers/artisticcolorselector/forms/wdgColorPreferencesPopup.ui:155
#, kde-format
msgid "Reset to Default"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/channeldocker/channeldocker_dock.cpp:40
#, kde-format
msgid "Channels"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:52
#, kde-format
msgid "Compositions"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:63
#, kde-format
msgid "Delete Composition"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:64
#, kde-format
msgid "New Composition"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:65
#, kde-format
msgid "Export Composition"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:80
#, kde-format
msgid "Insert Name"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:187
#, kde-format
msgid "Select a Directory"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:294
#, kde-format
msgid "Rename Composition"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositiondocker_dock.cpp:295
#, kde-format
msgid "New Name:"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/compositiondocker/compositionmodel.cpp:76
#, kde-format
msgid "Composition"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:151
#, kde-format
msgid "Layers"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:200
#, kde-format
msgid "&Select Opaque"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:227
#, kde-format
msgid "&Show Global Selection Mask"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:230
#, kde-format
msgctxt "@info:tooltip"
msgid "Shows global selection as a usual selection mask in <b>Layers</b> docker"
msgstr ""
#. +> trunk5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:588
#, kde-format
msgid "&Toggle Locks && Visibility"
msgstr ""
#. +> stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:599
#, kde-format
msgid "&Locks && visibility"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/kis_layer_box.cpp:595
#, kde-format
msgid "&Add"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KisCompositeOpComboBox, cmbComposite)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:55
#, kde-format
msgid "Select the blending mode for the layer."
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, doubleOpacity)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:88
#, kde-format
msgid "Layer Opacity"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnDuplicate)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:150
#, kde-format
msgid "Duplicate layer or mask"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnLower)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:175
#, kde-format
msgid "Move layer or mask down"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnRaise)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:200
#, kde-format
msgid "Move layer or mask up"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnProperties)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:225
#, kde-format
msgid "View or change the layer properties"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnDelete)
#. +> trunk5 stable5
#: plugins/dockers/defaultdockers/wdglayerbox.ui:266
#, kde-format
msgid "Delete the layer or mask"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/digitalmixer/digitalmixer_dock.cc:45
#, kde-format
msgid "Digital Colors Mixer"
msgstr ""
#. +> trunk5
#: plugins/dockers/griddocker/grid_config_widget.cpp:55
#, kde-format
msgid "Isometric"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowGrid)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:56
#, kde-format
msgid "Show grid"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSnapToGrid)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:69
#, kde-format
msgid "Snap to grid"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cellSpacingLabel)
#. +> trunk5
#: plugins/dockers/griddocker/grid_config_widget.ui:154
#, kde-format
msgid "Cell Spacing:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, rightAngleLabel)
#. +> trunk5
#: plugins/dockers/griddocker/grid_config_widget.ui:189
#, kde-format
msgid "Right Angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, leftAngleLabel)
#. +> trunk5
#: plugins/dockers/griddocker/grid_config_widget.ui:202
#, kde-format
msgid "Left Angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblXSpacing)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:219
#, kde-format
msgid "X spacing:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblYSpacing)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:251
#, kde-format
msgid "Y spacing:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSubdivision)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:274
#, kde-format
msgid "Subdivision:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSubdivisionStyle)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:343
#, kde-format
msgid "Div Style:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, selectSubdivisionStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectMainStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectGuidesStyle)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:362
#: plugins/dockers/griddocker/grid_config_widget.ui:403
#: plugins/dockers/griddocker/grid_config_widget.ui:631
#, kde-format
msgid "Dashed"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, selectSubdivisionStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectMainStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, selectGuidesStyle)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:367
#: plugins/dockers/griddocker/grid_config_widget.ui:408
#: plugins/dockers/griddocker/grid_config_widget.ui:636
#, kde-format
msgid "Dots"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblMainStyle)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:422
#, kde-format
msgid "Main Style:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkOffset)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:452
#, kde-format
msgid "Grid Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowGuides)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:574
#, kde-format
msgid "Show guides"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSnapToGuides)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:581
#, kde-format
msgid "Snap to guides"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLockGuides)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:588
#, kde-format
msgid "Lock guides"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowRulers)
#. +> trunk5
#: plugins/dockers/griddocker/grid_config_widget.ui:595
#, kde-format
msgid "Show rulers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblGuidesStyle)
#. +> trunk5 stable5
#: plugins/dockers/griddocker/grid_config_widget.ui:612
#, kde-format
msgid "Guides:"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/griddocker/griddocker_dock.cpp:43
#, kde-format
msgid "Grid and Guides"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/histogram/histogramdocker_dock.cpp:33
#: plugins/extensions/histogram/dlg_histogram.cc:34
#: plugins/extensions/histogram/dlg_histogram.cc:42
#, kde-format
msgid "Histogram"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:37
#, kde-format
msgid "Enable Cumulative Undo"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:43
#, kde-format
msgid "Start merging time"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:45
#, kde-format
msgctxt "@info:tooltip"
msgid "The amount of time after a merged stroke before merging again"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:53
#, kde-format
msgid "Group time"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:55
#, kde-format
msgctxt "@info:tooltip"
msgid "The amount of time every stroke should be apart from its previous stroke to be classified in one group"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:63
#, kde-format
msgid "Split Strokes"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/DlgConfigureHistoryDock.cpp:65
#, kde-format
msgctxt "@info:tooltip"
msgid "The number of last strokes which Krita should store separately"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/historydocker/HistoryDock.cpp:51
#, kde-format
msgid "Undo History"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, imgBrowserTab)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:42
#, kde-format
msgid "Browse"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, bnBack)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:70
#, kde-format
msgid "Back"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, bnHome)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:90
#, kde-format
msgid "Home"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, imgViewTab)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:164
#, kde-format
msgid "Images"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, bnImgPrev)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:201
#, kde-format
msgid "Prev"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, bnImgNext)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgimagedocker.ui:214
#, kde-format
msgid "Next"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoomFit)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:19
#, kde-format
msgid "Fit"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoomAdjust)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:35
#, kde-format
msgctxt "Zoom mode to fit by only one dimension - width or height"
msgid "Adjust"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoom75)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:61
#, kde-format, no-c-format
msgid "75%"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoom50)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:74
#, kde-format, no-c-format
msgid "50%"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnZoom25)
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/forms/wdgImageViewPopup.ui:87
#, kde-format, no-c-format
msgid "25%"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/imagedocker/imagedocker_dock.cpp:183
#, kde-format
msgid "Reference Images"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/black_white_point_chooser.cpp:55
#, kde-format
msgid "Black:"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/black_white_point_chooser.cpp:56
#, kde-format
msgid "White:"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:91
#, kde-format
msgid "LUT Management"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:112
#, kde-format
msgid "Select custom configuration file."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:117
#: plugins/dockers/lut/lutdocker_dock.cpp:603
#, kde-format
msgid "Select LUT file"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:130
#, kde-format
msgid "Select the exposure (stops) for HDR images."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:143
#, kde-format
msgid "Select the amount of gamma modification for display. This does not affect the pixels of your image."
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:273
#, kde-format
msgctxt "floating message about exposure"
msgid "Exposure: %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:284
#, kde-format
msgctxt "floating message about gamma"
msgid "Gamma: %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:441
#, kde-format
msgid "Select OpenColorIO Configuration"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:518
#, kde-format
msgid "Luminance"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:519
#, kde-format
msgid "All Channels"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/lut/lutdocker_dock.cpp:573
#, kde-format
msgctxt "Item to indicate no look transform being selected"
msgid "None"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_chkUseOcio)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:32
#, kde-format
msgid "Use OpenColorIO"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_lblDisplayDevice)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:89
#, kde-format
msgid "Display Device:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:102
#, kde-format
msgid "Components:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:135
#: plugins/filters/dodgeburn/DodgeBurnConfigurationBaseWidget.ui:55
#, kde-format
msgid "Exposure:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_lblInputColorSpace)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:148
#, kde-format
msgid "Input ColorSpace:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblConfig)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:171
#, kde-format
msgid "Configuration:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_lblLut)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:205
#, kde-format
msgid "LUT file:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, m_lblView)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:279
#: plugins/extensions/histogram/wdghistogram.ui:120
#, kde-format
msgid "View:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:292
#, kde-format
msgid "Color Engine:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_colorManagement)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:306
#, kde-format
msgid "Internal"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_colorManagement)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:311
#, kde-format
msgid "OCIO"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_colorManagement)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:316
#, kde-format
msgid "OCIO (environment)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_lblLook)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:324
#, kde-format
msgid "Look:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, m_btnConvertCurrentColor)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:373
#, kde-format
msgid "Lock current color to have the same visual representation when changing OCIO configuration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, m_btmShowBWConfiguration)
#. +> trunk5 stable5
#: plugins/dockers/lut/wdglut.ui:392
#, kde-format
msgid "Configure black and white points of the view"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/overview/overviewdocker_dock.cpp:35
#, kde-format
msgid "Overview"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/palettedocker/palettedocker_dock.cpp:100
#, kde-format
msgid "Choose palette"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnAdd)
#. +> trunk5 stable5
#: plugins/dockers/palettedocker/wdgpalettedock.ui:44
#, kde-format
msgid "Add foreground color"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnRemove)
#. +> trunk5 stable5
#: plugins/dockers/palettedocker/wdgpalettedock.ui:63
#, kde-format
msgid "Delete color"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnAddDialog)
#. +> trunk5 stable5
#: plugins/dockers/palettedocker/wdgpalettedock.ui:116
#, kde-format
msgid "Add color"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/presetdocker/presetdocker_dock.cpp:37
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:269
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:151
#, kde-format
msgid "Brush Presets"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/presethistory/presethistory_dock.cpp:43
#, kde-format
msgid "Brush Preset History"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/smallcolorselector/smallcolorselector_dock.cc:44
#, kde-format
msgid "Small Color Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/specificcolorselector/kis_specific_color_selector_widget.cc:62
#, kde-format
msgid "Show Colorspace Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/specificcolorselector/kis_specific_color_selector_widget.cc:65
#, kde-format
msgid "Use Percentage"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/specificcolorselector/specificcolorselector_dock.cc:33
#, kde-format
msgid "Specific Color Selector"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/tasksetdocker/tasksetdocker_dock.cpp:87
#, kde-format
msgid "Task Sets"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/tasksetdocker/tasksetdocker_dock.cpp:188
#, kde-format
msgid "Taskset Name"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/tasksetdocker/tasksetdocker_dock.cpp:210
#, kde-format
msgid "Taskset"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/tasksetdocker/tasksetdocker_dock.cpp:221
#, kde-format
msgid "Taskset %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/dockers/tasksetdocker/tasksetmodel.cpp:56
#, kde-format
msgid "Task"
msgstr ""
#. +> trunk5
#: plugins/dockers/throttle/ThrottlePlugin.h:34
#, kde-format
msgid "CPU Throttle"
msgstr ""
#. +> trunk5
#: plugins/dockers/touchdocker/TouchDockerDock.cpp:78
#, kde-format
msgid "Touch Docker"
msgstr ""
#. +> stable5
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:73
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:158
#, kde-format
msgid "Export frames"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:75
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:60
#, kde-format
msgid "Render Animation"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:159
#, kde-format
msgid ""
"Could not render animation:\n"
"%1"
msgstr ""
#. +> trunk5
#: plugins/extensions/animationrenderer/AnimationRenderer.cpp:170
#, kde-format
msgid "Failed to render animation frames!"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:469
#, kde-format
msgid "Please enter a file name to render to."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:473
#, kde-format
msgid "The location of FFmpeg is unknown. Please install FFmpeg first: Krita cannot render animations without FFmpeg. (<a href=\"https://www.ffmpeg.org\">www.ffmpeg.org</a>)"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/DlgAnimationRenderer.cpp:479
#, kde-format
msgid "The location of FFmpeg is invalid. Please select the correct location of the FFmpeg executable on your system."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgAnimaterionRenderer)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:20
#, kde-format
msgid "AnimationRenderer Image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:34
#, kde-format
msgid "Export:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, shouldExportOnlyImageSequence)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:41
#, kde-format
msgid "Image Se&quence"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:20
#, kde-format
msgid "Image Sequence"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, shouldExportOnlyVideo)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:48
#, kde-format
msgid "&Video"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, shouldExportAll)
#. i18n: ectx: property (text), widget (QRadioButton, radioBoth)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:55
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:44
#, kde-format
msgid "Both"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:89
#, kde-format
msgid "First frame:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fpsLabel)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:102
#, kde-format
msgid "FPS:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:132
#, kde-format
msgid "Last frame:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:136
#, kde-format
msgid "Naming sequence starts with:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, videoOptionsGroup)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:207
#, kde-format
msgid "Video Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:215
#, kde-format
msgid "Render as:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpRender)
#. +> stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:180
#, kde-format
msgid "Render"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnRenderOptions)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:233
#, kde-format
msgid "Select the ffmpeg render options."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:245
#, kde-format
msgid "Video Location:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDeleteSequence)
#. +> stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:246
#, kde-format
msgid "Delete Sequence After Rendering"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:265
#, kde-format
msgid "FF&Mpeg: "
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkIncludeAudio)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:284
#, kde-format
msgid "Include Audio"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, imageSequenceOptionsGroup)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:309
#, kde-format
msgid "Image Sequence Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:323
#, kde-format
msgid "Base name:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cmbMimetype)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:341
#, kde-format
msgid "Select the file format for the image sequence. If you want to render to video or animated gif, you can only select PNG"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnExportOptions)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:348
#, kde-format
msgid "Select the frame export options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:370
#, kde-format
msgid "Fi&le format:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:396
#, kde-format
msgid "Image location:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:77
#, kde-format
msgid "Render location:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, txtBasename)
#. +> trunk5 stable5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:406
#, kde-format
msgid "frame"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5
#: plugins/extensions/animationrenderer/wdg_animationrenderer.ui:413
#, kde-format
msgid "Start numbering at:"
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor.cpp:110
#, kde-format
msgid "Failed to create an action."
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor.cpp:144
#, kde-format
msgid "No action is selected."
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor.cpp:147
#, kde-format
msgid "No editor for current action."
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor_dialog.cpp:30
#, kde-format
msgid "Save macro"
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/kis_actions_editor_dialog.cpp:31
#, kde-format
msgid "Discard changes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:24
#, kde-format
msgid "Actions:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnAdd)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:54
#, kde-format
msgid "Create a new action"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnDuplicate)
#. i18n: ectx: property (statusTip), widget (QToolButton, bnDuplicate)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:82
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:85
#, kde-format
msgid "Duplicate action"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QToolButton, bnDuplicate)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:88
#, kde-format
msgid "Duplicate the currently selected action"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnRaise)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:113
#, kde-format
msgid "Move an action up"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnLower)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:138
#, kde-format
msgid "Move an action down"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bnDelete)
#. +> trunk5
#: plugins/extensions/bigbrother/actionseditor/wdgactionseditor.ui:176
#, kde-format
msgid "Delete the current action"
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/bigbrother.cc:178
#, kde-format
msgid "Open Macro"
msgstr ""
#. +> trunk5
#: plugins/extensions/bigbrother/bigbrother.cc:217
#, kde-format
msgid "Save Macro"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/buginfo/dlg_buginfo.cpp:35
#, kde-format
msgid "Please paste this information in your bug report"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/buginfo/dlg_buginfo.cpp:38
#, kde-format
msgid "Copy to clipboard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/buginfo/wdg_buginfo.ui:17
#, kde-format
msgid "Please add this information to a bug report:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/clonesarray.xmlgui:5
#: plugins/extensions/colorspaceconversion/colorspaceconversion.xmlgui:7
#: plugins/extensions/metadataeditor/metadataeditor.xmlgui:4
#: plugins/extensions/offsetimage/offsetimage.xmlgui:10
#: plugins/extensions/rotateimage/rotateimage.xmlgui:17
#: plugins/extensions/shearimage/shearimage.xmlgui:7
#, kde-format
msgid "La&yer"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/dlg_clonesarray.cpp:43
#, kde-format
msgid "Create Clones Array"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/dlg_clonesarray.cpp:226
#, kde-format
msgid "+ Array of %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/dlg_clonesarray.cpp:233
#, kde-format
msgid "- Array of %1"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgRotateImage)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgClonesArray)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgOffsetImage)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:14
#: plugins/extensions/offsetimage/wdg_offsetimage.ui:14
#: plugins/extensions/rotateimage/dlg_rotateimage.cc:33
#: plugins/extensions/rotateimage/rotateimage.cc:91
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:14
#, kde-format
msgid "Rotate Image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:28
#, kde-format
msgid "- Elements"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:44
#, kde-format
msgid "+ Elements"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:60
#, kde-format
msgid "X offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:76
#, kde-format
msgid "Y offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:92
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:44
#, kde-format
msgid "Distance"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:215
#, kde-format
msgid "Rows:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, columnPreference)
#. +> trunk5 stable5
#: plugins/extensions/clonesarray/wdg_clonesarray.ui:314
#, kde-format
msgid "Column Preference"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorrange/colorrange.cc:79
msgctxt "(qtundo-format)"
msgid "Select Opaque"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorrange/colorrange.xmlgui:4
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.cpp:37
#, kde-format
msgid "Select"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgColorRange)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/dlg_colorrange.cc:60
#: plugins/extensions/colorrange/dlg_colorrange.cc:70
#: plugins/extensions/colorrange/wdg_colorrange.ui:14
#, kde-format
msgid "Color Range"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorrange/dlg_colorrange.cc:255
msgctxt "(qtundo-format)"
msgid "Color Range Selection"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:23
#, kde-format
msgid "Reds"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:28
#, kde-format
msgid "Yellows"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:33
#, kde-format
msgid "Greens"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:38
#, kde-format
msgid "Cyans"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:43
#, kde-format
msgid "Blues"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:48
#, kde-format
msgid "Magentas"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. i18n: ectx: property (text), widget (QRadioButton, radioButtonHighlights)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:53
#: plugins/filters/colorsfilters/wdg_color_balance.ui:311
#: plugins/filters/dodgeburn/DodgeBurnConfigurationBaseWidget.ui:43
#, kde-format
msgid "Highlights"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QRadioButton, radioButtonMidtones)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:58
#: plugins/filters/colorsfilters/wdg_color_balance.ui:181
#: plugins/filters/dodgeburn/DodgeBurnConfigurationBaseWidget.ui:33
#, kde-format
msgid "Midtones"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelect)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QRadioButton, radioButtonShadows)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:63
#: plugins/filters/colorsfilters/wdg_color_balance.ui:51
#: plugins/filters/dodgeburn/DodgeBurnConfigurationBaseWidget.ui:23
#, kde-format
msgid "Shadows"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkInvert)
#. i18n: ectx: property (text), widget (QPushButton, butinvert)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:71
#: plugins/filters/example/example.cpp:52
#: plugins/filters/levelfilter/wdg_level.ui:294
#, kde-format
msgid "&Invert"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:78
#, kde-format
msgid "Fuzziness"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioAdd)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:94
#, kde-format
msgid "&Add to current selection"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioSubtract)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:104
#, kde-format
msgid "Subtract fro&m current selection"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnDeselect)
#. +> trunk5 stable5
#: plugins/extensions/colorrange/wdg_colorrange.ui:137
#, kde-format
msgid "&Deselect"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/colorspaceconversion.cc:79
#, kde-format
msgid "Convert All Layers From "
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/colorspaceconversion.cc:108
#, kde-format
msgid "Convert Current Layer From"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/colorspaceconversion.cc:117
msgctxt "(qtundo-format)"
msgid "Convert Layer Type"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgConvertColorSpace)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:14
#, kde-format
msgid "Colorspace Conversion"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpIntent)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:26
#, kde-format
msgid "&Rendering Intent"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioPerceptual)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:32
#, kde-format
msgid "For images"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioPerceptual)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:38
#, kde-format
msgid ""
"Hue hopefully maintained (but not required),\n"
"lightness and saturation sacrificed to maintain\n"
"the perceived color. White point changed to\n"
"result in neutral grays. Intended for images."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioRelativeColorimetric)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:60
#, kde-format
msgid ""
"Within and outside gamut; same as Absolute\n"
"Colorimetric. White point changed to result in\n"
"neutral grays.\n"
"\n"
"If adequate table is present in profile,\n"
"then, it is used. Else reverts to perceptual\n"
"intent."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioSaturation)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:73
#, kde-format
msgid "Best for graphs and charts"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioSaturation)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:84
#, kde-format
msgid ""
"Hue and saturation maintained with lightness\n"
"sacrificed to maintain saturation. White point\n"
"changed to result in neutral grays. Intended for\n"
"business graphics (make it colorful charts,\n"
"graphs, overheads, ...)\n"
"\n"
"If adequate table is present in profile,\n"
"then, it is used. Else reverts to perceptual\n"
"intent."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioAbsoluteColorimetric)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:97
#, kde-format
msgid "Best for spot colours"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioAbsoluteColorimetric)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:105
#, kde-format
msgid ""
"Within the destination device gamut; hue,\n"
"lightness and saturation are maintained. Outside\n"
"the gamut; hue and lightness are maintained,\n"
"saturation is sacrificed. White point for source\n"
"and destination; unchanged. Intended for spot\n"
"colors (Pantone, TruMatch, logo colors, ...)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkBlackpointCompensation)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:121
#, kde-format
msgid "Use Blackpoint &Compensation"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkAllowLCMSOptimization)
#. +> trunk5 stable5
#: plugins/extensions/colorspaceconversion/wdgconvertcolorspace.ui:128
#, kde-format
msgid "Krita tries to automatically check or uncheck this based on the information it can get from the profile you are converting from and the profile you are converting to."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpType)
#. +> trunk5 stable5
#: plugins/extensions/histogram/wdghistogram.ui:17
#, kde-format
msgid "Histogram Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblChannel)
#. +> trunk5 stable5
#: plugins/extensions/histogram/wdghistogram.ui:25
#, kde-format
msgid "&Channel:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLinear)
#. +> trunk5 stable5
#: plugins/extensions/histogram/wdghistogram.ui:45
#, kde-format
msgid "&Linear"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLog)
#. +> trunk5 stable5
#: plugins/extensions/histogram/wdghistogram.ui:87
#, kde-format
msgid "&Logarithmic"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, zoomOut)
#. +> trunk5 stable5
#: plugins/extensions/histogram/wdghistogram.ui:149
#, kde-format
msgid "-"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_canvassize.cc:37
#: plugins/extensions/imagesize/dlg_imagesize.cc:44
#: plugins/extensions/imagesize/dlg_layersize.cc:44
#, kde-format
msgid "Percent (%)"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_canvassize.cc:57
#, kde-format
msgid "Resize Canvas"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_imagesize.cc:45
#, kde-format
msgid "Pixels/Inch"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_imagesize.cc:46
#, kde-format
msgid "Pixels/Centimeter"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgImageSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_imagesize.cc:58
#: plugins/extensions/imagesize/wdg_imagesize.ui:14
#, kde-format
msgid "Scale To New Size"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgLayerSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/dlg_layersize.cc:57
#: plugins/extensions/imagesize/wdg_layersize.ui:14
#, kde-format
msgid "Layer Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/imagesize.cc:120
#, kde-format
msgid "Resize Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesize/imagesize.cc:152
#, kde-format
msgid "Scale Selection"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeBox)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/imagesize.xmlgui:4
#: plugins/extensions/imagesplit/imagesplit.xmlgui:4
#: plugins/extensions/separate_channels/imageseparate.xmlgui:4
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:257
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:86
#: plugins/tools/karbonplugins/filtereffects/ImageEffect.cpp:36
#: plugins/tools/karbonplugins/filtereffects/ImageEffectFactory.cpp:26
#: plugins/tools/tool_crop/wdg_tool_crop.ui:398
#, kde-format
msgid "Image"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgCanvasSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:14
#, kde-format
msgid "Canvas Size"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: ectx: property (title), widget (QGroupBox, groupNewSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:20
#: plugins/extensions/imagesize/wdg_layersize.ui:20
#, kde-format
msgid "New Size"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, constrainProportionsCkb)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:122
#: plugins/extensions/imagesize/wdg_imagesize.ui:332
#: plugins/extensions/imagesize/wdg_layersize.ui:135
#, kde-format
msgid "Constrain aspect ratio"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, constrainProportionsCkb)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:125
#: plugins/extensions/imagesize/wdg_imagesize.ui:335
#: plugins/extensions/imagesize/wdg_layersize.ui:138
#, kde-format
msgid "Constrain proportions"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, grpAngle)
#. i18n: ectx: property (text), widget (QToolButton, liquifyOffset)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:138
#: plugins/extensions/offsetimage/wdg_offsetimage.ui:20
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:127
#: plugins/tools/karbonplugins/filtereffects/OffsetEffect.cpp:30
#: plugins/tools/karbonplugins/filtereffects/OffsetEffectFactory.cpp:26
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1806
#, kde-format
msgid "Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblXOff)
#. i18n: ectx: property (text), widget (QLabel, xLabel)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:179
#: plugins/extensions/offsetimage/wdg_offsetimage.ui:40
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:31
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:522
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:56
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:83
#, kde-format
msgid "X:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblAnchor)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:221
#, kde-format
msgid "Anchor:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblYOff)
#. i18n: ectx: property (text), widget (QLabel, yLabel)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_canvassize.ui:231
#: plugins/extensions/offsetimage/wdg_offsetimage.ui:67
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:95
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:528
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:66
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:93
#, kde-format
msgid "Y:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupImageSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:20
#, kde-format
msgid "Pixel Dimensions"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPixelFilter)
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:77
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:312
#, kde-format
msgid "&Filter:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupPrintSize)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:154
#, kde-format
msgid "Print Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPrintHeight)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:163
#, kde-format
msgid "Hei&ght:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPrintWidth)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:198
#, kde-format
msgid "Wid&th:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, adjustPrintSizeSeparatelyCkb)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_imagesize.ui:345
#, kde-format
msgid "Adjust print size separately"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lblFilter)
#. +> trunk5 stable5
#: plugins/extensions/imagesize/wdg_layersize.ui:115
#: plugins/paintops/libpaintop/forms/wdgfilteroption.ui:24
#, kde-format
msgid "Filter:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/dlg_imagesplit.cpp:37
#, kde-format
msgid "Image Split"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/imagesplit.cpp:82
#, kde-format
msgid ""
"Could not save\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/imagesplit.cpp:140
#: plugins/extensions/imagesplit/imagesplit.cpp:181
#, kde-format
msgid "Save Image on Split"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblHorizontalSplitLines)
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:24
#, kde-format
msgid "Horizontal Lines"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblVerticalSplitLines)
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:37
#, kde-format
msgid "Vertical Lines"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAutoSave)
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:57
#, kde-format
msgid "Autosave on Split"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSuffix)
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:66
#, kde-format
msgid "Prefix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFileType)
#. +> trunk5 stable5
#: plugins/extensions/imagesplit/wdg_imagesplit.ui:86
#, kde-format
msgid "File Type"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/layergroupswitcher/layergroupswitcher.cpp:43
#, kde-format
msgid "Move into previous group"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/layergroupswitcher/layergroupswitcher.cpp:47
#, kde-format
msgid "Move into next group"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/layersplit/dlg_layersplit.cpp:42
#, kde-format
msgid "Split Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/layersplit/layersplit.cpp:89
#, kde-format
msgid "Split into Layers"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/layersplit/layersplit.cpp:188
msgctxt "(qtundo-format)"
msgid "Split Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkCreateGroupLayer)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:25
#, kde-format
msgid "Put all new layers in a group layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSeparateGroupLayers)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:35
#, kde-format
msgid "Put every layer in its own, separate group layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAlphaLock)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:42
#, kde-format
msgid "Alpha-lock every new layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkHideOriginal)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:52
#, kde-format
msgid "Hide the original layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSortLayers)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:62
#, kde-format
msgid "Sort layers by amount of non-transparent pixels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:72
#, kde-format
msgid "Fuzziness:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDisregardOpacity)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:85
#, kde-format
msgid "Disregard opacity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:92
#, kde-format
msgid "Palette to use for naming the layers:"
msgstr ""
#. i18n: ectx: property (text), widget (KisPopupButton, paletteChooser)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:99
#, kde-format
msgid "Choose Palette"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/layersplit/wdg_layersplit.ui:111
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Split a layer according to color</span></p>"
"<p>Creates a new layer for every color in the active layer.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/dublincore.ui:19
#, kde-format
msgid "Creator name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, publisherLabel)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/dublincore.ui:35
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:203
#, kde-format
msgid "Publisher:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/dublincore.ui:51
#, kde-format
msgid "Rights:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/dublincore.ui:67
#, kde-format
msgid "Date:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:21
#, kde-format
msgid "Exposure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:29
#, kde-format
msgid "&Brightness value:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:45
#, kde-format
msgid "&ISO:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:71
#, kde-format
msgid "Exposure &time:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:87
#, kde-format
msgid "E&xposure mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoPrecisionCheckBox)
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureMode)
#. i18n: ectx: property (text), item, widget (QComboBox, editWhiteBalance)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:101
#: plugins/extensions/metadataeditor/editors/exif.ui:919
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:88
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:55
#, kde-format
msgid "Auto"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureMode)
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:106
#: plugins/extensions/metadataeditor/editors/exif.ui:138
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:105
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:106
#, kde-format
msgid "Manual"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:111
#, kde-format
msgid "Auto bracket"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:119
#, kde-format
msgid "Exposure pro&gram:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:133
#, kde-format
msgid "Not defined"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:143
#, kde-format
msgid "Normal program"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:148
#, kde-format
msgid "Aperture priority"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:153
#, kde-format
msgid "Shutter priority"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:158
#, kde-format
msgid "Creative program"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:163
#, kde-format
msgid "Action program"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:168
#, kde-format
msgid "Portrait mode"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editExposureProgram)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:173
#, kde-format
msgid "Landscape mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:181
#, kde-format
msgid "Exposure index:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:197
#, kde-format
msgid "Exposure bias:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:213
#, kde-format
msgid "Ape&rture:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:229
#, kde-format
msgid "Shutter speed:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_25)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:245
#, kde-format
msgid "&F Number:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:277
#, kde-format
msgid "Lens"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:285
#, kde-format
msgid "&Focal length:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:311
#, kde-format
msgid "Focal length (&35mm equivalent):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:337
#, kde-format
msgid "Max aperture:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:369
#, kde-format
msgid "Autofocus"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:377
#, kde-format
msgid "Su&bject distance:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:393
#, kde-format
msgid "Meterin&g mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:412
#, kde-format
msgid "Average"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:417
#, kde-format
msgid "Center weighted average"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:427
#, kde-format
msgid "Multi spot"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editMeteringMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:437
#, kde-format
msgid "Partial"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_24)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:450
#, kde-format
msgid "D&istance range:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSubjectDistanceRange)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:469
#, kde-format
msgid "Macro"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSubjectDistanceRange)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:474
#, kde-format
msgid "Close view"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSubjectDistanceRange)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:479
#, kde-format
msgid "Distant view"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_6)
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:503
#: plugins/extensions/metadataeditor/editors/exif.ui:728
#, kde-format
msgid "Flash"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, editFlashFired)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:511
#, kde-format
msgid "Fired"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:518
#, kde-format
msgid "Stro&be return:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editStrobeReturn)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:532
#, kde-format
msgid "No strobe return detection"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editStrobeReturn)
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:537
#: plugins/extensions/metadataeditor/editors/exif.ui:733
#: plugins/extensions/metadataeditor/editors/exif.ui:738
#: plugins/extensions/metadataeditor/editors/exif.ui:743
#: plugins/extensions/metadataeditor/editors/exif.ui:748
#: plugins/extensions/metadataeditor/editors/exif.ui:788
#, kde-format
msgid "Undefined"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editStrobeReturn)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:542
#, kde-format
msgid "No strobe return light detected"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editStrobeReturn)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:547
#, kde-format
msgid "Strobe return light detected"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editFlashMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:574
#, kde-format
msgid "Compulsory flash fired"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editFlashMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:579
#, kde-format
msgid "Compulsory flash suppression"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editFlashMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:584
#, kde-format
msgid "Auto mode"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, editFlashFunction)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:592
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:61
#, kde-format
msgid "Function"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, editFlashRedEyeMode)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:599
#, kde-format
msgid "Red-eye removal"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_23)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:606
#, kde-format
msgid "Flash ener&gy:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:638
#, kde-format
msgid "Postprocessing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:646
#, kde-format
msgid "&Gain control:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editGainControl)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:671
#, kde-format
msgid "Low gain up"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editGainControl)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:676
#, kde-format
msgid "High gain up"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editGainControl)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:681
#, kde-format
msgid "Low gain down"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editGainControl)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:686
#, kde-format
msgid "High gain down"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:694
#, kde-format
msgid "L&ight source:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:713
#, kde-format
msgid "Daylight"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:718
#, kde-format
msgid "Fluorescent"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:723
#, kde-format
msgid "Tungsten"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:753
#, kde-format
msgid "Fine weather"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:758
#, kde-format
msgid "Cloudy weather"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:763
#, kde-format
msgid "Shade"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:768
#, kde-format
msgid "Daylight fluorescent (D5700 - 7100K)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:773
#, kde-format
msgid "Day white fluorescent (N4600 - 5400K)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:778
#, kde-format
msgid "Cool white fluorescent (W3900 - 4500K)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:783
#, kde-format
msgid "White fluorescent (WW 3200 - 3700K)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:793
#, kde-format
msgid "Standard light A"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:798
#, kde-format
msgid "Standard light B"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:803
#, kde-format
msgid "Standard light C"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:808
#, kde-format
msgid "D55"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:813
#, kde-format
msgid "D65"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:818
#, kde-format
msgid "D75"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:823
#, kde-format
msgid "D50"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:828
#, kde-format
msgid "ISO studio tungsten"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editLightSource)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:833
#, kde-format
msgid "other"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:841
#, kde-format
msgid "Sharpness:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSharpness)
#. i18n: ectx: property (text), item, widget (QComboBox, editContrast)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:865
#: plugins/extensions/metadataeditor/editors/exif.ui:897
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:69
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:63
#, kde-format
msgid "Hard"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblAngle)
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:873
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:75
#, kde-format
msgid "Contrast:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_28)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:905
#, kde-format
msgid "White &balance:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editWhiteBalance)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:924
#, kde-format
msgid "Custom"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:956
#, kde-format
msgid "Scene capture t&ype:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSceneCaptureType)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:985
#, kde-format
msgid "Night scene"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:993
#, kde-format
msgid "Ma&ker:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_26)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1009
#, kde-format
msgid "Model:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_27)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1025
#, kde-format
msgid "Sens&ing method type:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1039
#: plugins/extensions/metadataeditor/editors/exif.ui:1044
#, kde-format
msgid "Not Defined"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1049
#, kde-format
msgid "One-chip color area sensor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1054
#, kde-format
msgid "Two-chip color area sensor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1059
#, kde-format
msgid "Three-chip color area sensor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1064
#, kde-format
msgid "Color sequential area sensor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1069
#, kde-format
msgid "Trilinear sensor"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, editSensingMethod)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/editors/exif.ui:1074
#, kde-format
msgid "Color sequential linear sensor"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_editor.cc:137
#, kde-format
msgid "List"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:59
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:326
#, kde-format
msgid "Invalid"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:65
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:122
#, kde-format
msgid "Date"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:68
#: plugins/filters/raindropsfilter/kis_raindrops_filter.cpp:385
#, kde-format
msgid "Number"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:70
#, kde-format
msgid "String"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:72
#, kde-format
msgid "Variant (%1)"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:76
#, kde-format
msgid "Ordered array"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:78
#, kde-format
msgid "Unordered array"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:80
#, kde-format
msgid "Alternative array"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:82
#, kde-format
msgid "Language array"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:86
#, kde-format
msgid "Rational"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/metadataeditor/kis_meta_data_model.cpp:104
#, kde-format
msgid "Key"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/dlg_border_selection.cc:31
#, kde-format
msgid "Border Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/dlg_feather_selection.cc:31
#, kde-format
msgid "Feather Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/dlg_grow_selection.cc:31
#, kde-format
msgid "Grow Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/dlg_shrink_selection.cc:31
#, kde-format
msgid "Shrink Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblWidth)
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/wdg_border_selection.ui:110
#, kde-format
msgid "Border width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/wdg_feather_selection.ui:17
#, kde-format
msgid "Feather radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/wdg_grow_selection.ui:20
#, kde-format
msgid "Grow by"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/wdg_shrink_selection.ui:65
#, kde-format
msgid "Shrink by"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ckbShrinkFromImageBorder)
#. +> trunk5 stable5
#: plugins/extensions/modify_selection/wdg_shrink_selection.ui:123
#, kde-format
msgid "Shrink from image border"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/offsetimage/offsetimage.cpp:68
msgctxt "(qtundo-format)"
msgid "Offset Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/offsetimage/offsetimage.cpp:69
#, kde-format
msgctxt "@title:window"
msgid "Offset Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/offsetimage/offsetimage.cpp:92
msgctxt "(qtundo-format)"
msgid "Offset Layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/offsetimage/offsetimage.cpp:93
#, kde-format
msgctxt "@title:window"
msgid "Offset Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, middleOffsetBtn)
#. +> trunk5 stable5
#: plugins/extensions/offsetimage/wdg_offsetimage.ui:101
#, kde-format
msgid "Offset by x/2, y/2"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/kritarunner/main.cpp:90
#: plugins/extensions/pykrita/plugin/plugin.cpp:42
#, kde-format
msgid "Cannot load Python library"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/kritarunner/main.cpp:93
#: plugins/extensions/pykrita/plugin/plugin.cpp:45
#, kde-format
msgid "Cannot set Python paths"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/kritarunner/main.cpp:96
#: plugins/extensions/pykrita/plugin/plugin.cpp:48
#, kde-format
msgid "Cannot load built-in pykrita module"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/kritarunner/main.cpp:99
#: plugins/extensions/pykrita/plugin/plugin.cpp:51
#, kde-format
msgid "Unexpected error initializing python plugin."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:13
#, kde-format
msgid "Actions"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QIconButton, actionIcon)
#. i18n: ectx: property (whatsThis), widget (QIconButton, configPageIcon)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:27
#: plugins/extensions/pykrita/plugin/info.ui:203
#, kde-format
msgid "The icon associated with this action. It is shown alongside text in the menu bar and in toolbars as required. A string to use KDE's image loading system, or a custom QPixmap or QIcon, or None."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, shortcut)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:37
#, kde-format
msgid "The shortcut to fire this action, such as 'Ctrl+1', or a QKeySequence instance, or None."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelText)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:64
#, kde-format
msgid "Menu Item:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, text)
#. i18n: ectx: property (whatsThis), widget (QLabel, name)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:77
#: plugins/extensions/pykrita/plugin/info.ui:226
#, kde-format
msgid "The text associated with the action (used as the menu item label, etc), or None."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, menu)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:84
#, kde-format
msgid "The menu under which to place this item, such as 'tools' or 'settings', or None."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelShortcut)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:91
#, kde-format
msgid "Shortcut:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelMenu)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:104
#, kde-format
msgid "Menu:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, labelActionIcon)
#. i18n: ectx: property (text), widget (QLabel, labelPageIcon)
#. +> trunk5 stable5
#: plugins/extensions/pykrita/plugin/info.ui:117
#: plugins/extensions/pykrita/plugin/info.ui:184
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:381
#, kde-format
msgid "Icon:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab3)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:159
#, kde-format
msgid "Configuration Pages"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, fullName)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:167
#, kde-format
msgid "The shortcut to fire this action such as 'Ctrl+1', or a QKeySequence instance, or None."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:236
#, kde-format
msgid "Page:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KComboBox, topics)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/info.ui:265
#, kde-format
msgid "Select a Plugin or Built-in Module"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, ExceptHookDialog)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/excepthook.ui:14
#, kde-format
msgid "Script error"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/excepthook.ui:25
#, kde-format
msgid "An exception occurred while running the script."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, exceptionLabel)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/excepthook.ui:38
#, kde-format
msgid "Exception"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QMainWindow, ScriptEditor)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:14
#, kde-format
msgid "Script Editor"
msgstr ""
#. i18n: ectx: property (title), widget (QMenu, menuRun)
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:47
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:72
#, kde-format
msgid "&Run"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:62
#, kde-format
msgid "Ctrl+W"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:67
#, kde-format
msgid "&Exit"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:75
#, kde-format
msgid "Ctrl+R"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:80
#, kde-format
msgid "Run script in &console"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:83
#, kde-format
msgid "Ctrl+C"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:88
#, kde-format
msgid "Python"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:91
#, kde-format
msgid "Ctrl+N"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:96
#, kde-format
msgid "QtScript"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:104
#, kde-format
msgid "Clear The Console"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:109
#, kde-format
msgid "Save &As"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:112
#, kde-format
msgid "Save the script"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:115
#, kde-format
msgid "Ctrl+A"
msgstr ""
#. i18n: ectx: property (text), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:120
#, kde-format
msgid "&Open"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:123
#, kde-format
msgid "Open a script"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:126
#, kde-format
msgid "Ctrl+O"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:134
#, kde-format
msgid "Save the current script"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QPushButton, lCurveButton)
#. i18n: ectx: property (shortcut), widget (QStatusBar, statusbar)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/krita/sceditor/mainwindow.ui:137
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:222
#, kde-format
msgid "Ctrl+S"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, errorLabel)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/manager.ui:15
#, kde-format
msgid "Error: The Python engine could not be initialized"
msgstr ""
#. i18n: context: Actions (Hello), ActionCollection (Hello)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/hello/hello.action:4
#, kde-format
msgctxt "action"
msgid "Hello"
msgstr ""
#. i18n: context: Action (hello_python), Actions (Hello), ActionCollection (Hello)
#. i18n: context: Action (hello_python), Actions (Hello), ActionCollection (Hello)
#. i18n: context: Action (hello_python), Actions (Hello), ActionCollection (Hello)
#. i18n: context: Action (hello_python), Actions (Hello), ActionCollection (Hello)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/hello/hello.action:7
#: plugins/extensions/pykrita/plugin/plugins/hello/hello.action:9
#, kde-format
msgctxt "action"
msgid "Say Hello World"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonSave)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/selectionsbagdocker/selectionsbagdocker.ui:23
#, kde-format
msgid "save"
msgstr ""
#. i18n: context: Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:4
#, kde-format
msgctxt "action"
msgid "Ten Brushes"
msgstr ""
#. i18n: context: Action (activate_preset_1), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:8
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 1"
msgstr ""
#. i18n: context: Action (activate_preset_2), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:21
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 2"
msgstr ""
#. i18n: context: Action (activate_preset_3), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:34
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 3"
msgstr ""
#. i18n: context: Action (activate_preset_4), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:47
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 4"
msgstr ""
#. i18n: context: Action (activate_preset_5), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:60
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 5"
msgstr ""
#. i18n: context: Action (activate_preset_6), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:73
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 6"
msgstr ""
#. i18n: context: Action (activate_preset_7), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:86
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 7"
msgstr ""
#. i18n: context: Action (activate_preset_8), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:99
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 8"
msgstr ""
#. i18n: context: Action (activate_preset_9), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:112
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 9"
msgstr ""
#. i18n: context: Action (activate_preset_0), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenbrushes/tenbrushes.action:125
#, kde-format
msgctxt "action"
msgid "Activate Brush Preset 10"
msgstr ""
#. i18n: context: Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:4
#, kde-format
msgctxt "action"
msgid "Ten Scripts"
msgstr ""
#. i18n: context: Action (execute_script_1), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:7
#, kde-format
msgctxt "action"
msgid "Execute Script 1"
msgstr ""
#. i18n: context: Action (execute_script_2), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:19
#, kde-format
msgctxt "action"
msgid "Execute Script 2"
msgstr ""
#. i18n: context: Action (execute_script_3), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:31
#, kde-format
msgctxt "action"
msgid "Execute Script 3"
msgstr ""
#. i18n: context: Action (execute_script_4), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:43
#, kde-format
msgctxt "action"
msgid "Execute Script 4"
msgstr ""
#. i18n: context: Action (execute_script_5), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:55
#, kde-format
msgctxt "action"
msgid "Execute Script 5"
msgstr ""
#. i18n: context: Action (execute_script_6), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:67
#, kde-format
msgctxt "action"
msgid "Execute Script 6"
msgstr ""
#. i18n: context: Action (execute_script_7), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:79
#, kde-format
msgctxt "action"
msgid "Execute Script 7"
msgstr ""
#. i18n: context: Action (execute_script_8), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:91
#, kde-format
msgctxt "action"
msgid "Execute Script 8"
msgstr ""
#. i18n: context: Action (execute_script_9), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:103
#, kde-format
msgctxt "action"
msgid "Execute Script 9"
msgstr ""
#. i18n: context: Action (execute_script_10), Actions (Scripts), ActionCollection (Scripts)
#. +> trunk5
#: plugins/extensions/pykrita/plugin/plugins/tenscripts/tenscripts.action:115
#, kde-format
msgctxt "action"
msgid "Execute Script 10"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/pyqtpluginsettings.cpp:69
#, kde-format
msgid "Python Plugin Manager"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:123
#, kde-format
msgctxt "@info:tooltip"
msgid "Unable to find the module specified <application>%1</application>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:146
#, kde-format
msgctxt "@info:tooltip"
msgid "<p>Specified version has invalid format for dependency <application>%1</application>: <icode>%2</icode>. Skipped</p>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:173
#, kde-format
msgctxt "@info:tooltip"
msgid "<title>Dependency check</title>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:204
#, kde-format
msgctxt "@info:tooltip"
msgid "<p>Failed to check version of dependency <application>%1</application>: Module do not have PEP396 <code>__version__</code> attribute. It is not disabled, but behaviour is unpredictable...</p>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:218
#, kde-format
msgctxt "@info:tooltip"
msgid "<p><application>%1</application>: Unexpected module's version format"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:231
#, kde-format
msgctxt "@info:tooltip"
msgid "<p><application>%1</application>: No suitable version found. Required version %2 %3, but found %4</p>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:246
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Failure on module load <application>%1</application>:</p>"
"<pre>%2</pre>"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:344
#, kde-format
msgctxt "@info:tooltip"
msgid "Internal engine failure"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginManager.cpp:348
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"Module not loaded:<br/>"
"%1"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginsModel.cpp:64
#, kde-format
msgctxt "@title:column"
msgid "Name"
msgstr ""
#. +> trunk5
#: plugins/extensions/pykrita/plugin/PythonPluginsModel.cpp:66
#, kde-format
msgctxt "@title:column"
msgid "Comment"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/qmic/PluginSettings.cpp:57
#, kde-format
msgid "G'Mic-Qt Integration"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/qmic/QMic.cpp:125
#, kde-format
msgid "Krita cannot find the gmic-qt plugin."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/qmic/QMic.cpp:249
#, kde-format
msgid "Sorry, this output mode is not implemented yet."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/qmic/QMic.cpp:326
#, kde-format
msgid "G'Mic failed, reason:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/qmic/QMic.cpp:381
msgctxt "(qtundo-format)"
msgid "Gmic filter"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgQMicSettings)
#. +> stable5
#: plugins/extensions/qmic/WdgQMicSettings.ui:14
#, kde-format
msgid "Form"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/extensions/qmic/WdgQMicSettings.ui:17
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Select the location of the G'Mic-Qt plugin. You can download the plugin from the <a href=\"http://gmic.eu/\"><span style=\" text-decoration: underline; color:#2980b9;\">G'Mic website</span></a>. Make sure you download the special version for Krita, not the standalone or the GIMP version.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/qmic/WdgQMicSettings.ui:38
#, kde-format
msgid "Plugin:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:45
#, kde-format
msgid "Manage Resource Bundles"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:68
#, kde-format
msgid "Resource"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:146
#, kde-format
msgid "Couldn't add bundle to resource server"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:151
#, kde-format
msgid "Couldn't remove bundle from blacklist"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:162
#, kde-format
msgid "Bundle doesn't exist!"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_bundle_manager.cpp:263
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:154
#, kde-format
msgid "Palettes"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:70
#, kde-format
msgid "Edit Resource Bundle"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:133
#, kde-format
msgid "Create Resource Bundle"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:220
#, kde-format
msgid "The resource bundle name cannot be empty."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:228
#, kde-format
msgid "A bundle with this name already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:249
#, kde-format
msgid "Select a directory to save the bundle"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/dlg_create_bundle.cpp:428
#, kde-format
msgid "Select file to use as bundle icon"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:83
#, kde-format
msgid "Import Bundles..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:87
#, kde-format
msgid "Import Brushes..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:91
#, kde-format
msgid "Import Gradients..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:95
#, kde-format
msgid "Import Palettes..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:99
#, kde-format
msgid "Import Patterns..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:103
#, kde-format
msgid "Import Presets..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:107
#, kde-format
msgid "Import Workspaces..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:111
#, kde-format
msgid "Create Resource Bundle..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:115
#, kde-format
msgid "Manage Resources..."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:203
#, kde-format
msgid "Could not create the new bundle."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportBrushes)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:240
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:162
#, kde-format
msgid "Import Brushes"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportPresets)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:252
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:183
#, kde-format
msgid "Import Presets"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportGradients)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:260
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:176
#, kde-format
msgid "Import Gradients"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportBundles)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:270
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:155
#, kde-format
msgid "Import Bundles"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:276
#, kde-format
msgid "Could not install the resources for bundle %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:280
#, kde-format
msgid "Could not load bundle %1."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportPatterns)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:300
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:169
#, kde-format
msgid "Import Patterns"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportPalettes)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:314
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:190
#, kde-format
msgid "Import Palettes"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnImportWorkspaces)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.cpp:322
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:197
#, kde-format
msgid "Import Workspaces"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/resourcemanager.xmlgui:5
#, kde-format
msgid "&Resources"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:19
#, kde-format
msgid "Active Bundles"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, createBundleButton)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:56
#, kde-format
msgid "Create New Bundle"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:120
#, kde-format
msgid "Inactive Bundles"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, deleteBackupFilesButton)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:210
#, kde-format
msgid "Delete Backup Files"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, openResourceFolderButton)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:223
#, kde-format
msgid "Open Resource Folder"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, BundleSelectedGroupBox)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:257
#, kde-format
msgid "Selected Bundle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblName)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:287
#, kde-format
msgid "Bundle Name"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnEditBundle)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:300
#, kde-format
msgid "&Edit bundle..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, author)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, authorLabel)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:426
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:256
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:173
#, kde-format
msgid "Author:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, license)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:439
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:300
#, kde-format
msgid "License:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:460
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:276
#, kde-format
msgid "Email:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:467
#, kde-format
msgid "Updated:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, website)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgbundlemanager.ui:481
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:286
#, kde-format
msgid "Website:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgDlgCreateBundle)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:20
#, kde-format
msgid "New Bundle..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:102
#, kde-format
msgid "Available"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:189
#, kde-format
msgid "Selected"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bundleName)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:229
#, kde-format
msgid "Bundle Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, editWebsite)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:293
#, kde-format
msgid "http://"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:314
#, kde-format
msgid "Save to:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/extensions/resourcemanager/wdgdlgcreatebundle.ui:455
#, kde-format
msgid "(256 x 256)"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/rotateimage.cc:119
msgctxt "(qtundo-format)"
msgid "Mirror Image Vertically"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/rotateimage.cc:126
msgctxt "(qtundo-format)"
msgid "Mirror Image Horizontally"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/rotateimage.cc:138
#, kde-format
msgid "Rotate Layer"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpDirection)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:20
#, kde-format
msgid "Orientation"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioCW)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:26
#, kde-format
msgid "&Right"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioCCW)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:36
#, kde-format
msgid "&Left"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radio90)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:52
#, kde-format
msgid "90 &degrees"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radio180)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:59
#, kde-format
msgid "&180 degrees"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radio270)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:66
#, kde-format
msgid "270 de&grees"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioCustom)
#. +> trunk5 stable5
#: plugins/extensions/rotateimage/wdg_rotateimage.ui:87
#, kde-format
msgid "&Custom:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/dlg_separate.cc:39
#: plugins/extensions/separate_channels/kis_separate_channels_plugin.cc:74
#: plugins/extensions/separate_channels/kis_separate_channels_plugin.cc:86
#, kde-format
msgid "Separate Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/kis_channel_separator.cc:210
msgctxt "(qtundo-format)"
msgid "Separate Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/kis_channel_separator.cc:238
#, kde-format
msgid "Export Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:17
#, kde-format
msgid "Current color model:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpSource)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:46
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:75
#, kde-format
msgid "Source"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioCurrentLayer)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:52
#, kde-format
msgid "Current layer"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioAllLayers)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:62
#, kde-format
msgid "Flatten all layers before separation"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpOutput)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:72
#, kde-format
msgid "Output"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLayers)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:78
#, kde-format
msgid "To layers"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioImages)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:88
#, kde-format
msgid "To images"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpAlpha)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:98
#, kde-format
msgid "Alpha Options"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioCopyAlpha)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:104
#, kde-format
msgid "Copy alpha channel to each separated channel as an alpha channel"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioDiscardAlpha)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:111
#, kde-format
msgid "Discard alpha channel"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioSeparateAlpha)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:121
#, kde-format
msgid "Create separate separation from alpha channel"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkDownscale)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:131
#, kde-format
msgid "Downscale to 8-bit before separating"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkColors)
#. +> trunk5 stable5
#: plugins/extensions/separate_channels/wdg_separations.ui:138
#, kde-format
msgid "Output to color, not grayscale"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgShearImage)
#. +> trunk5 stable5
#: plugins/extensions/shearimage/dlg_shearimage.cc:32
#: plugins/extensions/shearimage/shearimage.cc:59
#: plugins/extensions/shearimage/wdg_shearimage.ui:14
#, kde-format
msgid "Shear Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/shearimage/shearimage.cc:78
#, kde-format
msgid "Shear Layer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblShearAngleX)
#. +> trunk5 stable5
#: plugins/extensions/shearimage/wdg_shearimage.ui:20
#, kde-format
msgid "Shear angle X:"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, shearAngleX)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, shearAngleY)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, startAngle)
#. i18n: ectx: property (suffix), widget (KisDoubleParseSpinBox, endAngle)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, azimuthSpinBox4)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, inclinationSpinBox4)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, azimuthSpinBox2)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, inclinationSpinBox2)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, azimuthSpinBox1)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, inclinationSpinBox1)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, azimuthSpinBox3)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, inclinationSpinBox3)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, blurAngleSlider)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intAngle)
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, irisRotationSlider)
#. +> trunk5 stable5
#: plugins/extensions/shearimage/wdg_shearimage.ui:30
#: plugins/extensions/shearimage/wdg_shearimage.ui:59
#: plugins/filters/blur/wdg_lens_blur.ui:115
#: plugins/filters/blur/wdg_motion_blur.ui:99
#: plugins/filters/blur/wdgblur.ui:130
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:500
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:541
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:683
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:727
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:875
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:916
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1058
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1099
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:55
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:72
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_drawing_angle.cpp:93
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_drawing_angle.cpp:102
#, kde-format
msgid "°"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblShearAngelY)
#. +> trunk5 stable5
#: plugins/extensions/shearimage/wdg_shearimage.ui:43
#, kde-format
msgid "Shear angle Y:"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/waveletdecompose/dlg_waveletdecompose.cpp:29
#, kde-format
msgid "WaveletDecompose"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgWaveletDecompose)
#. +> trunk5 stable5
#: plugins/extensions/waveletdecompose/waveletdecompose.cpp:77
#: plugins/extensions/waveletdecompose/wdg_waveletdecompose.ui:14
#, kde-format
msgid "Wavelet Decompose"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/waveletdecompose/waveletdecompose.cpp:124
msgctxt "(qtundo-format)"
msgid "Wavelet decompose"
msgstr ""
#. +> trunk5 stable5
#: plugins/extensions/waveletdecompose/waveletdecompose.cpp:131
#, kde-format
msgid "Wavelet decompose"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblWaveletScales)
#. +> trunk5 stable5
#: plugins/extensions/waveletdecompose/wdg_waveletdecompose.ui:20
#, kde-format
msgid "Wavelet scales:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/asccdl/kis_asccdl_filter.cpp:42
#, kde-format
msgid "&Slope, Offset, Power.."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/asccdl/kis_asccdl_filter.h:40
#, kde-format
msgid "Slope, Offset, Power(ASC-CDL)"
msgstr ""
#. i18n: ectx: property (text), widget (KisGradientSlider, cutoffSlider)
#. i18n: ectx: property (text), widget (QPushButton, configureStyles)
#. i18n: ectx: property (text), widget (KisColorButton, bnforeground)
#. i18n: ectx: property (text), widget (KisColorButton, bnbackground)
#. i18n: ectx: property (text), widget (KisColorButton, btnSlope)
#. i18n: ectx: property (text), widget (KisColorButton, btnPower)
#. i18n: ectx: property (text), widget (KisColorButton, btnOffset)
#. i18n: ectx: property (text), widget (KoColorPopupButton, btnGradientChooser)
#. +> trunk5 stable5
#: plugins/filters/asccdl/wdg_asccdl.ui:17
#: plugins/filters/asccdl/wdg_asccdl.ui:24
#: plugins/filters/asccdl/wdg_asccdl.ui:45
#: plugins/filters/gradientmap/wdg_gradientmap.ui:26
#: plugins/filters/halftone/wdg_halftone_filter.ui:26
#: plugins/filters/halftone/wdg_halftone_filter.ui:33
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:85
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:208
#, kde-format
msgid "PushButton"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblOffset)
#. +> trunk5 stable5
#: plugins/filters/asccdl/wdg_asccdl.ui:31
#, kde-format
msgid "Offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblBase)
#. +> trunk5 stable5
#: plugins/filters/asccdl/wdg_asccdl.ui:38
#, kde-format
msgid "ASC-CDL color balance"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPower)
#. +> trunk5 stable5
#: plugins/filters/asccdl/wdg_asccdl.ui:52
#, kde-format
msgid "Power:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSlope)
#. +> trunk5 stable5
#: plugins/filters/asccdl/wdg_asccdl.ui:59
#, kde-format
msgid "Slope:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_blur_filter.cpp:39
#, kde-format
msgid "&Blur..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_gaussian_blur_filter.cpp:43
#, kde-format
msgid "&Gaussian Blur..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_gaussian_blur_filter.h:40
#, kde-format
msgid "Gaussian Blur"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_lens_blur_filter.cpp:44
#, kde-format
msgid "&Lens Blur..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_lens_blur_filter.h:42
#, kde-format
msgid "Lens Blur"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_motion_blur_filter.cpp:44
#, kde-format
msgid "&Motion Blur..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/blur/kis_motion_blur_filter.h:42
#, kde-format
msgid "Motion Blur"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_gaussian_blur.ui:68
#: plugins/filters/blur/wdgblur.ui:68
#: plugins/filters/convertheightnormalmap/kis_wdg_convert_height_to_normal_map.cpp:51
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:49
#, kde-format
msgid "Vertical Radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_gaussian_blur.ui:78
#: plugins/filters/blur/wdgblur.ui:29
#: plugins/filters/convertheightnormalmap/kis_wdg_convert_height_to_normal_map.cpp:47
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:45
#, kde-format
msgid "Horizontal Radius:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_lens_blur.ui:23
#, kde-format
msgid "Iris"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, widthInfoLbl_2)
#. i18n: ectx: property (text), widget (QLabel, shapeLbl)
#. i18n: ectx: property (text), widget (QLabel, lblMaskShape)
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_lens_blur.ui:29
#: plugins/filters/blur/wdgblur.ui:140
#: plugins/filters/wavefilter/wdgwaveoptions.ui:72
#: plugins/filters/wavefilter/wdgwaveoptions.ui:255
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:29
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:81
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:215
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:46
#: plugins/tools/basictools/kis_tool_gradient.cc:227
#, kde-format
msgid "Shape:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (label), widget (KisIntParseSpinBox, irisRadiusSlider)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, radiusLabel)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_lens_blur.ui:73
#: plugins/filters/blur/wdg_lens_blur.ui:92
#: plugins/filters/unsharp/wdgunsharp.ui:23
#: plugins/tools/basictools/wdgmultihandtool.ui:221
#, kde-format
msgid "Radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, brushRotationLabel)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (label), widget (KisIntParseSpinBox, irisRotationSlider)
#. i18n: ectx: property (text), widget (QLabel, axisRotationLabel)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_lens_blur.ui:102
#: plugins/filters/blur/wdg_lens_blur.ui:124
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:159
#: plugins/tools/basictools/wdgmultihandtool.ui:118
#, kde-format
msgid "Rotation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. i18n: ectx: property (text), widget (QLabel, rotationLbl)
#. i18n: ectx: property (text), widget (QLabel, lblAngle)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, lbl_angle)
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_motion_blur.ui:83
#: plugins/filters/blur/wdgblur.ui:117
#: plugins/filters/halftone/wdg_halftone_filter.ui:73
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:182
#: plugins/paintops/hatching/wdghatchingoptions.ui:49
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:161
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:177
#: plugins/paintops/spray/wdgsprayoptions.ui:92
#: plugins/tools/basictools/kis_tool_measure.cc:53
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:111
#, kde-format
msgid "Angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Factor)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/filters/blur/wdg_motion_blur.ui:112
#: plugins/paintops/libpaintop/sensors/SensorDistanceConfiguration.ui:50
#: plugins/paintops/libpaintop/sensors/SensorFadeConfiguration.ui:50
#, kde-format
msgid "Length:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, strengthLabel)
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: plugins/filters/blur/wdgblur.ui:91
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:28
#, kde-format
msgid "Strength:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxShape)
#. i18n: ectx: property (text), item, widget (KComboBox, cbShape)
#. +> trunk5 stable5
#: plugins/filters/blur/wdgblur.ui:154
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:213
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:92
#, kde-format
msgid "Circle"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_color_to_alpha.cpp:39
#, kde-format
msgid "&Color to Alpha..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_color_to_alpha.h:40
#, kde-format
msgid "Color to Alpha"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_minmax_filters.cpp:68
#, kde-format
msgid "M&aximize Channel"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_minmax_filters.cpp:111
#, kde-format
msgid "M&inimize Channel"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_minmax_filters.h:39
#, kde-format
msgid "Maximize Channel"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colors/kis_minmax_filters.h:56
#, kde-format
msgid "Minimize Channel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: plugins/filters/colors/wdgcolortoalphabase.ui:131
#: plugins/filters/unsharp/wdgunsharp.ui:103
#: plugins/paintops/hairy/wdgbristleoptions.ui:180
#: plugins/paintops/libpaintop/kis_pressure_sharpness_option_widget.cpp:39
#, kde-format
msgid "Threshold:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, pickerLabel)
#. +> trunk5 stable5
#: plugins/filters/colors/wdgcolortoalphabase.ui:160
#, kde-format
msgid "Color Picker:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/colorsfilters.cpp:86
#, kde-format
msgid "&Auto Contrast"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/colorsfilters.h:49
#, kde-format
msgid "Auto Contrast"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_color_balance_filter.cpp:27
#, kde-format
msgid "&Color Balance..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_color_balance_filter.h:53
#, kde-format
msgid "Color Balance"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_desaturate_filter.cpp:57
#, kde-format
msgid "&Desaturate..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_desaturate_filter.h:46
#, kde-format
msgid "Desaturate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:75
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:78
#, kde-format
msgid "Value:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:77
#, kde-format
msgid "Lightness:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:79
#, kde-format
msgid "Intensity:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:81
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:83
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:84
#, kde-format
msgid "Luma:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:83
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:84
#, kde-format
msgid "Green-Red:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:83
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:84
#, kde-format
msgid "Yellow-Blue:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.cpp:93
#, kde-format
msgid "&HSV Adjustment..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_hsv_adjustment_filter.h:51
#, kde-format
msgid "HSV/HSL Adjustment"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_perchannel_filter.cpp:496
#, kde-format
msgid "&Color Adjustment curves..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/kis_perchannel_filter.h:95
#, kde-format
msgid "Color Adjustment"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushResetShadows)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:71
#, kde-format
msgid "Reset Shadows "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:85
#: plugins/filters/colorsfilters/wdg_color_balance.ui:262
#: plugins/filters/colorsfilters/wdg_color_balance.ui:395
#, kde-format
msgid "Red "
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:129
#: plugins/filters/colorsfilters/wdg_color_balance.ui:289
#, kde-format
msgid "Blue "
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushResetMidtones)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:201
#, kde-format
msgid "Reset Midtones "
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushResetHighlights)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:331
#, kde-format
msgid "Reset Highlights"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkPreserveLuminosity)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_color_balance.ui:358
#, kde-format
msgid "Preserve Luminosity"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:35
#, kde-format
msgid "Desaturation method:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLightness)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:47
#, kde-format
msgid "&Lightness"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLuminosityBT709)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:57
#, kde-format
msgid "Luminosity (ITU-R BT.&709)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLuminosityBT601)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:64
#, kde-format
msgid "Luminosity (ITU-R BT.&601)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioAverage)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:71
#, kde-format
msgid "&Average"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioMin)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:78
#, kde-format
msgid "&Min"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioMax)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_desaturate.ui:85
#, kde-format
msgid "&Max"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:45
#, kde-format
msgid "&Type:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkColorize)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:58
#, kde-format
msgid "&Colorize"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:69
#, kde-format
msgid "Hue/Saturation/Value"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:74
#, kde-format
msgid "Hue/Saturation/Lightness"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:79
#, kde-format
msgid "Hue/Saturation/Intensity"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:84
#, kde-format
msgid "Hue/Saturation/Luma"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:89
#, kde-format
msgid "Blue Chroma/Red Chroma/Luma"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:120
#, kde-format
msgid "&Value:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:167
#, kde-format
msgid "&Saturation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_hsv_adjustment.ui:189
#, kde-format
msgid "&Hue:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgPerChannel)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:20
#, kde-format
msgid "BrightnessCon"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelIn)
#. +> trunk5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:67
#, kde-format
msgid " Input:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelIn)
#. +> stable5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:295
#, kde-format
msgid "Input:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelOut)
#. +> trunk5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:93
#, kde-format
msgid " Output:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:335
#, kde-format
msgid "Channel:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLogarithmic)
#. +> trunk5 stable5
#: plugins/filters/colorsfilters/wdg_perchannel.ui:361
#: plugins/filters/levelfilter/wdg_level.ui:65
#: plugins/filters/threshold/wdg_threshold.ui:55
#, kde-format
msgid "Logarithmic"
msgstr ""
#. +> trunk5
#: plugins/filters/convertheightnormalmap/kis_convert_height_to_normal_map_filter.cpp:40
#, kde-format
msgid "&Height to Normal Map..."
msgstr ""
#. +> trunk5
#: plugins/filters/convertheightnormalmap/kis_convert_height_to_normal_map_filter.h:41
#, kde-format
msgid "Height to Normal Map"
msgstr ""
#. +> trunk5
#: plugins/filters/convertheightnormalmap/kis_wdg_convert_height_to_normal_map.cpp:32
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:31
#, kde-format
msgid "Prewitt"
msgstr ""
#. +> trunk5
#: plugins/filters/convertheightnormalmap/kis_wdg_convert_height_to_normal_map.cpp:32
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:31
#, kde-format
msgid "Simple"
msgstr ""
#. +> trunk5
#: plugins/filters/convertheightnormalmap/kis_wdg_convert_height_to_normal_map.cpp:32
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:31
#, kde-format
msgid "Sobol"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/filters/convertheightnormalmap/wdg_convert_height_to_normal_map.ui:51
#, kde-format
msgid "XYZ"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:59
#, kde-format
msgid "&Sharpen"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:73
#, kde-format
msgid "&Mean Removal"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:87
#: plugins/filters/convolutionfilters/convolutionfilters.h:55
#, kde-format
msgid "Emboss (Laplacian)"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:102
#: plugins/filters/convolutionfilters/convolutionfilters.h:65
#, kde-format
msgid "Emboss in All Directions"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:117
#, kde-format
msgid "Emboss Horizontal && Vertical"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:132
#: plugins/filters/convolutionfilters/convolutionfilters.h:85
#, kde-format
msgid "Emboss Vertical Only"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:147
#: plugins/filters/convolutionfilters/convolutionfilters.h:95
#, kde-format
msgid "Emboss Horizontal Only"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:162
#, kde-format
msgid "Top Edge Detection"
msgstr ""
#. +> stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:198
#: plugins/filters/convolutionfilters/convolutionfilters.h:125
#, kde-format
msgid "Right Edge Detection"
msgstr ""
#. +> stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:212
#: plugins/filters/convolutionfilters/convolutionfilters.h:135
#, kde-format
msgid "Bottom Edge Detection"
msgstr ""
#. +> stable5
#: plugins/filters/convolutionfilters/convolutionfilters.cpp:226
#: plugins/filters/convolutionfilters/convolutionfilters.h:145
#, kde-format
msgid "Left Edge Detection"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.h:34
#, kde-format
msgid "Sharpen"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.h:45
#, kde-format
msgid "Mean Removal"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.h:75
#, kde-format
msgid "Emboss Horizontal & Vertical"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/convolutionfilters/convolutionfilters.h:105
#, kde-format
msgid "Emboss Diagonal"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, buttonGroup1)
#. +> trunk5 stable5
#: plugins/filters/dodgeburn/DodgeBurnConfigurationBaseWidget.ui:17
#, kde-format
msgid "Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/dodgeburn/DodgeBurnPlugin.cpp:30
#, kde-format
msgid "Dodge"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_edge_detection_filter.cpp:50
#, kde-format
msgid "&Edge Detection..."
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:33
#, kde-format
msgid "All sides"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:34
#, kde-format
msgid "Top Edge"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:35
#, kde-format
msgid "Bottom Edge"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:36
#, kde-format
msgid "Right Edge"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:37
#, kde-format
msgid "Left Edge"
msgstr ""
#. +> trunk5
#: plugins/filters/edgedetection/kis_wdg_edge_detection.cpp:38
#, kde-format
msgid "Direction in Radians"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cmbOutput)
#. +> trunk5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:17
#, kde-format
msgid "Output decides what type of information you want from the lines."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, cmbType)
#. +> trunk5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:24
#, kde-format
msgid "The formula decides how the kernel is created, so different formulas choose different values in the kernel, and thus give subtly different results."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkTransparent)
#. +> trunk5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:50
#, kde-format
msgid "This will take a desaturated result and use it to determine what is transparent. This is useful for creating edge and fringe effects."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkTransparent)
#. +> trunk5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:53
#, kde-format
msgid "Apply result to alpha channel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:60
#, kde-format
msgid "Formula:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/filters/edgedetection/wdg_edge_detection.ui:70
#, kde-format
msgid "Output:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/embossfilter/kis_emboss_filter.cpp:53
#, kde-format
msgid "&Emboss with Variable Depth..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/embossfilter/kis_emboss_filter.h:39
#, kde-format
msgid "Emboss with Variable Depth"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ckbInvert)
#. +> trunk5 stable5
#: plugins/filters/example/example.h:45
#: plugins/filters/halftone/wdg_halftone_filter.ui:93
#, kde-format
msgid "Invert"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/fastcolortransfer/fastcolortransfer.cpp:57
#, kde-format
msgid "&Color Transfer..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/fastcolortransfer/fastcolortransfer.h:47
#, kde-format
msgid "Color Transfer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label1)
#. +> trunk5 stable5
#: plugins/filters/fastcolortransfer/wdgfastcolortransfer.ui:32
#, kde-format
msgid "Reference image:"
msgstr ""
#. +> trunk5
#: plugins/filters/gradientmap/krita_filter_gradient_map.cpp:39
#, kde-format
msgid "&Gradient Map..."
msgstr ""
#. +> stable5
#: plugins/filters/gradientmap/krita_filter_gradient_map.cpp:38
#, kde-format
msgid "&Gradient Map"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgGradientMap)
#. +> trunk5 stable5
#: plugins/filters/gradientmap/krita_filter_gradient_map.h:39
#: plugins/filters/gradientmap/wdg_gradientmap.ui:14
#, kde-format
msgid "Gradient Map"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/halftone/kis_halftone_filter.cpp:54
#, kde-format
msgid "&Halftone..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/halftone/kis_halftone_filter.h:72
#, kde-format
msgid "Halftone"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblcolors)
#. +> trunk5 stable5
#: plugins/filters/halftone/wdg_halftone_filter.ui:17
#, kde-format
msgid "Colors:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_simple_noise_reducer.cpp:40
#, kde-format
msgid "&Gaussian Noise Reduction..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_simple_noise_reducer.cpp:53
#: plugins/filters/imageenhancement/kis_wavelet_noise_reduction.cpp:50
#: plugins/filters/threshold/threshold.h:53
#, kde-format
msgid "Threshold"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_simple_noise_reducer.cpp:54
#, kde-format
msgid "Window size"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_simple_noise_reducer.h:42
#, kde-format
msgid "Gaussian Noise Reducer"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_wavelet_noise_reduction.cpp:36
#, kde-format
msgid "&Wavelet Noise Reducer..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/imageenhancement/kis_wavelet_noise_reduction.h:49
#, kde-format
msgid "Wavelet Noise Reducer"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.cpp:48
#, kde-format
msgid "&Index Colors..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.cpp:81
#, kde-format
msgctxt "Color palette shade"
msgid "Base"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.cpp:81
#, kde-format
msgctxt "Color palette shade"
msgid "Bright"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.cpp:81
#, kde-format
msgctxt "Color palette shade"
msgid "Light"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.cpp:81
#, kde-format
msgctxt "Color palette shade"
msgid "Shadow"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/indexcolors.h:50
#, kde-format
msgid "Index Colors"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.cpp:55
#, kde-format
msgctxt "suffix for a spinbox"
msgid " color"
msgid_plural " colors"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:29
#, kde-format
msgid "Ramps"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, diagCheck)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:68
#, kde-format
msgid "Diagonal Gradients"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gradientStepsBox)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:78
#, kde-format
msgid "Gradient Steps"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, colorLimitCheck)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:87
#, kde-format
msgid "Limit to"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:123
#, kde-format
msgid "In-between ramps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:149
#, kde-format
msgid "Color count:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, indexingBox)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:166
#, kde-format
msgid "Indexing Factors"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/filters/indexcolors/kiswdgindexcolors.ui:302
#, kde-format
msgid "Alpha Steps"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/levelfilter/kis_level_filter.cpp:47
#, kde-format
msgid "&Levels..."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgThreshold)
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgLevel)
#. +> trunk5 stable5
#: plugins/filters/levelfilter/kis_level_filter.h:52
#: plugins/filters/levelfilter/wdg_level.ui:32
#: plugins/filters/threshold/wdg_threshold.ui:32
#, kde-format
msgid "Levels"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: plugins/filters/levelfilter/wdg_level.ui:52
#, kde-format
msgid "<b>Input Levels</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: plugins/filters/levelfilter/wdg_level.ui:225
#, kde-format
msgid "<b>Output Levels</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, butauto)
#. +> trunk5 stable5
#: plugins/filters/levelfilter/wdg_level.ui:287
#, kde-format
msgid "&Auto Levels"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/noisefilter/noisefilter.cpp:64
#, kde-format
msgid "&Random Noise..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/noisefilter/noisefilter.h:50
#, kde-format
msgid "Noise"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/filters/noisefilter/wdgnoiseoptions.ui:42
#: plugins/filters/randompickfilter/wdgrandompickoptions.ui:33
#, kde-format
msgid "Level:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/normalize/kis_normalize.cpp:56
#, kde-format
msgid "Normalize"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/normalize/kis_normalize.cpp:57
#, kde-format
msgid "&Normalize..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/oilpaintfilter/kis_oilpaint_filter.cpp:54
#, kde-format
msgid "&Oilpaint..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/oilpaintfilter/kis_oilpaint_filter.cpp:206
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:40
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:34
#: plugins/paintops/gridbrush/kis_grid_paintop_settings_widget.cpp:38
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:37
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:45
#, kde-format
msgid "Brush size"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/oilpaintfilter/kis_oilpaint_filter.cpp:207
#, kde-format
msgctxt "smooth out the painting strokes the filter creates"
msgid "Smooth"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/oilpaintfilter/kis_oilpaint_filter.h:38
#, kde-format
msgid "Oilpaint"
msgstr ""
#. +> trunk5
#: plugins/filters/phongbumpmap/kis_phong_bumpmap_filter.cpp:36
#, kde-format
msgid "Phong Bumpmap"
msgstr ""
#. +> stable5
#: plugins/filters/phongbumpmap/kis_phong_bumpmap_filter.cpp:36
#, kde-format
msgid "PhongBumpmap"
msgstr ""
#. +> trunk5
#: plugins/filters/phongbumpmap/kis_phong_bumpmap_filter.cpp:37
#, kde-format
msgid "&Phong Bumpmap..."
msgstr ""
#. +> stable5
#: plugins/filters/phongbumpmap/kis_phong_bumpmap_filter.cpp:37
#, kde-format
msgid "&PhongBumpmap..."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, generalSettings)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:60
#, kde-format
msgid "General settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, materialParametersGroupBox)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:72
#, kde-format
msgid "Material properties"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, specularReflectivityGroup)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:81
#, kde-format
msgid "Specula&r"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpecularReflectivity)
#. i18n: ectx: property (text), widget (QLabel, lblDiffuseReflectivity)
#. i18n: ectx: property (text), widget (QLabel, lblAmbientReflectivity)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:108
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:221
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:299
#, kde-format
msgid "Reflectivity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpecularShinyExp)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:140
#, kde-format
msgid "Shinyness exponent:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, diffuseReflectivityGroup)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:194
#, kde-format
msgid "Di&ffuse"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, AmbientGroup)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:272
#, kde-format
msgid "Ambient"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblHeightmapChannel)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:353
#, kde-format
msgid "Heightmap channel:"
msgstr ""
#. i18n: Whether or not this filter should only use a given channel or use all channels and treat them as a normal map
#. i18n: ectx: property (text), widget (QCheckBox, useNormalMap)
#. +> trunk5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:405
#, kde-format
msgid "Use Normal map"
msgstr ""
#. i18n: Whether or not this filter should only use a given channel or use all channels and treat them as a normal map
#. i18n: ectx: property (text), widget (QCheckBox, useNormalMap)
#. +> stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:405
#, kde-format
msgid "Use Normalmap"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, lightSources)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:416
#, kde-format
msgid "Light Sources"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lightSourceGroupBox4)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:428
#, kde-format
msgid "Light Source &4"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, azimuthLabel4)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, azimuthSpinBox4)
#. i18n: ectx: property (toolTip), widget (QLabel, azimuthLabel2)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, azimuthSpinBox2)
#. i18n: ectx: property (toolTip), widget (QLabel, azimuthLabel1)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, azimuthSpinBox1)
#. i18n: ectx: property (toolTip), widget (QLabel, azimuthLabel3)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, azimuthSpinBox3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:475
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:494
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:655
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:677
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:847
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:869
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1033
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1052
#, kde-format
msgid "Direction of the light, the dial tip represents where the light comes from."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, azimuthLabel4)
#. i18n: ectx: property (text), widget (QLabel, azimuthLabel2)
#. i18n: ectx: property (text), widget (QLabel, azimuthLabel1)
#. i18n: ectx: property (text), widget (QLabel, azimuthLabel3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:478
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:658
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:850
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1036
#, kde-format
msgid "Azimuth:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, inclinationLabel4)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, inclinationSpinBox4)
#. i18n: ectx: property (toolTip), widget (QLabel, inclinationLabel2)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, inclinationSpinBox2)
#. i18n: ectx: property (toolTip), widget (QLabel, inclinationLabel1)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, inclinationSpinBox1)
#. i18n: ectx: property (toolTip), widget (QLabel, inclinationLabel3)
#. i18n: ectx: property (whatsThis), widget (KisIntParseSpinBox, inclinationSpinBox3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:519
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:538
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:702
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:724
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:894
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:913
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1077
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1096
#, kde-format
msgid "Vertical tilt of the light. 90° is perpendicular to the canvas, 0° is parallel."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, inclinationLabel4)
#. i18n: ectx: property (text), widget (QLabel, inclinationLabel2)
#. i18n: ectx: property (text), widget (QLabel, inclinationLabel1)
#. i18n: ectx: property (text), widget (QLabel, inclinationLabel3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:522
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:705
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:897
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1080
#, kde-format
msgid "Inclination:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QDial, azimuthDial4)
#. i18n: ectx: property (toolTip), widget (QDial, azimuthDial2)
#. i18n: ectx: property (toolTip), widget (QDial, azimuthDial1)
#. i18n: ectx: property (toolTip), widget (QDial, azimuthDial3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:562
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:748
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:937
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:1120
#, kde-format
msgid "Azimuth"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lightSourceGroupBox2)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:614
#, kde-format
msgid "Light Source &2"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lightSourceGroupBox1)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:800
#, kde-format
msgid "Light Source &1"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lightSourceGroupBox3)
#. +> trunk5 stable5
#: plugins/filters/phongbumpmap/wdgphongbumpmap.ui:989
#, kde-format
msgid "Light Source &3"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/pixelizefilter/kis_pixelize_filter.cpp:54
#, kde-format
msgid "&Pixelize..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/pixelizefilter/kis_pixelize_filter.cpp:130
#, kde-format
msgid "Pixel width"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/pixelizefilter/kis_pixelize_filter.cpp:131
#, kde-format
msgid "Pixel height"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/pixelizefilter/kis_pixelize_filter.h:39
#, kde-format
msgid "Pixelize"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/posterize/posterize.cpp:54
#, kde-format
msgid "&Posterize..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/posterize/posterize.cpp:76
#, kde-format
msgid "Steps"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/posterize/posterize.h:43
#, kde-format
msgid "Posterize"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/raindropsfilter/kis_raindrops_filter.cpp:56
#, kde-format
msgid "&Raindrops..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/raindropsfilter/kis_raindrops_filter.cpp:384
#, kde-format
msgid "Drop size"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/raindropsfilter/kis_raindrops_filter.cpp:386
#, kde-format
msgid "Fish eyes"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/raindropsfilter/kis_raindrops_filter.h:39
#, kde-format
msgid "Raindrops"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/randompickfilter/randompickfilter.cpp:64
#, kde-format
msgid "&Random Pick..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/randompickfilter/randompickfilter.h:49
#, kde-format
msgid "Random Pick"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: plugins/filters/randompickfilter/wdgrandompickoptions.ui:49
#, kde-format
msgid "Size of the window:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/roundcorners/kis_round_corners_filter.cpp:50
#, kde-format
msgid "&Round Corners..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/roundcorners/kis_round_corners_filter.cpp:128
#: plugins/tools/karbonplugins/filtereffects/BlurEffectConfigWidget.cpp:37
#, kde-format
msgid "Radius"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/roundcorners/kis_round_corners_filter.h:39
#, kde-format
msgid "Round Corners"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/smalltilesfilter/kis_small_tiles_filter.cpp:55
#, kde-format
msgid "&Small Tiles..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/smalltilesfilter/kis_small_tiles_filter.cpp:100
#, kde-format
msgid "Number of tiles"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/smalltilesfilter/kis_small_tiles_filter.h:41
#, kde-format
msgid "Small Tiles"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/threshold/threshold.cpp:64
#, kde-format
msgid "&Threshold..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/threshold/wdg_threshold.ui:123
#, kde-format
msgid "Threshold &level:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/unsharp/kis_unsharp_filter.cpp:43
#, kde-format
msgid "&Unsharp Mask..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/unsharp/kis_unsharp_filter.cpp:88
#: plugins/filters/unsharp/kis_unsharp_filter.h:39
#, kde-format
msgid "Unsharp Mask"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. i18n: ectx: property (text), widget (QLabel, lblAmount)
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/unsharp/wdgunsharp.ui:68
#: plugins/tools/basictools/wdgmovetool.ui:149
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1952
#, kde-format
msgid "Amount:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/filters/unsharp/wdgunsharp.ui:126
#, kde-format
msgid "Lightness Only:"
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wavefilter.cpp:97
#, kde-format
msgid "&Wave..."
msgstr ""
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wavefilter.h:51
#, kde-format
msgid "Wave"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:48
#, kde-format
msgid "Horizontal Wave"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2_2)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:85
#: plugins/filters/wavefilter/wdgwaveoptions.ui:242
#, kde-format
msgid "Amplitude:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:98
#: plugins/filters/wavefilter/wdgwaveoptions.ui:187
#, kde-format
msgid "Wavelength:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, cbHShape)
#. i18n: ectx: property (text), item, widget (KComboBox, cbVShape)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:124
#: plugins/filters/wavefilter/wdgwaveoptions.ui:213
#, kde-format
msgid "Sinusoidale"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, cbHShape)
#. i18n: ectx: property (text), item, widget (KComboBox, cbVShape)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:129
#: plugins/filters/wavefilter/wdgwaveoptions.ui:218
#, kde-format
msgid "Triangle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, textLabel2_3)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:137
#: plugins/filters/wavefilter/wdgwaveoptions.ui:226
#, kde-format
msgid "Shift:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, Vertical_wave)
#. +> trunk5 stable5
#: plugins/filters/wavefilter/wdgwaveoptions.ui:169
#, kde-format
msgid "Vertical Wave"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/AddTextRangeCommand.cpp:33
#: plugins/flake/artistictextshape/AddTextRangeCommand.cpp:40
msgctxt "(qtundo-format)"
msgid "Add text range"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextShapeFactory.cpp:32
#, kde-format
msgid "ArtisticTextShape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextShapeFactory.cpp:34
#, kde-format
msgid "A shape which shows a single text line"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextShapeFactory.cpp:44
#, kde-format
msgid "Artistic Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:321
#, kde-format
msgid "Click to change cursor position."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:323
#, kde-format
msgid "Click to select text shape."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:327
#, kde-format
msgid "Double click to put text on path."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:330
#, kde-format
msgid "Drag handle to change start offset."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:334
#, kde-format
msgid "Press escape to finish editing."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:515
#, kde-format
msgid "Press return to finish editing."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:623
#, kde-format
msgid "Text Properties"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextTool.cpp:633
#, kde-format
msgid "Text On Path"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ArtisticTextToolFactory.cpp:30
#, kde-format
msgid "Artistic text editing"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/AttachTextToPathCommand.cpp:30
msgctxt "(qtundo-format)"
msgid "Attach Path"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ChangeTextAnchorCommand.cpp:28
msgctxt "(qtundo-format)"
msgid "Change text anchor"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ChangeTextFontCommand.cpp:33
msgctxt "(qtundo-format)"
msgid "Change font"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ChangeTextOffsetCommand.cpp:31
msgctxt "(qtundo-format)"
msgid "Change Text Offset"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/DetachTextFromPathCommand.cpp:29
msgctxt "(qtundo-format)"
msgid "Detach Path"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/RemoveTextRangeCommand.cpp:32
msgctxt "(qtundo-format)"
msgid "Remove text range"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/artistictextshape/ReplaceTextRangeCommand.cpp:31
#: plugins/flake/artistictextshape/ReplaceTextRangeCommand.cpp:43
#: plugins/flake/artistictextshape/ReplaceTextRangeCommand.cpp:55
msgctxt "(qtundo-format)"
msgid "Replace text range"
msgstr ""
#. +> trunk5
#: plugins/flake/imageshape/ImageShapeFactory.cpp:38
#, kde-format
msgid "Image shape"
msgstr ""
#. +> trunk5
#: plugins/flake/imageshape/ImageShapeFactory.cpp:40
#, kde-format
msgid "A shape that shows an image (PNG/JPG/TIFF)"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigCommand.cpp:33
msgctxt "(qtundo-format)"
msgid "Change ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.cpp:32
#, kde-format
msgid "Arc"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.cpp:33
#, kde-format
msgid "Pie"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.cpp:34
#, kde-format
msgid "Chord"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, EllipseShapeConfigWidget)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:14
#, kde-format
msgid "Ellipse Shape"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:45
#, kde-format
msgid "Start angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:62
#, kde-format
msgid "End angle:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, closeEllipse)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeConfigWidget.ui:79
#, kde-format
msgid "Close ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/ellipse/EllipseShapeFactory.cpp:37
#, kde-format
msgid "An ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:40
#, kde-format
msgid "An enhanced path shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:42
#, kde-format
msgid "An enhanced path"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:165
#, kde-format
msgid "Cross"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:167
#, kde-format
msgid "A cross"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:203
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:237
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:271
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:305
#, kde-format
msgid "An arrow"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:382
#, kde-format
msgid "Callout"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:384
#, kde-format
msgid "A callout"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:428
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:430
#, kde-format
msgid "Smiley"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:508
#, kde-format
msgid "Circular Arrow"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:510
#, kde-format
msgid "A circular-arrow"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:553
#, kde-format
msgid "Gearhead"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/enhancedpath/EnhancedPathShapeFactory.cpp:555
#, kde-format
msgid "A gearhead"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/rectangle/RectangleShapeConfigCommand.cpp:34
msgctxt "(qtundo-format)"
msgid "Change rectangle"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, RectangleShapeConfigWidget)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/rectangle/RectangleShapeConfigWidget.ui:14
#, kde-format
msgid "Rectangle Shape"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/rectangle/RectangleShapeConfigWidget.ui:38
#, kde-format
msgid "Corner radius x:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/rectangle/RectangleShapeConfigWidget.ui:48
#, kde-format
msgid "Corner radius y:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/rectangle/RectangleShapeFactory.cpp:37
#, kde-format
msgid "A rectangle"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigCommand.cpp:32
msgctxt "(qtundo-format)"
msgid "Change spiral"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.cpp:36
#, kde-format
msgid "Clockwise"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.cpp:37
#, kde-format
msgid "Anticlockwise"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, SpiralShapeConfigWidget)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.ui:14
#, kde-format
msgid "Spiral Shape"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.ui:30
#, kde-format
msgid "Fade:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeConfigWidget.ui:56
#, kde-format
msgid "Direction:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeFactory.cpp:32
#, kde-format
msgid "Spiral"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/spiral/SpiralShapeFactory.cpp:34
#, kde-format
msgid "A spiral shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigCommand.cpp:34
msgctxt "(qtundo-format)"
msgid "Change star"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, StarShapeConfigWidget)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigWidget.ui:14
#, kde-format
msgid "Star shape"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigWidget.ui:20
#, kde-format
msgid "Polygon:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigWidget.ui:37
#, kde-format
msgid "Corners:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigWidget.ui:47
#, kde-format
msgid "Inner radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeConfigWidget.ui:61
#, kde-format
msgid "Outer radius:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:39
#, kde-format
msgid "A star shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:41
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:53
#, kde-format
msgid "A star"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:51
#, kde-format
msgid "Star"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:65
#, kde-format
msgid "Flower"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:67
#, kde-format
msgid "A flower"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:82
#, kde-format
msgid "Pentagon"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:84
#, kde-format
msgid "A pentagon"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:98
#, kde-format
msgid "Hexagon"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/pathshapes/star/StarShapeFactory.cpp:100
#, kde-format
msgid "A hexagon"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/AnnotationTextShapeFactory.cpp:44
#: plugins/flake/textshape/AnnotationTextShapeFactory.cpp:52
#, kde-format
msgid "Annotation"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/AnnotationTextShapeFactory.cpp:46
#, kde-format
msgid "Annotation shape to show annotation content"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/AnnotationTextShapeFactory.cpp:54
#, kde-format
msgid "Annotation Shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AcceptChangeCommand.cpp:46
msgctxt "(qtundo-format)"
msgid "Accept change"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AutoResizeCommand.cpp:35
#, kde-format
msgctxt "Disable Shrink To Fit"
msgid "Disable"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AutoResizeCommand.cpp:35
#, kde-format
msgctxt "Enable Shrink To Fit"
msgid "Enable"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AutoResizeCommand.cpp:38
#, kde-format
msgctxt "(qtundo-format) Enable/Disable Grow To Fit Width"
msgid "%1 Grow To Fit Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AutoResizeCommand.cpp:41
#, kde-format
msgctxt "(qtundo-format) Enable/Disable Grow To Fit Height"
msgid "%1 Grow To Fit Height"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/AutoResizeCommand.cpp:44
#, kde-format
msgctxt "(qtundo-format) Enable/Disable Shrink To Fit"
msgid "%1 Shrink To Fit"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/ChangeListLevelCommand.cpp:43
msgctxt "(qtundo-format)"
msgid "Change List Level"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/RejectChangeCommand.cpp:48
msgctxt "(qtundo-format)"
msgid "Reject change"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/ShowChangesCommand.cpp:53
msgctxt "(qtundo-format)"
msgid "Show Changes"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/commands/ShowChangesCommand.cpp:55
msgctxt "(qtundo-format)"
msgid "Hide Changes"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, acceptButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:44
#, kde-format
msgid "Accept"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, rejectButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:57
#, kde-format
msgid "Reject"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/AcceptRejectChangeDialog.ui:96
#, kde-format
msgid "Change Log"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, configureBibliography)
#. i18n: ectx: property (windowTitle), widget (QDialog, BibliographyConfigureDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:14
#: plugins/flake/textshape/dialogs/SimpleCitationBibliographyWidget.ui:52
#, kde-format
msgid "Configure bibliography"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:20
#, kde-format
msgid "Formatting of bibliography entries"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, prefixLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:28
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:70
#, kde-format
msgid "Prefix:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: ectx: property (text), widget (QLabel, suffixLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:48
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:86
#, kde-format
msgid "Suffix:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, numberedEntries)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:70
#, kde-format
msgid "Number entries"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:80
#, kde-format
msgid "Sort"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, sortByPosition)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:86
#, kde-format
msgid "Sort by position"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, sortKeyGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:93
#, kde-format
msgid "Sort keys"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addSortKeyButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:103
#, kde-format
msgid "Add sort key"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, sortAlgorithmLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:131
#, kde-format
msgid "Sort algorithm:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sortAlgorithm)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyConfigureDialog.ui:139
#, kde-format
msgid "Alphanumeric"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyTemplate.cpp:43
#, kde-format
msgid "Bibliography"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/BibliographyTemplate.cpp:55
#: plugins/flake/textshape/ReferencesToolFactory.cpp:32
#, kde-format
msgid "References"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.cpp:152
#, kde-format
msgid "This is a line of inserted text."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.cpp:158
#, kde-format
msgid "This is a line of deleted text."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.cpp:164
#, kde-format
msgid "This is a line of text whose format has been changed."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, ChangeConfigureDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:17
#, kde-format
msgid "Configure Change Tracking"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:30
#, kde-format
msgid "General Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:37
#, kde-format
msgid "Saving Format"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, odf12RadioButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:44
#, kde-format
msgid "ODF 1.2"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, deltaXmlRadioButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:51
#, kde-format
msgid "DeltaXML (Experimental)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:58
#, kde-format
msgid "Author Name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:75
#, kde-format
msgid "Change Visualization Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, insertionGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:89
#, kde-format
msgid "Insertions"
msgstr ""
#. i18n: ectx: property (html), widget (QTextEdit, previewTextEdit)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:158
#, kde-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Bitstream Vera Sans'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-size:11pt; font-weight:600; text-decoration: underline;\">Preview</span></p>"
"\n"
"<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:12pt; font-weight:600;\"></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-weight:600;\">Inserted Text</span></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-size:8pt;\">This is a line of text before the inserted text. This is a line of inserted text. This is a line after the inserted text.</span></p>"
"\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';\"></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-weight:600;\">Deleted Text</span></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-size:8pt;\">This is a line of text before the deleted text. This is a line of deleted text. This is a line after the deleted text.</span></p>"
"\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2';\"></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-weight:600;\">Formatted Text</span></p>"
"\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:'MS Shell Dlg 2'; font-size:8pt;\">This is a line of text before the format-change text. This is a line of text whose format has been changed. This is a line of text after the format-change text.</span></p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, deletionGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:172
#, kde-format
msgid "Deletions"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, formatGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeConfigureDialog.ui:231
#, kde-format
msgid "Format Changes"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ChangeTrackingOptions)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeTrackingOptionsWidget.ui:14
#, kde-format
msgid "Change Tracking Options"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, configureChangeTrackingButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeTrackingOptionsWidget.ui:142
#, kde-format
msgid "Configure Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, recordChangesCheckBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeTrackingOptionsWidget.ui:175
#, kde-format
msgid "Record Changes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, showChangesCheckBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ChangeTrackingOptionsWidget.ui:182
#, kde-format
msgid "Show Changes"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterGeneral.cpp:72
#: plugins/flake/textshape/dialogs/FormattingPreview.cpp:51
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:1018
#, kde-format
msgid "Font"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterGeneral.ui:33
#, kde-format
msgctxt "Name of the style"
msgid "Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterGeneral.ui:46
#, kde-format
msgid "Next style:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterGeneral.ui:62
#, kde-format
msgid "Parent style:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, inToc)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterGeneral.ui:78
#, kde-format
msgid "Include in table of contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:287
#, kde-format
msgid "Small Caps"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:288
#, kde-format
msgid "Uppercase"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:289
#, kde-format
msgid "Lowercase"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:290
#, kde-format
msgid "Capitalize"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:298
#, kde-format
msgid "Superscript"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.cpp:299
#, kde-format
msgid "Subscript"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textColorLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:27
#: plugins/flake/textshape/dialogs/FontDecorations.ui:49
#, kde-format
msgid "Text color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:110
#, kde-format
msgid "Underlining:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:141
#, kde-format
msgid "Strikethrough:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:172
#, kde-format
msgid "Capitalization:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CharacterHighlighting.ui:185
#, kde-format
msgctxt "Character position"
msgid "Position:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.cpp:52
#, kde-format
msgid ""
"The document already contains the bibliography entry with different data.\n"
"Do you want to adjust existing entries?"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.cpp:52
#: plugins/flake/textshape/dialogs/StyleManager.cpp:428
#, kde-format
msgid "Warning"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.cpp:69
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.cpp:87
#, kde-format
msgid "Short name%1"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, CitationInsertionDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:20
#, kde-format
msgid "Insert Bibliography entry"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:32
#, kde-format
msgid "Insert Bibliography Entry Details"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, shortnameLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:38
#, kde-format
msgid "Short Name:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:60
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:61
#, kde-format
msgid "Article"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:65
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:66
#, kde-format
msgid "Book"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:70
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:71
#, kde-format
msgid "Booklet"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:75
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:76
#, kde-format
msgid "Conference"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:85
#, kde-format
msgid "Inbook"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:90
#, kde-format
msgid "Incollection"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:95
#, kde-format
msgid "Inproceedings"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:100
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:101
#, kde-format
msgid "Journal"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:110
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:111
#, kde-format
msgid "Masters thesis"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:120
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:121
#, kde-format
msgid "PhD thesis"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:125
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:126
#, kde-format
msgid "Proceedings"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:130
#, kde-format
msgid "Tech Report"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:135
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:136
#, kde-format
msgid "Unpublished"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:140
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:141
#, kde-format
msgid "WWW"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:145
#, kde-format
msgid "custom 1"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:150
#, kde-format
msgid "custom 2"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:155
#, kde-format
msgid "custom 3"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:160
#, kde-format
msgid "custom 4"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, sourceType)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:165
#, kde-format
msgid "custom 5"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, yearLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:193
#, kde-format
msgid "Year:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, addressLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:213
#, kde-format
msgid "Address:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, isbnLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:223
#, kde-format
msgid "ISBN:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, chapterLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:233
#, kde-format
msgid "Chapter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, issnLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:243
#, kde-format
msgid "ISSN:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, editorLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:253
#, kde-format
msgid "Editor:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, pagesLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:263
#, kde-format
msgid "Page(s):"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, booktitleLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:273
#, kde-format
msgid "Book title:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, editionLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:283
#, kde-format
msgid "Edition:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, publicationLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:293
#, kde-format
msgid "Publication:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, volumeLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:303
#, kde-format
msgid "Volume:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, institutionLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:313
#, kde-format
msgid "Institution:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, organisationLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:323
#, kde-format
msgid "Organisation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, reporttypeLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:333
#, kde-format
msgid "Type of Report:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, schoolLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:343
#, kde-format
msgid "University:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, journalLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:353
#, kde-format
msgid "Journal:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, monthLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:363
#, kde-format
msgid "Month:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, seriesLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:373
#, kde-format
msgid "Series:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, numberLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:383
#, kde-format
msgid "Number:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, noteLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:393
#, kde-format
msgid "Note:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, annotationLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:403
#, kde-format
msgid "Annotation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, urlLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:413
#, kde-format
msgid "URL:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ud1Label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:423
#, kde-format
msgid "User-defined 1:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ud3Label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:433
#, kde-format
msgid "User-defined 3:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ud2Label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:440
#, kde-format
msgid "User-defined 2:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ud4Label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:453
#, kde-format
msgid "User-defined 4:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ud5Label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:463
#, kde-format
msgid "User-defined 5:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:485
#, kde-format
msgid "OR"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/CitationInsertionDialog.ui:509
#, kde-format
msgid "From the document:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/DockerStylesComboModel.cpp:75
#, kde-format
msgid "Used Styles"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/DockerStylesComboModel.cpp:78
#, kde-format
msgid "Unused Styles"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, shadowGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/FontDecorations.ui:95
#, kde-format
msgid "Text Shadow"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, positionGroupBox)
#. i18n: ectx: property (title), widget (QGroupBox, moveGroup)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/FontDecorations.ui:289
#: plugins/tools/basictools/wdgmovetool.ui:184
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:998
#, kde-format
msgid "Position"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hyphenate)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/FontDecorations.ui:295
#, kde-format
msgid "Automatic hyphenation"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/FontDia.cpp:47
#, kde-format
msgid "Select Font"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/FontDia.cpp:82
msgctxt "(qtundo-format)"
msgid "Font"
msgstr ""
#. i18n: ectx: property (text), widget (FormattingButton, addBibliography)
#. i18n: ectx: property (windowTitle), widget (QDialog, InsertBibliographyDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:17
#: plugins/flake/textshape/dialogs/SimpleCitationBibliographyWidget.ui:36
#, kde-format
msgid "Insert Bibliography"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, titlegroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:26
#, kde-format
msgid "Bibliography title"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:45
#, kde-format
msgid "Bibliography entries"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bibTypesLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:53
#, kde-format
msgid "Bibliography type:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:86
#, kde-format
msgid "In book"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:91
#, kde-format
msgid "In collection"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:96
#, kde-format
msgid "In proceedings"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:131
#, kde-format
msgid "Tech report"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:146
#, kde-format
msgid "custom1"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:151
#, kde-format
msgid "custom2"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:156
#, kde-format
msgid "custom3"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:161
#, kde-format
msgid "custom4"
msgstr ""
#. i18n: ectx: property (text), item, widget (QListWidget, bibTypes)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:166
#, kde-format
msgid "custom5"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, availableFieldsLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:178
#, kde-format
msgid "Available fields "
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, add)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:192
#, kde-format
msgid "Add >>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, span)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:199
#, kde-format
msgid "Span"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, remove)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:206
#, kde-format
msgid "<<Remove"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, addedFieldsLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertBibliographyDialog.ui:217
#, kde-format
msgid "Fields added"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertCharacter.cpp:29
#, kde-format
msgid "Special Characters"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, buttonInsert)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertCharacter.cpp:39
#: plugins/flake/textshape/dialogs/ManageBookmark.ui:34
#: plugins/flake/textshape/TextTool.cpp:2229
#, kde-format
msgid "Insert"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/InsertCharacter.cpp:41
#, kde-format
msgctxt "Close dialog"
msgid "Close"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, filterLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LanguageTab.ui:19
#, kde-format
msgid "Quick search:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:84
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:166
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:200
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:293
#, kde-format
msgid "The URL is invalid"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:101
#, kde-format
msgid "Bookmark does not exist"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:204
#, kde-format, no-c-format
msgid "Fetching the title: 0% complete"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:227
#, kde-format
msgid "Fetch timed out"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.cpp:282
#, kde-format, no-c-format
msgid "Fetching the title: %1% complete"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, LinkInsertionDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:14
#, kde-format
msgid "Link"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, weblinkInsertionTab)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:30
#, kde-format
msgid "Web Link"
msgstr ""
#. i18n: ectx: attribute (toolTip), widget (QWidget, weblinkInsertionTab)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:34
#, kde-format
msgid ""
"Insert links to web documents. You can provide both URL and a label for the link,\n"
" or just enter the URL and hit \"Fetch the title from URL\""
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:42
#, kde-format
msgid "The address of your document (Uniform Resource Locator)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:45
#, kde-format
msgid " URL:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, fetchTitleButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:58
#, kde-format
msgid "Hit this button to get the title from the URL. Redirections are also handled. "
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, fetchTitleButton)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:61
#, kde-format
msgid "Fetch Title From URL"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:81
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:165
#, kde-format
msgid "The text that will be displayed for your link"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:84
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:168
#, kde-format
msgid " Text:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, bookmarkLinkInsertionTab)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:113
#, kde-format
msgid "Link To Bookmark"
msgstr ""
#. i18n: ectx: attribute (toolTip), widget (QWidget, bookmarkLinkInsertionTab)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:117
#, kde-format
msgid ""
"Insert links to Bookmarks. To create bookmarks,\n"
"click \"Bookmarks\" in the Links and Bookmarks section"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:132
#, kde-format
msgid "The name of the bookmark to where the link has to point to"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/LinkInsertionDialog.ui:135
#, kde-format
msgid " Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, buttonRename)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmark.ui:20
#, kde-format
msgid "&Rename"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, buttonDelete)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmark.ui:27
#, kde-format
msgid "&Delete"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:83
#, kde-format
msgid "Rename Bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:84
#, kde-format
msgid "Please provide a new name for the bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:91
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:132
#, kde-format
msgid "A bookmark with the name \"%1\" already exists."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:124
#, kde-format
msgid "Insert Bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:125
#, kde-format
msgid "Please provide a name for the bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ManageBookmarkDialog.cpp:148
#, kde-format
msgid "Manage Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.cpp:36
#, kde-format
msgid "Footnote Settings"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.cpp:39
#, kde-format
msgid "Endnote Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:54
#, kde-format
msgid "Automatic Numbering:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, prefix)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:75
#, kde-format
msgid " Prefix:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, startAt)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:85
#, kde-format
msgid " Start at:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, numStyle)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:95
#, kde-format
msgid " Format:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, suffix)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:111
#, kde-format
msgid " Suffix:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, beginAt)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:127
#, kde-format
msgid "Starts over at:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, beginAtCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:149
#, kde-format
msgid "Chapter"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, beginAtCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:154
#, kde-format
msgid "Document"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:233
#, kde-format
msgid "1, 2, 3, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:238
#, kde-format
msgid "a, b, c, ..., aa, ab, ..., ba, bb, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:243
#, kde-format
msgid "A, B, C, ..., AA, AB, ..., BA, BB, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:248
#, kde-format
msgid "a, b, c, ..., aa, bb, ..., aaa, bbb, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:253
#, kde-format
msgid "A, B, C, ..., AA, BB, ..., AAA, BBB, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:258
#, kde-format
msgid "i, ii, iii, ..."
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, numStyleCombo)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:263
#, kde-format
msgid "I,II,III, ..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, continuationBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:290
#, kde-format
msgid "Continuation Notice:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cont2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:305
#, kde-format
msgid "Text saying it is a continuation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cont1)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/NotesConfigurationDialog.ui:315
#, kde-format
msgid " Text saying it will continue:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:49
#, kde-format
msgid "Custom Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:50
#, kde-format
msgid "No Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:55
#, kde-format
msgctxt "Automatic horizontal alignment"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:56
#, kde-format
msgctxt "Text alignment"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:57
#, kde-format
msgctxt "Text alignment"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:58
#, kde-format
msgctxt "Text alignment"
msgid "Centered"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:60
#, kde-format
msgctxt "Tab follows the bullet or number"
msgid "Tab Stop"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:61
#, kde-format
msgctxt "Space"
msgid "Space"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:62
#, kde-format
msgctxt "None"
msgid "Nothing"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.cpp:369
#, kde-format
msgid "Select a list image"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:31
#, kde-format
msgid "Start at:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:57
#, kde-format
msgid "Alignment:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:128
#, kde-format
msgid "Display Levels:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:148
#, kde-format
msgid "Bullet/Number followed by"
msgstr ""
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, doubleSpinBox)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, doubleSpinBox_2)
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, doubleSpinBox_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:158
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:175
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:192
#, kde-format
msgid " cm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:165
#, kde-format
msgid "at"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:182
#, kde-format
msgid "Aligned at"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:199
#, kde-format
msgid "Indented at"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:211
#, kde-format
msgid "Custom character:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, restartNumbering)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:241
#, kde-format
msgid "Restart numbering at this paragraph"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, letterSynchronization)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:248
#, kde-format
msgid "Letter Synchronization"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, insertImageLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:264
#, kde-format
msgid "Insert Image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, insertImage)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphBulletsNumbers.ui:284
#: plugins/impex/raw/3rdparty/libkdcraw/src/rwidgetutils.cpp:357
#, kde-format
msgid "Browse..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDecorations.ui:31
#: plugins/impex/psd/psd_loader.cpp:172
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:77
#, kde-format
msgid "Background"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDropCaps.cpp:33
#, kde-format
msgid "Whole Word"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDropCaps.ui:32
#, kde-format
msgid "Drop caps:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDropCaps.ui:84
#, kde-format
msgid "Distance to paragraph:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDropCaps.ui:94
#, kde-format
msgid "Number of characters:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphDropCaps.ui:104
#, kde-format
msgid "Number of lines it covers:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphGeneral.cpp:53
#, kde-format
msgid "Indent/Spacing"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphGeneral.cpp:58
#, kde-format
msgid "General Layout"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphGeneral.cpp:63
#, kde-format
msgid "Bullets/Numbers"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphGeneral.cpp:68
#, kde-format
msgid "Decorations"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphGeneral.cpp:73
#, kde-format
msgid "Drop Caps"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:38
#, kde-format
msgctxt "Line spacing value"
msgid "Single"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:39
#, kde-format
msgctxt "Line spacing value"
msgid "1.5 Lines"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:40
#, kde-format
msgctxt "Line spacing value"
msgid "Double"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:41
#, kde-format
msgctxt "Line spacing type"
msgid "Proportional"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:42
#, kde-format
msgctxt "Line spacing type"
msgid "Additional"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:43
#, kde-format
msgctxt "Line spacing type"
msgid "Fixed"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.cpp:44
#, kde-format
msgctxt "Line spacing type"
msgid "At least"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QWidget, ParagraphIndentSpacing)
#. i18n: ectx: property (whatsThis), widget (QGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:14
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:97
#, kde-format
msgid ""
"<p>"
"<ul>"
"<li><b>Single</b>: The normal linespacing</li>"
"</ul>"
"</p>"
" "
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:20
#, kde-format
msgid "Indent"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:71
#, kde-format
msgid "First Line:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, autoTextIndent)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:87
#, kde-format
msgid "Auto-infer from text size"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:100
#, kde-format
msgid "Line Spacing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:180
#, kde-format
msgid "Use Font Metrics:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:202
#, kde-format
msgid "Paragraph Space"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:208
#, kde-format
msgid "Before:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphIndentSpacing.ui:221
#, kde-format
msgid "After:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (text), widget (QLabel, labelAlign)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:17
#: plugins/tools/defaulttool/connectionTool/ConnectionPointWidget.ui:97
#, kde-format
msgid "Alignment"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, left)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:23
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:42
#, kde-format
msgid "Left"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, center)
#. i18n: ectx: property (text), widget (QCheckBox, boolCenter)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:30
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:43
#: plugins/tools/tool_crop/wdg_tool_crop.ui:65
#, kde-format
msgid "Center"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, right)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:37
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:44
#, kde-format
msgid "Right"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, justify)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:44
#, kde-format
msgid "Justify"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:54
#, kde-format
msgid "Behavior at End of Frame/Page"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, keepTogether)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:60
#, kde-format
msgid "Keep lines together"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, breakBefore)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:67
#, kde-format
msgid "Insert break before paragraph"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, breakAfter)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:74
#, kde-format
msgid "Insert break after paragraph"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphLayout.ui:83
#, kde-format
msgid "Leave at least this many lines (orphans):"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/ParagraphSettingsDialog.cpp:41
#, kde-format
msgid "Paragraph Format"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/QuickTableButton.cpp:159
#, kde-format
msgid "Insert a table"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionFormatDialog.cpp:54
#, kde-format
msgid "Section name"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionFormatDialog.cpp:116
#: plugins/flake/textshape/dialogs/SectionsSplitDialog.cpp:33
#, kde-format
msgid "Configure sections"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionFormatDialog.cpp:167
#, kde-format
msgid "Invalid characters or section with such name exists."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionFormatDialog.ui:29
#, kde-format
msgid "Section name:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, SectionsSplitDialog)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionsSplitDialog.ui:6
#, kde-format
msgid "Split sections"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionsSplitDialog.ui:12
#, kde-format
msgid "Insert paragraph..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionsSplitDialog.ui:23
#, kde-format
msgid "before start of section:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SectionsSplitDialog.ui:37
#, kde-format
msgid "after end of section:"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, insertAnnotation)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleAnnotationWidget.ui:23
#, kde-format
msgid "Insert Note"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, removeAnnotation)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleAnnotationWidget.ui:33
#, kde-format
msgid "Remove Note"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, addCitation)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleCaptionsWidget.ui:34
#, kde-format
msgid "Add caption"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleCharacterWidget.cpp:66
#, kde-format
msgid "Change font format"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, addCitation)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleCitationBibliographyWidget.ui:23
#, kde-format
msgid "Insert citation at current position"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, addCitation)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleCitationBibliographyWidget.ui:26
#, kde-format
msgid "Insert Citation"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, configureBibliography)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleCitationBibliographyWidget.ui:55
#, kde-format
msgid "Configure Bibliography"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleFootEndNotesWidget.cpp:39
#, kde-format
msgid "Inserts a footnote at the current cursor position"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleFootEndNotesWidget.cpp:44
#, kde-format
msgid "Inserts an endnote at the current cursor position"
msgstr ""
#. i18n: ectx: property (text), widget (FormattingButton, addEndnote)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleFootEndNotesWidget.ui:29
#, kde-format
msgid "Endnote"
msgstr ""
#. i18n: ectx: property (text), widget (FormattingButton, addFootnote)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleFootEndNotesWidget.ui:48
#, kde-format
msgid "Footnote"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QWidget, SimpleInsertWidget)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleInsertWidget.ui:20
#, kde-format
msgid "Other insertions from \"References\" below and in \"Add Shape\" docker"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, insertLink)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleLinksWidget.ui:34
#, kde-format
msgid "Hyperlinks"
msgstr ""
#. i18n: ectx: property (text), widget (FormattingButton, invokeBookmarkHandler)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleLinksWidget.ui:44
#, kde-format
msgid "Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleParagraphWidget.cpp:86
#, kde-format
msgid "Change paragraph format"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleParagraphWidget.cpp:183
#, kde-format
msgid "Change List Level"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleParagraphWidget.cpp:184
#, kde-format
msgid "Change the level the list is at"
msgstr ""
#. i18n: ectx: property (text), widget (FormattingButton, addToC)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleTableOfContentsWidget.ui:34
#: plugins/flake/textshape/dialogs/TableOfContentsTemplate.cpp:51
#, kde-format
msgid "Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleTableWidget.cpp:60
#, kde-format
msgid "Set Border Color..."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleTableWidget.cpp:182
#, kde-format
msgctxt "No border - has to fit in 48pixels"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/SimpleTableWidget.cpp:183
#, kde-format
msgid "No Border"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManager.cpp:52
#, kde-format
msgid "Create a new style inheriting the current style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManager.cpp:349
#: plugins/flake/textshape/dialogs/StyleManager.cpp:361
#, kde-format
msgid "New Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManager.cpp:428
#, kde-format
msgid "Another style named '%1' already exist. Please choose another name."
msgstr ""
#. i18n: ectx: attribute (title), widget (QListView, paragraphStylesListView)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManager.ui:46
#: plugins/flake/textshape/TextTool.cpp:2221
#, kde-format
msgid "Paragraph"
msgstr ""
#. i18n: ectx: attribute (title), widget (QListView, characterStylesListView)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManager.ui:60
#: plugins/flake/textshape/TextTool.cpp:2219
#, kde-format
msgid "Character"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManagerDialog.cpp:33
#, kde-format
msgid "Style Manager"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManagerDialog.cpp:62
#, kde-format
msgid "Save Changes"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManagerDialog.cpp:62
#, kde-format
msgid "You have changes that are not applied. What do you want to do with those changes?"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StyleManagerWelcome.ui:42
#, kde-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">It is possible to assign a named style to text and alter the style properties to change all text with that style.</p>"
"\n"
"<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Applying a style change will reformat all text that previously got the named style assigned to it. Use the Styles docker to apply styles to text.</p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StylesComboPreview.cpp:81
#, kde-format
msgid "Create a new style with the current properties"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/StylesComboPreview.cpp:188
#, kde-format
msgid "New style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.cpp:27
#, kde-format
msgid "Insert Table"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupLogical)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:23
#, kde-format
msgid "Columns and rows"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelColumns)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:32
#, kde-format
msgid "Number of columns:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelRows)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:55
#, kde-format
msgid "Number of rows:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupPhysical)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:97
#, kde-format
msgid "Width strategy"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFixed)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:112
#, kde-format
msgid "Fixed column width:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFitContents)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:125
#, kde-format
msgid "Fit to contents"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFitAvail)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableDialog.ui:138
#, kde-format
msgid "Fit to available surrounding"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:74
#, kde-format
msgid "Table of Contents - Configure"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:76
#, kde-format
msgid "Table Title"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:77
#, kde-format
msgid "Use outline"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:78
#, kde-format
msgid "Use styles"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:79
#, kde-format
msgid "Configure"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.cpp:80
#, kde-format
msgid "Index"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:49
#, kde-format
msgid "Tab 1"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelTitle)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:57
#: plugins/flake/textshape/dialogs/TableOfContentsEntryModel.cpp:40
#, kde-format
msgid "Title"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useOutline)
#. i18n: ectx: property (text), widget (QCheckBox, useStyles)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:69
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:78
#, kde-format
msgid "CheckBox"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsConfigure.ui:108
#, kde-format
msgid "Tab 2"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsEntryModel.cpp:43
#, kde-format
msgid "Level %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsEntryModel.cpp:151
#: plugins/flake/textshape/dialogs/TableOfContentsStyleModel.cpp:253
#, kde-format
msgid "Level"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsEntryModel.cpp:153
#, kde-format
msgid "Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsStyleConfigure.cpp:38
#, kde-format
msgid "Table of Contents - Configure Styles"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsStyleConfigure.cpp:42
#, kde-format
msgid "Styles available"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/dialogs/TableOfContentsTemplate.cpp:40
#, kde-format
msgid "Table Of Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ChangeListCommand.cpp:41
#: plugins/flake/textshape/kotext/commands/ChangeListCommand.cpp:88
#: plugins/flake/textshape/kotext/commands/ChangeListCommand.cpp:101
msgctxt "(qtundo-format)"
msgid "Change List"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ChangeStylesMacroCommand.cpp:37
msgctxt "(qtundo-format)"
msgid "Change Styles"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ChangeTrackedDeleteCommand.cpp:77
#: plugins/flake/textshape/kotext/commands/DeleteCommand.cpp:68
msgctxt "(qtundo-format)"
msgid "Delete"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ChangeTrackedDeleteCommand.cpp:193
#: plugins/flake/textshape/TextTool.cpp:2633
#, kde-format
msgid "Key Press"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ChangeTrackedDeleteCommand.cpp:332
#: plugins/flake/textshape/kotext/commands/DeleteCommand.cpp:517
#: plugins/flake/textshape/kotext/KoTextEditor_undo.cpp:87
#: plugins/flake/textshape/kotext/KoTextEditor_undo.cpp:166
#: plugins/flake/textshape/kotext/KoTextEditor_undo.cpp:201
#: plugins/flake/textshape/kotext/KoTextEditor_undo.cpp:218
#: plugins/flake/textshape/kotext/KoTextEditor_undo.cpp:260
msgctxt "(qtundo-format)"
msgid "Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/DeleteTableColumnCommand.cpp:38
msgctxt "(qtundo-format)"
msgid "Delete Column"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/DeleteTableRowCommand.cpp:38
msgctxt "(qtundo-format)"
msgid "Delete Row"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertNoteCommand.cpp:36
msgctxt "(qtundo-format)"
msgid "Insert Footnote"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertNoteCommand.cpp:38
msgctxt "(qtundo-format)"
msgid "Insert Endnote"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertTableColumnCommand.cpp:40
msgctxt "(qtundo-format)"
msgid "Insert Column Right"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertTableColumnCommand.cpp:42
msgctxt "(qtundo-format)"
msgid "Insert Column Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertTableRowCommand.cpp:40
msgctxt "(qtundo-format)"
msgid "Insert Row Below"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/InsertTableRowCommand.cpp:42
msgctxt "(qtundo-format)"
msgid "Insert Row Above"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ListItemNumberingCommand.cpp:35
msgctxt "(qtundo-format)"
msgid "Change List Numbering"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/NewSectionCommand.cpp:37
msgctxt "(qtundo-format)"
msgid "New Section"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ParagraphFormattingCommand.cpp:56
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:510
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:531
msgctxt "(qtundo-format)"
msgid "Formatting"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ParagraphFormattingCommand.cpp:93
msgctxt "(qtundo-format)"
msgid "Direct Paragraph Formatting"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/RenameSectionCommand.cpp:35
msgctxt "(qtundo-format)"
msgid "Rename Section"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ResizeTableCommand.cpp:45
#: plugins/flake/textshape/TextTool.cpp:1391
msgctxt "(qtundo-format)"
msgid "Adjust Column Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/ResizeTableCommand.cpp:47
#: plugins/flake/textshape/TextTool.cpp:1433
msgctxt "(qtundo-format)"
msgid "Adjust Row Height"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/SplitSectionsCommand.cpp:39
msgctxt "(qtundo-format)"
msgid "Split sections startings"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/SplitSectionsCommand.cpp:41
msgctxt "(qtundo-format)"
msgid "Split sections endings"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/TextPasteCommand.cpp:68
msgctxt "(qtundo-format)"
msgid "Paste As Text"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/commands/TextPasteCommand.cpp:70
msgctxt "(qtundo-format)"
msgid "Paste"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/InsertTextLocator.cpp:27
#, kde-format
msgid "Index Reference"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/InsertTextReferenceAction.cpp:35
#: plugins/flake/textshape/kotext/InsertTextReferenceAction.cpp:63
#, kde-format
msgid "Text Reference"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/InsertTextReferenceAction.cpp:44
#, kde-format
msgid "Please create an index to reference first."
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/InsertTextReferenceAction.cpp:53
#, kde-format
msgid "Select the index you want to reference"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoSectionModel.cpp:87
#, kde-format
msgctxt "new numbered section name"
msgid "New section %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoText.cpp:32
#, kde-format
msgctxt "Underline Style"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoText.cpp:33
#, kde-format
msgctxt "Underline Style"
msgid "Single"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoText.cpp:34
#, kde-format
msgctxt "Underline Style"
msgid "Double"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:193
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1440
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1442
msgctxt "(qtundo-format)"
msgid "New Paragraph"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:364
msgctxt "(qtundo-format)"
msgid "Add Bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:383
msgctxt "(qtundo-format)"
msgid "Add Annotation"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:407
msgctxt "(qtundo-format)"
msgid "Insert Index"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:433
msgctxt "(qtundo-format)"
msgid "Insert Variable"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:500
msgctxt "(qtundo-format)"
msgid "Insert Break"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:821
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:823
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:838
msgctxt "(qtundo-format)"
msgid "Insert Table"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:978
msgctxt "(qtundo-format)"
msgid "Merge Cells"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:995
msgctxt "(qtundo-format)"
msgid "Split Cells"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1024
msgctxt "(qtundo-format)"
msgid "Adjust Table Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1041
#: plugins/flake/textshape/TextTool.cpp:907
msgctxt "(qtundo-format)"
msgid "Change Border Formatting"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1088
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1090
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1108
msgctxt "(qtundo-format)"
msgid "Insert Table Of Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1147
msgctxt "(qtundo-format)"
msgid "Modify Table Of Contents"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1164
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1166
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1185
msgctxt "(qtundo-format)"
msgid "Insert Bibliography"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1222
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1224
msgctxt "(qtundo-format)"
msgid "Add Citation"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1251
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1253
#: plugins/flake/textshape/kotext/KoTextEditor.cpp:1291
msgctxt "(qtundo-format)"
msgid "Typing"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:67
msgctxt "(qtundo-format)"
msgid "Bold"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:80
msgctxt "(qtundo-format)"
msgid "Italic"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:93
msgctxt "(qtundo-format)"
msgid "Underline"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:112
msgctxt "(qtundo-format)"
msgid "Strike Out"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:145
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:146
msgctxt "(qtundo-format)"
msgid "Change Alignment"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:163
msgctxt "(qtundo-format)"
msgid "Set Vertical Alignment"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:197
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:198
msgctxt "(qtundo-format)"
msgid "Decrease Indent"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:233
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:234
msgctxt "(qtundo-format)"
msgid "Increase Indent"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:269
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:271
msgctxt "(qtundo-format)"
msgid "Decrease font size"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:282
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:284
msgctxt "(qtundo-format)"
msgid "Increase font size"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:295
msgctxt "(qtundo-format)"
msgid "Set Font"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:308
msgctxt "(qtundo-format)"
msgid "Set Font Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:321
msgctxt "(qtundo-format)"
msgid "Set Background Color"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:334
msgctxt "(qtundo-format)"
msgid "Set Text Color"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:362
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:401
msgctxt "(qtundo-format)"
msgid "Set Character Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_format.cpp:468
msgctxt "(qtundo-format)"
msgid "Set Paragraph Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/kotext/KoTextEditor_p.h:158
#: plugins/flake/textshape/kotext/KoTextEditor_p.h:194
msgctxt "(qtundo-format)"
msgid "Format"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:143
#, kde-format
msgid "Insert Labeled Footnote"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:144
#: plugins/flake/textshape/ReferencesTool.cpp:155
#, kde-format
msgid "Insert with label:"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:154
#, kde-format
msgid "Insert Labeled Endnote"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:186
#, kde-format
msgid "Add Bookmark"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:187
#, kde-format
msgid "Add Bookmark :"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:192
#, kde-format
msgid "Insert a Bookmark. This is useful to create links that point to areas within the document"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:233
#, kde-format
msgctxt "as in table of contents, list of pictures, index"
msgid "Tables, Lists & Indexes"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:236
#, kde-format
msgid "Footnotes and Endnotes"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:239
#, kde-format
msgid "Citations and Bibliography"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:242
#, kde-format
msgid "Links and Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:368
#, kde-format
msgid "Bookmark cannot be empty"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:375
#, kde-format
msgid "Duplicate Name. Click \"Manage Bookmarks\""
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReferencesTool.cpp:376
#, kde-format
msgid "to Rename or Delete Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReviewTool.cpp:65
#: plugins/flake/textshape/ReviewTool.cpp:66
#, kde-format
msgid "Remove Comment"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReviewTool.cpp:110
#, kde-format
msgid "Spell check"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReviewTool.cpp:113
#, kde-format
msgid "Comments"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/ReviewToolFactory.cpp:37
#, kde-format
msgid "Review"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:223
#, kde-format
msgctxt "Text list-style"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:224
#, kde-format
msgid "Small Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:225
#, kde-format
msgid "Circle Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:226
#, kde-format
msgid "Square Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:227
#, kde-format
msgid "Rhombus Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:228
#, kde-format
msgid "Check Mark Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:229
#, kde-format
msgid "Rightwards Arrow Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:230
#, kde-format
msgid "Arabic"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:231
#, kde-format
msgid "Lower Alphabetical"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:232
#, kde-format
msgid "Upper Alphabetical"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:233
#, kde-format
msgid "Lower Roman"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:234
#, kde-format
msgid "Upper Roman"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:241
#, kde-format
msgid "Large Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:242
#, kde-format
msgid "Ballot X Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:243
#, kde-format
msgid "Rightwards Arrow Head Bullet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:244
#, kde-format
msgid "Bengali"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:245
#, kde-format
msgid "Gujarati"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:246
#, kde-format
msgid "Gurumukhi"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:247
#, kde-format
msgid "Kannada"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:248
#, kde-format
msgid "Malayalam"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:249
#, kde-format
msgid "Oriya"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:250
#, kde-format
msgid "Tamil"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:251
#, kde-format
msgid "Telugu"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:252
#, kde-format
msgid "Tibetan"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:253
#, kde-format
msgid "Thai"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:254
#, kde-format
msgid "Abjad"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:255
#, kde-format
msgid "AbjadMinor"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/textlayout/ListItemsHelper.cpp:256
#, kde-format
msgid "ArabicAlphabet"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextShapeFactory.cpp:46
#, kde-format
msgid "A shape that shows text"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextShapeFactory.cpp:56
#, kde-format
msgid "Text Shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:333
#: plugins/tools/svgtexttool/kis_font_family_combo_box.cpp:118
#, kde-format
msgid "Font Family"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:338
#, kde-format
msgid "Variable"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:373
#, kde-format
msgid "Font Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:539
#, kde-format
msgid "Insertion"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:541
#, kde-format
msgid "Deletion"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:543
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:78
#, kde-format
msgid "Formatting"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:559
#, kde-format
msgid "Ctrl+click to go to link "
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:566
#, kde-format
msgid "Ctrl+click to go to the note "
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:572
#, kde-format
msgid "Ctrl+click to go to the note reference"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:674
#, kde-format
msgid "follows along"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:704
#, kde-format
msgid "Press shift to not resize this"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:2227
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:64
#, kde-format
msgid "Table"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextTool.cpp:2633
#: plugins/flake/textshape/TextTool.cpp:2639
#, kde-format
msgid "Autocorrection"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/textshape/TextToolFactory.cpp:31
#, kde-format
msgid "Text editing"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/ChangeVectorDataCommand.cpp:37
msgctxt "(qtundo-format)"
msgid "Change Vector Data"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorShapeConfigWidget.cpp:61
#, kde-format
msgid "Replace Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorShapeFactory.cpp:38
#, kde-format
msgid "Vector image"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorShapeFactory.cpp:40
#, kde-format
msgid "A shape that shows a vector image (EMF/WMF/SVM)"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorTool.cpp:77
#, kde-format
msgid "Open Vector Image (EMF/WMF/SVM)"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorTool.cpp:90
#, kde-format
msgid "Select a Vector Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/flake/vectorshape/VectorToolFactory.cpp:32
#, kde-format
msgid "Vector Image (EMF/WMF/SVM/SVG) tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/generators/pattern/patterngenerator.cpp:63
#, kde-format
msgid "&Pattern..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPattern)
#. +> trunk5 stable5
#: plugins/generators/pattern/wdgpatternoptions.ui:31
#, kde-format
msgid "&Pattern:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblColor)
#. +> trunk5 stable5
#: plugins/generators/pattern/wdgpatternoptions.ui:44
#: plugins/generators/solid/wdgcoloroptions.ui:17
#, kde-format
msgid "&Color:"
msgstr ""
#. +> trunk5 stable5
#: plugins/generators/solid/colorgenerator.cpp:56
#, kde-format
msgid "&Solid Color..."
msgstr ""
#. +> trunk5
#: plugins/impex/bmp/kis_bmp_import.cpp:65
#, kde-format
msgid "Imported Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/brush/KisAnimatedBrushAnnotation.cpp:29
#, kde-format
msgid "Brush selection information for animated brushes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, spacingLabel)
#. i18n: ectx: property (text), widget (QLabel, spacingLbl)
#. i18n: ectx: property (text), widget (QLabel, brushSpacingLabel)
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, lblSpacing)
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:27
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:387
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:110
#: plugins/paintops/libpaintop/forms/wdgclipboardbrush.ui:96
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:81
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:166
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:148
#: plugins/paintops/roundmarker/kis_roundmarker_option.ui:32
#: plugins/paintops/spray/wdgsprayoptions.ui:138
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1889
#, kde-format
msgid "Spacing:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, colorAsmask)
#. i18n: ectx: property (text), widget (QCheckBox, colorAsMask)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:47
#: plugins/paintops/libpaintop/forms/wdgclipboardbrush.ui:116
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:101
#, kde-format
msgid "Create mask from color"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:62
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:116
#, kde-format
msgid "Brush Style"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:82
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:143
#, kde-format
msgid "Style:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, brushStyle)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:99
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:160
#, kde-format
msgid "Regular"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, brushStyle)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:104
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:165
#, kde-format
msgid "Animated"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:118
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:179
#, kde-format
msgid "Selection mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox2)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelectionMode)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:141
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:202
#, kde-format
msgid "Constant"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox2)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelectionMode)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:146
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:207
#, kde-format
msgid "Random"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox2)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelectionMode)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:151
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:212
#, kde-format
msgid "Incremental"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox2)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelectionMode)
#. i18n: ectx: property (text), widget (QToolButton, liquifySizePressureBox)
#. i18n: ectx: property (text), widget (QToolButton, liquifyAmountPressureBox)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:156
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:217
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:48
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:2023
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:2039
#, kde-format
msgid "Pressure"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox2)
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSelectionMode)
#. +> trunk5 stable5
#: plugins/impex/brush/wdg_export_gih.ui:161
#: plugins/paintops/libpaintop/forms/wdgcustombrush.ui:222
#, kde-format
msgid "Angular"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_converter.cc:328
#, kde-format
msgctxt "@info"
msgid ""
"The image contains pixels with zero alpha channel and non-zero color channels. Krita will have to modify those pixels to have at least some alpha. The initial values will <i>not</i> be reverted on saving the image back.<br/>"
"<br/>"
"This will hardly make any visual difference just keep it in mind.<br/>"
"<br/>"
"<note>Modified alpha will have a range from %1 to %2</note>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_converter.cc:340
#, kde-format
msgctxt "@title:window"
msgid "EXR image will be modified"
msgstr ""
#. +> stable5
#: plugins/impex/exr/exr_converter.cc:1219
#, kde-format
msgctxt "@title:window"
msgid "Layers will be lost"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_converter.cc:1222
#, kde-format
msgctxt "@item:unsupported-node-message"
msgid "%1 (type: \"%2\")"
msgstr ""
#. +> trunk5
#: plugins/impex/exr/exr_converter.cc:1227
#, kde-format
msgctxt "@info"
msgid ""
"<p>The following layers have a type that is not supported by EXR format:</p>"
"<r>"
"<ul>%1</ul>"
"</p>"
"<p><warning>these layers have <b>not</b> been saved to the final EXR file</warning></p>"
msgstr ""
#. +> stable5
#: plugins/impex/exr/exr_converter.cc:1214
#, kde-format
msgctxt "@info"
msgid ""
"<p>The following layers have a type that is not supported by EXR format:</p>"
"<p>"
"<ul>%1</ul>"
"</p>"
"<p><warning>these layers will NOT be saved to the final EXR file</warning></p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:90
#, kde-format
msgid "This layer cannot be saved to EXR."
msgstr ""
#. +> stable5
#: plugins/impex/exr/exr_export.cc:91
#, kde-format
msgid "OpenEXR Export Options"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:94
#, kde-format
msgid "The layer does not have an image associated with it."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:98
#, kde-format
msgid "The filename is empty."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:102
#, kde-format
msgid "EXR images cannot be saved remotely."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:106
#, kde-format
msgid "Colorspace not supported: EXR images must be 16 or 32 bits floating point RGB."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export.cc:116
#, kde-format
msgid "Internal Error"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkFlatten)
#. i18n: ectx: property (toolTip), widget (QCheckBox, flatten)
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export_widget.ui:23
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:172
#, kde-format
msgid "This option will merge all layers. It is advisable to check this option, otherwise other applications might not be able to read your file correctly."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkFlatten)
#. i18n: ectx: property (text), widget (QCheckBox, flatten)
#. +> trunk5 stable5
#: plugins/impex/exr/exr_export_widget.ui:26
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:175
#, kde-format
msgid "Flatten the &image"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_import.cc:49
#, kde-format
msgid "Krita does support this type of EXR file."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_import.cc:53
#, kde-format
msgid "This is not an EXR file."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_import.cc:58
#, kde-format
msgid "The EXR file does not exist."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_import.cc:63
#, kde-format
msgid "The EXR is corrupted."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/exr/exr_import.cc:67
#, kde-format
msgid "Krita could not create a new image."
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_import.cpp:81
#, kde-format
msgid "The file is not 8 or 16 bits raw"
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_heightmap_import.cpp:89
#, kde-format
msgid "Heightmap Import Options"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_import.cpp:105
#, kde-format
msgid "R16 HeightMap Import Options"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_import.cpp:125
#, kde-format
msgid "File does not exist."
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_import.cpp:151
#, kde-format
msgid "Source file is not the right size for the specified width and height."
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:40
#, kde-format
msgid "Error: "
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:118
#, kde-format
msgid "Input does not match file size"
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:120
#, kde-format
msgid "Please specify width and height"
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:123
#, kde-format
msgid "Please specify width"
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:126
#, kde-format
msgid "Please specify height"
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:195
#, kde-format
msgid "Too many possible combinations. Input a width or height and try again."
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:208
#, kde-format
msgid "Width exceeds available pixels."
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:213
#, kde-format
msgid "Unable to calculate an appropriate height. File does not contain enough pixels to form a rectangle."
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:220
#, kde-format
msgid "Height exceeds available pixels."
msgstr ""
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.cpp:225
#, kde-format
msgid "Unable to calculate an appropriate width. File does not contain enough pixels to form a rectangle."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fileSizeDescLabel)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:29
#, kde-format
msgid "File size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, fileSizeLabel)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:42
#, kde-format
msgid "File size (bytes)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, endiannessLabel)
#. +> trunk5 stable5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:52
#, kde-format
msgid "Endianness:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioLittle)
#. +> trunk5 stable5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:61
#, kde-format
msgid "Little Endian"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioLittle)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:64
#, kde-format
msgid "&Little"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioMac)
#. +> stable5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:65
#, kde-format
msgid "&Mac"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioPC)
#. +> stable5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:75
#, kde-format
msgid "PC"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioBig)
#. +> trunk5 stable5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:77
#, kde-format
msgid "Big Endian"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBig)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:80
#, kde-format
msgid "&Big"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, guessButton)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:98
#, kde-format
msgid "Guess width and height based on file size and bits per pixel. Only values set to 0 will be updated."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, guessButton)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:101
#, kde-format
msgid "Guess dimensions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, heightInput)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:128
#, kde-format
msgid "Height of image in pixels."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, widthInput)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:151
#, kde-format
msgid "Width of image in pixels."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bppDescLabel)
#. +> trunk5
#: plugins/impex/heightmap/kis_wdg_options_heightmap.ui:178
#, kde-format
msgid "Bits per pixel:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:21
#: plugins/tools/basictools/kis_tool_brush.cc:322
#, kde-format
msgid "Basic"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, progressive)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:27
#, kde-format
msgctxt "A progressive jpeg file can be displayed while loading."
msgid "Progressive"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkForceSRGB)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:34
#: plugins/impex/png/kis_wdg_options_png.ui:40
#, kde-format
msgid "Force convert to sRGB"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, qualityLevel)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:58
#, kde-format
msgid ""
"<html><head/><body>"
"<p>These settings determine how much information is lost during compression. Low: small files, bad quality. High: big files, good quality.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:84
#, kde-format
msgid "Transparent pixel fill color:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisColorButton, bnTransparencyFillColor)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:106
#: plugins/impex/png/kis_wdg_options_png.ui:169
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Background color to replace transparent pixels with.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSaveProfile)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:128
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:185
#, kde-format
msgid "Save ICC Profile"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:139
#, kde-format
msgid "Advanced quality"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:172
#, kde-format
msgctxt "the result will be artificially smoothed to hide jpeg artifacts"
msgid "Smooth:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:172
#, kde-format
msgctxt "the result will be artificially smoothed to hide jpeg artefacts"
msgid "Smooth:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:188
#, kde-format
msgid "Subsampling:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, subsampling)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:199
#, kde-format
msgid "2x2, 1x1, 1x1 (smallest file)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, subsampling)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:204
#, kde-format
msgid "2x1, 1x1, 1x1"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, subsampling)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:209
#, kde-format
msgid "1x2, 1x1, 1x1"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, subsampling)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:214
#, kde-format
msgid "1x1, 1x1, 1x1 (best quality)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, baseLineJPEG)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:224
#, kde-format
msgid "Force baseline JPEG"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:258
#, kde-format
msgid "Metadata"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:264
#, kde-format
msgid "Formats:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, iptc)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:280
#, kde-format
msgid "IPTC"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkMetaData)
#. +> trunk5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:329
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Store document metadata that is in the document information. This will override any layer metadata.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMetaData)
#. +> trunk5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:332
#, kde-format
msgid "Store Document Metadata"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:339
#, kde-format
msgid "Filters:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkAuthor)
#. +> trunk5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:351
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Add the author nickname and the first contact of the author profile. This is overridden by the anonymizer.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAuthor)
#. +> trunk5
#: plugins/impex/jpeg/kis_wdg_options_jpeg.ui:354
#, kde-format
msgid "Sign with Author Profile Data"
msgstr ""
#. +> trunk5
#: plugins/impex/kra/kra_converter.cpp:61
#, kde-format
msgid "Not a valid Krita file"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:79
#, kde-format
msgid "Invalid document: no file 'maindoc.xml'."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:115
#, kde-format
msgid "Could not create the file for saving"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:159
#, kde-format
msgid "Not able to write '%1'. Partition full?"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:254
#, kde-format
msgid ""
"Parsing error in %1 at line %2, column %3\n"
"Error message: %4"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:271
#, kde-format
msgid "The format is not supported or the file is corrupted"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:277
#, kde-format
msgid "The file is too new for this version of Krita (%1)."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:282
#, kde-format
msgid "The file has no layers."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/kra/kra_converter.cpp:295
-#: plugins/impex/kra/kra_converter.cpp:319
+#: plugins/impex/kra/kra_converter.cpp:323
#, kde-format
msgid "Unknown error."
msgstr ""
#. +> trunk5 stable5
-#: plugins/impex/kra/kra_converter.cpp:306
+#: plugins/impex/kra/kra_converter.cpp:310
#, kde-format
msgid "The file does not contain an image."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:322
#, kde-format
msgid "Could not load \"id\" of the transform mask"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:336
#, kde-format
msgid "Could not create transform mask params"
msgstr ""
#. +> trunk5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:455
#, kde-format
msgid "Could not find keyframe pixel data for frame %1 in %2."
msgstr ""
#. +> trunk5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:463
#, kde-format
msgid "Could not load keyframe pixel data for frame %1 in %2."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:477
#, kde-format
msgid "Could not read pixel data: %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:484
#, kde-format
msgid "Could not load pixel data: %1."
msgstr ""
#. +> trunk5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:517
#, kde-format
msgid "Could not load profile: %1."
msgstr ""
#. +> stable5
#: libs/ui/kra/kis_kra_load_visitor.cpp:506
#, kde-format
msgid "Could not load profile %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:541
#, kde-format
msgid "Could not filter configuration %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:571
#, kde-format
msgid "Could not load metadata for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:586
#, kde-format
msgid "Could not load raster selection %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:604
#, kde-format
msgid "Could not load vector selection %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:631
#, kde-format
msgid "Could not load keyframes from %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:645
#, kde-format
msgid ""
"parsing error in the keyframe file %1 at line %2, column %3\n"
"Error message: %4"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_load_visitor.cpp:658
#, kde-format
msgid "unknown keyframe channel type: %1 in %2"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:210
#, kde-format
msgid "Image does not have a name."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:215
#, kde-format
msgid "Image does not specify a width."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:221
#, kde-format
msgid "Image does not specify a height."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:271
#, kde-format
msgid "Image specifies an unsupported color model: %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:438
#: plugins/impex/psd/psd_loader.cpp:348
#, kde-format
msgctxt "Auto-generated layer style collection name for embedded styles (collection)"
msgid "<%1> (embedded)"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:612
#, kde-format
msgid "Layer %1 specifies an unsupported color model: %2."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:640
#, kde-format
msgid "Layer %1 has an unsupported type."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:673
#, kde-format
msgid "Layer %1 has an unsupported type: %2."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:680
#, kde-format
msgid "Failure loading layer %1 of type: %2."
msgstr ""
#. +> trunk5
#: plugins/impex/libkra/kis_kra_loader.cpp:800
#, kde-format
msgctxt "@info"
msgid ""
"The file associated to a file layer with the name \"%1\" is not found.\n"
"\n"
"Expected path:\n"
"%2\n"
"\n"
"Do you want to locate it manually?"
msgstr ""
#. +> stable5
#: libs/ui/kra/kis_kra_loader.cpp:800
#, kde-format
msgctxt "@info"
msgid ""
"The file associated to a file layer with the name \"%1\" is not found.\n"
"\n"
"Expected path:\n"
">%2\n"
"\n"
"Do you want to locate it manually?"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:805
#: plugins/impex/libkra/kis_kra_loader.cpp:1164
#, kde-format
msgctxt "@title:window"
msgid "File not found"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_loader.cpp:1159
#, kde-format
msgctxt "@info"
msgid ""
"Audio channel file \"%1\" doesn't exist!\n"
"\n"
"Expected path:\n"
"%2\n"
"\n"
"Do you want to locate it manually?"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:96
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:128
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:137
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:158
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:175
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:185
#, kde-format
msgid "Failed to save the metadata for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:103
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:266
#, kde-format
msgid "Failed to open %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:120
#, kde-format
msgid "Failed to save the pixel data for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:124
#, kde-format
msgid "Failed to save the annotations for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:146
#, kde-format
msgid "Failed to save the filter layer %1: it has no filter."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:150
#, kde-format
msgid "Failed to save the selection for filter layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:154
#, kde-format
msgid "Failed to save the filter configuration for filter layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:167
#, kde-format
msgid "Failed to save the selection for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:171
#, kde-format
msgid "Failed to save the generator configuration for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:194
#, kde-format
msgid "Failed to save filter mask %1. It has no filter."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:198
#, kde-format
msgid "Failed to save the selection for filter mask %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:202
#, kde-format
msgid "Failed to save the filter configuration for filter mask %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:244
#, kde-format
msgid "Failed to save the selection for transparency mask %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:253
#, kde-format
msgid "Failed to save the selection for local selection %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:438
#, kde-format
msgid "Failed to save the pixel selection data for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:452
#, kde-format
msgid "Failed to save the vector selection data for layer %1."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:506
#, kde-format
msgid "The metadata backend failed to save the metadata for %1"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_save_visitor.cpp:517
#, kde-format
msgid "Could not write for %1 metadata to the file."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_saver.cpp:181
#, kde-format
msgid "could not save keyframes"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/libkra/kis_kra_saver.cpp:432
#, kde-format
msgid "Audio channel file %1 doesn't exist!"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/pdf/kis_pdf_import.cpp:87
#: plugins/impex/pdf/kis_pdf_import.cpp:88
#, kde-format
msgid "A password is required to read that pdf"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/pdf/kis_pdf_import.cpp:97
#, kde-format
msgid "PDF Import Options"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/pdf/kis_pdf_import.cpp:120
#, kde-format
msgid "Page %1"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, PDFImportWidgetBase)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:14
#, kde-format
msgid "PDFImportWidget"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, buttonGroup1)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:20
#, kde-format
msgid "Pages"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, boolAllPages)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:26
#, kde-format
msgid "All pa&ges"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, boolFirstPage)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:33
#, kde-format
msgid "&First page"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, boolSelectionPage)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:43
#, kde-format
msgid "Selec&tion of page"
msgstr ""
#. i18n: ectx: property (suffix), widget (KisIntParseSpinBox, intResolution)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:300
#, kde-format
msgid "dpi"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#. +> trunk5 stable5
#: plugins/impex/pdf/pdfimportwidgetbase.ui:316
#, kde-format
msgctxt "horizontal resolution"
msgid "Resolution:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KisWdgOptionsPNG)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:14
#, kde-format
msgid "PNG Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, tryToSaveAsIndexed)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:47
#, kde-format
msgid "Indexed PNG images are smaller. If you enabled this option, your image will be analyzed to see whether it is possible to save as an indexed PNG."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, tryToSaveAsIndexed)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:50
#, kde-format
msgid "Save as indexed PNG, if possible"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel4_2)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel1)
#. i18n: ectx: property (whatsThis), widget (KisDoubleSliderSpinBox, compressionLevel)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel3)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel1_4)
#. i18n: ectx: property (whatsThis), widget (QSlider, compressionLevelDeflate)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel3_2)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel1_4_2)
#. i18n: ectx: property (whatsThis), widget (QSlider, compressionLevelPixarLog)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel3_2_2)
#. i18n: ectx: property (whatsThis), widget (QLabel, textLabel4_2_2)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:61
#: plugins/impex/png/kis_wdg_options_png.ui:78
#: plugins/impex/png/kis_wdg_options_png.ui:105
#: plugins/impex/png/kis_wdg_options_png.ui:113
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:347
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:369
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:397
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:411
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:514
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:536
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:564
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:578
#, kde-format
msgid ""
"<p>Adjust the compression time. Better compression takes longer.\n"
"<br>"
"Note: the compression level does not change the quality of the result.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:64
#, kde-format
msgctxt "The compression will take a long time; saving the file will be slow."
msgid "Small File Size"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, compressionLevel)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_4)
#. i18n: ectx: property (toolTip), widget (QSlider, compressionLevelDeflate)
#. i18n: ectx: property (toolTip), widget (QLabel, textLabel1_4_2)
#. i18n: ectx: property (toolTip), widget (QSlider, compressionLevelPixarLog)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:74
#: plugins/impex/png/kis_wdg_options_png.ui:101
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:343
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:365
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:510
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:532
#, kde-format
msgid "Note: the compression level does not change the quality of the result"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:81
#, kde-format
msgid "Compression (Lossless): "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkMetaData)
#. +> trunk5
#: plugins/impex/png/kis_wdg_options_png.ui:91
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Store information like keywords, title and subject and license, if possible.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkMetaData)
#. +> trunk5
#: plugins/impex/png/kis_wdg_options_png.ui:94
#, kde-format
msgid "Store Metadata"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:116
#, kde-format
msgctxt "The file will save fast but will not be compressed a lot"
msgid "Large file size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:123
#, kde-format
msgid "Transparent color: "
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, interlacing)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:133
#, kde-format
msgid "Use interlacing when publishing on the Internet."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, interlacing)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:137
#, kde-format
msgid ""
"<p>Interlacing is useful if you intend to publish your image on the Internet.<br>"
"\n"
"Enabling interlacing will cause the image to be displayed by the browser even while downloading.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, interlacing)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:140
#, kde-format
msgid "Interlacing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkSRGB)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:147
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">PNG</span> files have <span style=\" font-style:italic;\">two</span> options to save <span style=\" font-weight:600;\">sRGB</span> information: as a tag or as an explicit profile. For use with in websites, <span style=\" font-style:italic;\">disable</span> this option. For interchange with other applications, <span style=\" font-style:italic;\">enable</span> this option.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkSRGB)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:150
#, kde-format
msgid "Embed sRGB profile"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, alpha)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:176
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:149
#, kde-format
msgid "Disable to get smaller files if your image has no transparency"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, alpha)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:180
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:153
#, kde-format
msgid ""
"<p>The Portable Network Graphics (PNG) file format allows transparency in your image to be stored by saving an alpha channel.\n"
"You can uncheck the box if you are not using transparency and you want to make the resulting file smaller .<br>"
"Always saving the alpha channel is recommended.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, alpha)
#. +> trunk5 stable5
#: plugins/impex/png/kis_wdg_options_png.ui:183
#, kde-format
msgid "Store alpha channel (transparency)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkAuthor)
#. +> trunk5
#: plugins/impex/png/kis_wdg_options_png.ui:193
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Save author nickname and the first contact information of the author profile into the png, if possible.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAuthor)
#. +> trunk5
#: plugins/impex/png/kis_wdg_options_png.ui:196
#, kde-format
msgid "Sign with author data"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/impex/ppm/kis_wdg_options_ppm.ui:34
#, kde-format
msgid "Binary"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbType)
#. +> trunk5 stable5
#: plugins/impex/ppm/kis_wdg_options_ppm.ui:39
#, kde-format
msgid "Ascii"
msgstr ""
#. +> trunk5
#: plugins/impex/psd/psd_export.cc:74
#, kde-format
msgctxt "image conversion warning"
msgid "Your image contains one or more layers with a color model that is different from the image."
msgstr ""
#. +> stable5
#: plugins/impex/psd/psd_export.cc:93 plugins/impex/psd/psd_export.cc:104
#, kde-format
msgctxt "@title:window"
msgid "Photoshop Export Error"
msgstr ""
#. +> stable5
#: plugins/impex/psd/psd_export.cc:94
#, kde-format
msgid ""
"Unable to save to the Photoshop format.\n"
"The Photoshop format only supports images that are smaller than 30000x3000 pixels."
msgstr ""
#. +> stable5
#: plugins/impex/psd/psd_export.cc:105
#, kde-format
msgid ""
"Unable to save to the Photoshop format.\n"
"The Photoshop format only supports images where all layers have the same colorspace as the image."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/psd/psd_layer_section.cpp:313
#, kde-format
msgctxt "Automatically created layer name when saving into PSD"
msgid "Background"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/psd/psd_loader.cpp:159
#, kde-format
msgid "Duotone Colormode Block"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/psd/psd_resource_block.h:94
#, kde-format
msgid "Unparsed Resource Block"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:224
#, kde-format
msgctxt "@option:check"
msgid "16 bits color depth"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:225
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<p>If enabled, all RAW files will be decoded in 16-bit color depth using a linear gamma curve. To prevent dark picture rendering in the editor, it is recommended to use Color Management in this mode.</p>"
"<p>If disabled, all RAW files will be decoded in 8-bit color depth with a BT.709 gamma curve and a 99th-percentile white point. This mode is faster than 16-bit decoding.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:244
#, kde-format
msgctxt "@option:check"
msgid "Interpolate RGB as four colors"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:245
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Interpolate RGB as four colors</title>"
"<p>The default is to assume that all green pixels are the same. If even-row green pixels are more sensitive to ultraviolet light than odd-row this difference causes a mesh pattern in the output; using this option solves this problem with minimal loss of detail.</p>"
"<p>To resume, this option blurs the image a little, but it eliminates false 2x2 mesh patterns with VNG quality method or mazes with AHD quality method.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:259
#, kde-format
msgctxt "@info:tooltip"
msgid "Visit LibRaw project website"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:269
#, kde-format
msgctxt "@option:check"
msgid "Do not stretch or rotate pixels"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:271
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Do not stretch or rotate pixels</title>"
"<p>For Fuji Super CCD cameras, show the image tilted 45 degrees. For cameras with non-square pixels, do not stretch the image to its correct aspect ratio. In any case, this option guarantees that each output pixel corresponds to one RAW pixel.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:279
#, kde-format
msgctxt "@label:listbox"
msgid "Quality:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:283
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "Bilinear"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:284
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "VNG"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:285
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "PPG"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:286
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "AHD"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:289
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "DCB"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:290
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "AHD v2"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:291
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "AFD"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:292
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "VCD"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:293
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "VCD & AHD"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:294
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "LMMSE"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:296
#, kde-format
msgctxt "@item:inlistbox Quality"
msgid "AMaZE"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:313
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Quality (interpolation)</title>"
"<p>Select here the demosaicing method to use when decoding RAW images. A demosaicing algorithm is a digital image process used to interpolate a complete image from the partial raw data received from the color-filtered image sensor, internal to many digital cameras, in form of a matrix of colored pixels. Also known as CFA interpolation or color reconstruction, another common spelling is demosaicing. The following methods are available for demosaicing RAW images:</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>Bilinear</emphasis>: use high-speed but low-quality bilinear interpolation (default - for slow computers). In this method, the red value of a non-red pixel is computed as the average of the adjacent red pixels, and similarly for blue and green.</li>"
"<li><emphasis strong='true'>VNG</emphasis>: use Variable Number of Gradients interpolation. This method computes gradients near the pixel of interest and uses the lower gradients (representing smoother and more similar parts of the image) to make an estimate.</li>"
"<li><emphasis strong='true'>PPG</emphasis>: use Patterned-Pixel-Grouping interpolation. Pixel Grouping uses assumptions about natural scenery in making estimates. It has fewer color artifacts on natural images than the Variable Number of Gradients method.</li>"
"<li><emphasis strong='true'>AHD</emphasis>: use Adaptive Homogeneity-Directed interpolation. This method selects the direction of interpolation so as to maximize a homogeneity metric, thus typically minimizing color artifacts.</li>"
"<li><emphasis strong='true'>DCB</emphasis>: DCB interpolation from linuxphoto.org project.</li>"
"<li><emphasis strong='true'>AHD v2</emphasis>: modified AHD interpolation using Variance of Color Differences method.</li>"
"<li><emphasis strong='true'>AFD</emphasis>: Adaptive Filtered Demosaicing interpolation through 5 pass median filter from PerfectRaw project.</li>"
"<li><emphasis strong='true'>VCD</emphasis>: Variance of Color Differences interpolation.</li>"
"<li><emphasis strong='true'>VCD & AHD</emphasis>: Mixed demosaicing between VCD and AHD.</li>"
"<li><emphasis strong='true'>LMMSE</emphasis>: color demosaicing via directional linear minimum mean-square error estimation interpolation from PerfectRaw.</li>"
"<li><emphasis strong='true'>AMaZE</emphasis>: Aliasing Minimization interpolation and Zipper Elimination to apply color aberration removal from RawTherapee project.</li>"
"</ul>"
"</p>"
"<p>Note: some methods can be unavailable if RAW decoder have been built without extension packs.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:382
#, kde-format
msgctxt "@label:slider"
msgid "Pass:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:383
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Pass</title>"
"<p>Set here the passes used by the median filter applied after interpolation to Red-Green and Blue-Green channels.</p>"
"<p>This setting is only available for specific Quality options: <emphasis strong='true'>Bilinear</emphasis>, <emphasis strong='true'>VNG</emphasis>, <emphasis strong='true'>PPG</emphasis>, <emphasis strong='true'>AHD</emphasis>, <emphasis strong='true'>DCB</emphasis>, and <emphasis strong='true'>VCD & AHD</emphasis>.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:395
#, kde-format
msgctxt "@option:check"
msgid "Refine interpolation"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:396
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Refine interpolation</title>"
"<p>This setting is available only for few Quality options:</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>DCB</emphasis>: turn on the enhance interpolated colors filter.</li>"
"<li><emphasis strong='true'>VCD & AHD</emphasis>: turn on the enhanced effective color interpolation (EECI) refine to improve sharpness.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:413
#, kde-format
msgctxt "@label"
msgid "Demosaicing"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:421
#, kde-format
msgctxt "@label:listbox"
msgid "Method:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:423
#, kde-format
msgctxt "@item:inlistbox"
msgid "Default D65"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:424
#, kde-format
msgctxt "@item:inlistbox"
msgid "Camera"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:425
#, kde-format
msgctxt "@item:inlistbox set while balance automatically"
msgid "Automatic"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:426
#, kde-format
msgctxt "@item:inlistbox set white balance manually"
msgid "Manual"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:428
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>White Balance</title>"
"<p>Configure the raw white balance:</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>Default D65</emphasis>: Use a standard daylight D65 white balance.</li>"
"<li><emphasis strong='true'>Camera</emphasis>: Use the white balance specified by the camera. If not available, reverts to default neutral white balance.</li>"
"<li><emphasis strong='true'>Automatic</emphasis>: Calculates an automatic white balance averaging the entire image.</li>"
"<li><emphasis strong='true'>Manual</emphasis>: Set a custom temperature and green level values.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:443
#, kde-format
msgctxt "@label:slider"
msgid "T(K):"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:444
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Temperature</title>"
"<p>Set here the color temperature in Kelvin.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:451
#, kde-format
msgctxt "@label:slider Green component"
msgid "Green:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:452
#, kde-format
msgctxt "@info:whatsthis"
msgid "<p>Set here the green component to set magenta color cast removal level.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:455
#, kde-format
msgctxt "@label:listbox"
msgid "Highlights:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:457
#, kde-format
msgctxt "@item:inlistbox"
msgid "Solid white"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:458
#, kde-format
msgctxt "@item:inlistbox"
msgid "Unclip"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:459
#, kde-format
msgctxt "@item:inlistbox"
msgid "Blend"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:460
#, kde-format
msgctxt "@item:inlistbox"
msgid "Rebuild"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:462
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Highlights</title>"
"<p>Select here the highlight clipping method:</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>Solid white</emphasis>: clip all highlights to solid white</li>"
"<li><emphasis strong='true'>Unclip</emphasis>: leave highlights unclipped in various shades of pink</li>"
"<li><emphasis strong='true'>Blend</emphasis>:Blend clipped and unclipped values together for a gradual fade to white</li>"
"<li><emphasis strong='true'>Rebuild</emphasis>: reconstruct highlights using a level value</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:473
#, kde-format
msgctxt "@label:slider Highlight reconstruct level"
msgid "Level:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:477
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Level</title>"
"<p>Specify the reconstruct highlight level. Low values favor whites and high values favor colors.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:481
#, kde-format
msgctxt "@option:check"
msgid "Exposure Correction (E.V)"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:482
#, kde-format
msgctxt "@info:whatsthis"
msgid "<p>Turn on the exposure correction before interpolation.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:485
#, kde-format
msgctxt "@label:slider"
msgid "Linear Shift:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:490
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Shift</title>"
"<p>Linear Shift of exposure correction before interpolation in E.V</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:493
#, kde-format
msgctxt "@label:slider"
msgid "Highlight:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:498
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Highlight</title>"
"<p>Amount of highlight preservation for exposure correction before interpolation in E.V. Only take effect if Shift Correction is > 1.0 E.V</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:502
#, kde-format
msgctxt "@option:check"
msgid "Correct false colors in highlights"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:503
#, kde-format
msgctxt "@info:whatsthis"
msgid "<p>If enabled, images with overblown channels are processed much more accurately, without 'pink clouds' (and blue highlights under tungsten lamps).</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:507
#, kde-format
msgctxt "@option:check"
msgid "Auto Brightness"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:508
#, kde-format
msgctxt "@info:whatsthis"
msgid "<p>If disable, use a fixed white level and ignore the image histogram to adjust brightness.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:511
#, kde-format
msgctxt "@label:slider"
msgid "Brightness:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:516
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Brightness</title>"
"<p>Specify the brightness level of output image. The default value is 1.0 (works in 8-bit mode only).</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:526
#, kde-format
msgctxt "@option:check Black point"
msgid "Black:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:527
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Black point</title>"
"<p>Use a specific black point value to decode RAW pictures. If you set this option to off, the Black Point value will be automatically computed.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:534
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Black point value</title>"
"<p>Specify specific black point value of the output image.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:537
#, kde-format
msgctxt "@option:check White point"
msgid "White:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:538
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>White point</title>"
"<p>Use a specific white point value to decode RAW pictures. If you set this option to off, the White Point value will be automatically computed.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:545
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>White point value</title>"
"<p>Specify specific white point value of the output image.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:582
#, kde-format
msgctxt "@label"
msgid "White Balance"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:590
#, kde-format
msgctxt "@label:listbox"
msgid "Noise reduction:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:592
#, kde-format
msgctxt "@item:inlistbox Noise Reduction"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:593
#, kde-format
msgctxt "@item:inlistbox Noise Reduction"
msgid "Wavelets"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:594
#, kde-format
msgctxt "@item:inlistbox Noise Reduction"
msgid "FBDD"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:595
#, kde-format
msgctxt "@item:inlistbox Noise Reduction"
msgid "CFA Line Denoise"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:596
#, kde-format
msgctxt "@item:inlistbox Noise Reduction"
msgid "Impulse Denoise"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:598
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Noise Reduction</title>"
"<p>Select here the noise reduction method to apply during RAW decoding.</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>None</emphasis>: no noise reduction.</li>"
"<li><emphasis strong='true'>Wavelets</emphasis>: wavelets correction to erase noise while preserving real detail. It's applied after interpolation.</li>"
"<li><emphasis strong='true'>FBDD</emphasis>: Fake Before Demosaicing Denoising noise reduction. It's applied before interpolation.</li>"
"<li><emphasis strong='true'>CFA Line Denoise</emphasis>: Banding noise suppression. It's applied after interpolation.</li>"
"<li><emphasis strong='true'>Impulse Denoise</emphasis>: Impulse noise suppression. It's applied after interpolation.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:624
#, kde-format
msgctxt "@option:check"
msgid "Enable Chromatic Aberration correction"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:625
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Enable Chromatic Aberration correction</title>"
"<p>Enlarge the raw red-green and blue-yellow axis by the given factors (automatic by default).</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:630
#, kde-format
msgctxt "@option:check"
msgid "Automatic color axis adjustments"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:631
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Automatic Chromatic Aberration correction</title>"
"<p>If this option is turned on, it will try to shift image channels slightly and evaluate Chromatic Aberration change. Note that if you shot blue-red pattern, the method may fail. In this case, disable this option and tune manually color factors.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:638
#, kde-format
msgctxt "@label:slider"
msgid "Red-Green:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:643
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Red-Green multiplier</title>"
"<p>Set here the amount of correction on red-green axis</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:646
#, kde-format
msgctxt "@label:slider"
msgid "Blue-Yellow:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:651
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Blue-Yellow multiplier</title>"
"<p>Set here the amount of correction on blue-yellow axis</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:670
#, kde-format
msgctxt "@label"
msgid "Corrections"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:678
#, kde-format
msgctxt "@label:listbox"
msgid "Camera Profile:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:680
#, kde-format
msgctxt "@item:inlistbox Camera Profile"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:681
#, kde-format
msgctxt "@item:inlistbox Camera Profile"
msgid "Embedded"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:682
#, kde-format
msgctxt "@item:inlistbox Camera Profile"
msgid "Custom"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:684
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Camera Profile</title>"
"<p>Select here the input color space used to decode RAW data.</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>None</emphasis>: no input color profile is used during RAW decoding.</li>"
"<li><emphasis strong='true'>Embedded</emphasis>: use embedded color profile from RAW file, if it exists.</li>"
"<li><emphasis strong='true'>Custom</emphasis>: use a custom input color space profile.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:695
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:729
#, kde-format
msgid "ICC Files (*.icc; *.icm)"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:697
#, kde-format
msgctxt "@label:listbox"
msgid "Workspace:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:699
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "Raw (no profile)"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:700
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "sRGB"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:701
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "Adobe RGB"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:702
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "Wide Gamut"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:703
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "Pro-Photo"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:704
#, kde-format
msgctxt "@item:inlistbox Workspace"
msgid "Custom"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:706
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Workspace</title>"
"<p>Select here the output color space used to decode RAW data.</p>"
"<p>"
"<ul>"
"<li><emphasis strong='true'>Raw (linear)</emphasis>: in this mode, no output color space is used during RAW decoding.</li>"
"<li><emphasis strong='true'>sRGB</emphasis>: this is an RGB color space, created cooperatively by Hewlett-Packard and Microsoft. It is the best choice for images destined for the Web and portrait photography.</li>"
"<li><emphasis strong='true'>Adobe RGB</emphasis>: this color space is an extended RGB color space, developed by Adobe. It is used for photography applications such as advertising and fine art.</li>"
"<li><emphasis strong='true'>Wide Gamut</emphasis>: this color space is an expanded version of the Adobe RGB color space.</li>"
"<li><emphasis strong='true'>Pro-Photo</emphasis>: this color space is an RGB color space, developed by Kodak, that offers an especially large gamut designed for use with photographic outputs in mind.</li>"
"<li><emphasis strong='true'>Custom</emphasis>: use a custom output color space profile.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:741
#, kde-format
msgctxt "@label"
msgid "Color Management"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:947
#, kde-format
msgctxt "@label"
msgid "Threshold:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:948
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Threshold</title>"
"<p>Set here the noise reduction threshold value to use.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:961
#, kde-format
msgctxt "@label"
msgid "Luminance:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:962
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Luminance</title>"
"<p>Amount of Luminance impulse noise reduction.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:964
#, kde-format
msgctxt "@label"
msgid "Chrominance:"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/dcrawsettingswidget.cpp:965
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<title>Chrominance</title>"
"<p>Amount of Chrominance impulse noise reduction.</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/raw/3rdparty/libkdcraw/src/rcombobox.cpp:74
#: plugins/impex/raw/3rdparty/libkdcraw/src/rnuminput.cpp:84
#: plugins/impex/raw/3rdparty/libkdcraw/src/rnuminput.cpp:183
#, kde-format
msgctxt "@info:tooltip"
msgid "Reset to default value"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButtonUpdate)
#. i18n: ectx: property (text), widget (QPushButton, btnUpdate)
#. +> trunk5 stable5
#: plugins/impex/raw/wdgrawimport.ui:29
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:26
#, kde-format
msgid "Update"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, preview)
#. +> trunk5 stable5
#: plugins/impex/raw/wdgrawimport.ui:92
#, kde-format
msgid "No image loaded"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, KisWdgOptionsTIFF)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:20
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:35
#, kde-format
msgid "TIFF Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:43
#, kde-format
msgid "Compression type:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:62
#, kde-format
msgid "JPEG DCT Compression"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:67
#, kde-format
msgid "Deflate (ZIP)"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:72
#, kde-format
msgid "Lempel-Ziv & Welch (LZW)"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:77
#, kde-format
msgid "Leadtools JPEG2000"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:82
#, kde-format
msgid "CCITT Modified Huffman RLE"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:87
#, kde-format
msgid "CCITT Group 3 Fax Encoding"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:92
#, kde-format
msgid "CCITT Group 4 Fax Encoding"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxCompressionType)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:97
#, kde-format
msgid "Pixar Log"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:109
#, kde-format
msgid "Predictor:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, kComboBoxPredictor)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:122
#, kde-format
msgid "Using a predictor can improve the compression (mostly for LZW and deflate.)"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxPredictor)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:134
#, kde-format
msgid "Horizontal Differencing"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxPredictor)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:139
#, kde-format
msgid "Floating Point Horizontal Differencing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, alpha)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:156
#, kde-format
msgid "Store alpha &channel (transparency)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxJPEG)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:237
#, kde-format
msgid "JPEG Compression Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:243
#, kde-format
msgid "Quality:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, qualityLevel)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:258
#, kde-format
msgid "These settings determine how much information is lost during compression"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:291
#, kde-format
msgid "Smallest"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:301
#, kde-format
msgid "Best"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxDeflate)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:337
#, kde-format
msgid "Deflate Compression Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:350
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:517
#, kde-format
msgid "Compress:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:400
#, kde-format
msgctxt "save the file quickly, but do not compress very well"
msgid "Fast"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:414
#, kde-format
msgctxt "make the file small, at the price of a longer saving time"
msgid "Small"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxCCITGroupCCITG3)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:450
#, kde-format
msgid "CCITT Group 3 fax encoding Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:456
#, kde-format
msgid "Fax mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxFaxMode)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:467
#, kde-format
msgid "Classic"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxFaxMode)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:472
#, kde-format
msgid "No RTC"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kComboBoxFaxMode)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:477
#, kde-format
msgid "No EOL"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxPixarLog)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:504
#, kde-format
msgid "Pixar Log Compression Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:567
#, kde-format
msgctxt "save quickly, but do not compress a lot"
msgid "Fast"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2_2)
#. +> trunk5 stable5
#: plugins/impex/tiff/kis_wdg_options_tiff.ui:581
#, kde-format
msgctxt "make a very small file, but take a long time saving"
msgid "Small"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/kis_video_export.cpp:67
#, kde-format
msgid "Could not find 'ffmpeg' binary. Saving to video formats is impossible."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/kis_video_export.cpp:71
#, kde-format
msgid "Video Export Error"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/kis_video_export.cpp:93
#, kde-format
msgid "FFMpeg failed to convert the image sequence. Check the logfile in your output directory for more information."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:31
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "ultrafast"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:32
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "superfast"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:33
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "veryfast"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:34
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "faster"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:35
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "fast"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:36
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "medium"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:37
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "slow"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:38
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "slower"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:39
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "veryslow"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:40
#, kde-format
msgctxt "h264 preset name, check simplescreenrecorder for standard translations"
msgid "placebo"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:42
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "baseline"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:43
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "main"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:44
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "high"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:45
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "high10"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:46
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "high422"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:47
#, kde-format
msgctxt "h264 profile name, check simplescreenrecorder for standard translations"
msgid "high444"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:49
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "film"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:50
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "animation"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:51
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "grain"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:52
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "stillimage"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:53
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "psnr"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:54
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "ssim"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:55
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "fastdecode"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:56
#, kde-format
msgctxt "h264 tune option name, check simplescreenrecorder for standard translations"
msgid "zerolatency"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.cpp:108
#, kde-format
msgctxt "kilo-bits-per-second, video bitrate suffix"
msgid "kbps"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbCodec)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:18
#, kde-format
msgid "H.264, MPEG-4 Part 10"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbCodec)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:23
#, kde-format
msgid "Theora"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:38
#, kde-format
msgid "Constant Rate Factor:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblTune)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:75
#, kde-format
msgid "Tune:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:89
#, kde-format
msgid "Bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkCustomLine)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:112
#, kde-format
msgid "Custom Options:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, txtCustomLine)
#. +> trunk5 stable5
#: plugins/impex/video/video_export_options_dialog.ui:121
#, kde-format
msgid "Add any ffmpeg filtering options here. It will be put between source and destination streams of the ffmpeg"
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_saver.cpp:273
#, kde-format
msgid "Fetching palette..."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/video/video_saver.cpp:301
#: plugins/impex/video/video_saver.cpp:339
#, kde-format
msgid "Encoding frames..."
msgstr ""
#. +> trunk5 stable5
#: plugins/impex/xcf/kis_xcf_import.cpp:168
#, kde-format
msgid "This XCF file is too new; Krita cannot support XCF files written by GIMP 2.9 or newer."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/colorsmudge_paintop_plugin.cpp:42
#, kde-format
msgid "Color Smudge"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxSmudgeMode)
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings.cpp:54
#: plugins/paintops/libpaintop/forms/wdgfilteroption.ui:43
#, kde-format
msgid "Smudge Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings.cpp:58
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:38
#, kde-format
msgid "Smearing"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings.cpp:59
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:77
#, kde-format
msgid "Dulling"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:51
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:35
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:49
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:43
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:50
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:39
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:58
#: plugins/paintops/libpaintop/kis_pressure_flow_opacity_option_widget.cpp:38
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:47
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:45
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:54
#, kde-format
msgid "Opaque"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, btnTransparent)
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:51
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:35
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:49
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:43
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:50
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:39
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:58
#: plugins/paintops/libpaintop/kis_pressure_flow_opacity_option_widget.cpp:38
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:47
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:45
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:54
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:145
#, kde-format
msgid "Transparent"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:52
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:65
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:36
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:37
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:63
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:64
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:82
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:108
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:126
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:133
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:50
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:44
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:47
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:37
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:51
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:40
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:59
#: plugins/paintops/libpaintop/kis_pressure_spacing_option_widget.cpp:35
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:40
#: plugins/paintops/roundmarker/kis_roundmarkerop_settings_widget.cpp:43
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:48
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:50
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:51
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:52
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:54
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:46
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:54
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:55
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:56
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:68
#, kde-format
msgid "0%"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:54
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:66
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:139
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:52
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:53
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:60
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:61
#: plugins/tools/basictools/kis_tool_multihand.cpp:274
#, kde-format
msgid "Mirror"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:58
#, kde-format
msgid "Smudge Length"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:59
#, kde-format
msgid "Smudge Radius"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:60
#, kde-format
msgid "Color Rate"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:71
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:144
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:51
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:45
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:52
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:41
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:33
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:44
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:49
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:52
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:66
#, kde-format
msgid "-180°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:71
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:144
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:51
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:45
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:52
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:41
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:49
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:52
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:66
#, kde-format
msgid "180°"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, optionRotation)
#. i18n: ectx: property (title), widget (QGroupBox, rotationGroup)
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:62
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:71
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:145
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:51
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:45
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:52
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:41
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:47
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:49
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:52
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:66
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:249
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:669
#, kde-format
msgid "Rotation"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:63
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:72
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:150
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:65
#, kde-format
msgid "Scatter"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:64
#, kde-format
msgid "Overlay Mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:68
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:89
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:55
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:65
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:72
#, kde-format
msgid "Strength"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:68
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:89
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:55
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:65
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:72
#, kde-format
msgid "Strong"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_colorsmudgeop_settings_widget.cpp:68
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:89
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:55
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:65
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:72
#, kde-format
msgid "Weak"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_overlay_mode_option.h:51
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Overlay Option"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_overlay_mode_option.h:61
#, kde-format
msgid ""
"Paints on the current layer\n"
" but uses all layers that are currently visible for smudge input\n"
" NOTE: This mode is only able to work correctly with a fully opaque background"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:45
#, kde-format
msgid "Smudge mode:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:81
#, kde-format
msgid " (caution, pierced brush!)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/colorsmudge/kis_smudge_option_widget.cpp:82
#, kde-format
msgctxt "@info:tooltip"
msgid "This brush has transparent pixels in its center. \"Dulling\" mode may give unstable results. Consider using \"Smearing\" mode instead."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:74
#, kde-format
msgid "Line Width"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:105
#, kde-format
msgid "History Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:136
#, kde-format
msgid "Line Opacity"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings.cpp:168
#, kde-format
msgid "Connection Line"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:36
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:50
#, kde-format
msgid "Line width"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:37
#, kde-format
msgid "Curves opacity"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/kis_curve_paintop_settings_widget.cpp:39
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:86
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:53
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:39
#: plugins/paintops/gridbrush/kis_grid_paintop_settings_widget.cpp:42
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:42
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:62
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:42
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:61
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:55
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:69
#, kde-format
msgid "Painting Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, lineWidthLbl)
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/wdgcurveoptions.ui:9
#: plugins/paintops/sketch/wdgsketchoptions.ui:40
#, kde-format
msgid "Line width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/wdgcurveoptions.ui:22
#, kde-format
msgid "History size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/wdgcurveoptions.ui:35
#, kde-format
msgid "Curves opacity:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, connectionCHBox)
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/wdgcurveoptions.ui:48
#: plugins/paintops/sketch/wdgsketchoptions.ui:137
#, kde-format
msgid "Paint connection line"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, smoothingCHBox)
#. +> trunk5 stable5
#: plugins/paintops/curvebrush/wdgcurveoptions.ui:55
#, kde-format
msgid "Smoothing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, doubleRatio)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:64
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:134
#: plugins/tools/tool_crop/wdg_tool_crop.ui:293
#, kde-format
msgid "Ratio"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:69
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:63
#, kde-format
msgid "Softness"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:70
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:64
#, kde-format
msgid "Sharpness"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:77
#, kde-format
msgid "Foreground"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:81
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:46
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:36
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:39
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:53
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:53
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:67
#, kde-format
msgid "Airbrush"
msgstr ""
#. +> trunk5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:82
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:47
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings_widget.cpp:38
#: plugins/paintops/particle/kis_particle_paintop_settings_widget.cpp:41
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:54
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:54
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:68
#, kde-format
msgid "Rate"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/brush/kis_brushop_settings_widget.cpp:95
#: plugins/paintops/libpaintop/kis_brush_based_paintop_options_widget.cpp:28
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:44
#, kde-format
msgid "Brush Tip"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/defaultpaintops_plugin.cc:47
#, kde-format
msgctxt "Pixel paintbrush"
msgid "Pixel"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/defaultpaintops_plugin.cc:48
#, kde-format
msgctxt "clone paintbrush (previously \"Duplicate\")"
msgid "Clone"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbHealing)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings.cpp:185
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:21
#, kde-format
msgid "Healing"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings.cpp:212
#, kde-format
msgid "Move Source"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/kis_duplicateop_settings_widget.cpp:75
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Clone Brush (temporarily disabled)"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbPerspective)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:28
#, kde-format
msgid "To correct perspective, first create a perspective grid."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbPerspective)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:31
#, kde-format
msgid "Correct the perspective"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, cbSourcePoint)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:38
#, kde-format
msgid "Move the clone origin with the brush. Uncheck to keep cloning from the selected point."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbSourcePoint)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:41
#, kde-format
msgid "Source point move"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkCloneProjection)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:51
#, kde-format
msgid "When checked, clone from all visible layers. Otherwise, clone from the active layer."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkCloneProjection)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:54
#, kde-format
msgid "Clone From All Visible Layers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/defaultpaintops/duplicate/wdgduplicateop.ui:82
#, kde-format
msgid ""
"<html><head/><body>"
"<p><span style=\" font-weight:600;\">Clone Brush:</span></p>"
"<p>Select the source point from the current layer with Ctrl-click. Use Ctrl+Alt-click to select a source from the previously picked layer.</p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/deform_paintop_plugin.cpp:41
#, kde-format
msgid "Deform"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_option.cpp:120
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Deform Brush (unsupported)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:124
#, kde-format
msgid "Amount"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, deformLabel)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:154
#: plugins/paintops/deform/wdgdeformoptions.ui:35
#, kde-format
msgid "Deform Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, growBtn)
#. i18n: ectx: property (text), widget (QCheckBox, boolGrow)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:158
#: plugins/paintops/deform/wdgdeformoptions.ui:44
#: plugins/tools/tool_crop/wdg_tool_crop.ui:151
#, kde-format
msgid "Grow"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, shrinkBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:159
#: plugins/paintops/deform/wdgdeformoptions.ui:51
#, kde-format
msgid "Shrink"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, swirlCWBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:160
#: plugins/paintops/deform/wdgdeformoptions.ui:65
#, kde-format
msgid "Swirl CW"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, swirlCCWBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:161
#: plugins/paintops/deform/wdgdeformoptions.ui:58
#, kde-format
msgid "Swirl CCW"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, moveBtn)
#. i18n: ectx: property (text), widget (QToolButton, liquifyMove)
#. i18n: ectx: property (text), widget (QPushButton, moveOriginButton)
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:162
#: plugins/paintops/deform/wdgdeformoptions.ui:75
#: plugins/tools/basictools/wdgmultihandtool.ui:78
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1737
#, kde-format
msgid "Move"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:163
#, kde-format
msgid "Lens Zoom In"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:164
#, kde-format
msgid "Lens Zoom Out"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings.cpp:165
#, kde-format
msgid "Color Deformation"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/deform/kis_deform_paintop_settings_widget.cpp:41
#, kde-format
msgid "Deform Options"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, colorBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:82
#, kde-format
msgid "Color deformation"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lensOutBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:89
#, kde-format
msgid "Lens zoom out"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lensBtn)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:96
#, kde-format
msgid "Lens zoom in"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, deformAmountLbl)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:131
#, kde-format
msgid "Deform amount:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, interpolationChBox)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:166
#, kde-format
msgid "Bilinear interpolation"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useCounter)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:176
#, kde-format
msgid "Use counter"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useOldData)
#. +> trunk5 stable5
#: plugins/paintops/deform/wdgdeformoptions.ui:183
#, kde-format
msgid "Use undeformed image"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/dyna_paintop_plugin.cpp:40
#, kde-format
msgid "Dyna"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:79
#, kde-format
msgid "Diameter"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:148
#, kde-format
msgid "Mass"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:179
#, kde-format
msgid "Drag"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, shapeGroup)
#. i18n: ectx: attribute (title), widget (QWidget, ShapeTab)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:209
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:158
#: plugins/paintops/experiment/experiment_paintop_plugin.cpp:43
#: plugins/paintops/hairy/wdghairyeoptions.ui:43
#: plugins/paintops/hairy/wdghairyshapeoptions.ui:84
#, kde-format
msgid "Shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:214
#, kde-format
msgid "Polygon"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dyna_paintop_settings.cpp:215
#, kde-format
msgid "Wire"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/kis_dynaop_option.cpp:188
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Dyna Brush (not supported)"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:33
#, kde-format
msgid "Dynamics settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, initWidthLbl)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:41
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:323
#, kde-format
msgid "Initial width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:67
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:138
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:289
#, kde-format
msgid "Mass:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:93
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:147
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:295
#, kde-format
msgid "Drag:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:119
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:328
#, kde-format
msgid "Width range:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, diameterLabel)
#. i18n: ectx: property (text), widget (QLabel, DiameterLbl)
#. i18n: ectx: property (text), widget (QLabel, lblDiameter)
#. i18n: ectx: property (text), widget (QLabel, lineWidthLbl)
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:166
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:171
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:46
#: plugins/paintops/roundmarker/kis_roundmarker_option.ui:19
#: plugins/paintops/spray/wdgsprayoptions.ui:40
#, kde-format
msgid "Diameter:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, fixedAngleChBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:199
#, kde-format
msgid "Fixed angle"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, circleRBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:241
#, kde-format
msgid "C&ircle"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, twoCBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:251
#, kde-format
msgid "Two"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, lineSpacingSPBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:269
#, kde-format
msgid "Line spacing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, lineCountSPBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:279
#, kde-format
msgid "Line count"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, polygonRBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:291
#, kde-format
msgid "Poly&gon"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, wireRBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:298
#, kde-format
msgid "Wi&re"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, LineCBox)
#. +> trunk5 stable5
#: plugins/paintops/dynadraw/wdgdynaoptions.ui:305
#, kde-format
msgid "Paint connection"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, speedCHBox)
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:89
#: plugins/paintops/experiment/wdgexperimentoptions.ui:53
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:42
#, kde-format
msgid "Speed"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, displaceCHBox)
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:164
#: plugins/paintops/experiment/wdgexperimentoptions.ui:98
#, kde-format
msgid "Displace"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:202
#, kde-format
msgid "Winding Fill"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experiment_paintop_settings.cpp:230
#, kde-format
msgid "Hard Edge"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experiment_paintop_settings_widget.cpp:35
#, kde-format
msgid "Experiment option"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/experiment/kis_experimentop_option.cpp:133
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Displacement Option"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/experiment/wdgexperimentoptions.ui:29
#, kde-format
msgid "Shape creation:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, smoothCHBox)
#. +> trunk5 stable5
#: plugins/paintops/experiment/wdgexperimentoptions.ui:70
#, kde-format
msgctxt "Noun for an experiment brush shape smoothness"
msgid "Smooth"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblPostprocessing)
#. +> trunk5 stable5
#: plugins/paintops/experiment/wdgexperimentoptions.ui:89
#, kde-format
msgid "Post-processing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, windingFillCHBox)
#. +> trunk5 stable5
#: plugins/paintops/experiment/wdgexperimentoptions.ui:112
#, kde-format
msgid "Winding fill"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, hardEdgeCHBox)
#. +> trunk5 stable5
#: plugins/paintops/experiment/wdgexperimentoptions.ui:119
#, kde-format
msgid "Hard edge"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/filterop/filterop.cpp:43
#, kde-format
msgctxt "type of a brush engine, shown in the list of brush engines"
msgid "Filter"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/filterop/kis_filterop_settings_widget.cpp:56
#, kde-format
msgctxt "option name"
msgid "Filter"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/grid_paintop_plugin.cpp:39
#, kde-format
msgctxt "type of a brush engine, shown in the list of brush engines"
msgid "Grid"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/kis_grid_paintop_settings.cpp:111
#, kde-format
msgid "Division Level"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/kis_grid_paintop_settings_widget.cpp:39
#, kde-format
msgid "Particle type"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/kis_grid_paintop_settings_widget.cpp:41
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:50
#, kde-format
msgid "Color options"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeCBox)
#. i18n: ectx: property (text), item, widget (QComboBox, shapeBox)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:52
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:81
#, kde-format
msgid "Pixel"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, shapeCBox)
#. i18n: ectx: property (text), item, widget (QComboBox, shapeBox)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridbrushshapeoptions.ui:57
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:76
#, kde-format
msgid "Anti-aliased pixel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:38
#, kde-format
msgid "Grid width:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:51
#, kde-format
msgid "Grid height:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:64
#, kde-format
msgid "Division level:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, divisionPressureCHBox)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:77
#, kde-format
msgid "Division by pressure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, scaleLbl)
#. i18n: ectx: property (text), widget (QLabel, lblDiameter)
#. i18n: ectx: property (text), widget (QLabel, ScaleLbl)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:84
#: plugins/paintops/hairy/wdgbristleoptions.ui:130
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:78
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:198
#: plugins/paintops/spray/wdgsprayoptions.ui:118
#, kde-format
msgid "Scale:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:97
#, kde-format
msgid "Vertical border:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:110
#, kde-format
msgid "Horizontal border:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, jitterBorderCHBox)
#. +> trunk5 stable5
#: plugins/paintops/gridbrush/wdggridoptions.ui:123
#, kde-format
msgid "Jitter borders"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hairy/hairy_paintop_plugin.cpp:42
#, kde-format
msgid "Bristle"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hairy/kis_hairy_bristle_option.cpp:103
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Bristle Brush (the lines will be thinner than on preview)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:36
#, kde-format
msgid "Bristle options"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, inkTab)
#. +> trunk5 stable5
#: plugins/paintops/hairy/kis_hairy_paintop_settings_widget.cpp:37
#: plugins/paintops/hairy/wdghairyeoptions.ui:259
#, kde-format
msgid "Ink depletion"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:62
#, kde-format
msgid "Random offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:114
#, kde-format
msgid "Shear:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, density)
#. i18n: ectx: property (text), widget (QLabel, densityLbl)
#. i18n: ectx: property (text), widget (QLabel, lblDensity)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:146
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:374
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:267
#: plugins/paintops/sketch/wdgsketchoptions.ui:73
#, kde-format
msgid "Density:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:173
#, kde-format
msgid "Mouse pressure:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:187
#, kde-format
msgid "Connect hairs:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:194
#, kde-format
msgid "Anti-aliasing:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgbristleoptions.ui:201
#, kde-format
msgid "Composite bristles:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, brushTab)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:33
#, kde-format
msgid "Brush Shape"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, oneDimBrushBtn)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:49
#, kde-format
msgid "1D"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, twoDimBrushBtn)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:59
#, kde-format
msgid "2D"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, brushGroup)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:97
#, kde-format
msgid "Brush Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mousePressureCBox)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:130
#, kde-format
msgid "Mouse pressure"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:140
#: plugins/paintops/hairy/wdghairyshapeoptions.ui:38
#, kde-format
msgid "radius"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, sigmaLabel)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:150
#: plugins/paintops/hairy/wdghairyshapeoptions.ui:55
#, kde-format
msgid "sigma"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, movementGroup)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:171
#, kde-format
msgid "Experimental Params"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:190
#, kde-format
msgid "Scale factor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:210
#, kde-format
msgid "Shear factor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:230
#, kde-format
msgid "Random offset"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:265
#, kde-format
msgid "Ink"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, inkLabel)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:273
#: plugins/paintops/hairy/wdgInkOptions.ui:41
#, kde-format
msgid "Ink Amount"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:331
#: plugins/paintops/hairy/wdgInkOptions.ui:131
#, kde-format
msgid "Ink Depletion Curve"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, weightGroup)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:343
#: plugins/paintops/hairy/wdgInkOptions.ui:154
#, kde-format
msgid "Saturation Weights"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, pressureSlider)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:355
#, kde-format
msgid "pressure weight"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, inkDepletionSlider)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:383
#, kde-format
msgid "Ink depletion curve weight"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, bristleLengthSlider)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:411
#, kde-format
msgid "bristle length weight"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSlider, bristleInkAmountSlider)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:439
#, kde-format
msgid "Bristle ink amount weight"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useWeightCHBox)
#. i18n: ectx: property (text), widget (QCheckBox, weightSaturationCBox)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyeoptions.ui:461
#: plugins/paintops/hairy/wdgInkOptions.ui:160
#, kde-format
msgid "weighted saturation"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, oneDimBrushBtn)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyshapeoptions.ui:90
#, kde-format
msgid "&1D"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, twoDimBrushBtn)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdghairyshapeoptions.ui:100
#, kde-format
msgid "&2D"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, soakInkCBox)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:84
#, kde-format
msgid "Soak ink from the initial position of the stroke"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, soakInkCBox)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:87
#, kde-format
msgid "Soak ink"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:167
#, kde-format
msgid "Bristle Ink Weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:174
#, kde-format
msgid "Pressure Weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:191
#, kde-format
msgid "Bristle Length Weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: plugins/paintops/hairy/wdgInkOptions.ui:218
#, kde-format
msgid "Ink Depletion Curve Weight:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/hatching_paintop_plugin.cpp:41
#, kde-format
msgid "Hatching"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_options.cpp:129
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Hatching Brush (heavy aliasing in preview mode)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings.cpp:126
#, kde-format
msgid "Hatching Angle"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings.cpp:158
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:55
#, kde-format
msgid "Separation"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings.cpp:189
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:56
#, kde-format
msgid "Thickness"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:52
#, kde-format
msgid "Hatching options"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:53
#, kde-format
msgid "Hatching preferences"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/hatching/kis_hatching_paintop_settings_widget.cpp:57
#, kde-format
msgid "Crosshatching"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:90
#, kde-format
msgid "Separation:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:166
#, kde-format
msgid "Origin X:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_24)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:204
#, kde-format
msgid "Origin Y:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:244
#, kde-format
msgid "Crosshatching style"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, noCrosshatchingRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:268
#, kde-format
msgid "No crosshatch&ing"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, perpendicularRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:290
#, kde-format
msgid "Pe&rpendicular plane only"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, minusThenPlusRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:312
#, kde-format
msgid "-&45° plane then +45° plane"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, plusThenMinusRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:331
#, kde-format
msgid "+45° plane &then -45° plane"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, moirePatternRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:350
#, kde-format
msgid "&Moiré pattern"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:366
#, kde-format
msgid "Separation Style"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingoptions.ui:378
#, kde-format
msgid "Input-based intervals:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingpreferences.ui:26
#, kde-format
msgid "Graphical Tweaks"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, antialiasCheckBox)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingpreferences.ui:32
#, kde-format
msgid "Antialiased lines"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, subpixelPrecisionCheckBox)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingpreferences.ui:42
#, kde-format
msgid "Subpixel precision"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, opaqueBackgroundCheckBox)
#. +> trunk5 stable5
#: plugins/paintops/hatching/wdghatchingpreferences.ui:52
#, kde-format
msgid "Color background"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, rateLbl)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgairbrush.ui:37
#, kde-format
msgid "Rate:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxIgnoreSpacing)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgairbrush.ui:72
#, kde-format
msgid "Override Spacing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblMaskType)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:65
#, kde-format
msgid "Mask Type:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, comboBoxShape)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:97
#, kde-format
msgid "Square"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkInvert)
#. i18n: ectx: property (toolTip), widget (QCheckBox, btnAntialiasing)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:105
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:238
#, kde-format
msgid "The border of the brush will be smoothed to avoid aliasing"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, btnAntialiasing)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:108
#, kde-format
msgid "Anti-alias"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpFade)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:225
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:43
#, kde-format
msgid "Fade"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblHorizontalFade)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:236
#, kde-format
msgid "Horizontal:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblVerticalFade)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:252
#, kde-format
msgid "Vertical:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:286
#, kde-format
msgid "Softness:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRandomness)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:335
#, kde-format
msgid "Randomness:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpikes)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgautobrush.ui:345
#, kde-format
msgid "Spikes:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:95
#, kde-format
msgid "Use to set the size from which the Automatic Precision Setting should begin. The Precision will remain 5 before this value."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:98
#, kde-format
msgid "Starting Brush Size:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:118
#, kde-format
msgid "This determines every interval after which the precision should change. For example: if the delta value is set to be 15.00, after every 15 pts change in the size of brush, the precision will change."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgbrushchooser.ui:121
#, kde-format
msgid "Delta :"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, aspectLabel)
#. i18n: ectx: property (text), widget (QLabel, aspectLbl)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:142
#: plugins/paintops/spray/wdgsprayoptions.ui:66
#, kde-format
msgid "Aspect ratio:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, jitterMoveBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgBrushSizeOptions.ui:287
#: plugins/paintops/spray/wdgsprayoptions.ui:229
#, kde-format
msgid "Jitter Movement"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomHSVCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:29
#, kde-format
msgid "Random HSV"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomOpacityCHbox)
#. i18n: ectx: property (text), widget (QCheckBox, randomOpacityCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:100
#: plugins/paintops/sketch/wdgsketchoptions.ui:158
#, kde-format
msgid "Random opacity"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, colorPerParticleCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:118
#, kde-format
msgid "Color per particle"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, fillBackgroundCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:147
#, kde-format
msgid "If checked, grid brush fill every particle's background with background color. The background of particle is rectangle of grid width and height and by default it is transparent."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, fillBackgroundCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:150
#, kde-format
msgid "Fill background"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, sampleInputCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:163
#, kde-format
msgid "Sample Input layer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mixBgColorCHBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcoloroptions.ui:176
#, kde-format
msgid "Mix with background color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgCompositeOpOption.ui:37
#, kde-format
msgid "Selected:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnEraser)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgCompositeOpOption.ui:81
#, kde-format
msgid "Eraser"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgCompositeOpOption.ui:109
#, kde-format
msgid "Available Blending Modes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxUseCurve)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:67
#, kde-format
msgid "Enable Pen Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxUseSameCurve)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:296
#, kde-format
msgid "Share curve across all settings"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:420
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:436
#, kde-format
msgid ""
"<html><head/><body>\n"
"<p>Curve calculation mode changes how 2 or more curve works together<br/>"
"</p>"
"\n"
"<p> multiply (default): all values from curves multiplies </p>"
"<p>(0.8 pressure) * (0.5 speed) = 0.4 <br/>"
"</p>"
"\n"
"<p> addition: all values from curves adds</p>"
"<p>(0.6 pressure) + (0.3 speed) = 0.9<br/>"
"</p>"
"\n"
"<p> maximum value</p>"
"<p>(0.7 pressure), (0.3 speed) = 0.7<br/>"
"</p>"
"\n"
"<p> minimum value </p>"
"<p>(0.7 pressure), (0.3 speed) = 0.3<br/>"
"</p>"
"\n"
"<p> difference between min and max values</p>"
"<p>(0.8 pressure), (0.3 speed), (0.6 fade) = 0.5</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:423
#, kde-format
msgid "Curves calculation mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:443
#, kde-format
msgid "multiply"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:448
#, kde-format
msgid "addition"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:453
#, kde-format
msgid "maximum"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:458
#, kde-format
msgid "minimum"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, curveMode)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgcurveoption.ui:463
#, kde-format
msgid "difference"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpFilterOptions)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgfilteroption.ui:58
#, kde-format
msgid "Filter Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpIncremental)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgincremental.ui:20
#, kde-format
msgid "Painting mode"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioBuildup)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgincremental.ui:32
#, kde-format
msgid "Build up"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioWash)
#. i18n: ectx: property (text), item, widget (QComboBox, buidupModeComboBox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgincremental.ui:39
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1996
#, kde-format
msgid "Wash"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgincremental.ui:50
#, kde-format
msgid ""
"<html>\n"
"<p><b>Note:</b> this is the same thing as the \"incremental\" option in the Krita 1.6 freehand tool options.</p>"
"</html>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgincremental.ui:54
#, kde-format
msgid ""
"<html>\n"
"<p><b>Painting mode</b>: Krita offers a choice between two painting modes: <i>buildup</i> and <i>wash</i>. The first choice builds up color while painting in one stroke, the second choices gives you an even color in one stroke even if you go over the same place again and again.</p>"
"</html>"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, stampButton)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:77
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:285
#, kde-format
msgid "Stamp"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, brushTipNameLabel)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:128
#, kde-format
msgid "Current Brush Tip"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, brushDetailsLabel)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:138
#, kde-format
msgid "Brush Details"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useColorAsMaskCheckbox)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:210
#, kde-format
msgid "Use Color as Mask"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetBrushButton)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgpredefinedbrushchooser.ui:217
#, kde-format
msgid "Reset Predefined Tip"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:25
#, kde-format
msgid "Font:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblFont)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:68
#, kde-format
msgid "--"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelText)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:104
#, kde-format
msgid "Text:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, lineEdit)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:135
#, kde-format
msgid "The Quick Brown Fox Jumps Over The Lazy Dog"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, pipeModeChbox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:167
#, kde-format
msgid "use only one letter at a time"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, pipeModeChbox)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtextbrush.ui:170
#, kde-format
msgid "Pipe mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpacing_2)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:104
#, kde-format
msgid "Cutoff"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRatio)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:120
#, kde-format
msgid "Brightness:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpacing)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:146
#, kde-format
msgid "Cutoff Policy:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblDensity)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:162
#, kde-format
msgid "Texturing Mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblSpikes)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:225
#, kde-format
msgid "Horizontal Offset:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkInvert)
#. +> trunk5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:241
#, kde-format
msgid "Invert Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomOffsetY)
#. i18n: ectx: property (text), widget (QCheckBox, randomOffsetX)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:251
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:280
#, kde-format
msgid "Random Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lblRandomness)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/forms/wdgtexturechooser.ui:264
#, kde-format
msgid "Vertical Offset:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_bidirectional_mixing_option_widget.cpp:30
#, kde-format
msgid "The mixing option mixes the paint on the brush with that on the canvas."
msgstr ""
#. +> stable5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:134
#, kde-format
msgid "Use color as mask"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:163
#, kde-format
msgid ""
"Creates a brush tip from the current image selection.\n"
" If no selection is present the whole image will be used."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:167
#, kde-format
msgid "Creates a brush tip from the image in the clipboard."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:176
#, kde-format
msgid ""
"Reloads Spacing from file\n"
"Sets Scale to 1.0\n"
"Sets Rotation to 0.0"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:330
#, kde-format
msgid "GBR"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:332
#, kde-format
msgid "Animated Mask"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/kis_brush_chooser.cpp:334
#, kde-format
msgid "Animated Image"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:59
#, kde-format
msgid "Predefined"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:87
#, kde-format
msgid ""
"Use to set the size from which the Automatic Precision Setting should begin. \n"
"The Precision will remain 5 before this value."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:88
#, kde-format
msgid ""
"Use to set the interval at which the Automatic Precision will change. \n"
"The Precision will decrease as brush size increases."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:190
#, kde-format
msgid ""
"Precision Level 1 (fastest)\n"
"Subpixel precision: disabled\n"
"Brush size precision: 5%\n"
"\n"
"Optimal for very big brushes"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:198
#, kde-format
msgid ""
"Precision Level 2\n"
"Subpixel precision: disabled\n"
"Brush size precision: 1%\n"
"\n"
"Optimal for big brushes"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:206
#, kde-format
msgid ""
"Precision Level 3\n"
"Subpixel precision: disabled\n"
"Brush size precision: exact"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:212
#, kde-format
msgid ""
"Precision Level 4 (optimal)\n"
"Subpixel precision: 50%\n"
"Brush size precision: exact\n"
"\n"
"Gives up to 50% better performance in comparison to Level 5"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_brush_selection_widget.cpp:220
#, kde-format
msgid ""
"Precision Level 5 (best quality)\n"
"Subpixel precision: exact\n"
"Brush size precision: exact\n"
"\n"
"The slowest performance. Best quality."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_clipboard_brush_widget.cpp:87
#, kde-format
msgid ""
"Nothing copied\n"
" to Clipboard"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:55
#, kde-format
msgid "Plain color"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:57
#, kde-format
msgid "Uniform random"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:58
#, kde-format
msgid "Total random"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option.cpp:60
#, kde-format
msgid "Locked pattern"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option_widget.cpp:90
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Source -> Total Random"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option_widget.cpp:92
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Source -> Pattern"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_color_source_option_widget.cpp:94
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Source -> Pattern Locked"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:209
#, kde-format
msgid "0 px"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:211
#, kde-format
msgid "0 s"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:213
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:217
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:225
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:274
#, kde-format
msgid "0°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:215
#, kde-format
msgid "Slow"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:219
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:232
#, kde-format
msgid "Low"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:221
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:223
#, kde-format
msgid "-30°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:227
#, kde-format
msgid "90°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:229
#, kde-format
msgid "Far"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:246
#, kde-format
msgid "1000"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:248
#, kde-format
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:251
#, kde-format
msgid "30 px"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:253
#, kde-format
msgid "%1 px"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:256
#, kde-format
msgid "3 s"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:258
#, kde-format
msgid "%1 s"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:260
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:264
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:272
#, kde-format
msgid "360°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:262
#, kde-format
msgid "Fast"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:266
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:279
#, kde-format
msgid "High"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:268
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:270
#, kde-format
msgid "30°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.cc:276
#, kde-format
msgid "Near"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:40
#, kde-format
msgid "Fuzzy Dab"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:41
#, kde-format
msgid "Fuzzy Stroke"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:45
#, kde-format
msgid "Time"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:46
#, kde-format
msgid "Drawing angle"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:49
#, kde-format
msgid "PressureIn"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:50
#, kde-format
msgid "X-Tilt"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:51
#, kde-format
msgid "Y-Tilt"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:59
#, kde-format
msgid "Tilt direction"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:60
#, kde-format
msgid "Tilt elevation"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_dynamic_sensor.h:63
#, kde-format
msgid "Tangential pressure"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_filter_option.cpp:210
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "\"%1\" does not support scaled preview (non-linear filter)"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/kis_paint_action_type_option.cpp:111
#, kde-format
msgctxt "@info:tooltip"
msgid "Only wash mode is possible when using a masked brush."
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:30
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:41
#, kde-format, no-c-format
msgid "(0° is active color)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:32
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:43
#, kde-format
msgid "+180°"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:35
#, kde-format
msgid "CCW hue"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:46
#, kde-format
msgid "CW hue"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:56
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:68
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:83
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:95
#, kde-format, no-c-format
msgid "(50% is active color)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:58
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:70
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:85
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:97
#, kde-format
msgid "+100%"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:59
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:71
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:86
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:98
#, kde-format
msgid "-100%"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:61
#, kde-format
msgid "Less saturation "
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:73
#, kde-format
msgid "More saturation"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:88
#, kde-format
msgid "Lower value "
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_hsv_option.cpp:100
#, kde-format
msgid "Higher value"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_mirror_option_widget.cpp:32
#, kde-format
msgid "Mirrored"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_mirror_option_widget.cpp:32
#, kde-format
msgid "Not mirrored"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_mirror_option_widget.cpp:37
#, kde-format
msgid "Horizontally"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_mirror_option_widget.cpp:39
#, kde-format
msgid "Vertically"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp:36
#, kde-format
msgid "Axis X"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp:38
#, kde-format
msgid "Axis Y"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp:41
#, kde-format
msgid "Scatter amount"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_size_option.cpp:44
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Size -> Fuzzy (sensor)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_size_option.cpp:48
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Size -> Fade (sensor)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_pressure_spacing_option_widget.cpp:37
#, kde-format
msgid "Isotropic Spacing"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/kis_pressure_spacing_option_widget.cpp:38
#, kde-format
msgid "Update Between Dabs"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_spacing_selection_widget.cpp:63
#, kde-format
msgctxt "@action:button"
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_spacing_selection_widget.cpp:64
#, kde-format
msgctxt "@info:tooltip"
msgid "In auto mode the spacing of the brush will be calculated automatically depending on its size"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:38
#, kde-format
msgid "Makes texture lighter or darker"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:54
#, kde-format
msgid "Cut Off Brush"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:54
#, kde-format
msgid "Cut Off Disabled"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:54
#, kde-format
msgid "Cut Off Pattern"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_chooser.cpp:60
#, kde-format
msgid "When pattern texture values are outside the range specified by the slider, the cut-off policy will be applied."
msgstr ""
#. +> stable5
#: plugins/paintops/libpaintop/kis_texture_option.cpp:136
#, kde-format
msgid "Cutoff:"
msgstr ""
#. +> stable5
#: plugins/paintops/libpaintop/kis_texture_option.cpp:140
#, kde-format
msgid "Invert Pattern:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/kis_texture_option.cpp:180
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Texture->Pattern (low quality preview)"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/KisMaskingBrushOption.cpp:55
#, kde-format
msgid "Blending Mode:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_drawing_angle.cpp:84
#, kde-format
msgid "Fan Corners"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_drawing_angle.cpp:112
#, kde-format
msgid "Angle Offset"
msgstr ""
#. +> trunk5
#: plugins/paintops/libpaintop/sensors/kis_dynamic_sensor_time.cc:70
#, kde-format
msgid " s"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, checkBoxRepeat)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/sensors/SensorDistanceConfiguration.ui:35
#: plugins/paintops/libpaintop/sensors/SensorFadeConfiguration.ui:35
#: plugins/paintops/libpaintop/sensors/SensorTimeConfiguration.ui:35
#, kde-format
msgid "repeat"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/paintops/libpaintop/sensors/SensorTimeConfiguration.ui:50
#, kde-format
msgid "Duration:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> stable5
#: plugins/paintops/libpaintop/sensors/SensorTimeConfiguration.ui:79
#, kde-format
msgid "s"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:69
#: plugins/paintops/spray/wdgsprayoptions.ui:166
#, kde-format
msgid "Particles"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:99
#, kde-format
msgid "Opacity Weight"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:129
#, kde-format
msgid "dx scale"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:159
#, kde-format
msgid "dy scale"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:189
#, kde-format
msgid "Gravity"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particle_paintop_settings.cpp:219
#, kde-format
msgid "Iterations"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/kis_particleop_option.cpp:138
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Particle Brush (not supported)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/particle/particle_paintop_plugin.cpp:42
#, kde-format
msgid "Particle"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, particlesLbl)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:43
#, kde-format
msgid "Particles:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, opacity)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:75
#, kde-format
msgid "Opacity weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel_5)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:104
#, kde-format
msgid "Iterations:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel_2)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:114
#, kde-format
msgid "Gravity:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel_3)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:127
#, kde-format
msgid "dx scale:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel_4)
#. +> trunk5 stable5
#: plugins/paintops/particle/wdgparticleoptions.ui:137
#, kde-format
msgid "dy scale:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/roundmarker/roundmarker_paintop_plugin.cpp:42
#, kde-format
msgid "Quick Brush"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:51
#, kde-format
msgid "Offset scale"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, densityRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/sketch/kis_sketch_paintop_settings_widget.cpp:52
#: plugins/paintops/spray/kis_spray_paintop_settings.cpp:182
#: plugins/paintops/spray/wdgsprayoptions.ui:181
#, kde-format
msgid "Density"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/sketch/kis_sketchop_option.cpp:107
#, kde-format
msgctxt "PaintOp instant preview limitation"
msgid "Sketch brush (differences in connecting lines are possible)"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/sketch/sketch_paintop_plugin.cpp:41
#, kde-format
msgid "Sketch"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:60
#, kde-format
msgid "Offset scale:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, distanceDensityCHBox)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:110
#, kde-format
msgid "Use distance density"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, simpleModeCHBox)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:120
#, kde-format
msgid "Simple mode"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, magnetifyCHBox)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:127
#, kde-format
msgid "Magnetify"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomRGBCHbox)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:151
#, kde-format
msgid "Random RGB"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, distanceOpacityCHbox)
#. +> trunk5 stable5
#: plugins/paintops/sketch/wdgsketchoptions.ui:165
#, kde-format
msgid "Distance opacity"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/spray/kis_spray_paintop_settings.cpp:146
#, kde-format
msgid "Particle Count"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:42
#, kde-format
msgid "Spray Area"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:43
#, kde-format
msgid "Spray shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/spray/kis_spray_paintop_settings_widget.cpp:49
#, kde-format
msgid "Shape dynamics"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/spray/spray_paintop_plugin.cpp:39
#, kde-format
msgid "Spray"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomSizeCHBox)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:32
#, kde-format
msgid "Random size"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:42
#, kde-format
msgid "Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, fixedRotation)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:48
#, kde-format
msgid "Fixed rotation:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, randomRotation)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:58
#, kde-format
msgid "Randomize rotation:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, followCursor)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:68
#, kde-format
msgid "Follow cursor weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, drawingAngle)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgshapedynamicsoptions.ui:84
#, kde-format
msgid "Angle weight:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, countRadioButton)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgsprayoptions.ui:201
#, kde-format
msgid "Count"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, gaussianBox)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgsprayoptions.ui:249
#, kde-format
msgid "Gaussian distribution"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, proportionalBox)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:154
#, kde-format
msgid "Proportional"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/spray/wdgsprayshapeoptions.ui:172
#, kde-format
msgid "Texture:"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_plugin.cpp:41
#, kde-format
msgid "Tangent Normal"
msgstr ""
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/kis_tangent_normal_paintop_settings_widget.cpp:58
#, kde-format
msgid "Tangent Tilt"
msgstr ""
#. i18n: This is a type of normal map used in 3d rendering. Normal in this case reffers to the Normal in the law of Reflection by William Snellius
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:29
#, kde-format
msgid "A Brush Engine for Drawing 3d Tangent Normal Maps"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, TangentEncoding)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:39
#, kde-format
msgid "Tangent Encoding"
msgstr ""
#. i18n: Positive horizontal axis
#. i18n: Positive horizontal axis
#. i18n: Positive horizontal axis
#. i18n: Positive horizontal axis
#. i18n: Positive horizontal axis
#. i18n: Positive horizontal axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:64
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:105
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:149
#, kde-format
msgid "+ X"
msgstr ""
#. i18n: Negative horizontal axis
#. i18n: Negative horizontal axis
#. i18n: Negative horizontal axis
#. i18n: Negative horizontal axis
#. i18n: Negative horizontal axis
#. i18n: Negative horizontal axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:69
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:110
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:154
#, kde-format
msgid "- X"
msgstr ""
#. i18n: Positive vertical axis
#. i18n: Positive vertical axis
#. i18n: Positive vertical axis
#. i18n: Positive vertical axis
#. i18n: Positive vertical axis
#. i18n: Positive vertical axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:74
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:115
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:159
#, kde-format
msgid "+ Y"
msgstr ""
#. i18n: Negative vertical axis
#. i18n: Negative vertical axis
#. i18n: Negative vertical axis
#. i18n: Negative vertical axis
#. i18n: Negative vertical axis
#. i18n: Negative vertical axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:79
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:120
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:164
#, kde-format
msgid "- Y"
msgstr ""
#. i18n: Positive height axis
#. i18n: Positive height axis
#. i18n: Positive height axis
#. i18n: Positive height axis
#. i18n: Positive height axis
#. i18n: Positive height axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:84
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:125
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:169
#, kde-format
msgid "+ Z"
msgstr ""
#. i18n: negative height axis
#. i18n: negative height axis
#. i18n: negative height axis
#. i18n: negative height axis
#. i18n: negative height axis
#. i18n: negative height axis
#. i18n: ectx: property (text), item, widget (QComboBox, comboGreen)
#. i18n: ectx: property (text), item, widget (QComboBox, comboRed)
#. i18n: ectx: property (text), item, widget (QComboBox, comboBlue)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:89
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:130
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:174
#, kde-format
msgid "- Z"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, TiltOptions)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:215
#, kde-format
msgid "Tilt Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, optionTilt)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:223
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use the tilt of the tablet to determine the normals.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, optionTilt)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:226
#, kde-format
msgid "Tilt"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, optionDirection)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:236
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use the drawing direction to determine the X and Y-axes, while tilt-elevation is used for the Z-axis.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, optionDirection)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:239
#, kde-format
msgid "Direction"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, optionRotation)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:246
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Use the rotation sensor available in certain pens to determine the X and Y-axes, while tilt-elevation is used for the Z-axis.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, optionMix)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:256
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Mix Tilt and Drawing angle to determine the X and Y-axes, while tilt-elevation is used for the Z-axis.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, optionMix)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:259
#, kde-format
msgid "Direction/Tilt Mix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, L_elevation)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:270
#, kde-format
msgid "Elevation Sensitivity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, L_mix)
#. +> trunk5 stable5
#: plugins/paintops/tangentnormal/wdgtangenttiltoption.ui:287
#, kde-format
msgid "Direction/Tilt Mix Value"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:68
msgctxt "(qtundo-format)"
msgid "Freehand Brush Stroke"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:75
#, kde-format
msgctxt "@action"
msgid "Brush Smoothing: Disabled"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:76
#, kde-format
msgctxt "@action"
msgid "Brush Smoothing: Basic"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:77
#, kde-format
msgctxt "@action"
msgid "Brush Smoothing: Weighted"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:78
#, kde-format
msgctxt "@action"
msgid "Brush Smoothing: Stabilizer"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_brush.cc:323
#, kde-format
msgid "Weighted"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:324
#, kde-format
msgid "Stabilizer"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_brush.cc:326
#, kde-format
msgid "Brush Smoothing:"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_brush.cc:321
#, kde-format
msgid "No Smoothing"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_brush.cc:322
#, kde-format
msgid "Basic Smoothing"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_brush.cc:323
#, kde-format
msgid "Weighted Smoothing"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:347
#, kde-format
msgid "Delay:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:352
#, kde-format
msgid "Delay the brush stroke to make the line smoother"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:356
#, kde-format
msgid "Radius where the brush is blocked"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:362
#, kde-format
msgid "Finish line:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:375
#, kde-format
msgid "Stabilize Sensors:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:383
#, kde-format
msgid "Stroke Ending:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:390
#, kde-format
msgid "Smooth Pressure"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:397
#, kde-format
msgctxt "@info:tooltip"
msgid "Scalable distance takes zoom level into account and makes the distance be visually constant whatever zoom level is chosen"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:402
#, kde-format
msgid "Scalable Distance"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_brush.cc:421
#, kde-format
msgid "Snap to Assistants"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_brush.cc:409
#, kde-format
msgid "Assistant:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:423
#, kde-format
msgid "You need to add Ruler Assistants before this tool will work."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:428
#, kde-format
msgid "Assistant Magnetism"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_brush.cc:439
#, kde-format
msgid "Magnetism:"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_brush.cc:442
#, kde-format
msgid "Snap Single:"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_brush.cc:437
#, kde-format
msgid "Snap single:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.cc:445
#, kde-format
msgctxt "@info:tooltip"
msgid "Make it only snap to a single assistant, prevents snapping mess while using the infinite assistants."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_brush.h:146
#, kde-format
msgid "Freehand Brush Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_colorpicker.cc:195
#, kde-format
msgid "Cannot pick a color as no layer is active."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_colorpicker.cc:200
#, kde-format
msgid "Cannot pick a color as the active layer is not visible."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_colorpicker.cc:242
#, kde-format
msgid "Cannot write to palette file %1. Maybe it is read-only."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_colorpicker.h:130
#, kde-format
msgid "Color Selector Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_ellipse.cc:69
msgctxt "(qtundo-format)"
msgid "Draw Ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_ellipse.h:58
#, kde-format
msgid "Ellipse Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_fill.cc:99
#, kde-format
msgid "You cannot use this tool with the selected layer type"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:152
msgctxt "(qtundo-format)"
msgid "Flood Fill"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:182
#, kde-format
msgid "Fast mode: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:185
#, kde-format
msgid "Fills area faster, but does not take composition mode into account. Selections and other extended features will also be disabled."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:190
#, kde-format
msgid "Threshold: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:197
#, kde-format
msgid "Grow selection: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:204
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:201
#, kde-format
msgid "Feathering radius: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:211
#, kde-format
msgid "Use pattern:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:213
#, kde-format
msgid "When checked do not use the foreground color, but the gradient selected to fill with"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:215
#, kde-format
msgid "Limit to current layer:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:219
#, kde-format
msgid "Fill entire selection:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.cc:221
#, kde-format
msgid "When checked do not look at the current layer colors, but just fill all of the selected area"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_fill.h:100
#, kde-format
msgid "Fill Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:164
msgctxt "(qtundo-format)"
msgid "Gradient"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:174
#, kde-format
msgctxt "@info:progress"
msgid "Gradient..."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:230
#, kde-format
msgctxt "the gradient will be drawn linearly"
msgid "Linear"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:231
#, kde-format
msgctxt "the gradient will be drawn bilinearly"
msgid "Bi-Linear"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:232
#, kde-format
msgctxt "the gradient will be drawn radially"
msgid "Radial"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:233
#, kde-format
msgctxt "the gradient will be drawn in a square around a centre"
msgid "Square"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:234
#, kde-format
msgctxt "the gradient will be drawn as an assymmetric cone"
msgid "Conical"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:235
#, kde-format
msgctxt "the gradient will be drawn as a symmetric cone"
msgid "Conical Symmetric"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:236
#, kde-format
msgctxt "the gradient will be drawn in a selection outline"
msgid "Shaped"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:243
#, kde-format
msgctxt "The gradient will not repeat"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:244
#, kde-format
msgctxt "The gradient will repeat forwards"
msgid "Forwards"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:245
#, kde-format
msgctxt "The gradient will repeat alternatingly"
msgid "Alternating"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:250
#, kde-format
msgid "Anti-alias threshold:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.cc:257
#, kde-format
msgctxt "the gradient will be drawn with the color order reversed"
msgid "Reverse"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_gradient.h:114
#, kde-format
msgid "Gradient Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.cc:66
msgctxt "(qtundo-format)"
msgid "Draw Line"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.cc:105
#, kde-format
msgid "Use sensors"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.cc:108
#, kde-format
msgid "Show Preview"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.cc:111
#, kde-format
msgid "Show Guideline"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.cc:366
#, kde-format
msgid "Alt+Drag will move the origin of the currently displayed line around, Shift+Drag will force you to draw straight lines"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_line.h:116
#, kde-format
msgid "Line Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_measure.cc:69
#, kde-format
msgid "Degree:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_measure.h:111
#, kde-format
msgid "Measure Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_move.cc:209
#: plugins/tools/basictools/kis_tool_move.cc:365
#, kde-format
msgctxt "floating message in move tool"
msgid "X: %1 px, Y: %2 px"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_move.h:164
#, kde-format
msgid "Move Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:63
msgctxt "(qtundo-format)"
msgid "Multibrush Stroke"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:252
#, kde-format
msgid "Show Axes"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:256
#, kde-format
msgid "Axes point"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:262
#, kde-format
msgid "Set axes angle (degrees)"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:268
#, kde-format
msgid "Axes Angle:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:273
#, kde-format
msgid "Symmetry"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:275
#, kde-format
msgid "Translate"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:276
#, kde-format
msgid "Snowflake"
msgstr ""
#. +> stable5
#: plugins/tools/basictools/kis_tool_multihand.cpp:280
#, kde-format
msgid "Brush count"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_multihand.h:103
#, kde-format
msgid "Multibrush Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/basictools/kis_tool_pan.cpp:86
#, kde-format
msgid "Pan Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_path.cc:118
msgctxt "(qtundo-format)"
msgid "Draw Bezier Curve"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_path.h:87
#, kde-format
msgid "Bezier Curve Tool: Shift-mouseclick ends the curve."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_pencil.cc:86
msgctxt "(qtundo-format)"
msgid "Draw Freehand Path"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_pencil.h:79
#, kde-format
msgid "Freehand Path Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_rectangle.cc:72
msgctxt "(qtundo-format)"
msgid "Draw Rectangle"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/kis_tool_rectangle.h:60
#, kde-format
msgid "Rectangle Tool"
msgstr ""
#. i18n: context: Actions (Pencil Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: plugins/tools/basictools/KisToolPencil.action:4
#, kde-format
msgctxt "action"
msgid "Pencil Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/basictools/strokes/move_selection_stroke_strategy.cpp:35
msgctxt "(qtundo-format)"
msgid "Move Selection"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ColorPickerOptionsWidget)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:14
#, kde-format
msgid "Color Picker"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, listViewChannels)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:24
#, kde-format
msgid "Channel"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:54
#, kde-format
msgid "Sample radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbNormaliseValues)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:79
#, kde-format
msgid "Show colors as percentages"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbPalette)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:103
#, kde-format
msgid "Add to palette:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, cbUpdateCurrentColor)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:115
#, kde-format
msgid "Update current color"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbSources)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgcolorpicker.ui:141
#, kde-format
msgid "Sample All Visible Layers"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpSelectionMethod)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:23
#, kde-format
msgid "Selection Mode"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioSelectedLayer)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:29
#, kde-format
msgid "Move the layer that you have currently selected in the layerbox with its masks. Shortcut: ctrl-click."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioSelectedLayer)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:32
#, kde-format
msgid "&Move current layer"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioFirstLayer)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:42
#, kde-format
msgid "Move the first layer with visible content at the place where you click. This will also select that layer in the layerbox."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFirstLayer)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:45
#, kde-format
msgid "Mo&ve layer with content"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioGroup)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:55
#, kde-format
msgid "Move the group containing the first layer that contains visible content. Shortcut: ctrl-shift-click."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioGroup)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:58
#, kde-format
msgid "Move &the whole group"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpMoveStep)
#. +> stable5
#: plugins/tools/basictools/wdgmovetool.ui:65
#, kde-format
msgid "Shortcut Move Distance"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, grpMoveStep)
#. +> trunk5
#: plugins/tools/basictools/wdgmovetool.ui:74
#, kde-format
msgid "Move Shortcut"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, spinMoveScale)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:86
#, kde-format
msgid "When holding shift, move keyboard shortcuts scale up by this amount."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scaleLabel)
#. +> stable5
#: plugins/tools/basictools/wdgmovetool.ui:106
#, kde-format
msgid "Large Move Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scaleLabel)
#. +> trunk5
#: plugins/tools/basictools/wdgmovetool.ui:108
#, kde-format
msgid "Multiplier:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleParseSpinBox, spinMoveStep)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:124
#, kde-format
msgid "Number of pixels to move after move shortcut keypress."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: plugins/tools/basictools/wdgmovetool.ui:162
#, kde-format
msgid "Unit:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_offsetX)
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, translateXBox)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:234
#: plugins/tools/basictools/wdgmovetool.ui:256
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1036
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1058
#, kde-format
msgid "Horizontal Translation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_rotateX)
#. i18n: ectx: property (text), widget (QLabel, label_offsetX)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:240
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:728
#, kde-format
msgid "&x:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, translateYBox)
#. i18n: ectx: property (toolTip), widget (QLabel, label_offsetY)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:272
#: plugins/tools/basictools/wdgmovetool.ui:285
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1074
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1087
#, kde-format
msgid "Vertical Translation"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_rotateY)
#. i18n: ectx: property (text), widget (QLabel, label_offsetY)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:288
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:763
#, kde-format
msgid "&y:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkShowCoordinates)
#. i18n: ectx: property (text), widget (QCheckBox, chkShowCoordinates)
#. +> trunk5 stable5
#: plugins/tools/basictools/wdgmovetool.ui:303
#: plugins/tools/basictools/wdgmovetool.ui:306
#, kde-format
msgid "Show coordinates on canvas"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowCoordinates)
#. +> stable5
#: plugins/tools/basictools/wdgmovetool.ui:119
#, kde-format
msgid "Show coordinates"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, showAxesCheckbox)
#. +> trunk5
#: plugins/tools/basictools/wdgmultihandtool.ui:153
#, kde-format
msgid "Show Origin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, brushesLabel)
#. +> trunk5
#: plugins/tools/basictools/wdgmultihandtool.ui:166
#, kde-format
msgid "Brushes:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, horizontalCheckbox)
#. +> trunk5
#: plugins/tools/basictools/wdgmultihandtool.ui:182
#, kde-format
msgid "Horizontal"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/tools/basictools/wdgmultihandtool.ui:198
#, kde-format
msgid "Origin:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, verticalCheckbox)
#. +> trunk5
#: plugins/tools/basictools/wdgmultihandtool.ui:208
#, kde-format
msgid "Vertical"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, toggleEditMode)
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionPointWidget.ui:30
#, kde-format
msgid "Edit Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labelEscape)
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionPointWidget.ui:37
#, kde-format
msgid "Escape Direction"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:779
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:792
#, kde-format
msgid "Drag to edit connection."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:781
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:794
#, kde-format
msgid "Double click connection or press delete to remove it."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:784
#, kde-format
msgid "Click to edit connection points."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:799
#, kde-format
msgid "Drag to move connection point. Double click connection or press delete to remove it."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:801
#, kde-format
msgid "Double click connection point or press delete to remove it."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:803
#, kde-format
msgid "Double click to add connection point."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:807
#, kde-format
msgid "Drag to create new connection."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:835
#, kde-format
msgid "Connection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionTool.cpp:850
#, kde-format
msgid "Connection Point"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/connectionTool/ConnectionToolFactory.cpp:31
#, kde-format
msgid "Connect shapes"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:639
#, kde-format
msgid "Left click rotates around center, right click around highlighted position."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:642
#, kde-format
msgid "Click and drag to shear selection."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:645
#, kde-format
msgid "Click and drag to resize selection."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:680
#, kde-format
msgid "Click and drag to move selection."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:684
#, kde-format
msgid "Click and drag to resize selection. Middle click to set highlighted position."
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:708
#, kde-format
msgid "This tool only works on vector layers. You probably want the move tool."
msgstr ""
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:997
#, kde-format
msgid "Shadow"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1101
msgctxt "(qtundo-format)"
msgid "Rotate Object 90° CW"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1105
msgctxt "(qtundo-format)"
msgid "Rotate Object 90° CCW"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1109
msgctxt "(qtundo-format)"
msgid "Rotate Object 180°"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1113
msgctxt "(qtundo-format)"
msgid "Mirror Object Horizontally"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1117
msgctxt "(qtundo-format)"
msgid "Mirror Object Vertically"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1121
msgctxt "(qtundo-format)"
msgid "Reset Object Transformations"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1187
msgctxt "(qtundo-format)"
msgid "Unite Shapes"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1201
msgctxt "(qtundo-format)"
msgid "Intersect Shapes"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1211
msgctxt "(qtundo-format)"
msgid "Subtract Shapes"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1254
msgctxt "(qtundo-format)"
msgid "Split Shapes"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultTool.cpp:1646
#, kde-format
msgid "Logical Operations"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolFactory.cpp:30
#, kde-format
msgid "Select Shapes Tool"
msgstr ""
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolFactory.cpp:30
#, kde-format
msgid "Shape Manipulation Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.cpp:309
#, kde-format
msgid "Opacity [*varies*]: "
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAnchorLock)
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:191
#, kde-format
msgid "Anchor Lock"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkUniformScaling)
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:198
#, kde-format
msgid ""
"<html><head/><body>"
"<p>When \"Uniform Scaling\" is <span style=\" font-weight:600;\">enabled</span>, the shape's stroke is scaled with the shape itself. </p>"
"<p>In <span style=\" font-weight:600;\">disabled</span> state, the shape is only resized, keeping the stroke width and style intact.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkUniformScaling)
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:201
#, kde-format
msgid "Uniform Scaling"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, chkGlobalCoordinates)
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:214
#, kde-format
msgid ""
"<html><head/><body>"
"<p>In \"Global Coordinates\" mode Width and Height fields show the size of the shape's bounding box in image-aligned coordinates, even when the shape is rotated or has any other transform. </p>"
"<p>If \"Global Coordinates\" mode is disabled, Width and Height fields show the shape's \"local\" size, before application of any transformations.</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkGlobalCoordinates)
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/DefaultToolGeometryWidget.ui:217
#, kde-format
msgid "Global Coordinates"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTabbedWidget.cpp:37
#, kde-format
msgid "Geometry"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:111
#: plugins/tools/defaulttool/defaulttool/ShapeRotateStrategy.cpp:115
msgctxt "(qtundo-format)"
msgid "Rotate"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:146
msgctxt "(qtundo-format)"
msgid "Shear X"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:181
msgctxt "(qtundo-format)"
msgid "Shear Y"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:221
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:255
msgctxt "(qtundo-format)"
msgid "Scale"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.cpp:284
msgctxt "(qtundo-format)"
msgid "Reset Transformations"
msgstr ""
#. +> trunk5
#: plugins/tools/defaulttool/defaulttool/ShapeMoveStrategy.cpp:63
#, kde-format
msgid "Press Shift to hold x- or y-position."
msgstr ""
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/ShapeMoveStrategy.cpp:58
#, kde-format
msgid "Press ALT to hold x- or y-position."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/ShapeResizeStrategy.cpp:113
#, kde-format
msgid "Press CTRL to resize from center."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/ShapeRotateStrategy.cpp:57
#, kde-format
msgid "Press ALT to rotate in 45 degree steps."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/defaulttool/defaulttool/ShapeShearStrategy.cpp:176
msgctxt "(qtundo-format)"
msgid "Shear"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/BlendEffect.cpp:31
#: plugins/tools/karbonplugins/filtereffects/BlendEffectFactory.cpp:27
#, kde-format
msgid "Blend"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/BlendEffectConfigWidget.cpp:36
#, kde-format
msgid "Blend mode"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/BlurEffect.cpp:275
#: plugins/tools/karbonplugins/filtereffects/BlurEffectFactory.cpp:27
#, kde-format
msgid "Gaussian blur"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffect.cpp:35
#, kde-format
msgid "Color Matrix"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:44
#, kde-format
msgid "Apply color matrix"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:45
#, kde-format
msgid "Saturate colors"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:46
#, kde-format
msgid "Rotate hue"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:47
#, kde-format
msgid "Luminance to alpha"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectConfigWidget.cpp:66
#, kde-format
msgid "Saturate value"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ColorMatrixEffectFactory.cpp:27
#, kde-format
msgid "Color matrix"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffect.cpp:31
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectFactory.cpp:27
#, kde-format
msgid "Component transfer"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:63
#, kde-format
msgid "Identity"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:65
#, kde-format
msgid "Discrete"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:67
#, kde-format
msgid "Gamma"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:80
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:90
#, kde-format
msgid "Values"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:100
#, kde-format
msgid "Slope"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:105
#, kde-format
msgid "Intercept"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:117
#, kde-format
msgid "Amplitude"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ComponentTransferEffectConfigWidget.cpp:122
#, kde-format
msgid "Exponent"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffect.cpp:32
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectFactory.cpp:27
#, kde-format
msgid "Composite"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:39
#, kde-format
msgid "Operation"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:42
#, kde-format
msgctxt "blending mode"
msgid "Over"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:43
#, kde-format
msgctxt "blending mode"
msgid "In"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:44
#, kde-format
msgctxt "blending mode"
msgid "Out"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:45
#, kde-format
msgctxt "blending mode"
msgid "Atop"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:46
#, kde-format
msgctxt "blending mode"
msgid "Xor"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/CompositeEffectConfigWidget.cpp:47
#, kde-format
msgctxt "blending mode"
msgid "Arithmetic"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffect.cpp:35
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectFactory.cpp:27
#, kde-format
msgid "Convolve Matrix"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:49
#, kde-format
msgid "Wrap"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:51
#, kde-format
msgid "Edge mode:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:58
#, kde-format
msgid "Kernel size:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:67
#, kde-format
msgid "Target point:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:74
#, kde-format
msgid "Divisor:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:76
#, kde-format
msgid "Bias:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:79
#, kde-format
msgid "Preserve alpha"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ConvolveMatrixEffectConfigWidget.cpp:82
#, kde-format
msgid "Edit kernel"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/FloodEffect.cpp:29
#: plugins/tools/karbonplugins/filtereffects/FloodEffectFactory.cpp:27
#, kde-format
msgid "Flood fill"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/FloodEffectConfigWidget.cpp:38
#, kde-format
msgid "Flood color"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ImageEffectConfigWidget.cpp:41
#, kde-format
msgid "Select image..."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/ImageEffectConfigWidget.cpp:76
#, kde-format
msgid "Select image"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MergeEffect.cpp:29
#: plugins/tools/karbonplugins/filtereffects/MergeEffectFactory.cpp:27
#, kde-format
msgid "Merge"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffect.cpp:32
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectFactory.cpp:27
#, kde-format
msgid "Morphology"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectConfigWidget.cpp:41
#, kde-format
msgid "Erode"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectConfigWidget.cpp:42
#, kde-format
msgid "Dilate"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectConfigWidget.cpp:45
#, kde-format
msgid "Operator:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectConfigWidget.cpp:49
#, kde-format
msgid "Radius x:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/MorphologyEffectConfigWidget.cpp:55
#, kde-format
msgid "Radius y:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/OffsetEffectConfigWidget.cpp:38
#, kde-format
msgid "dx"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/filtereffects/OffsetEffectConfigWidget.cpp:44
#, kde-format
msgid "dy"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphicShapeFactory.cpp:28
#, kde-format
msgid "A calligraphic shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphicShapeFactory.cpp:30
#, kde-format
msgid "Calligraphic Shape"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:72
#, kde-format
msgid "Save profile as..."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:77
#, kde-format
msgid "Remove profile"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:85
#, kde-format
msgid "&Follow selected path"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:88
#, kde-format
msgid "Use tablet &pressure"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:99
#, kde-format
msgid "Thinning:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:108
#, kde-format
msgid "Use tablet &angle"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:120
#, kde-format
msgid "Fixation:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:129
#, kde-format
msgid "Caps:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:198
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:199
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:226
#, kde-format
msgid "Current"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:218
#, kde-format
msgid "Profile name"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:219
#, kde-format
msgid "Please insert the name by which you want to save this profile:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:228
#, kde-format
msgid "Sorry, the name you entered is invalid."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:229
#, kde-format
msgctxt "invalid profile name"
msgid "Invalid name."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:237
#, kde-format
msgid ""
"A profile with that name already exists.\n"
"Do you want to overwrite it?"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:372
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:397
#, kde-format
msgid "Mouse"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyOptionWidget.cpp:385
#, kde-format
msgid "Graphics Pen"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:410
#, kde-format
msgid "Calligraphy: increase width"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:415
#, kde-format
msgid "Calligraphy: decrease width"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:420
#, kde-format
msgid "Calligraphy: increase angle"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:425
#, kde-format
msgid "Calligraphy: decrease angle"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:432
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyTool.cpp:433
#: plugins/tools/karbonplugins/tools/CalligraphyTool/KarbonCalligraphyToolFactory.cpp:32
#, kde-format
msgid "Calligraphy"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterAddCommand.cpp:34
msgctxt "(qtundo-format)"
msgid "Add filter effect"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.cpp:75
#, kde-format
msgid "Add effect to current filter stack"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.cpp:85
#, kde-format
msgid "Add to filter presets"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.cpp:89
#, kde-format
msgid "Remove filter preset"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.cpp:359
#, kde-format
msgid "Effect name"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.cpp:360
#, kde-format
msgid "Please enter a name for the filter effect"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, FilterEffectEditWidget)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:32
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:346
#, kde-format
msgid "Filter Effect Editor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:40
#, kde-format
msgid "Effects and Connections"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:92
#, kde-format
msgid "Filter Presets"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterEffectEditWidget.ui:116
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:510
#, kde-format
msgid "Effect Properties"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterRemoveCommand.cpp:36
msgctxt "(qtundo-format)"
msgid "Remove filter effect"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/FilterStackSetCommand.cpp:40
msgctxt "(qtundo-format)"
msgid "Set filter stack"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:473
#, kde-format
msgid "Effects"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:483
#, kde-format
msgid "View and edit filter"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:489
#, kde-format
msgid "Remove filter from object"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:493
#, kde-format
msgid "Add Filter"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, widthLabel)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:534
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:110
#: plugins/tools/tool_crop/wdg_tool_crop.ui:319
#, kde-format
msgid "W:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, heightLabel)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:540
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:120
#: plugins/tools/tool_crop/wdg_tool_crop.ui:221
#, kde-format
msgid "H:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsTool.cpp:545
#, kde-format
msgid "Effect Region"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/filterEffectTool/KarbonFilterEffectsToolFactory.cpp:29
#, kde-format
msgid "Filter effects editing"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:35
#, kde-format
msgid "Original"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:36
#, kde-format
msgid "Tiled"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:37
#, kde-format
msgid "Stretched"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:39
#, kde-format
msgid "Top Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:40
#, kde-format
msgid "Top"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:41
#, kde-format
msgid "Top Right"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:45
#, kde-format
msgid "Bottom Left"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:46
#, kde-format
msgid "Bottom"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.cpp:47
#, kde-format
msgid "Bottom Right"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:39
#, kde-format
msgid "Reference Point:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:49
#, kde-format
msgid "Reference Point Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:76
#, kde-format
msgid "Tile Offset"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternOptionsWidget.ui:103
#, kde-format
msgid "Pattern Size"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternTool.cpp:304
#, kde-format
msgid "Pattern Options"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/karbonplugins/tools/KarbonPatternToolFactory.cpp:30
#, kde-format
msgid "Pattern editing"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:59
#, kde-format
msgid "Contiguous Area Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:136
msgctxt "(qtundo-format)"
msgid "Select Contiguous Area"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:180
#: plugins/tools/selectiontools/kis_tool_select_similar.cc:158
#, kde-format
msgid "Fuzziness: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:191
#, kde-format
msgid "Grow/shrink selection: "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.cc:215
#, kde-format
msgid "Limit to current layer"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_contiguous.h:82
#, kde-format
msgid "Contiguous Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_elliptical.cc:49
msgctxt "(qtundo-format)"
msgid "Select Ellipse"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_elliptical.cc:81
#, kde-format
msgid "Elliptical Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_elliptical.h:76
#, kde-format
msgid "Elliptical Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_outline.cc:64
#, kde-format
msgid "Outline Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_outline.cc:160
msgctxt "(qtundo-format)"
msgid "Select by Outline"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_outline.h:78
#, kde-format
msgid "Outline Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_path.cc:37
#, kde-format
msgid "Select path"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_path.cc:147
msgctxt "(qtundo-format)"
msgid "Select by Bezier Curve"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_path.h:91
#, kde-format
msgid "Bezier Curve Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_polygonal.cc:55
msgctxt "(qtundo-format)"
msgid "Select Polygon"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_polygonal.cc:92
#, kde-format
msgid "Polygonal Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_polygonal.h:66
#, kde-format
msgid "Polygonal Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_rectangular.cc:51
msgctxt "(qtundo-format)"
msgid "Select Rectangle"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_rectangular.cc:81
#, kde-format
msgid "Rectangular Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_rectangular.h:68
#, kde-format
msgid "Rectangular Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_similar.cc:87
#, kde-format
msgid "Similar Color Selection"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_similar.cc:137
msgctxt "(qtundo-format)"
msgid "Select Similar Color"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/selectiontools/kis_tool_select_similar.h:62
#, kde-format
msgid "Similar Color Selection Tool"
msgstr ""
#. i18n: context: Actions (Path Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: plugins/tools/selectiontools/KisToolSelectPath.action:4
#, kde-format
msgctxt "action"
msgid "Path Selection Tool"
msgstr ""
#. i18n: context: Actions (Similar Selection Tool), ActionCollection (Tools)
#. +> trunk5 stable5
#: plugins/tools/selectiontools/KisToolSelectSimilar.action:4
#, kde-format
msgctxt "action"
msgid "Similar Selection Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/kis_font_family_combo_box.cpp:119
#, kde-format
msgid "Font Style"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/main.cpp:45
#, kde-format
msgid "Svg Text Editor"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/main.cpp:47
#, kde-format
msgid "Test for the Svg Text Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/main.cpp:49
#, kde-format
msgid "(c) 2017"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextChangeCommand.cpp:37
msgctxt "(qtundo-format)"
msgid "Change SvgTextTool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:97
#, kde-format
msgid "Text Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:175
#, kde-format
msgid "Conversion failed"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:334
#, kde-format
msgid "Find Text"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:338
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:379
#, kde-format
msgid "Find:"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:374
#, kde-format
msgid "Find and Replace all"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:381
#, kde-format
msgid "Replace:"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:811
#, kde-format
msgid "You have modified the text. Discard changes?"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, richTab)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:890
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:896
#: plugins/tools/svgtexttool/WdgSvgTextEditor.ui:24
#, kde-format
msgid "Rich text"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:893
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:897
#, kde-format
msgid "SVG Source"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:1042
#, kde-format
msgid "Text Color"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextEditor.cpp:1057
#, kde-format
msgid "Line height"
msgstr ""
#. i18n: context: Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:4
#, kde-format
msgctxt "action"
msgid "SVG Text Tool"
msgstr ""
#. i18n: context: Action (svg_weight_normal), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_normal), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_normal), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_normal), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:178
#: plugins/tools/svgtexttool/SvgTextTool.action:183
#, kde-format
msgctxt "action"
msgid "Normal"
msgstr ""
#. i18n: context: Action (svg_weight_demi), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_demi), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_demi), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_demi), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:188
#: plugins/tools/svgtexttool/SvgTextTool.action:193
#, kde-format
msgctxt "action"
msgid "Demi"
msgstr ""
#. i18n: context: Action (svg_weight_black), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_black), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_black), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_black), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:198
#: plugins/tools/svgtexttool/SvgTextTool.action:203
#, kde-format
msgctxt "action"
msgid "Black"
msgstr ""
#. i18n: context: Action (svg_weight_light), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_light), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_light), Actions (Text Tool), ActionCollection (svg_Tools)
#. i18n: context: Action (svg_weight_light), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:208
#: plugins/tools/svgtexttool/SvgTextTool.action:213
#, kde-format
msgctxt "action"
msgid "Light"
msgstr ""
#. i18n: context: Action (svg_line_height), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:218
#, kde-format
msgctxt "action"
msgid "Line Height in em"
msgstr ""
#. i18n: context: Action (svg_line_height), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:223
#, kde-format
msgctxt "action"
msgid "Line Height"
msgstr ""
#. i18n: context: Action (svg_settings), Actions (Text Tool), ActionCollection (svg_Tools)
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.action:228
#, kde-format
msgctxt "action"
msgid "Text Editor Settings"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.cpp:99
#, kde-format
msgid "Create new texts with..."
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.cpp:122
#, kde-format
msgid "Anchor text to the left."
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.cpp:130
#, kde-format
msgid "Anchor text to the middle."
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.cpp:138
#, kde-format
msgid "Anchor text to the right."
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextTool.cpp:159
#, kde-format
msgid "Edit Text"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:33
#, kde-format
msgid "&Insert"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:37
#, kde-format
msgid "&Format"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/svgtexttool.xmlgui:45
#, kde-format
msgid "&Weight"
msgstr ""
#. +> trunk5
#: plugins/tools/svgtexttool/SvgTextToolFactory.cpp:32
#, kde-format
msgid "SVG Text Tool"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, svgTab)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextEditor.ui:34
#, kde-format
msgid "SVG source"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tabSvgTextEdit)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextEditor.ui:44
#, kde-format
msgid "SVG"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkVertical)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextEditor.ui:77
#, kde-format
msgid "Vertical Text Layout"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:21
#, kde-format
msgid "Editor Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:27
#, kde-format
msgid "Note: the Rich Text editor only supports a subset of SVG."
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioRichText)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:37
#, kde-format
msgid "Rich Te&xt Only"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioSvgSource)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:51
#, kde-format
msgid "S&VG Source Only"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:80
#, kde-format
msgid "Keyword"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkBoldKeyword)
#. i18n: ectx: property (text), widget (QCheckBox, chkBoldElement)
#. i18n: ectx: property (text), widget (QCheckBox, chkBoldAttribute)
#. i18n: ectx: property (text), widget (QCheckBox, chkBoldValue)
#. i18n: ectx: property (text), widget (QCheckBox, chkBoldComment)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:90
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:118
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:146
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:174
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:202
#, kde-format
msgid "Bold"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkItalicKeyword)
#. i18n: ectx: property (text), widget (QCheckBox, chkItalicElement)
#. i18n: ectx: property (text), widget (QCheckBox, chkItalicAttribute)
#. i18n: ectx: property (text), widget (QCheckBox, chkItalicValue)
#. i18n: ectx: property (text), widget (QCheckBox, chkItalicComment)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:97
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:125
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:153
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:181
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:209
#, kde-format
msgid "Italic"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:108
#, kde-format
msgid "Element"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:136
#, kde-format
msgid "Attribute"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, colorComment_2)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:192
#, kde-format
msgid "Comment"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:220
#, kde-format
msgid "Editor text color"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:230
#, kde-format
msgid "Editor background:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:256
#, kde-format
msgid "Fonts"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5
#: plugins/tools/svgtexttool/WdgSvgTextSettings.ui:262
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Which writing system should the fonts chooser show the fonts of? No writing system selected will have all fonts shown.</p>"
"</body></html>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_crop/kis_tool_crop.h:213
#, kde-format
msgid "Crop Tool"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgToolCrop)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:14
#, kde-format
msgid "Crop"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, boolCenter)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:62
#, kde-format
msgid "Resize keeping center fixed"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_vertiPos)
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, intY)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:72
#: plugins/tools/tool_crop/wdg_tool_crop.ui:135
#, kde-format
msgid "Vertical Position"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_vertiPos)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:75
#, kde-format
msgid "&Y:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_horizPos)
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, intX)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:85
#: plugins/tools/tool_crop/wdg_tool_crop.ui:110
#, kde-format
msgid "Horizontal Position"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_horizPos)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:88
#, kde-format
msgid "&X:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, boolGrow)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:148
#, kde-format
msgid "Allow growing the image by dragging outside bounds of the image"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, lockWidthButton)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:329
#, kde-format
msgid "Lock the width"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, lockHeightButton)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:342
#, kde-format
msgid "Lock the height"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, lockRatioButton)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:355
#, kde-format
msgid "Lock the aspect ratio"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bnCrop)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:406
#, kde-format
msgid "&Crop"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:413
#, kde-format
msgid "Applies to:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDecor)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:429
#, kde-format
msgid "Thirds"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDecor)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:434
#, kde-format
msgid "Fifths"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, cmbDecor)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:439
#, kde-format
msgid "Passport photo"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: plugins/tools/tool_crop/wdg_tool_crop.ui:452
#, kde-format
msgid "Decoration:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:49
msgctxt "(qtundo-format)"
msgid "Dynamic Brush Stroke"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_dyna/kis_tool_dyna.cpp:303
#, kde-format
msgid "Fixed angle:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_dyna/kis_tool_dyna.h:159
#, kde-format
msgid "Dynamic Brush Tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush.cpp:61
msgctxt "(qtundo-format)"
msgid "Colorize Mask Key Stroke"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush.h:96
#, kde-format
msgid "Colorize Mask Editing Tool"
msgstr ""
#. +> trunk5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:83
#, kde-format
msgctxt "@info:tooltip"
msgid "Activate for images with vast solid areas. Set the value to the width of the thinnest lines on the image"
msgstr ""
#. +> trunk5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:93
#, kde-format
msgctxt "@info:tooltip"
msgid "The mask will try to close non-closed contours if the gap is smaller than \"Gap close hint\" value"
msgstr ""
#. +> trunk5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.cpp:101
#, kde-format
msgctxt "@info:tooltip"
msgid "The mask will try to remove parts of the key strokes that are placed outside the closed contours. 0% - no effect, 100% - max effect"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkAutoUpdates)
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:19
#, kde-format
msgid "Auto updates"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowKeyStrokes)
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:35
#, kde-format
msgid "Edit key strokes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkShowOutput)
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:42
#, kde-format
msgid "Show output"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, chkLimitToDevice)
#. +> trunk5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:49
#, kde-format
msgid "Limit to layer bounds"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/tools/tool_lazybrush/kis_tool_lazy_brush_options_widget.ui:115
#, kde-format
msgid "Key Strokes"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_polygon/kis_tool_polygon.cc:71
msgctxt "(qtundo-format)"
msgid "Draw Polygon"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_polygon/kis_tool_polygon.h:53
#, kde-format
msgid "Polygon Tool: Shift-mouseclick ends the polygon."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_polyline/kis_tool_polyline.h:54
#, kde-format
msgid "Polyline Tool: Shift-mouseclick ends the polyline."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch.cpp:138
#, kde-format
msgid "Select a paint layer to use this tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch.cpp:175
msgctxt "(qtundo-format)"
msgid "Smart Patch"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch.h:91
#, kde-format
msgid "Smart Patch Tool"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Fast)
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch_options_widget.ui:23
#, kde-format
msgid "low/fast"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Accurate)
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch_options_widget.ui:46
#, kde-format
msgid "high/slow"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, Fast_2)
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch_options_widget.ui:94
#, kde-format
msgid "Accuracy:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, patchRadiusLabel)
#. +> trunk5 stable5
#: plugins/tools/tool_smart_patch/kis_tool_smart_patch_options_widget.ui:111
#, kde-format
msgid "Patch Radius:"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_free_transform_strategy_gsl_helpers.cpp:339
#, kde-format
msgid "Sorry, Krita was built without the support of GNU Scientific Library, so you cannot scale the selection with handles. Please compile Krita with GNU Scientific Library support, or use options widget for editing scale values manually."
msgstr ""
#. +> trunk5
#: plugins/tools/tool_transform2/kis_tool_transform.cc:829
#, kde-format
msgctxt "floating message in transformation tool"
msgid "Selected layer cannot be transformed with active transformation mode "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform.cc:846
#, kde-format
msgctxt "floating message in transformation tool"
msgid "Selections are not used when editing transform masks "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform.cc:857
#, kde-format
msgctxt "floating message in transformation tool"
msgid "Cannot transform empty layer "
msgstr ""
#. +> stable5
#: plugins/tools/tool_transform2/kis_tool_transform.cc:259
#, kde-format
msgid "The transform tool cannot transform a vector layer."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform.cc:883
#, kde-format
msgctxt "floating message in transformation tool"
msgid "Invisible sublayers will also be transformed. Lock layers if you do not want them to be transformed "
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform.h:326
#, kde-format
msgid "Transform a layer or a selection"
msgstr ""
#. +> trunk5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:61
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Select filtering mode:\n"
"<ul>"
"<li><b>Bilinear</b> for areas with uniform color to avoid artifacts</li>"
"<li><b>Bicubic</b> for smoother results</li>"
"<li><b>Lanczos3</b> for sharp results. May produce aerials.</li>"
"</ul>"
"</p>"
msgstr ""
#. +> stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:63
#, kde-format
msgctxt "@info:tooltip"
msgid ""
"<p>Select filtering mode:\n"
"<ul>"
"<li><b>Bilinear</b> for areas with uniform color to avoid artifacts</li>"
"<li><b>Bicubic</b> for smoother results</li>"
"<li><b>Lanczos3</b> for sharp results. May produce aerials.</il></ul>"
"</p>"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:71
#, kde-format
msgid "Default (Affine)"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:72
#, kde-format
msgid "Strong (Rigid)"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:73
#, kde-format
msgid "Strongest (Similitude)"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:205
#, kde-format
msgctxt "@info:tooltip"
msgid "Size of the deformation brush"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:210
#, kde-format
msgctxt "@info:tooltip"
msgid "Amount of the deformation you get"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:215
#, kde-format
msgctxt "@info:tooltip"
msgid "When in non-buildup mode, shows how fast the deformation limit is reached."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:219
#, kde-format
msgctxt "@info:tooltip"
msgid "Switch between Build Up and Wash mode of painting. Build Up mode adds deformations one on top of the other without any limits. Wash mode gradually deforms the piece to the selected deformation level."
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:226
#, kde-format
msgctxt "@info:tooltip"
msgid "Space between two sequential applications of the deformation"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:230
#, kde-format
msgctxt "@info:tooltip"
msgid "Scale <b>Size</b> value according to current stylus pressure"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:234
#, kde-format
msgctxt "@info:tooltip"
msgid "Scale <b>Amount</b> value according to current stylus pressure"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:238
#, kde-format
msgctxt "@info:tooltip"
msgid "Reverse direction of the current deformation tool"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:253
#, kde-format
msgctxt "@info:tooltip"
msgid "Move: drag the image along the brush stroke"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:254
#, kde-format
msgctxt "@info:tooltip"
msgid "Scale: grow/shrink image under cursor"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:255
#, kde-format
msgctxt "@info:tooltip"
msgid "Rotate: twirl image under cursor"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:256
#, kde-format
msgctxt "@info:tooltip"
msgid "Offset: shift the image to the right of the stroke direction"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:257
#, kde-format
msgctxt "@info:tooltip"
msgid "Undo: erase actions of other tools"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:604
#, kde-format
msgid "Switch between editing and deforming cage"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, lockUnlockPointsButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:655
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1614
#, kde-format
msgid "Lock Points"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:657
#, kde-format
msgid "Unlock Points"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cageTransformDirections)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/kis_tool_transform_config_widget.cpp:744
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1646
#, kde-format
msgid "Create 3 points on the canvas to begin"
msgstr ""
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/strokes/transform_stroke_strategy.cpp:45
msgctxt "(qtundo-format)"
msgid "Transform"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, freeTransformButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:99
#, kde-format
msgid "Free"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, freeTransformButton)
#. i18n: ectx: property (text), widget (QLabel, lblTransformType)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:102
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:235
#, kde-format
msgid "Free Transform"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, warpButton)
#. i18n: ectx: property (text), widget (QToolButton, warpButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:152
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:155
#, kde-format
msgid "Warp"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, cageButton)
#. i18n: ectx: property (text), widget (QToolButton, cageButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:180
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:183
#, kde-format
msgid "Cage"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, liquifyButton)
#. i18n: ectx: property (text), widget (QToolButton, liquifyButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:205
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:208
#, kde-format
msgid "Liquify"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, btnTransformAroundPivotPoint)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:528
#, kde-format
msgid "Transform around pivot point (Alt)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, freeMoveRadioButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:548
#, kde-format
msgid "Posi&tion"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, freeScaleRadioButton)
#. i18n: ectx: property (title), widget (QGroupBox, scaleGroup)
#. i18n: ectx: property (text), widget (QToolButton, liquifyScale)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:571
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:841
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1762
#, kde-format
msgid "Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, freeShearRadioButton)
#. i18n: ectx: property (title), widget (QGroupBox, shearGroup)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:581
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1120
#, kde-format
msgid "Shear"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, tooBigLabelWidget)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:618
#, kde-format
msgid "off canvas"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_rotateX)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, aXBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:722
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:738
#, kde-format
msgid "Rotate around X-Axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_rotateY)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, aYBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:757
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:773
#, kde-format
msgid "Rotate around Y-Axis"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, aZBox)
#. i18n: ectx: property (toolTip), widget (QLabel, label_rotateZ)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:786
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:805
#, kde-format
msgid "Rotate around Z-Axis"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_rotateZ)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:811
#, kde-format
msgid "&z:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_width)
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, scaleXBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:887
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:909
#, kde-format
msgid "Horizontal Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_width)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:890
#, kde-format
msgid "w&idth:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisIntParseSpinBox, scaleYBox)
#. i18n: ectx: property (toolTip), widget (QLabel, label_height)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:925
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:947
#, kde-format
msgid "Vertical Scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_height)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:950
#, kde-format
msgid "&height:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_offsetX)
#. i18n: ectx: property (text), widget (QLabel, label_shearX)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1042
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1170
#, kde-format
msgid "x:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_offsetY)
#. i18n: ectx: property (text), widget (QLabel, label_shearY)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1090
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1211
#, kde-format
msgid "y:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_shearX)
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, shearXBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1167
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1230
#, kde-format
msgid "Horizontal Shear"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KisDoubleSliderSpinBox, shearYBox)
#. i18n: ectx: property (toolTip), widget (QLabel, label_shearY)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1189
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1208
#, kde-format
msgid "Vertical Shear"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, flipXButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1276
#, kde-format
msgid "Flip selection horizontally"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, flipYButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1298
#, kde-format
msgid "Flip selection vertically"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, rotateCCWButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1336
#, kde-format
msgid "Rotate selection counter-clockwise 90 degrees"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, rotateCWButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1358
#, kde-format
msgid "Rotate the selection clockwise 90 degrees"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, flexibilityLabel)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1437
#, kde-format
msgid "&Flexibility:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, warpTypeLabel)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1466
#, kde-format
msgid "Anc&hor Strength:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1484
#, kde-format
msgid "Anchor Points"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, defaultRadioButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1519
#, kde-format
msgid "Subd&ivide"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, customRadioButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1573
#, kde-format
msgid "Draw"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetPointsButton)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1607
#, kde-format
msgid "Clear Points"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, cageAddEditRadio)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1653
#, kde-format
msgid "Add/Ed&it Anchor Points"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, cageDeformRadio)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1669
#, kde-format
msgid "De&form Layer"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QFrame, liquifyOptionsLayout)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1707
#, kde-format
msgid ""
"<html><head/><body>"
"<p><br/>"
"</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, liquifyRotate)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1784
#, kde-format
msgid "Rotate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1867
#, kde-format
msgid "Reverse:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, buidupModeComboBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:1991
#, kde-format
msgid "Build Up"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, showDecorationsBox)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:2096
#, kde-format
msgid "Show Decorations"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, chkWorkRecursively)
#. +> trunk5 stable5
#: plugins/tools/tool_transform2/wdg_tool_transform.ui:2124
#, kde-format
msgid "Work Recursively"
msgstr ""
#. +> stable5
#: libs/flake/KoShapePaste.cpp:170
msgctxt "(qtundo-format)"
msgid "Paste Shapes"
msgstr ""
#. +> stable5
#: libs/flake/tools/KoPanToolFactory.cpp:30
#, kde-format
msgid "Pan"
msgstr ""
#. +> stable5
#: libs/widgets/KoFillConfigWidget.cpp:224
#, kde-format
msgctxt "No stroke or fill"
msgid "None"
msgstr ""
#. +> stable5
#: libs/widgets/KoFillConfigWidget.cpp:232
#, kde-format
msgctxt "Solid color stroke or fill"
msgid "Solid"
msgstr ""
#. +> stable5
#: libs/widgets/KoFillConfigWidget.cpp:273
#, kde-format
msgid "Change the filling gradient"
msgstr ""
#. i18n: context: Actions (Ruler Assistant Tool), ActionCollection (Tools)
#. +> stable5
#: plugins/assistants/RulerAssistant/KisRulerAssistantTool.action:4
#, kde-format
msgctxt "action"
msgid "Ruler Assistant Tool"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:74
#, kde-format
msgid "Found no shapes in the collection! %1"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:134
#, kde-format
msgid "Not a valid Calligra file: %1"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:157
#, kde-format
msgid "No body tag found in file: %1"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:165
#, kde-format
msgid "No office:drawing tag found in file: %1"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:173
#: plugins/dockers/shapedockers/shapecollection/OdfCollectionLoader.cpp:181
#, kde-format
msgid "No shapes found in file: %1"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:121
#, kde-format
msgid "Add Shape"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:156
#, kde-format
msgid "More"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:185
#, kde-format
msgid "Open Shape Collection"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:193
#, kde-format
msgid "Remove Shape Collection"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:311
#, kde-format
msgid "Geometrics"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:315
#, kde-format
msgid "Arrows"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:319
#, kde-format
msgid "Funny"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapecollection/ShapeCollectionDocker.cpp:497
#, kde-format
msgid "Collection Error"
msgstr ""
#. +> stable5
#: plugins/dockers/shapedockers/shapeproperties/ShapePropertiesDocker.cpp:56
#, kde-format
msgid "Shape Properties"
msgstr ""
#. +> stable5
#: plugins/extensions/buginfo/buginfo.cpp:37
#, kde-format
msgid "Show system information for bug reports."
msgstr ""
#. +> stable5
#: plugins/filters/colorsfilters/kis_brightness_contrast_filter.cpp:163
#, kde-format
msgid "&Brightness/Contrast curve..."
msgstr ""
#. +> stable5
#: plugins/filters/colorsfilters/kis_brightness_contrast_filter.h:92
#, kde-format
msgid "Brightness / Contrast"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabelBrightness)
#. +> stable5
#: plugins/filters/colorsfilters/wdg_brightness_contrast.ui:231
#, kde-format
msgid "Brightness"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabelContrast)
#. +> stable5
#: plugins/filters/colorsfilters/wdg_brightness_contrast.ui:251
#, kde-format
msgid "Contrast"
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.cpp:49
#, kde-format
msgid "&Sobel..."
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.cpp:170
#, kde-format
msgid "Sobel horizontally"
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.cpp:171
#, kde-format
msgid "Sobel vertically"
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.cpp:172
#, kde-format
msgid "Keep sign of result"
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.cpp:173
#, kde-format
msgid "Make image opaque"
msgstr ""
#. +> stable5
#: plugins/filters/sobelfilter/kis_sobel_filter.h:39
#, kde-format
msgid "Sobel"
msgstr ""
#. +> stable5
#: plugins/impex/brush/kis_brush_export.cpp:105
#, kde-format
msgid "Brush Tip Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/csv/csv_loader.cpp:125 plugins/impex/csv/csv_loader.cpp:128
#, kde-format
msgid "Loading CSV file..."
msgstr ""
#. +> stable5
#: plugins/impex/csv/csv_saver.cpp:180
#, kde-format
msgid "Saving CSV file..."
msgstr ""
#. +> stable5
#: plugins/impex/csv/kis_csv_export.cpp:85
#, kde-format
msgctxt "@title:window"
msgid "CSV Export Error"
msgstr ""
#. +> stable5
#: plugins/impex/csv/kis_csv_export.cpp:86
#, kde-format
msgid ""
"Unable to save to the CSV format.\n"
"The CSV format not supports layer groups or masked layers."
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_export.cpp:97
#, kde-format
msgid "Cannot export this image to a heightmap: it is not square"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_export.cpp:102
#, kde-format
msgid "Cannot export this image to a heightmap: it is not grayscale"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_export.cpp:107
#, kde-format
msgid "HeightMap Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_export.cpp:139
#, kde-format
msgctxt "@title:window"
msgid "Downscale Image"
msgstr ""
#. +> stable5
#: plugins/impex/heightmap/kis_heightmap_export.cpp:140
#, kde-format
msgid "You specified the .r8 extension for a 16 bit/channel image. Do you want to save as 8 bit? Your image data will not be changed."
msgstr ""
#. +> stable5
#: plugins/impex/jpeg/kis_jpeg_converter.cc:482
#, kde-format
msgid "Warning: JPEG only supports 8 bits per channel. Your image uses: %1. Krita will save your image as 8 bits per channel."
msgstr ""
#. +> stable5
#: plugins/impex/jpeg/kis_jpeg_converter.cc:487
#, kde-format
msgid ""
"Cannot export images in %1.\n"
"Will save as RGB."
msgstr ""
#. +> stable5
#: plugins/impex/jpeg/kis_jpeg_export.cc:110
#, kde-format
msgid "JPEG Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/ora/ora_export.cc:104
#, kde-format
msgid "Cannot export images in this colorspace or channel depth to OpenRaster"
msgstr ""
#. +> stable5
#: plugins/impex/ora/ora_export.cc:104
#, kde-format
msgctxt "@title:window"
msgid "Krita OpenRaster Export"
msgstr ""
#. +> stable5
#: plugins/impex/ora/ora_export.cc:112
#, kde-format
msgctxt "@title:window"
msgid "Krita:Warning"
msgstr ""
#. +> stable5
#: plugins/impex/ora/ora_export.cc:113
#, kde-format
msgid ""
"This image contains vector, clone or fill layers.\n"
"These layers will be saved as raster layers."
msgstr ""
#. +> stable5
#: plugins/impex/png/kis_png_export.cc:124
#, kde-format
msgctxt "@title:window"
msgid "Krita PNG Export"
msgstr ""
#. +> stable5
#: plugins/impex/png/kis_png_export.cc:124
#, kde-format
msgid "You can only save 8 and 16 bits integer/channel grayscale and RGB images to PNG. Your image will be saved as 8 bits/channel RGB."
msgstr ""
#. +> stable5
#: plugins/impex/png/kis_png_export.cc:146
#, kde-format
msgid "PNG Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/ppm/kis_ppm_export.cpp:154
#, kde-format
msgid "PPM Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/tiff/kis_tiff_export.cc:69
#, kde-format
msgid "TIFF Export Options"
msgstr ""
#. +> stable5
#: plugins/impex/tiff/kis_tiff_writer_visitor.cpp:73
#, kde-format
msgid "Cannot export images in %1.\n"
msgstr ""
#. +> stable5
#: plugins/paintops/chalk/chalk_paintop_plugin.cpp:41
#, kde-format
msgid "Chalk"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, radiusLabel)
#. +> stable5
#: plugins/paintops/chalk/wdgchalkoptions.ui:46
#, kde-format
msgid "Brush Radius:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, opacity)
#. +> stable5
#: plugins/paintops/chalk/wdgchalkoptions.ui:73
#, kde-format
msgid "Opacity decrease"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, saturation)
#. +> stable5
#: plugins/paintops/chalk/wdgchalkoptions.ui:83
#, kde-format
msgid "Saturation decrease"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, shearXButton)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:68
#, kde-format
msgid "Shear X"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, shearYButton)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:94
#, kde-format
msgid "Shear Y"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, scaleXButton)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:126
#, kde-format
msgid "Scale X"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, scaleYButton)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:158
#, kde-format
msgid "Scale Y"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, scaleAspectCheckBox)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:165
#, kde-format
msgid "Keep aspect ratio"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, resetButton)
#. +> stable5
#: plugins/tools/defaulttool/defaulttool/DefaultToolTransformWidget.ui:178
#, kde-format
msgid "Reset Transformations"
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:218
#, kde-format
msgid "Drag to move gradient position."
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:227
#, kde-format
msgid "Drag to move color stop. Double click to remove color stop."
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:229
#, kde-format
msgid "Drag to move color stop."
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:237
#, kde-format
msgid "Drag to move gradient position. Double click to insert color stop."
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:528
#, kde-format
msgid "Edit Gradient"
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientTool.cpp:530
#, kde-format
msgid "Predefined Gradients"
msgstr ""
#. +> stable5
#: plugins/tools/karbonplugins/tools/KarbonGradientToolFactory.cpp:30
#, kde-format
msgid "Gradient editing"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, WdgTextOptions)
#. +> stable5
#: plugins/tools/tool_text/wdgtextoptions.ui:14
#, kde-format
msgid "Text Options"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, buttonMultiline)
#. +> stable5
#: plugins/tools/tool_text/wdgtextoptions.ui:97
#, kde-format
msgid "Multiline"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.kgraphviewer.appdata.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.kgraphviewer.appdata.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.kgraphviewer.appdata.pot (revision 1509808)
@@ -1,119 +1,107 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2017-05-15 09:09+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. (itstool) path: component/name
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:6
msgid "KGraphViewer"
msgstr ""
#. (itstool) path: component/summary
#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:7
msgid "A Graphviz DOT graph viewer"
msgstr ""
-#. (itstool) path: component/summary
-#. +> stable
-#: kgraphviewer.appdata.xml:7
-msgid "A Graphviz dot graph viewer for KDE"
-msgstr ""
-
#. (itstool) path: description/p
#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:9
msgid "KGraphViewer is a Graphviz DOT graph file viewer, aimed to replace the other outdated Graphviz tools. Graphs are commonly used in scientific domains and particularly in computer science."
msgstr ""
#. (itstool) path: description/p
-#. +> stable
-#: kgraphviewer.appdata.xml:9
-msgid "KGraphViewer is a Graphviz dot graph file viewer, aimed to replace the other outdated GraphViz tools. Graphs are commonly used in scientific domains and particularly in computer science."
-msgstr ""
-
-#. (itstool) path: description/p
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:13
msgid "Features:"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:15
msgid "Zooming"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:16
msgid "Threaded loading of several graphs in tabs"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:17
msgid "Saving of the recent files list"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:18
msgid "Manual reload of files"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:19
msgid "Display of a bird-eye view of the graph"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:20
msgid "Moving of the graph by dragging"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:21
msgid "Full featured printing"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:22
msgid "Perfect drawing of all graphviz example graphs"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:23
msgid "Automatically choose dot for directed graphs and neato for undirected"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:24
msgid "Possibility to use an arbitrary layout algorithm as soon as it produces xdot format"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:25
msgid "Automatic reloading with user confirmation of (externally) modified files (configurable)"
msgstr ""
#. (itstool) path: ul/li
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.kgraphviewer.appdata.xml:26
msgid "Open new instances as new tabs in the old one (configurable)"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.libkgraphviewer.metainfo.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.libkgraphviewer.metainfo.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-graphics/org.kde.libkgraphviewer.metainfo.pot (revision 1509808)
@@ -1,29 +1,23 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2017-05-15 09:09+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. (itstool) path: component/name
-#. +> trunk5 stable
+#. +> trunk5
#: org.kde.libkgraphviewer.metainfo.xml.in:6
msgid "KGraphViewer Library"
msgstr ""
#. (itstool) path: component/summary
#. +> trunk5
#: org.kde.libkgraphviewer.metainfo.xml.in:7
msgid "A Graphviz DOT graph viewer (shared library)"
msgstr ""
-
-#. (itstool) path: component/summary
-#. +> stable
-#: kgraphviewer.metainfo.xml.in:7
-msgid "A Graphviz dot graph viewer for KDE (shared library)"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.desktop.pot (revision 1509808)
@@ -1,30 +1,30 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-03-10 08:55+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/org.kde.massif-visualizer.desktop:11
msgctxt "Name"
msgid "Massif-Visualizer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/org.kde.massif-visualizer.desktop:48
msgctxt "GenericName"
msgid "Profiler Frontend"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/org.kde.massif-visualizer.desktop:83
msgctxt "Comment"
msgid "Visualization of Memory Profiling Data"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sdk/massif-visualizer.pot (revision 1509808)
@@ -1,804 +1,740 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-05-09 11:28+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/callgraphtab.cpp:89
#, kde-format
msgid "Focus most expensive node"
msgstr ""
#. i18n: ectx: ToolBar (callgraphToolBar)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/callgraphtabui.rc:13
#, kde-format
msgid "CallGraph Toolbar"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:186
#, kde-format
msgid "Toggle total cost graph"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:192
#, kde-format
msgid "Toggle detailed cost graph"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:200
#, kde-format
msgid "Stacked diagrams"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:203
#, kde-format
msgid "Stacked diagrams:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:212
#, kde-format
msgid "hide function"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:215
#, kde-format
msgid "hide other functions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:280
#, kde-format
msgid "time in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:287
#, kde-format
msgid "memory heap size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:457
#, kde-format
msgid "Memory consumption of %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:458
#, kde-format
msgid "Peak of %1 at snapshot #%2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:460
#, kde-format
msgid ""
"Command: %1\n"
"Valgrind Options: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:465
#, kde-format
msgid "Save Current Visualization"
msgstr ""
#. +> trunk5 stable5
#: app/charttab.cpp:466
#, kde-format
msgid "Images (*.png *.jpg *.tiff *.svg)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:491
#, kde-format
msgid "Error, failed to save the image to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttab.cpp:503
#, kde-format
msgid "Massif Chart Print Preview"
msgstr ""
#. i18n: ectx: ToolBar (chartToolBar)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/charttabui.rc:17
#, kde-format
msgid "Chart Toolbar"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, costLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:17
#, kde-format
msgid "Cost Precision:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:27
#, kde-format
msgid "Legend"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendPositionLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:36
#, kde-format
msgid "Position:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendPosition)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:44
#, kde-format
msgid "North"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendPosition)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:49
#, kde-format
msgid "East"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendPosition)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:54
#, kde-format
msgid "South"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendPosition)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:59
#, kde-format
msgid "West"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendPosition)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:64
#, kde-format
msgid "Floating"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendAlignmentLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:72
#, kde-format
msgid "Alignment:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendAlignment)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:80
#, kde-format
msgid "Left"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendAlignment)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:85
#, kde-format
msgid "Center"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendAlignment)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:90
#, kde-format
msgid "Right"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendAlignment)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:95
#, kde-format
msgid "Top"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_LegendAlignment)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:100
#, kde-format
msgid "Bottom"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, legendFontSizeLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:108
#, kde-format
msgid "Font Size:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShortenTemplates)
#. i18n: ectx: label, entry (ShortenTemplates), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/config.ui:121 app/mainwindow.cpp:189
#: app/massif-visualizer-settings.kcfg:14
#, kde-format
msgid "Shorten Templates"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/configdialog.cpp:41
#, kde-format
msgid "Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/documentwidget.cpp:113
#, kde-format
msgid "loading file <i>%1</i>..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/documentwidget.cpp:193
#, kde-format
msgid "Memory Chart"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/documentwidget.cpp:201
#, kde-format
msgid "Callgraph"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/documentwidget.cpp:207
#, kde-format
msgid "Allocators"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:40
#, kde-format
msgid "Massif Visualizer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:41
#, kde-format
msgid "A visualizer for output generated by Valgrind's massif tool."
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:42
#, kde-format
msgid "Copyright 2010-2015, Milian Wolff <mail@milianw.de>"
msgstr ""
-#. +> stable
-#: app/main.cpp:38
-#, kde-format
-msgid "Copyright 2010-2014, Milian Wolff <mail@milianw.de>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:44
#, kde-format
msgid "Milian Wolff"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:44
#, kde-format
msgid "Original author, maintainer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:47
#, kde-format
msgid "Arnold Dumas"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/main.cpp:47
#, kde-format
msgid "Multiple document interface, bug fixes"
msgstr ""
-#. +> stable
-#: app/main.cpp:51
-#, kde-format
-msgid "Opens given output file(s) and visualize it."
-msgstr ""
-
#. +> trunk5 stable5
#: app/main.cpp:60
#, kde-format
msgid "Files to load"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:60
#, kde-format
msgid "[FILE...]"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:195
#, kde-format
msgid "Select peak snapshot"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:201
#, kde-format
msgid "add"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:202
#, kde-format
msgid "add custom allocator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:205
#, kde-format
msgid "remove"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:207
#, kde-format
msgid "remove selected allocator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:214
#, kde-format
msgid "mark as custom allocator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:225
#, kde-format
msgid "Open Massif Data File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:257
#, kde-format
msgid "Open Massif Output File"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:258
#, kde-format
msgid "Massif data files (massif.out.*)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:395
#, kde-format
msgid "Add Custom Allocator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.cpp:395
#, kde-format
msgid "allocator:"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:479
#, kde-format
msgid "Evaluation of %1 (%2)"
msgstr ""
-#. +> stable
-#: app/mainwindow.cpp:481
-#, kde-format
-msgid "Massif Visualizer - evaluation of %1 (%2)"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QToolButton, openFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.ui:67
#, kde-format
msgid "..."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDockWidget, dataTreeDock)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.ui:109
#, kde-format
msgid "Massif Data"
msgstr ""
#. i18n: ectx: property (clickMessage), widget (KLineEdit, filterDataTree)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.ui:122
#, kde-format
msgid "filter"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDockWidget, allocatorDock)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/mainwindow.ui:137
#, kde-format
msgid "Custom Allocators"
msgstr ""
#. i18n: ectx: label, entry (PrettyCostPrecision), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:9
#, kde-format
msgid "Cost Precision"
msgstr ""
#. i18n: ectx: tooltip, entry (PrettyCostPrecision), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:10
#, kde-format
msgid "Defines the number of places after the comma for memory costs shown in the application."
msgstr ""
#. i18n: ectx: tooltip, entry (ShortenTemplates), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:15
#, kde-format
msgid "Defines whether identifiers of C++ template instantiations should be shortened by removing their template arguments."
msgstr ""
#. i18n: ectx: label, entry (LegendPosition), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:19
#, kde-format
msgid "Legend Position"
msgstr ""
#. i18n: ectx: tooltip, entry (LegendPosition), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:20
#, kde-format
msgid "Defines the position of the legend relative to the plot."
msgstr ""
#. i18n: ectx: label, entry (LegendAlignment), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:31
#, kde-format
msgid "Legend Alignment"
msgstr ""
#. i18n: ectx: tooltip, entry (LegendAlignment), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:32
#, kde-format
msgid "Defines the alignment of the legend."
msgstr ""
#. i18n: ectx: label, entry (LegendFontSize), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:45
#, kde-format
msgid "Legend Font Size"
msgstr ""
#. i18n: ectx: tooltip, entry (LegendFontSize), group (Settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizer-settings.kcfg:46
#, kde-format
msgid "Defines the font size used in the legend."
msgstr ""
#. i18n: ectx: Menu (file)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:5
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (view)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:19
#, kde-format
msgid "&View"
msgstr ""
#. i18n: ectx: Menu (settings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:23
#, kde-format
msgid "&Settings"
msgstr ""
#. i18n: ectx: Menu (dockWidgets)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:25
#, kde-format
msgid "&Dock Widgets"
msgstr ""
#. i18n: ectx: Menu (help)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:34
#, kde-format
msgid "&Help"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: app/massif-visualizerui.rc:45
#, kde-format
msgid "Main Toolbar"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:55
#, kde-format
msgid "Download Failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:56
#, kde-format
msgid "Failed to download remote massif data file <i>%1</i>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:66
#, kde-format
msgid "Read Failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:67
#, kde-format
msgid "Could not open file <i>%1</i> for reading."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:78
#, kde-format
msgid "Parser Failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:79
#, kde-format
msgid ""
"Could not parse file <i>%1</i>.<br>"
"Parse error in line %2:<br>"
"%3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:86
#, kde-format
msgid "Empty data file <i>%1</i>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/parseworker.cpp:87
#, kde-format
msgid "Empty Data File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/util.cpp:136
#, kde-format
msgid ""
"<dt>function:</dt>"
"<dd>%1</dd>"
"\n"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/util.cpp:139
#, kde-format
msgid ""
"<dt>location:</dt>"
"<dd>%1</dd>"
"\n"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/util.cpp:142
#, kde-format
msgid ""
"<dt>address:</dt>"
"<dd>%1</dd>"
"\n"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: massifdata/util.cpp:155
#, kde-format
msgid ""
"<dt>cost:</dt>"
"<dd>%1, i.e. %2% of snapshot #%3</dd>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/allocatorsmodel.cpp:127
#, kde-format
msgid ""
"<dt>peak cost:</dt>"
"<dd>%1</dd>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/allocatorsmodel.cpp:137
#, kde-format
msgid "below threshold"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/allocatorsmodel.cpp:160
#, kde-format
msgid "Function"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/allocatorsmodel.cpp:162
#, kde-format
msgid "Location"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/allocatorsmodel.cpp:164
#, kde-format
msgid "Peak"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:84
#, kde-format
msgid "Snapshots"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:148
#, kde-format
msgid "Peak snapshot: heap cost of %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:150
#, kde-format
msgid "Snapshot #%1: heap cost of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:153
#, kde-format
msgctxt "%1: snapshot number"
msgid "Snapshot #%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:160
#, kde-format
msgctxt "%1: cost, %2: snapshot number"
msgid "%1: Snapshot #%2 (peak)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:163
#, kde-format
msgctxt "%1: cost, %2: snapshot number"
msgid "%1: Snapshot #%2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/datatreemodel.cpp:175
#, kde-format
msgctxt "%1: cost, %2: snapshot label (i.e. func name etc.)"
msgid "%1: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/dotgraphgenerator.cpp:198
#, kde-format
msgid "snapshot #%1 (taken at %2%4)\\nheap cost: %3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/dotgraphgenerator.cpp:303
#, kde-format
msgid "in one place below threshold"
msgid_plural "in %1 places, all below threshold"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/totalcostmodel.cpp:79
#, kde-format
msgid "Total Memory Heap Consumption"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: visualizer/totalcostmodel.cpp:123
#, kde-format
msgid ""
"Snapshot #%1:\n"
"Heap cost of %2\n"
"Extra heap cost of %3\n"
"Stack cost of %4"
msgstr ""
-
-#. i18n: ectx: property (windowTitle), widget (QWidget, DatasetSelector)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:30
-#, kde-format
-msgid "Data Selector"
-msgstr ""
-
-#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:42
-#, kde-format
-msgid "Only display a subset of the model in the chart:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox, cbReverseColumns)
-#. i18n: ectx: property (text), widget (QCheckBox, cbReverseRows)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:60
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:126
-#, kde-format
-msgid "in reverse order."
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, label_2)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:80
-#, kde-format
-msgid "columns starting at column"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, label)
-#. i18n: ectx: property (text), widget (QLabel, label_3)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:93
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:133
-#, kde-format
-msgid "Display"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, label_4)
-#. +> stable
-#: kdchart/src/KDChart/KDChartDatasetSelector.ui:116
-#, kde-format
-msgid "rows starting at row"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sdk/org.kde.massif-visualizer.appdata.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sdk/org.kde.massif-visualizer.appdata.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sdk/org.kde.massif-visualizer.appdata.pot (revision 1509808)
@@ -1,65 +1,59 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2017-09-08 10:03+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. (itstool) path: component/name
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:6
msgid "Massif-Visualizer"
msgstr ""
#. (itstool) path: component/summary
#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:7
msgid "A visualizer for Valgrind Massif data files"
msgstr ""
-#. (itstool) path: component/summary
-#. +> stable
-#: massif-visualizer.appdata.xml:7
-msgid "A visualizer for Valgrind Massif data files."
-msgstr ""
-
#. (itstool) path: description/p
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:9
msgid "Massif Visualizer is a tool that - who'd guess that - visualizes massif data. You run your application in Valgrind with --tool=massif and then open the generated massif.out.%pid in the visualizer. Gzip or Bzip2 compressed massif files can also be opened transparently."
msgstr ""
#. (itstool) path: description/p
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:15
msgid "Features:"
msgstr ""
#. (itstool) path: ul/li
#. (itstool) path: screenshot/caption
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:17
#: org.kde.massif-visualizer.appdata.xml:28
msgid "Interactive chart of memory consumption over time."
msgstr ""
#. (itstool) path: ul/li
#. (itstool) path: screenshot/caption
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:18
#: org.kde.massif-visualizer.appdata.xml:32
msgid "Detailed snapshot analysis with callgraph visualization (requires KGraphViewer)."
msgstr ""
#. (itstool) path: ul/li
#. (itstool) path: screenshot/caption
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: org.kde.massif-visualizer.appdata.xml:19
#: org.kde.massif-visualizer.appdata.xml:36
msgid "Summary of peak memory consumption of all allocating functions."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon-installer.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon-installer.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon-installer.pot (nonexistent)
@@ -1,395 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR This_file_is_part_of_KDE
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2016-11-20 12:30+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-
-#. +> stable
-#, kde-format
-msgctxt "NAME OF TRANSLATORS"
-msgid "Your names"
-msgstr ""
-
-#. +> stable
-#, kde-format
-msgctxt "EMAIL OF TRANSLATORS"
-msgid "Your emails"
-msgstr ""
-
-#. +> stable
-#: installer/ApplicationLauncher.cpp:43
-#, kde-format
-msgid "The following application was just installed, click on it to launch:"
-msgid_plural "The following applications were just installed, click on them to launch:"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> stable
-#: installer/BreadcrumbWidget/BreadcrumbWidget.cpp:64
-#, kde-format
-msgctxt "@label Line edit click message"
-msgid "Search"
-msgstr ""
-
-#. +> stable
-#: installer/CategoryView/CategoryViewWidget.cpp:66
-#, kde-format
-msgid "Get Software"
-msgstr ""
-
-#. +> stable
-#: installer/CategoryView/CategoryViewWidget.cpp:119
-#, kde-format
-msgctxt "@label"
-msgid "Search Results"
-msgstr ""
-
-#. +> stable
-#: installer/main.cpp:31
-#, kde-format
-msgid "An application manager"
-msgstr ""
-
-#. +> stable
-#: installer/main.cpp:35
-#, kde-format
-msgid "Muon Software Center"
-msgstr ""
-
-#. +> stable
-#: installer/main.cpp:36
-#, kde-format
-msgid "©2010-2012 Jonathan Thomas"
-msgstr ""
-
-#. +> stable
-#: installer/main.cpp:37
-#, kde-format
-msgid "Jonathan Thomas"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:219
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "Provided by Kubuntu"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:224
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "Provided by Debian"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:230
-#, kde-format
-msgctxt "@item:inlistbox The name of the repository provided by Canonical, Ltd. "
-msgid "Canonical Partners"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:239
-#, kde-format
-msgctxt "@item:inlistbox An independent software source"
-msgid "Independent"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:290
-#, kde-format
-msgctxt "@item:inlistbox Parent item for available software"
-msgid "Get Software"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:296
-#, kde-format
-msgctxt "@item:inlistbox Parent item for installed software"
-msgid "Installed Software"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:317
-#, kde-format
-msgctxt "@item:inlistbox Item for showing the history view"
-msgid "History"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:396
-#, kde-format
-msgctxt "@info"
-msgid "%1 was successfully installed."
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:399
-#, kde-format
-msgctxt "@action"
-msgid "Start"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:405
-#, kde-format
-msgctxt "@info"
-msgid "Applications successfully installed."
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:406
-#, kde-format
-msgctxt "@action"
-msgid "Run New Applications..."
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:428
-#, kde-format
-msgctxt "@title:window"
-msgid "Installation Complete"
-msgstr ""
-
-#. +> stable
-#: installer/MainWindow.cpp:456
-#, kde-format
-msgctxt "@item:inlistbox Item for showing the progress view"
-msgid "In Progress"
-msgstr ""
-
-#. +> stable
-#: installer/ProgressView.cpp:37
-#, kde-format
-msgctxt "@info"
-msgid "<title>In Progress</title>"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/AddonsWidget.cpp:60
-#, kde-format
-msgctxt "@title"
-msgid "Addons"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/AddonsWidget.cpp:87
-#, kde-format
-msgctxt "@action:button"
-msgid "Revert"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/AddonsWidget.cpp:93
-#, kde-format
-msgctxt "@action:button"
-msgid "Apply"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/AddonsWidget.cpp:94
-#, kde-format
-msgctxt "@info:tooltip"
-msgid "Apply changes to addons"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:148
-#, kde-format
-msgctxt "@info"
-msgid "Find in the menu:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:237
-#, kde-format
-msgctxt "@label Label preceding the app size"
-msgid "Total Size:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:244
-#, kde-format
-msgctxt "@label/rich Label preceding the app version"
-msgid "Version:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:251
-#, kde-format
-msgctxt "@label Label preceding the app license"
-msgid "License:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:258
-#, kde-format
-msgctxt "@label Label preceding the app support"
-msgid "Support:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:329
-#, kde-format
-msgctxt "@label The number of ratings the app has"
-msgid "%1 rating"
-msgid_plural "%1 ratings"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:357
-#, kde-format
-msgctxt "@label visible text for an app's URL"
-msgid "Website"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:464
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:505
-#, kde-format
-msgctxt "@info:status Progress text when waiting"
-msgid "Waiting"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:538
-#, kde-format
-msgctxt "@action"
-msgid "Install"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceDetailsView/ResourceDetailsWidget.cpp:542
-#, kde-format
-msgctxt "@action"
-msgid "Remove"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceDelegate.cpp:62
-#: installer/ResourceView/ResourceExtender.cpp:57
-#: installer/ResourceView/ResourceExtender.cpp:117
-#, kde-format
-msgid "Install"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceDelegate.cpp:64
-#: installer/ResourceView/ResourceExtender.cpp:53
-#: installer/ResourceView/ResourceExtender.cpp:114
-#, kde-format
-msgid "Remove"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceExtender.cpp:43
-#, kde-format
-msgid "More Info"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:65
-#, kde-format
-msgid "Show technical items"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:71
-#, kde-format
-msgid "Sort:"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:73
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "By Name"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:74
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "By Top Rated"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:75
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "By Most Buzz"
-msgstr ""
-
-#. +> stable
-#: installer/ResourceView/ResourceViewWidget.cpp:213
-#, kde-format
-msgctxt "@item:inlistbox"
-msgid "By Relevancy"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewsWidget.cpp:57
-#, kde-format
-msgctxt "@title"
-msgid "Reviews"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewsWidget.cpp:73
-#, kde-format
-msgctxt "@info:status"
-msgid "Loading reviews"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewsWidget.cpp:79
-#, kde-format
-msgctxt "@action"
-msgid "Check for more reviews"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewsWidget.cpp:103
-#, kde-format
-msgctxt "@info:status"
-msgid "No reviews available"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewWidget.cpp:124
-#, kde-format
-msgctxt "@label Formatted: username, date"
-msgid "%1, %2"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewWidget.cpp:136
-#, kde-format
-msgctxt "@label"
-msgid "This review was written for an older version (Version: %1)"
-msgstr ""
-
-#. +> stable
-#: installer/ReviewsWidget/ReviewWidget.cpp:143
-#, kde-format
-msgctxt "@label"
-msgid "%1 out of %2 person found this review useful"
-msgid_plural "%1 out of %2 people found this review useful"
-msgstr[0] ""
-msgstr[1] ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/libqapt.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/libqapt.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/libqapt.desktop.pot (revision 1509808)
@@ -1,102 +1,48 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-03-18 09:31+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable
+#. +> trunk5
#: utils/plasma-runner-installer/plasma-runner-installer.desktop:2
msgctxt "Name"
msgid "Installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/plasma-runner-installer/plasma-runner-installer.desktop:48
msgctxt "Comment"
msgid "Suggests the installation of not-installed applications"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/qapt-deb-installer.desktop:2
msgctxt "Name"
msgid "QApt Package Installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/qapt-deb-installer.desktop:47
msgctxt "GenericName"
msgid "Package Installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/qapt-deb-installer.desktop:92
msgctxt "Comment"
msgid "Install and view software packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-thumbnailer/debthumbnailer.desktop:3
msgctxt "Name"
msgid "Debian Package Files"
msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:2
-msgctxt "Name"
-msgid "Kubuntu"
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:46
-msgctxt "Name"
-msgid "Update package information"
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:85
-msgctxt "Description"
-msgid "To update the software catalog you need to authenticate."
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:128
-msgctxt "Name"
-msgid "Install or remove packages"
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:168
-msgctxt "Description"
-msgid "To install or remove software you need to authenticate."
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:211
-msgctxt "Name"
-msgid "Change software configuration"
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:251
-msgctxt "Description"
-msgid "To change software settings you need to authenticate."
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:294
-msgctxt "Name"
-msgid "Cancel the task of another user"
-msgstr ""
-
-#. +> stable
-#: src/worker/qaptworker.actions:334
-msgctxt "Description"
-msgid "To cancel someone else's software changes you need to authenticate."
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.desktop.pot (revision 1509808)
@@ -1,294 +1,258 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-02-05 09:15+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/muon.desktop:2
msgctxt "Name"
msgid "Muon Package Manager"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/muon.desktop:54
msgctxt "GenericName"
msgid "Package Manager"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/muon.desktop:103
msgctxt "X-KDE-Keywords"
msgid "program,software,repository,archive,package,install,remove,update,deb"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/muon-contenttheme/metadata.desktop:2
msgctxt "Name"
msgid "Application dashboard"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/muon-contenttheme/metadata.desktop:47
msgctxt "Comment"
msgid "Intended as Application dashboard default"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/org.kde.discover.desktop:2
msgctxt "Name"
msgid "Muon Discover"
msgstr ""
-#. +> stable
-#: installer/muon-installer.desktop:2
-msgctxt "Name"
-msgid "Muon Software Center"
-msgstr ""
-
#. +> stable5
#: discover/org.kde.discover.desktop:51
msgctxt "GenericName"
msgid "Software Center"
msgstr ""
#. +> stable5
#: discover/org.kde.discover.desktop:99
msgctxt "Keywords"
msgid "program;software;repository;package;install;remove;update;apps;applications;"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/muon-akabei-backend.desktop:6
msgctxt "Comment"
msgid "Install and browse applications in Chakra"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/muon-akabei-backend.desktop:48
msgctxt "Name"
msgid "Akabei Backend"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/muon-akabei-backend.desktop:88
msgctxt "GenericName"
msgid "Chakra Support"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/muonakabeinotifier.desktop:2
msgctxt "Name"
msgid "Muon Akabei Notifier"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muon-applications-backend.desktop:6
msgctxt "Comment"
msgid "Install and browse applications in APT"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muon-applications-backend.desktop:50
msgctxt "Name"
msgid "Applications Backend"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muon-applications-backend.desktop:94
msgctxt "GenericName"
msgid "APT Support"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muonapplicationnotifier.notifyrc:3
msgctxt "Comment"
msgid "Muon Application Backend Notifier"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muonapplicationnotifier.notifyrc:45
msgctxt "Name"
msgid "Upgrade Available"
msgstr ""
#. +> stable5
#: libmuon/backends/ApplicationBackend/muonapplicationnotifier.notifyrc:92
msgctxt "Comment"
msgid "A new version of Kubuntu is available"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/BodegaBackend/muon-bodegawallpapers-backend.desktop:6
msgctxt "Name"
msgid "Bodega Wallpapers"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/BodegaBackend/muon-bodegawallpapers-backend.desktop:49
msgctxt "GenericName"
msgid "Wallpapers"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/BodegaBackend/muon-bodegawallpapers-backend.desktop:95
msgctxt "Comment"
msgid "Install new, awesome wallpapers for your KDE!"
msgstr ""
#. +> stable5
#: libmuon/backends/DummyBackend/muon-dummy-backend.desktop:6
msgctxt "Name"
msgid "Dummy"
msgstr ""
#. +> stable5
#: libmuon/backends/DummyBackend/muon-dummy-backend.desktop:50
msgctxt "GenericName"
msgid "Dummy"
msgstr ""
#. +> stable5
#: libmuon/backends/DummyBackend/muon-dummy-backend.desktop:94
msgctxt "Comment"
msgid "It's some dummy backend for testing purposes"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knscomics-backend.desktop:6
msgctxt "Name"
msgid "Comics"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knscomics-backend.desktop:50
msgctxt "GenericName"
msgid "Comics"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knscomics-backend.desktop:94
msgctxt "Comment"
msgid "Install comic stripes to be used from the comics plasmoid"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knsplasmoids-backend.desktop:6
msgctxt "Name"
msgid "Plasmoids"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knsplasmoids-backend.desktop:50
msgctxt "GenericName"
msgid "Plasmoids"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/KNSBackend/muon-knsplasmoids-backend.desktop:94
msgctxt "Comment"
msgid "Install plasmoids and raise the power of your workspace!"
msgstr ""
#. +> stable5
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend.desktop:6
msgctxt "Comment"
msgid "Install and browse applications in PackageKit"
msgstr ""
#. +> stable5
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend.desktop:48
msgctxt "Name"
msgid "PackageKit Support"
msgstr ""
#. +> stable5
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend.desktop:90
msgctxt "GenericName"
msgid "Applications Backend"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/resources/muonabstractnotifier.notifyrc:3
msgctxt "Comment"
msgid "Muon"
msgstr ""
#. +> stable5
#: libmuon/resources/muonabstractnotifier.notifyrc:47
msgctxt "Name"
msgid "Updates Are Available"
msgstr ""
#. +> stable5
#: libmuon/resources/muonabstractnotifier.notifyrc:93
msgctxt "Comment"
msgid "Updates Available"
msgstr ""
#. +> stable5
#: notifier/MuonNotifier.desktop:2
msgctxt "Name"
msgid "Muon Notifier"
msgstr ""
#. +> stable5
#: notifier/plasmoid/metadata.desktop:2
msgctxt "Name"
msgid "Updates"
msgstr ""
#. +> stable5
#: notifier/plasmoid/metadata.desktop:40
msgctxt "Comment"
msgid "Helps you keep your system up to date"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/muon-updater.desktop:2
msgctxt "Name"
msgid "Muon Update Manager"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/muon-updater.desktop:53
msgctxt "GenericName"
msgid "Update Manager"
msgstr ""
-
-#. +> stable
-#: discover/muon-discover-category.desktop:2
-msgctxt "Name"
-msgid "Install More..."
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/ApplicationBackend/muonapplicationnotifier.desktop:2
-msgctxt "Name"
-msgid "Muon Application Notifier"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/DummyBackend/muondummynotifier.desktop:2
-msgctxt "Name"
-msgid "Muon Dummy Notifier"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/muonpackagekitnotifier.desktop:2
-msgctxt "Name"
-msgid "Muon PackageKit Notifier"
-msgstr ""
-
-#. +> stable
-#: libmuon/muonbackendplugin.desktop:5
-msgctxt "Name"
-msgid "Muon Backend"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/muon.pot (revision 1509808)
@@ -1,2046 +1,2039 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-04-06 13:43+0200\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. i18n: ectx: label, entry (SplitterSizes), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:3 src/config/muon.kcfg:9
#, kde-format
msgid "How the main window is divided."
msgstr ""
#. i18n: ectx: label, entry (Width), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:6 src/config/muon.kcfg:12
#, kde-format
msgid "Width of the main window."
msgstr ""
#. i18n: ectx: label, entry (Height), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:9 src/config/muon.kcfg:16
#, kde-format
msgid "Height of the main window."
msgstr ""
#. i18n: ectx: label, entry (UndoStackSize), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:12 src/config/muon.kcfg:20
#, kde-format
msgid "The amount of history kept for undo/redo."
msgstr ""
#. i18n: ectx: label, entry (AskChanges), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:15 src/config/muon.kcfg:24
#, kde-format
msgid "Whether or not to confirm additional changes."
msgstr ""
#. i18n: ectx: label, entry (ShowMultiArchDupes), group (muon)
#. +> trunk5 stable5
#: muonrc.cpp:18 src/config/muon.kcfg:28
#, kde-format
msgid "Show foreign architecture packages also available natively."
msgstr ""
#. i18n: ectx: label, entry (ManagerListColumns), group (muon)
#. +> trunk5
#: muonrc.cpp:21 src/config/muon.kcfg:32
#, kde-format
msgid "Status of columns in the manager list of packages."
msgstr ""
#. i18n: ectx: label, entry (ReviewListColumns), group (muon)
#. +> trunk5
#: muonrc.cpp:24 src/config/muon.kcfg:36
#, kde-format
msgid "Status of columns in the changes review list of packages."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:51
#, kde-format
msgid "Ask to confirm changes that affect other packages"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:52
#, kde-format
msgid "Show foreign-architecture packages that are available natively"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:53
#, kde-format
msgid "Treat recommended packages as dependencies"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:54
#, kde-format
msgid "Treat suggested packages as dependencies"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:55
#, kde-format
msgid "Allow the installation of untrusted packages"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:66
#, kde-format
msgid "Delete obsolete cached packages every:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:84
#, kde-format
msgid "Number of undo operations:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/GeneralSettingsPage.cpp:160
#, kde-format
msgid " day"
msgid_plural " days"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/ManagerSettingsDialog.cpp:40
#, kde-format
msgctxt "@title:window"
msgid "Muon Preferences"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/config/ManagerSettingsDialog.cpp:47
#, kde-format
msgctxt "@title:group Title of the general group"
msgid "General"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/ChangelogTab.cpp:45
#, kde-format
msgctxt "@title:tab"
msgid "Changes List"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/ChangelogTab.cpp:90
#, kde-kuit-format
msgctxt "@info/rich"
msgid "The list of changes is not yet available. Please use <link url='%1'>Launchpad</link> instead."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/ChangelogTab.cpp:94
#, kde-format
msgctxt "@info"
msgid "The list of changes is not yet available."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:37
#, kde-format
msgctxt "@title:tab"
msgid "Dependencies"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:40
#, kde-format
msgctxt "@item:inlistbox"
msgid "Dependencies of the Current Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:41
#, kde-format
msgctxt "@item:inlistbox"
msgid "Dependencies of the Latest Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:42
#, kde-format
msgctxt "@item:inlistbox"
msgid "Dependants (Reverse Dependencies)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:43
#, kde-format
msgctxt "@item:inlistbox"
msgid "Virtual Packages Provided"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:71 src/DetailsTabs/DependsTab.cpp:78
#, kde-format
msgctxt "@label"
msgid "This package does not have any dependencies"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:85
#, kde-format
msgctxt "@label"
msgid "This package has no dependents. (Nothing depends on it.)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/DependsTab.cpp:92
#, kde-format
msgctxt "@label"
msgid "This package does not provide any virtual packages"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/InstalledFilesTab.cpp:35
#, kde-format
msgctxt "@title:tab"
msgid "Installed Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:43
#, kde-format
msgctxt "@title:tab"
msgid "Details"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:57
#, kde-format
msgctxt "@label"
msgid "Mark for:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:62
#, kde-format
msgctxt "@action:button"
msgid "Installation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:70
#, kde-format
msgctxt "@action:button"
msgid "Removal"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:76
#, kde-format
msgctxt "@action:button"
msgid "Upgrade"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:82
#, kde-format
msgctxt "@action:button"
msgid "Reinstallation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:89
#, kde-format
msgctxt "@action:button"
msgid "Purge"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:102 src/PackageModel/PackageWidget.cpp:191
#, kde-format
msgctxt "@action:button"
msgid "Unmark"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:188
#, kde-format
msgctxt "@info Tells how long Canonical, Ltd. will support a package"
msgid "Canonical provides critical updates for %1 until %2."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/MainTab.cpp:192
#, kde-format
msgctxt "@info Tells how long Canonical, Ltd. will support a package"
msgid "Canonical does not provide updates for %1. Some updates may be provided by the Ubuntu community."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:43
#, kde-format
msgctxt "@title:tab"
msgid "Technical Details"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:57
#, kde-format
msgctxt "@label Label preceding the package maintainer"
msgid "Maintainer:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:66
#, kde-format
msgctxt "@label Label preceding the package category"
msgid "Category:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:76
#, kde-format
msgctxt "@label The parent package that this package comes from"
msgid "Source Package:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:86
#, kde-format
msgctxt "@label The software source that this package comes from"
msgid "Origin:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:96
#, kde-format
msgctxt "@label The package archive component that this package comes from"
msgid "Component:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:106
#, kde-format
msgctxt "@title:group"
msgid "Installed Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:113
#: src/DetailsTabs/TechnicalDetailsTab.cpp:138
#, kde-format
msgctxt "@label Label preceding the package version"
msgid "Version:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:121
#: src/DetailsTabs/TechnicalDetailsTab.cpp:146
#, kde-format
msgctxt "@label Label preceding the package size"
msgid "Installed Size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:131
#, kde-format
msgctxt "@title:group"
msgid "Available Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/TechnicalDetailsTab.cpp:154
#, kde-format
msgctxt "@label Label preceding the package's download size"
msgid "Download Size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/VersionTab.cpp:39
#, kde-format
msgctxt "@title:tab"
msgid "Versions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/VersionTab.cpp:42
#, kde-format
msgctxt "@label"
msgid "Available versions:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/VersionTab.cpp:60
#, kde-format
msgctxt "@label"
msgid "Muon always selects the most applicable version available. If you force a different version from the default one, errors in the dependency handling can occur."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DetailsTabs/VersionTab.cpp:68
#, kde-format
msgctxt "@action:button"
msgid "Force Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DownloadModel/DownloadDelegate.cpp:66
#, kde-format
msgctxt "@info:status Progress text when done"
msgid "Done"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DownloadModel/DownloadModel.cpp:60
#, kde-format
msgctxt "@title:column"
msgid "Package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DownloadModel/DownloadModel.cpp:62
#, kde-format
msgctxt "@title:column"
msgid "Location"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DownloadModel/DownloadModel.cpp:64
#, kde-format
msgctxt "@title:column"
msgid "Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/DownloadModel/DownloadModel.cpp:66
#, kde-format
msgctxt "@title:column"
msgid "Progress"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/ArchitectureFilter.cpp:47
#: src/FilterWidget/CategoryFilter.cpp:57 src/FilterWidget/OriginFilter.cpp:42
#: src/FilterWidget/StatusFilter.cpp:43 src/ManagerWidget.cpp:69
#, kde-format
msgctxt "@item:inlistbox Item that resets the filter to \"all\""
msgid "All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/FilterWidget.cpp:46
#, kde-format
msgctxt "@title:window"
msgid "Filter:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/FilterWidget.cpp:55
#, kde-format
msgctxt "@title:tab"
msgid "By Category"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/FilterWidget.cpp:61
#, kde-format
msgctxt "@title:tab"
msgid "By Status"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/FilterWidget.cpp:67
#, kde-format
msgctxt "@title:tab"
msgid "By Origin"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/FilterWidget/FilterWidget.cpp:73
#, kde-format
msgctxt "@title:tab"
msgid "By Architecture"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/main.cpp:36
#, kde-format
msgid "Muon Package Manager"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/main.cpp:36
#, kde-format
msgid "A package manager"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/main.cpp:37
#, kde-format
msgid "© 2009-2013 Jonathan Thomas"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/main.cpp:38
#, kde-format
msgid "Jonathan Thomas"
msgstr ""
#. +> trunk5
#: src/main.cpp:39
#, kde-format
msgid "Harald Sitter"
msgstr ""
#. +> trunk5
#: src/main.cpp:39
#, kde-format
msgid "Top Gardener"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:180
#, kde-format
msgctxt "@action Marks upgradeable packages for upgrade"
msgid "Cautious Upgrade"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:186
#, kde-format
msgctxt "@action Marks upgradeable packages, including ones that install/remove new things"
msgid "Full Upgrade"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:192
#, kde-format
msgctxt "@action Marks packages no longer needed for removal"
msgid "Remove Unnecessary Packages"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:197
#, kde-format
msgctxt "@action Takes the user to the preview page"
msgid "Preview Changes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:202
#, kde-format
msgctxt "@action Applys the changes a user has made"
msgid "Apply Changes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:207
#, kde-format
msgctxt "@action Checks the Internet for updates"
msgid "Check for Updates"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:233
#, kde-kuit-format
msgctxt "@label"
msgid "Unable to mark upgrades. The available upgrades may require new packages to be installed or removed. You may wish to try a full upgrade by clicking the <interface>Full Upgrade</interface> button."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:238 src/MainWindow.cpp:253
#, kde-format
msgctxt "@title:window"
msgid "Unable to Mark Upgrades"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:250
#, kde-format
msgctxt "@label"
msgid "Unable to mark upgrades. Some upgrades may have unsatisfiable dependencies at the moment, or may have been manually held back."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:326
#, kde-format
msgctxt "@action:intoolbar Return from the preview page"
msgid "Back"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/MainWindow.cpp:340
#, kde-format
msgctxt "@action"
msgid "Preview Changes"
msgstr ""
#. +> trunk5
#: src/muonapt/ChangesDialog.cpp:39
#, kde-format
msgctxt "@title:window"
msgid "Confirm Additional Changes"
msgstr ""
#. +> trunk5
#: src/muonapt/ChangesDialog.cpp:44
#, kde-format
msgctxt "@info"
msgid "<h2>Mark additional changes?</h2>"
msgstr ""
#. +> trunk5
#: src/muonapt/ChangesDialog.cpp:48
#, kde-format
msgid "This action requires a change to another package:"
msgid_plural "This action requires changes to other packages:"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:49
#, kde-kuit-format
msgctxt "@info"
msgid "<title>History</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/muonapt/HistoryView/HistoryView.cpp:55
#: src/PackageModel/PackageWidget.cpp:104
#, kde-format
msgctxt "@label Line edit click message"
msgid "Search"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:67
#, kde-format
msgctxt "@item:inlistbox Filters all changes in the history view"
msgid "All changes"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:71
#, kde-format
msgctxt "@item:inlistbox Filters installations in the history view"
msgid "Installations"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:75
#, kde-format
msgctxt "@item:inlistbox Filters updates in the history view"
msgid "Updates"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:79
#, kde-format
msgctxt "@item:inlistbox Filters removals in the history view"
msgid "Removals"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:90
#, kde-format
msgctxt "@title:column"
msgid "Date"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:98
#, kde-format
msgctxt "@info:status describes a past-tense action"
msgid "Installed"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:99
#, kde-format
msgctxt "@info:status describes a past-tense action"
msgid "Upgraded"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:100
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Downgraded"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:101
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Removed"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:102
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Purged"
msgstr ""
#. +> trunk5
#: src/muonapt/HistoryView/HistoryView.cpp:137
#: src/muonapt/HistoryView/HistoryView.cpp:152
#: src/muonapt/HistoryView/HistoryView.cpp:167
#: src/muonapt/HistoryView/HistoryView.cpp:182
#: src/muonapt/HistoryView/HistoryView.cpp:197
#, kde-format
msgctxt "@item example: muon installed at 16:00"
msgid "%1 %2 at %3"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:49
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"admin\""
msgid "System Administration"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:51
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"base\""
msgid "Base System"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:53
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"cli-mono\""
msgid "Mono/CLI Infrastructure"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:55
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"comm\""
msgid "Communication"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:57
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"database\""
msgid "Databases"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:59
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"devel\""
msgid "Development"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:61
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"doc\""
msgid "Documentation"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:63
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"debug\""
msgid "Debug"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:65
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"editors\""
msgid "Editors"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:67
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"electronics\""
msgid "Electronics"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:69
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"embedded\""
msgid "Embedded Devices"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:71
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"fonts\""
msgid "Fonts"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:73
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"games\""
msgid "Games and Amusement"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:75
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnome\""
msgid "GNOME Desktop Environment"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:77
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"graphics\""
msgid "Graphics"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:79
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnu-r\""
msgid "GNU R Statistical System"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:81
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnustep\""
msgid "Gnustep Desktop Environment"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:83
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"hamradio\""
msgid "Amateur Radio"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:85
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"haskell\""
msgid "Haskell Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:87
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"httpd\""
msgid "Web Servers"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:89
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"interpreters\""
msgid "Interpreted Computer Languages"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:91
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"java\""
msgid "Java Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:93
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"kde\""
msgid "KDE Software Compilation"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:95
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"kernel\""
msgid "Kernel and Modules"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:97
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"libdevel\""
msgid "Libraries - Development"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:99
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"libs\""
msgid "Libraries"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:101
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"lisp\""
msgid "Lisp Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:103
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"localization\""
msgid "Localization"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:105
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"mail\""
msgid "Email"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:107
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"math\""
msgid "Mathematics"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:109
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"misc\""
msgid "Miscellaneous - Text-based"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:111
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"net\""
msgid "Networking"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:113
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"news\""
msgid "Newsgroups"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:115
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"ocaml\""
msgid "OCaml Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:117
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"oldlibs\""
msgid "Libraries - Old"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:119
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"otherosfs\""
msgid "Cross Platform"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:121
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"perl\""
msgid "Perl Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:123
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"php\""
msgid "PHP Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:125
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"python\""
msgid "Python Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:127
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"ruby\""
msgid "Ruby Programming Language"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:129
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"science\""
msgid "Science"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:131
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"shells\""
msgid "Shells"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:133
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"sound\""
msgid "Multimedia"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:135
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"tex\""
msgid "TeX Authoring"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:137
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"text\""
msgid "Word Processing"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:139
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"utils\""
msgid "Utilities"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:141
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"vcs\""
msgid "Version Control Systems"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:143
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"video\""
msgid "Video Software"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:145
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"web\""
msgid "Internet"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:147
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"x11\""
msgid "Miscellaneous - Graphical"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:149
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"xfce\""
msgid "Xfce Desktop Environment"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:151
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"zope\""
msgid "Zope/Plone Environment"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:153
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"unknown\""
msgid "Unknown"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:155
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"alien\""
msgid "Converted from RPM by Alien"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:157
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"translations\""
msgid "Internationalization and Localization"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:159
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"metapackages\""
msgid "Meta Packages"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:161
#, kde-format
msgctxt "@item:inlistbox Debian package section \"non-US\", for packages that cannot be shipped in the US"
msgid "Restricted On Export"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:163
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"non-free\""
msgid "Non-free"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:165
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"contrib\""
msgid "Contrib"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:167
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"education\""
msgid "Education"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:169
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"introspection\""
msgid "GObject Introspection Data"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:195
#, kde-format
msgctxt "@info:status Package state"
msgid "No Change"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:196 src/muonapt/MuonStrings.cpp:197
#, kde-format
msgctxt "@info:status Requested action"
msgid "Install"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:198
#, kde-format
msgctxt "@info:status Requested action"
msgid "Reinstall"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:199
#, kde-format
msgctxt "@info:status Requested action"
msgid "Upgrade"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:200
#, kde-format
msgctxt "@info:status Requested action"
msgid "Downgrade"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:201
#, kde-format
msgctxt "@info:status Requested action"
msgid "Remove"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:202
#, kde-format
msgctxt "@info:status Package state"
msgid "Held"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:203
#, kde-format
msgctxt "@info:status Package state"
msgid "Installed"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:204
#, kde-format
msgctxt "@info:status Package state"
msgid "Upgradeable"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:205
#, kde-format
msgctxt "@info:status Package state"
msgid "Broken"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:206
#, kde-format
msgctxt "@info:status Package state"
msgid "Install Broken"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:207
#, kde-format
msgctxt "@info:status Package state"
msgid "Orphaned"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:208
#, kde-format
msgctxt "@info:status Package state"
msgid "Locked"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:209
#, kde-format
msgctxt "@info:status Package state"
msgid "New in repository"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:210
#, kde-format
msgctxt "@info:status Package state"
msgid "Residual Configuration"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:211
#, kde-format
msgctxt "@info:status Package state"
msgid "Not Downloadable"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:212
#, kde-format
msgctxt "@info:status Requested action"
msgid "Purge"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:213
#, kde-format
msgctxt "@info:status Package state"
msgid "Important for base install"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:214
#, kde-format
msgctxt "@info:status Package state"
msgid "Version overridden"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:215
#, kde-format
msgctxt "@info:status Package state"
msgid "Required by other packages"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:216
#, kde-format
msgctxt "@info:status Package state"
msgid "Installed (auto-removable)"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:217 src/muonapt/MuonStrings.cpp:218
#, kde-format
msgctxt "@info:status Package state"
msgid "Policy Broken"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:219
#, kde-format
msgctxt "@info:status Package state"
msgid "Not Installed"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:221
#, kde-format
msgctxt "@info:status Package locked at a certain version"
msgid "Locked"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:222
#, kde-format
msgctxt "@info:status Package state"
msgid "Manually held back"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:243
#, kde-format
msgctxt "@item:inlistbox"
msgid "Common"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:244
#, kde-format
msgctxt "@item:inlistbox CPU architecture"
msgid "32-bit"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:245
#, kde-format
msgctxt "@item:inlistbox CPU architecture"
msgid "64-bit"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:246
#, kde-format
msgctxt "@item:inlistbox PU architecture"
msgid "Power PC"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:265
#, kde-format
msgctxt "@title:window"
msgid "Initialization Error"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:267
#, kde-format
msgctxt "@title:window"
msgid "Unable to Obtain Package System Lock"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:269
#, kde-format
msgctxt "@title:window"
msgid "Low Disk Space"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:272
#, kde-format
msgctxt "@title:window"
msgid "Failed to Apply Changes"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:274
#, kde-format
msgctxt "@title:window"
msgid "Authentication error"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:276
#, kde-format
msgctxt "@title:window"
msgid "Unexpected Error"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:278
#, kde-format
msgctxt "@title:window"
msgid "Untrusted Packages"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:281
#, kde-format
msgctxt "@title:window"
msgid "Unknown Error"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:291
#, kde-format
msgctxt "@label"
msgid "The package system could not be initialized, your configuration may be broken."
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:296
#, kde-format
msgctxt "@label"
msgid "Another application seems to be using the package system at this time. You must close all other package managers before you will be able to install or remove any packages."
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:303
#, kde-format
msgctxt "@label"
msgid "You do not have enough disk space in the directory at %1 to continue with this operation."
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:307
#, kde-format
msgctxt "@label"
msgid "Could not download packages"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:310
#, kde-format
msgctxt "@label"
msgid "An error occurred while applying changes:"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:314
#, kde-format
msgctxt "@label"
msgid "This operation cannot continue since proper authorization was not provided"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:318
#, kde-format
msgctxt "@label"
msgid "It appears that the QApt worker has either crashed or disappeared. Please report a bug to the QApt maintainers"
msgstr ""
#. +> trunk5
#: src/muonapt/MuonStrings.cpp:323
#, kde-format
msgctxt "@label"
msgid "The following package has not been verified by its author. Downloading untrusted packages has been disallowed by your current configuration."
msgid_plural "The following packages have not been verified by their authors. Downloading untrusted packages has been disallowed by your current configuration."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:118
#, kde-format
msgctxt "@action Reverts all potential changes to the cache"
msgid "Unmark All"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:125
#, kde-format
msgctxt "@action Opens the software sources configuration dialog"
msgid "Configure Software Sources"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:131
#, kde-format
msgctxt "@action"
msgid "Read Markings..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:137
#, kde-format
msgctxt "@action"
msgid "Save Markings As..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:144
#, kde-format
msgctxt "@action"
msgid "Save Package Download List..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:151
#, kde-format
msgctxt "@action"
msgid "Download Packages From List..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:160
#, kde-format
msgctxt "@action"
msgid "Add Downloaded Packages"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:167
#, kde-format
msgctxt "@action"
msgid "Save Installed Packages List..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:173
#, kde-format
msgctxt "@action::inmenu"
msgid "History..."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:179
#, kde-format
msgctxt "@action"
msgid "Upgrade"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:182
#, kde-format
msgctxt "Notification when a new version of Kubuntu is available"
msgid "A new version of Kubuntu is available."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:226
#, kde-format
msgctxt "@title:window"
msgid "Save Markings As"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:233 src/muonapt/QAptActions.cpp:258
#: src/muonapt/QAptActions.cpp:282
#, kde-kuit-format
msgctxt "@label"
msgid ""
"The document could not be saved, as it was not possible to write to <filename>%1</filename>\n"
"\n"
"Check that you have write access to this file or that enough disk space is available."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:251
#, kde-format
msgctxt "@title:window"
msgid "Save Installed Packages List As"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:275
#, kde-format
msgctxt "@title:window"
msgid "Save Download List As"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:297 src/muonapt/QAptActions.cpp:314
#, kde-format
msgctxt "@title:window"
msgid "Open File"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:322
#, kde-format
msgctxt "@label"
msgid "Could not mark changes. Please make sure that the file is a markings file created by either the Muon Package Manager or the Synaptic Package Manager."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:333
#, kde-format
msgctxt "@title:window"
msgid "Choose a Directory"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:356
#, kde-format
msgctxt "@label"
msgid "%1 package was successfully added to the cache"
msgid_plural "%1 packages were successfully added to the cache"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:362
#, kde-format
msgctxt "@label"
msgid "No valid packages could be found in this directory. Please make sure the packages are compatible with your computer and are at the latest version."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:366
#, kde-format
msgctxt "@title:window"
msgid "Packages Could Not be Found"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:398
#, kde-format
msgctxt "@label"
msgid "Could not find <command>software-properties-kde</command> on your system, please install it. Alternatively, you can use <application>Plasma Discover</application> to configure software sources."
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:403
#, kde-format
msgctxt "@title:window"
msgid "Cannot find <command>software-properties-kde</command>"
msgstr ""
#. +> trunk5
#: src/muonapt/QAptActions.cpp:494
#, kde-format
msgctxt "@title:window"
msgid "Package History"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageModel.cpp:88
#, kde-format
msgid "Package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageModel.cpp:90
#, kde-format
msgid "Status"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageModel.cpp:92
#, kde-format
msgid "Requested"
msgstr ""
#. +> trunk5
#: src/PackageModel/PackageModel.cpp:94
#, kde-format
msgid "Installed Size"
msgstr ""
#. +> trunk5
#: src/PackageModel/PackageModel.cpp:96
#, kde-format
msgid "Installed Version"
msgstr ""
#. +> trunk5
#: src/PackageModel/PackageModel.cpp:98
#, kde-format
msgid "Available Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:166
#, kde-format
msgctxt "@action:inmenu"
msgid "Mark for Installation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:171
#, kde-format
msgctxt "@action:button"
msgid "Mark for Removal"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:176
#, kde-format
msgctxt "@action:button"
msgid "Mark for Upgrade"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:181
#, kde-format
msgctxt "@action:button"
msgid "Mark for Reinstallation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:186
#, kde-format
msgctxt "@action:button"
msgid "Mark for Purge"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:197
#, kde-format
msgctxt "@action:button"
msgid "Lock Package at Current Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:378
#, kde-format
msgctxt "@action:button"
msgid "Unlock package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:382
#, kde-format
msgctxt "@action:button"
msgid "Lock at Current Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:423
#, kde-format
msgctxt "@label"
msgid "Removing this package may break your system. Are you sure you want to remove it?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:424
#, kde-format
msgctxt "@label"
msgid "Warning - Removing Important Package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:610
#, kde-format
msgctxt "@title:window"
msgid "Failed to Lock Package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:611
#, kde-format
msgctxt "@info Error text"
msgid "The package %1 could not be locked. Failed to write lock file."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:660
#, kde-format
msgctxt "@label"
msgid "The \"%1\" package could not be marked for installation or upgrade:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:663
#, kde-format
msgctxt "@title:window"
msgid "Unable to Mark Package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:680
#, kde-format
msgctxt "@label"
msgid ""
"The \"%1\" package has no available version, but exists in the database.\n"
"\tThis typically means that the package was mentioned in a dependency and never uploaded, has been obsoleted, or is not available from the currently-enabled repositories."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:687
#, kde-format
msgctxt "@label Example: Depends: libqapt 0.1, but 0.2 is to be installed"
msgid "%1: %2 %3, but %4 is to be installed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:693
#, kde-format
msgctxt "@label Example: Depends: libqapt, but is not installable"
msgid "%1: %2, but it is not installable"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/PackageModel/PackageWidget.cpp:698
#, kde-format
msgctxt "@label Example: Depends: libqapt, but it is a virtual package"
msgid "%1: %2, but it is a virtual package"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/ReviewWidget.cpp:32
#, kde-format
msgid "<b>Review and Apply Changes</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:52
#, kde-format
msgctxt "@info:status"
msgid "Rebuilding Search Index"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:93
#, kde-format
msgctxt "@info:status"
msgid "1 package available, "
msgid_plural "%1 packages available, "
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:94
#, kde-format
msgctxt "@info:status"
msgid "%1 installed, "
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:98
#, kde-format
msgctxt "@info:status"
msgid "%1 upgradeable,"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:100
#, kde-format
msgctxt "@info:status"
msgid "%1 upgradeable"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:112
#, kde-format
msgctxt "@info:status Part of the status label"
msgid " %1 to install/upgrade"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:117
#, kde-format
msgctxt "@info:status Label for the number of packages pending removal when packages are also pending upgrade"
msgid ", %1 to remove"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:120
#, kde-format
msgctxt "@info:status Label for the number of packages pending removal when there are only removals"
msgid " %1 to remove"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:129
#, kde-format
msgctxt "@label showing download and install size"
msgid "%1 to download, %2 of space to be freed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/StatusWidget.cpp:133
#, kde-format
msgctxt "@label showing download and install size"
msgid "%1 to download, %2 of space to be used"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:103
#, kde-format
msgctxt "@action:button Cancels the download"
msgid "Cancel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:148
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Starting</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:150
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for service to start"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:155
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for authentication"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:159 src/TransactionWidget.cpp:166
#: src/TransactionWidget.cpp:173 src/TransactionWidget.cpp:180
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Waiting</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:161
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for other transactions to finish"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:168
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for other software managers to quit"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:175
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for required medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:182
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for configuration file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:193
#, kde-kuit-format
msgctxt "@info Status info"
msgid "<title>Loading Software List</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:201
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Updating software sources</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:206
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Downloading Packages</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:218
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Committing Changes</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:225
#, kde-kuit-format
msgctxt "@info Status information, widget title"
msgid "<title>Finished</title>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:254
#, kde-format
msgctxt "@title:window"
msgid "Media Change Required"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:255
#, kde-kuit-format
msgctxt "@label"
msgid "Please insert %1 into <filename>%2</filename>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:264
#, kde-format
msgctxt "@title:window"
msgid "Warning - Unverified Software"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:266
#, kde-kuit-format
msgctxt "@label"
msgid "The following piece of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgid_plural "The following pieces of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:284
#, kde-format
msgctxt "@title:window"
msgid "Configuration File Changed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:286
#, kde-kuit-format
msgctxt "@label Notifies a config file change"
msgid "A new version of the configuration file <filename>%1</filename> is available, but your version has been modified. Would you like to keep your current version or install the new version?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:291
#, kde-format
msgctxt "@action Use the new config file"
msgid "Use New Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/TransactionWidget.cpp:292
#, kde-format
msgctxt "@action Keep the old config file"
msgid "Keep Old Version"
msgstr ""
-
-#. +> stable
-#: muon/config/ManagerSettingsDialog.cpp:57
-#, kde-format
-msgctxt "@title:group"
-msgid "Notifications"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/plasma-discover-updater.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/plasma-discover-updater.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/plasma-discover-updater.pot (revision 1509808)
@@ -1,275 +1,254 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2016-11-20 12:30+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> stable5 stable
+#. +> stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/ChangelogWidget.cpp:54
#, kde-format
msgctxt "@action:button"
msgid "Hide"
msgstr ""
#. +> stable5
#: updater/ChangelogWidget.cpp:153
#, kde-kuit-format
msgctxt "@info/rich"
msgid "<p><b>Package Name:</b> <a href='package:%1'>%1</a></p>"
msgstr ""
#. +> stable5
#: updater/ChangelogWidget.cpp:154
#, kde-kuit-format
msgctxt "@info/rich"
msgid "<p><b>Installed Version:</b> %1</p>"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/main.cpp:37
#, kde-format
msgid "Muon Update Manager"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/main.cpp:37
#, kde-format
msgid "An update manager"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/main.cpp:38
#, kde-format
msgid "©2010-2013 Jonathan Thomas"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/main.cpp:39
#, kde-format
msgid "Jonathan Thomas"
msgstr ""
#. +> stable5
#: updater/main.cpp:40
#, kde-format
msgid "Aleix Pol"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/main.cpp:46
#, kde-format
msgid "List all the backends we'll want to have loaded, separated by coma ','."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/MainWindow.cpp:70
#, kde-format
msgctxt "@title:window"
msgid "Software Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/MainWindow.cpp:79
#, kde-format
msgctxt "@info Warning to plug in laptop before updating"
msgid "It is safer to plug in the power adapter before updating."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/MainWindow.cpp:120
#, kde-format
msgctxt "@action Downloads and installs updates"
msgid "Install Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/MainWindow.cpp:130
#, kde-format
msgid "Advanced..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/ProgressWidget.cpp:117
#, kde-format
msgctxt "@label Download rate"
msgid "Download rate: %1/s"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, UpdaterWidgetNoUpdates)
#. i18n: ectx: property (windowTitle), widget (QWidget, UpdaterButtons)
#. i18n: ectx: property (windowTitle), widget (QWidget, ProgressWidget)
#. +> stable5
#: updater/ProgressWidget.ui:14 updater/UpdaterCentralWidget.ui:14
#: updater/UpdaterWidgetNoUpdates.ui:14 updaterrc.cpp:3 updaterrc.cpp:6
#: updaterrc.cpp:12
#, kde-format
msgid "Form"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, cancel)
#. +> stable5
#: updater/ProgressWidget.ui:36 updaterrc.cpp:15
#, kde-format
msgid "Cancel"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:116
#, kde-format
msgctxt "@label Column label"
msgid "Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:118
#, kde-format
msgctxt "@label Column label"
msgid "Version"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:120
#, kde-format
msgctxt "@label Column label"
msgid "Download Size"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:228
#, kde-format
msgctxt "@item:inlistbox"
msgid "Important Security Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:231
#, kde-format
msgctxt "@item:inlistbox"
msgid "Application Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdateModel/UpdateModel.cpp:234
#, kde-format
msgctxt "@item:inlistbox"
msgid "System Updates"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, more)
#. +> stable5
#: updater/UpdaterCentralWidget.ui:23 updaterrc.cpp:9
#, kde-format
msgid "More..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:72
#, kde-format
msgctxt "@label"
msgid ""
"<em>Some packages were not marked for update.</em><p/>"
"The update of these packages need some others to be installed or removed.<p/>"
"Do you want to update those too?"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:75
#, kde-format
msgid "Mark All"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:89
#, kde-format
msgid ""
"<p><b>New software is available for your computer</b></p>"
"<p>Click 'Install Updates' to keep your system up-to-date and safe</p>"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:218
#, kde-format
msgctxt "@info"
msgid "It is unknown when the last check for updates was."
msgstr ""
#. +> stable5
#: updater/UpdaterWidget.cpp:219 updater/UpdaterWidget.cpp:237
#, kde-format
msgctxt "@info"
msgid "Please click <em>Check for Updates</em> to check."
msgstr ""
-#. +> stable
-#: updater/UpdaterWidget.cpp:216 updater/UpdaterWidget.cpp:234
-#, kde-format
-msgctxt "@info"
-msgid "Please click <interface>Check for Updates</interface> to check."
-msgstr ""
-
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:226
#, kde-format
msgctxt "@info"
msgid "The software on this computer is up to date."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:227 updater/UpdaterWidget.cpp:232
#, kde-format
msgctxt "@info"
msgid "Last checked %1 ago."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:231
#, kde-format
msgctxt "@info"
msgid "No updates are available."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: updater/UpdaterWidget.cpp:236
#, kde-format
msgctxt "@info"
msgid "The last check for updates was over a week ago."
msgstr ""
-
-#. +> stable
-#: updater/config/UpdaterSettingsDialog.cpp:38
-#, kde-format
-msgctxt "@title:window"
-msgid "Muon Preferences"
-msgstr ""
-
-#. +> stable
-#: updater/config/UpdaterSettingsDialog.cpp:46
-#, kde-format
-msgctxt "@title:group"
-msgid "Notifications"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-deb-installer.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-deb-installer.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-deb-installer.pot (revision 1509808)
@@ -1,375 +1,368 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2016-11-20 12:30+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/ChangesDialog.cpp:37
#, kde-format
msgctxt "@title:window"
msgid "Confirm Additional Changes"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/ChangesDialog.cpp:42
#, kde-format
msgctxt "@info"
msgid "<h2>Additional Changes</h2>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/ChangesDialog.cpp:46
#, kde-format
msgid "This action requires a change to another package:"
msgid_plural "This action requires changes to other packages:"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/ChangesDialog.cpp:86
#: utils/qapt-deb-installer/ChangesDialog.cpp:87
#, kde-format
msgctxt "@info:status Requested action"
msgid "Install"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/ChangesDialog.cpp:88
#, kde-format
msgctxt "@info:status Requested action"
msgid "Remove"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:49
#, kde-format
msgctxt "@info The widget's header label"
msgid "<title>Installing</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:105
#, kde-format
msgctxt "@info Status information, widget title"
msgid "<title>Starting</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:112
#, kde-format
msgctxt "@info Status information, widget title"
msgid "<title>Waiting</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:120
#, kde-format
msgctxt "@info Status info"
msgid "<title>Loading Software List</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:125
#, kde-format
msgctxt "@info Status information, widget title"
msgid "<title>Downloading Packages</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:130
#, kde-format
msgctxt "@info Status information, widget title"
msgid "<title>Committing Changes</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:136
#, kde-format
msgctxt "@label Message that the install is done"
msgid "Done"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:138
#, kde-format
msgctxt "@info Header label used when the install is done"
msgid "<title>Done</title>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:155
#: utils/qapt-deb-installer/DebInstaller.cpp:72
#, kde-format
msgctxt "@label"
msgid "The package system could not be initialized, your configuration may be broken."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:157
#: utils/qapt-deb-installer/DebInstaller.cpp:74
#, kde-format
msgctxt "@title:window"
msgid "Initialization error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:164
#, kde-format
msgctxt "@label"
msgid "This package is incompatible with your computer."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebCommitWidget.cpp:165
#, kde-format
msgctxt "@title:window"
msgid "Incompatible Package"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:83
#, kde-format
msgctxt "@label"
msgid "Install Package"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:107
#, kde-format
msgctxt "@label"
msgid "Could not open <filename>%1</filename>. It does not appear to be a valid Debian package file."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:115
#, kde-format
msgctxt "@title:window"
msgid "Package Installer - %1"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:212
#, kde-format
msgctxt "@info"
msgid "Error: Wrong architecture '%1'"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:232
#, kde-format
msgctxt "@info Error string when installing would break an existing package"
msgid "Error: Breaks the existing package \"%1\""
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:241
#, kde-format
msgctxt "@info"
msgid "Error: Cannot satisfy dependencies"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:251
#, kde-format
msgctxt "@label A note saying that additional packages are needed"
msgid "Requires the installation of %1 additional package."
msgid_plural "Requires the installation of %1 additional packages"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:255
#, kde-format
msgctxt "@info"
msgid "All dependencies are satisfied."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:274
#, kde-format
msgctxt "@info"
msgid "The same version is available in a software channel."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:275
#, kde-format
msgctxt "@info"
msgid "It is recommended to install the software from the channel instead"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:277
#, kde-format
msgctxt "@info"
msgid "An older version is available in a software channel."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:278
#, kde-format
msgctxt "@info"
msgid "It is recommended to install the version from the software channel, since it usually has more support."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:281
#, kde-format
msgctxt "@info"
msgid "A newer version is available in a software channel."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebInstaller.cpp:282
#, kde-format
msgctxt "@info"
msgid "It is strongly advised to install the version from the software channel, since it usually has more support."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:71
#, kde-format
msgctxt "@label Label preceding the package name"
msgid "Package:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:79
#, kde-format
msgctxt "@label Label preceding the package status"
msgid "Status:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:81
#, kde-format
msgctxt "@label"
msgid "Details..."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:132
#, kde-format
msgctxt "@label Label preceding the package version"
msgid "Version:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:139
#, kde-format
msgctxt "@label Label preceding the package size"
msgid "Installed Size:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:146
#, kde-format
msgctxt "@label Label preceding the package maintainer"
msgid "Maintainer:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:153
#, kde-format
msgctxt "@label Label preceding the package category"
msgid "Category:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:160
#, kde-format
msgctxt "@label Label preceding the package homepage"
msgid "Homepage:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:174
#, kde-format
msgctxt "@title:tab"
msgid "Description"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:175
#, kde-format
msgctxt "@title:tab"
msgid "Details"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/DebViewer.cpp:176
#, kde-format
msgctxt "@title:tab"
msgid "Included Files"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:32
#, kde-format
msgctxt "@info"
msgid "A Debian package installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:44
#, kde-format
msgctxt "@title"
msgid "QApt Package Installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:48
#, kde-format
msgctxt "@info:credit"
msgid "(C) 2011 Jonathan Thomas"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:50
#, kde-format
msgctxt "@info:credit"
msgid "Jonathan Thomas"
msgstr ""
#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:53
#, kde-format
msgctxt "@info:credit"
msgid "Harald Sitter"
msgstr ""
#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:54
#, kde-format
msgctxt "@info:credit"
msgid "Qt 5 port"
msgstr ""
#. +> trunk5
#: utils/qapt-deb-installer/main.cpp:62
#, kde-format
msgctxt "@info:shell argument"
msgid ".deb file"
msgstr ""
-
-#. +> stable
-#: utils/qapt-deb-installer/main.cpp:43
-#, kde-format
-msgctxt "@info:shell"
-msgid ".deb file"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-gst-helper.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-gst-helper.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qapt-gst-helper.pot (revision 1509808)
@@ -1,444 +1,444 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2016-11-20 12:30+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:34
#, kde-format
msgctxt "@info"
msgid "A GStreamer codec installer using QApt"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:46
#, kde-format
msgctxt "@title"
msgid "QApt Codec Searcher"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:50
#, kde-format
msgctxt "@info:credit"
msgid "(C) 2011 Jonathan Thomas"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:52
#, kde-format
msgctxt "@info:credit"
msgid "Jonathan Thomas"
msgstr ""
#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:55
#, kde-format
msgctxt "@info:credit"
msgid "Harald Sitter"
msgstr ""
#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:56
#, kde-format
msgctxt "@info:credit"
msgid "Qt 5 port"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:64
#, kde-format
msgctxt "@info:shell"
msgid "Attaches the window to an X app specified by winid"
msgstr ""
#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:65
#, kde-format
msgctxt "@info:shell value name"
msgid "winid"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/main.cpp:69
#, kde-format
msgctxt "@info:shell"
msgid "GStreamer install info"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:86
#, kde-format
msgctxt "@info Error message"
msgid "No valid plugin info was provided, so no plugins could be found."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:89
#, kde-format
msgctxt "@title:window"
msgid "Couldn't Find Plugins"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:95
#, kde-format
msgctxt "@info:progress"
msgid "Looking for plugins"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:129
#: utils/qapt-gst-helper/PluginHelper.cpp:244
#, kde-format
msgctxt "@label"
msgid "The package system could not be initialized, your configuration may be broken."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:131
#: utils/qapt-gst-helper/PluginHelper.cpp:246
#, kde-format
msgctxt "@title:window"
msgid "Initialization error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:146
#, kde-format
msgid ""
"The following plugin is required: "
"<ul>"
"<li>%2</li>"
"</ul>"
"Do you want to search for this now?"
msgid_plural ""
"The following plugins are required: "
"<ul>"
"<li>%2</li>"
"</ul>"
"Do you want to search for these now?"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:158
#, kde-format
msgctxt "A program for which we have no name"
msgid "A program"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:165
#, kde-format
msgid "%2 requires an additional plugin to encode this file"
msgid_plural "%2 requires additional plugins to encode this file"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:171
#, kde-format
msgid "%2 requires an additional plugin to decode this file"
msgid_plural "%2 requires additional plugins to decode this file"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:183
#, kde-format
msgctxt "Search for packages"
msgid "Search"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:209
#, kde-format
msgid "Confirm Changes"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:210
#, kde-format
msgid "Install the following package?"
msgid_plural "Install the following packages?"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:215
#, kde-format
msgctxt "Install packages"
msgid "Install"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:254
#, kde-format
msgctxt "@label"
msgid "Another application seems to be using the package system at this time. You must close all other package managers before you will be able to install or remove any packages."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:258
#, kde-format
msgctxt "@title:window"
msgid "Unable to obtain package system lock"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:263
#, kde-format
msgctxt "@label"
msgid "You do not have enough disk space in the directory at %1 to continue with this operation."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:265
#, kde-format
msgctxt "@title:window"
msgid "Low disk space"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:269
#, kde-format
msgctxt "@label"
msgid "Could not download packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:270
#, kde-format
msgctxt "@title:window"
msgid "Download failed"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:275
#, kde-format
msgctxt "@label"
msgid "An error occurred while applying changes:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:276
#, kde-format
msgctxt "@title:window"
msgid "Commit Error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:282
#, kde-format
msgctxt "@label"
msgid "This operation cannot continue since proper authorization was not provided"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:284
#, kde-format
msgctxt "@title:window"
msgid "Authentication error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:288
#, kde-format
msgctxt "@label"
msgid "It appears that the QApt worker has either crashed or disappeared. Please report a bug to the QApt maintainers"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:290
#, kde-format
msgctxt "@title:window"
msgid "Unexpected Error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:298
#, kde-format
msgctxt "@label"
msgid "The following package has not been verified by its author. Downloading untrusted packages has been disallowed by your current configuration."
msgid_plural "The following packages have not been verified by their authors. Downloading untrusted packages has been disallowed by your current configuration."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:307
#, kde-format
msgctxt "@title:window"
msgid "Untrusted Packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:314
#, kde-format
msgctxt "@label"
msgid "The package \"%1\" has not been found among your software sources. Therefore, it cannot be installed. "
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:317
#, kde-format
msgctxt "@title:window"
msgid "Package Not Found"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:331
#, kde-format
msgctxt "@title:window"
msgid "Media Change Required"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:332
#, kde-kuit-format
msgctxt "@label"
msgid "Please insert %1 into <filename>%2</filename>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:341
#, kde-format
msgctxt "@title:window"
msgid "Warning - Unverified Software"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:343
#, kde-kuit-format
msgctxt "@label"
msgid "The following piece of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgid_plural "The following pieces of software cannot be authenticated. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:372
#, kde-format
msgctxt "@label Progress bar label when waiting to start"
msgid "Waiting to start."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:377
#, kde-format
msgctxt "@label Status label when waiting for a password"
msgid "Waiting for authentication."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:382
#, kde-format
msgctxt "@label Status label when waiting for a CD-ROM"
msgid "Waiting for required media."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:387
#, kde-format
msgctxt "@label Status label"
msgid "Waiting for other package managers to quit."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:395
#, kde-format
msgctxt "@label Status label"
msgid "Loading package cache."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:398
#, kde-format
msgctxt "@title:window"
msgid "Downloading"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:399
#, kde-format
msgctxt "@info:status"
msgid "Downloading codecs"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:402
#, kde-format
msgctxt "@title:window"
msgid "Installing"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:403
#, kde-format
msgctxt "@info:status"
msgid "Installing codecs"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:409
#, kde-format
msgctxt "@label"
msgid "Package installation finished with errors."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:410
#, kde-format
msgctxt "@title:window"
msgid "Installation Failed"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:412
#, kde-format
msgctxt "@label"
msgid "Codecs successfully installed"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:413
#, kde-format
msgctxt "@title:window"
msgid "Installation Complete"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:449
#, kde-format
msgctxt "@info"
msgid "No plugins could be found"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:450
#, kde-format
msgctxt "@title"
msgid "Plugins Not Found"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-gst-helper/PluginHelper.cpp:512
#, kde-format
msgctxt "@label Progress bar label when waiting to start"
msgid "Waiting"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qaptbatch.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qaptbatch.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/extragear-sysadmin/qaptbatch.pot (revision 1509808)
@@ -1,449 +1,449 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2016-11-20 12:30+0100\n"
+"POT-Creation-Date: 2018-02-02 13:45+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/detailswidget.cpp:51
#, kde-format
msgctxt "@label Remaining time"
msgid "Remaining Time:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/detailswidget.cpp:56
#, kde-format
msgctxt "@label Download Rate"
msgid "Speed:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/detailswidget.cpp:107
#, kde-format
msgctxt "@info:progress Remaining time"
msgid "Unknown"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/detailswidget.cpp:116
#, kde-format
msgctxt "@info:progress Download rate"
msgid "%1/s"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:33
#, kde-format
msgctxt "@info"
msgid "A batch installer using QApt"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:45
#, kde-format
msgctxt "@title"
msgid "QApt Batch Installer"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:49
#, kde-format
msgctxt "@info:credit"
msgid "(C) 2010 Jonathan Thomas"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:51
#, kde-format
msgctxt "@info:credit"
msgid "Jonathan Thomas"
msgstr ""
#. +> trunk5
#: utils/qapt-batch/main.cpp:54
#, kde-format
msgctxt "@info:credit"
msgid "Harald Sitter"
msgstr ""
#. +> trunk5
#: utils/qapt-batch/main.cpp:55
#, kde-format
msgctxt "@info:credit"
msgid "Qt 5 port"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:63
#, kde-format
msgctxt "@info:shell"
msgid "Attaches the window to an X app specified by winid"
msgstr ""
#. +> trunk5
#: utils/qapt-batch/main.cpp:64
#, kde-format
msgctxt "@info:shell value name"
msgid "winid"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:68
#, kde-format
msgctxt "@info:shell"
msgid "Install a package"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:71
#, kde-format
msgctxt "@info:shell"
msgid "Remove a package"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:74
#, kde-format
msgctxt "@info:shell"
msgid "Update the package cache"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/main.cpp:77
#, kde-format
msgctxt "@info:shell"
msgid "Packages to be operated upon"
msgstr ""
#. +> trunk5
#: utils/qapt-batch/main.cpp:87
#, kde-format
msgctxt "@info:shell error"
msgid "Only one operation mode may be defined."
msgstr ""
#. +> trunk5
#: utils/qapt-batch/main.cpp:98
#, kde-format
msgctxt "@info:shell error"
msgid "No operation mode defined."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:65
#, kde-format
msgctxt "@label"
msgid "Waiting for authorization"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:100 utils/qapt-batch/qaptbatch.cpp:186
#, kde-format
msgctxt "@label"
msgid "The package system could not be initialized, your configuration may be broken."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:102 utils/qapt-batch/qaptbatch.cpp:188
#, kde-format
msgctxt "@title:window"
msgid "Initialization error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:127 utils/qapt-batch/qaptbatch.cpp:254
#, kde-format
msgctxt "@label"
msgid "The package \"%1\" has not been found among your software sources. Therefore, it cannot be installed. "
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:130 utils/qapt-batch/qaptbatch.cpp:257
#, kde-format
msgctxt "@title:window"
msgid "Package Not Found"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:195
#, kde-format
msgctxt "@label"
msgid "Another application seems to be using the package system at this time. You must close all other package managers before you will be able to install or remove any packages."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:199
#, kde-format
msgctxt "@title:window"
msgid "Unable to obtain package system lock"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:204
#, kde-format
msgctxt "@label"
msgid "You do not have enough disk space in the directory at %1 to continue with this operation."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:206
#, kde-format
msgctxt "@title:window"
msgid "Low disk space"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:211
#, kde-format
msgctxt "@label"
msgid "Could not download packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:212
#, kde-format
msgctxt "@title:window"
msgid "Download failed"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:216
#, kde-format
msgctxt "@label"
msgid "An error occurred while applying changes:"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:217
#, kde-format
msgctxt "@title:window"
msgid "Commit error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:222
#, kde-format
msgctxt "@label"
msgid "This operation cannot continue since proper authorization was not provided"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:224
#, kde-format
msgctxt "@title:window"
msgid "Authentication error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:228
#, kde-format
msgctxt "@label"
msgid "It appears that the QApt worker has either crashed or disappeared. Please report a bug to the QApt maintainers"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:230
#, kde-format
msgctxt "@title:window"
msgid "Unexpected Error"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:238
#, kde-format
msgctxt "@label"
msgid "The following package has not been verified by its author. Downloading untrusted packages has been disallowed by your current configuration."
msgid_plural "The following packages have not been verified by their authors. Downloading untrusted packages has been disallowed by your current configuration."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:247
#, kde-format
msgctxt "@title:window"
msgid "Untrusted Packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:270
#, kde-format
msgctxt "@title:window"
msgid "Media Change Required"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:271
#, kde-kuit-format
msgctxt "@label"
msgid "Please insert %1 into <filename>%2</filename>"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:279
#, kde-format
msgctxt "@title:window"
msgid "Warning - Unverified Software"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:281
#, kde-kuit-format
msgctxt "@label"
msgid "The following piece of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgid_plural "The following pieces of software cannot be authenticated. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:316
#, kde-format
msgctxt "@label Progress bar label when waiting to start"
msgid "Waiting to start."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:321
#, kde-format
msgctxt "@label Status label when waiting for a password"
msgid "Waiting for authentication."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:325
#, kde-format
msgctxt "@label Status label when waiting for a CD-ROM"
msgid "Waiting for required media."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:330
#, kde-format
msgctxt "@label Status label"
msgid "Waiting for other package managers to quit."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:338
#, kde-format
msgctxt "@label Status label"
msgid "Loading package cache."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:342
#, kde-format
msgctxt "@title:window"
msgid "Refreshing Package Information"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:343
#, kde-format
msgctxt "@info:status"
msgid "Checking for new, removed or upgradeable packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:345
#, kde-format
msgctxt "@title:window"
msgid "Downloading"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:347
#, kde-format
msgctxt "@info:status"
msgid "Downloading package file"
msgid_plural "Downloading package files"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:355
#, kde-format
msgctxt "@title:window"
msgid "Installing Packages"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:360
#, kde-format
msgctxt "@title:window"
msgid "Installation Complete"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:364
#, kde-format
msgctxt "@label"
msgid "Package installation failed."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:367
#, kde-format
msgctxt "@label"
msgid "Package successfully installed."
msgid_plural "Packages successfully installed."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:371
#, kde-format
msgctxt "@title:window"
msgid "Removal Complete"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:375
#, kde-format
msgctxt "@label"
msgid "Package removal failed."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:379
#, kde-format
msgctxt "@label"
msgid "Package successfully uninstalled."
msgid_plural "Packages successfully uninstalled."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:383
#, kde-format
msgctxt "@title:window"
msgid "Refresh Complete"
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:386
#, kde-format
msgctxt "@info:status"
msgid "Refresh failed."
msgstr ""
-#. +> trunk5 stable
+#. +> trunk5
#: utils/qapt-batch/qaptbatch.cpp:388
#, kde-format
msgctxt "@label"
msgid "Package information successfully refreshed."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kde-workspace/libdiscover.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kde-workspace/libdiscover.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kde-workspace/libdiscover.pot (revision 1509808)
@@ -1,3921 +1,3299 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-28 10:08+0100\n"
+"POT-Creation-Date: 2018-02-02 13:42+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:2 categoriesxml.cpp:100 categoriesxml.cpp:192
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:5
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:5
#: libdiscover/backends/SnapBackend/snap-backend-categories.xml:5
#, kde-format
msgctxt "Category"
msgid "Applications"
msgstr ""
#. +> plasma5lts
#: categoriesxml.cpp:230 categoriesxml.cpp:234
#: libdiscover/backends/KNSBackend/knsdiscover_ktexteditor_codesnippets_core-backend-categories.xml:4
#: libdiscover/backends/KNSBackend/knsktexteditor_codesnippets_core-backend-categories.xml:4
#, kde-format
msgctxt "Category"
msgid "Application Addons"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:4 categoriesxml.cpp:102
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:14
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:14
#, kde-format
msgctxt "Category"
msgid "Accessories"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:6 categoriesxml.cpp:104
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:26
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:26
#, kde-format
msgctxt "Category"
msgid "Accessibility"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:8 categoriesxml.cpp:106
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:38
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:38
#, kde-format
msgctxt "Category"
msgid "Developer Tools"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:10 categoriesxml.cpp:108
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:48
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:48
#, kde-format
msgctxt "Category"
msgid "Debugging"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:12 categoriesxml.cpp:110
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:58
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:58
#, kde-format
msgctxt "Category"
msgid "Graphic Interface Design"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:14 categoriesxml.cpp:112
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:67
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:67
#, kde-format
msgctxt "Category"
msgid "IDEs"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:16 categoriesxml.cpp:114
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:76
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:76
#, kde-format
msgctxt "Category"
msgid "Localization"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:18 categoriesxml.cpp:116
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:86
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:86
#, kde-format
msgctxt "Category"
msgid "Profiling"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:20 categoriesxml.cpp:118
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:95
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:95
#, kde-format
msgctxt "Category"
msgid "Web Development"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:22 categoriesxml.cpp:120
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:108
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:108
#, kde-format
msgctxt "Category"
msgid "Education"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:24 categoriesxml.cpp:122
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:120
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:120
#, kde-format
msgctxt "Category"
msgid "Science and Engineering"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:181
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:181
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:112
#, kde-format
msgctxt "Category"
msgid "Science & Engineering"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:26 categoriesxml.cpp:124
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:130
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:130
#, kde-format
msgctxt "Category"
msgid "Astronomy"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:28 categoriesxml.cpp:126
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:138
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:138
#, kde-format
msgctxt "Category"
msgid "Biology"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:30 categoriesxml.cpp:128
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:146
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:146
#, kde-format
msgctxt "Category"
msgid "Chemistry"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:32 categoriesxml.cpp:130
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:155
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:155
#, kde-format
msgctxt "Category"
msgid "Computer Science and Robotics"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:215
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:215
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:146
#, kde-format
msgctxt "Category"
msgid "Computer Science & Robotics"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:34 categoriesxml.cpp:132
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:166
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:166
#, kde-format
msgctxt "Category"
msgid "Electronics"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:36 categoriesxml.cpp:134
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:175
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:175
#, kde-format
msgctxt "Category"
msgid "Engineering"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:38 categoriesxml.cpp:136
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:184
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:184
#, kde-format
msgctxt "Category"
msgid "Geography"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:40 categoriesxml.cpp:138
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:192
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:192
#, kde-format
msgctxt "Category"
msgid "Geology"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:42 categoriesxml.cpp:140
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:201
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:201
#, kde-format
msgctxt "Category"
msgid "Mathematics"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:44 categoriesxml.cpp:142
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:212
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:212
#, kde-format
msgctxt "Category"
msgid "Physics"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:46 categoriesxml.cpp:144
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:223
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:223
#, kde-format
msgctxt "Category"
msgid "Games"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:48 categoriesxml.cpp:146
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:233
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:233
#, kde-format
msgctxt "Category"
msgid "Arcade"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:50 categoriesxml.cpp:148
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:242
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:242
#, kde-format
msgctxt "Category"
msgid "Board Games"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:52 categoriesxml.cpp:150
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:251
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:251
#, kde-format
msgctxt "Category"
msgid "Card Games"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:54 categoriesxml.cpp:152
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:260
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:260
#, kde-format
msgctxt "Category"
msgid "Puzzles"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:56 categoriesxml.cpp:154
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:269
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:269
#, kde-format
msgctxt "Category"
msgid "Role Playing"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:58 categoriesxml.cpp:156
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:278
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:278
#, kde-format
msgctxt "Category"
msgid "Simulation"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:60 categoriesxml.cpp:158
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:287
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:287
#, kde-format
msgctxt "Category"
msgid "Sports"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:62 categoriesxml.cpp:160
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:300
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:300
#, kde-format
msgctxt "Category"
msgid "Graphics"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:64 categoriesxml.cpp:162
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:309
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:309
#, kde-format
msgctxt "Category"
msgid "3D"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:66 categoriesxml.cpp:164
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:317
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:317
#, kde-format
msgctxt "Category"
msgid "Drawing"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:68 categoriesxml.cpp:166
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:329
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:329
#, kde-format
msgctxt "Category"
msgid "Painting and Editing"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:411
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:411
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:329
#, kde-format
msgctxt "Category"
msgid "Painting & Editing"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:70 categoriesxml.cpp:168
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:342
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:342
#, kde-format
msgctxt "Category"
msgid "Photography"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:72 categoriesxml.cpp:170
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:351
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:351
#, kde-format
msgctxt "Category"
msgid "Publishing"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:74 categoriesxml.cpp:172
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:360
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:360
#, kde-format
msgctxt "Category"
msgid "Scanning and OCR"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:442
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:442
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:360
#, kde-format
msgctxt "Category"
msgid "Scanning & OCR"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:76 categoriesxml.cpp:174
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:370
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:370
#, kde-format
msgctxt "Category"
msgid "Viewers"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:78 categoriesxml.cpp:176
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:382
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:382
#, kde-format
msgctxt "Category"
msgid "Internet"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:80 categoriesxml.cpp:178
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:391
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:391
#, kde-format
msgctxt "Category"
msgid "Chat"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:82 categoriesxml.cpp:180
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:401
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:401
#, kde-format
msgctxt "Category"
msgid "File Sharing"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:84 categoriesxml.cpp:182
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:410
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:410
#, kde-format
msgctxt "Category"
msgid "Mail"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:86 categoriesxml.cpp:184
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:419
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:419
#, kde-format
msgctxt "Category"
msgid "Web Browsers"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:88 categoriesxml.cpp:186
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:431
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:431
#, kde-format
msgctxt "Category"
msgid "Multimedia"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:90 categoriesxml.cpp:188
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:443
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:443
#, kde-format
msgctxt "Category"
msgid "Office"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:92 categoriesxml.cpp:190
#: libdiscover/backends/FlatpakBackend/flatpak-backend-categories.xml:454
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:454
#, kde-format
msgctxt "Category"
msgid "System Settings"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:533
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:533
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:451
#, kde-format
msgctxt "Category"
msgid "System & Settings"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:94
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:467
#, kde-format
msgctxt "Category"
msgid "Plasma Addons"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:96
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:478
#, kde-format
msgctxt "Category"
msgid "Plasma Widgets"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:544
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:544
#: libmuon/backends/KNSBackend/muon-knsplasmoids-backend-categories.xml:4
#: libmuon/backends/PackageKitBackend/muon-packagekit-backend-categories.xml:462
#, kde-format
msgctxt "Category"
msgid "Plasma Desktop Widgets"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:98
#: libdiscover/backends/PackageKitBackend/packagekit-backend-categories.xml:490
#, kde-format
msgctxt "Category"
msgid "Fonts"
msgstr ""
#. +> trunk5 stable5
#: categoriesxml.cpp:194
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:4
#, kde-format
msgctxt "Category"
msgid "Dummy Category"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:196
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:10
#, kde-format
msgctxt "Category"
msgid "dummy"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:198
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:18
#, kde-format
msgctxt "Category"
msgid "dummy addons"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:200
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:27
#, kde-format
msgctxt "Category"
msgid "dummy 1"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:202
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:35
#, kde-format
msgctxt "Category"
msgid "dummy with stuff"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:204 categoriesxml.cpp:208
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:42
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:57
#, kde-format
msgctxt "Category"
msgid "dummy 2.1"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:206
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:50
#, kde-format
msgctxt "Category"
msgid "dummy with quite some stuff"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:210
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:66
#, kde-format
msgctxt "Category"
msgid "dummy 3"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: categoriesxml.cpp:212
#: libdiscover/backends/DummyBackend/dummy-backend-categories.xml:76
#, kde-format
msgctxt "Category"
msgid "dummy 4"
msgstr ""
#. +> plasma5lts
#: categoriesxml.cpp:232 categoriesxml.cpp:236
#: libdiscover/backends/KNSBackend/knsdiscover_ktexteditor_codesnippets_core-backend-categories.xml:9
#: libdiscover/backends/KNSBackend/knsktexteditor_codesnippets_core-backend-categories.xml:7
#, kde-format
msgctxt "Category"
msgid "Kate Snippets"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:61
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:61
#, kde-format
msgctxt "Category"
msgid "Haskell"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:83
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:83
#, kde-format
msgctxt "Category"
msgid "Java"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:106
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:106
#, kde-format
msgctxt "Category"
msgid "Perl"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:127
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:127
#, kde-format
msgctxt "Category"
msgid "Python"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:140
#: libmuon/backends/ApplicationBackend/muon-applications-backend-categories.xml:140
#, kde-format
msgctxt "Category"
msgid "Version Control"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/muon-akabei-backend-categories.xml:554
#, kde-format
msgctxt "Category"
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp:338
#, kde-format
msgid "Local bundle"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakBackend.cpp:1100
#: libdiscover/backends/PackageKitBackend/PackageKitBackend.cpp:385
#, kde-format
msgid "Malformed appstream url '%1'"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:106
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:225
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:98
#, kde-format
msgid "Unknown"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:296
#, kde-format
msgctxt "@info license"
msgid "Unknown"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:111
#, kde-format
msgid "%1 (%2)"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/ApplicationBackend/Application.cpp:188
#, kde-format
msgid "Applications"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:292
#, kde-format
msgctxt "@info license"
msgid "Open Source"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:294
#, kde-format
msgctxt "@info license"
msgid "Proprietary"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:345
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:353
#, kde-format
msgid "Retrieving size information"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:347
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:355
#, kde-format
msgid "Unknown size"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:349
#, kde-format
msgctxt "@info app size"
msgid "%1 to download, %2 on disk"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/FlatpakBackend/FlatpakResource.cpp:357
#, kde-format
msgctxt "@info app size"
msgid "%1 on disk"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:603
#, kde-kuit-format
msgctxt "@info/rich"
msgid "The list of changes is not yet available. Please use <link url='%1'>Launchpad</link> instead."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:607
#, kde-kuit-format
msgctxt "@info"
msgid "The list of changes is not yet available."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:626
#: libmuon/backends/BodegaBackend/BodegaResource.cpp:95
#, kde-format
msgctxt "@info:label Refers to a software version, Ex: Version 1.2.1:"
msgid "Version %1:"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/Application.cpp:631
#: libmuon/backends/BodegaBackend/BodegaResource.cpp:99
#, kde-format
msgctxt "@info:label"
msgid "This update was issued on %1"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:51
#, kde-format
msgid "Add Flathub"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:85
#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:96
#, kde-format
msgid "Could not add the source %1"
msgstr ""
#. +> trunk5 stable5
-#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:199
-#, kde-format
-msgctxt "description (url)"
-msgid "%1 (%2)"
-msgstr ""
-
-#. +> trunk5 stable5
-#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:219
+#: libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp:228
#, kde-format
msgid "Flatpak repository URI (*.flatpakrepo)"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/KNSBackend/KNSBackend.cpp:120
#, kde-format
msgid "Invalid %1 backend, contact your distributor."
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/KNSBackend/KNSBackend.cpp:127
#, kde-format
msgid "%1: %2"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/KNSBackend/KNSBackend.cpp:151
#, kde-format
msgid "Plasma Addons"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/KNSBackend/KNSBackend.cpp:151
#, kde-format
msgid "Application Addons"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/KNSBackend/KNSBackend.cpp:369
#, kde-format
msgid "Wrong KNewStuff URI: %1"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/KNSBackend/KNSReviews.cpp:150
#, kde-format
msgid "Log in information for %1"
msgstr ""
#. +> plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitBackend.cpp:74
#, kde-format
msgid "Got it"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitBackend.cpp:92
#, kde-format
msgid "Please make sure that Appstream is properly set up on your system"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:34
#, kde-format
msgid "Out of memory"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:36
#, kde-format
msgid "No network connection available"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:38
#, kde-format
msgid "Operation not supported"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:40
#, kde-format
msgid "Internal error"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:42
#, kde-format
msgid "GPG failure"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:44
#, kde-format
msgid "PackageID invalid"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:46
#, kde-format
msgid "Package not installed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:48
#, kde-format
msgid "Package not found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:50
#, kde-format
msgid "Package is already installed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:52
#, kde-format
msgid "Package download failed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:54
#, kde-format
msgid "Package group not found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:56
#, kde-format
msgid "Package group list invalid"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:58
#, kde-format
msgid "Dependency resolution failed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:60
#, kde-format
msgid "Filter invalid"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:62
#, kde-format
msgid "Failed while creating a thread"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:64
#, kde-format
msgid "Transaction failure"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:66
#, kde-format
msgid "Transaction canceled"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:68
#, kde-format
msgid "No Cache available"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:70
#, kde-format
msgid "Cannot find repository"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:72
#, kde-format
msgid "Cannot remove system package"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:74
#, kde-format
msgid "The PackageKit daemon has crashed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:76
#, kde-format
msgid "Initialization failure"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:78
#, kde-format
msgid "Failed to finalize transaction"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:80
#, kde-format
msgid "Config parsing failed"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:82
#, kde-format
msgid "Cannot cancel transaction"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:84
#, kde-format
msgid "Cannot obtain lock"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:86
#, kde-format
msgid "No packages to update"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:88
#, kde-format
msgid "Cannot write repo config"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:90
#, kde-format
msgid "Local install failed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:92
#, kde-format
msgid "Bad GPG signature found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:94
#, kde-format
msgid "No GPG signature found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:96
#, kde-format
msgid "Cannot install source package"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:98
#, kde-format
msgid "Repo configuration error"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:100
#, kde-format
msgid "No license agreement"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:102
#, kde-format
msgid "File conflicts found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:104
#, kde-format
msgid "Package conflict found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:106
#, kde-format
msgid "Repo not available"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:108
#, kde-format
msgid "Invalid package file"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:110
#, kde-format
msgid "Package install blocked"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:112
#, kde-format
msgid "Corrupt package found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:114
#, kde-format
msgid "All packages already installed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:116
#, kde-format
msgid "File not found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:118
#, kde-format
msgid "No more mirrors available"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:120
#, kde-format
msgid "No distro upgrade data"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:122
#, kde-format
msgid "Incompatible architecture"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:124
#, kde-format
msgid "No space on device left"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:126
#, kde-format
msgid "A media change is required"
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:303
-#: libmuon/backends/PackageKitBackend/PKTransaction.cpp:150
-#, kde-format
-msgid "Media Change of type '%1' is requested."
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:128
#, kde-format
msgid "You have no authorization to execute this operation"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:130
#, kde-format
msgid "Update not found"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:132
#, kde-format
msgid "Cannot install from unsigned repo"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:134
#, kde-format
msgid "Cannot update from unsigned repo"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:136
#, kde-format
msgid "Cannot get file list"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:138
#, kde-format
msgid "Cannot get requires"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:140
#, kde-format
msgid "Cannot disable repository"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:142
#, kde-format
msgid "Restricted download detected"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:144
#, kde-format
msgid "Package failed to configure"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:146
#, kde-format
msgid "Package failed to build"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:148
#, kde-format
msgid "Package failed to install"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:150
#, kde-format
msgid "Package failed to remove"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:152
#, kde-format
msgid "Update failed due to running process"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:154
#, kde-format
msgid "The package database changed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:156
#, kde-format
msgid "The provided type is not supported"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:158
#, kde-format
msgid "Install root is invalid"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:160
#, kde-format
msgid "Cannot fetch sources"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:162
#, kde-format
msgid "Canceled priority"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:164
#, kde-format
msgid "Unfinished transaction"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:166
#, kde-format
msgid "Lock required"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:171
#, kde-format
msgid "Unknown error %1."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:180
#, kde-format
msgid "'%1' was changed and suggests to be restarted."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:182
#, kde-format
msgid "A change by '%1' suggests your session to be restarted."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:184
#, kde-format
msgid "'%1' was updated for security reasons, a restart of the session is recommended."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:186
#, kde-format
msgid "'%1' was updated for security reasons, a restart of the system is recommended."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:191
#, kde-format
msgid "A change by '%1' suggests your system to be rebooted."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:199
#, kde-format
msgid "The application will have to be restarted."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:201
#, kde-format
msgid "The session will have to be restarted"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:203
#, kde-format
msgid "The system will have to be rebooted."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:205
#, kde-format
msgid "For security, the session will have to be restarted."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:207
#, kde-format
msgid "For security, the system will have to be restarted."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:219
#, kde-format
msgid "Waiting..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:221
#, kde-format
msgid "Refreshing Cache..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:223
#, kde-format
msgid "Setup..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:225
#, kde-format
msgid "Processing..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:227
#, kde-format
msgid "Remove..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:229
#, kde-format
msgid "Downloading..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:231
#, kde-format
msgid "Installing..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:233
#, kde-format
msgid "Updating..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:235
#, kde-format
msgid "Cleaning up..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:238
#, kde-format
msgid "Resolving dependencies..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:240
#, kde-format
msgid "Checking signatures..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:242
#, kde-format
msgid "Test committing..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:244
#, kde-format
msgid "Committing..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:247
#, kde-format
msgid "Finished"
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:145
-#, kde-format
-msgid "Finished."
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:249
#, kde-format
msgid "Canceled"
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:150
-#, kde-format
-msgid "Canceled."
-msgstr ""
-
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:251
#, kde-format
msgid "Waiting for lock..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:253
#, kde-format
msgid "Waiting for authorization..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:258
#, kde-format
msgid "Copying files..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:261
#, kde-format
msgid "Unknown Status"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:269
#, kde-format
msgid "We are waiting for something."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:271
#, kde-format
msgid "Setting up transaction..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:273
#, kde-format
msgid "The transaction is currently working..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:275
#, kde-format
msgid "The transaction is currently removing packages..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:277
#, kde-format
msgid "The transaction is currently downloading packages..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:279
#, kde-format
msgid "The transactions is currently installing packages..."
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:116
-#, kde-format
-msgid "The transaction is currently installing packages..."
-msgstr ""
-
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:281
#, kde-format
msgid "The transaction is currently updating packages..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:283
#, kde-format
msgid "The transaction is currently cleaning up..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:286
#, kde-format
msgid "The transaction is currently resolving the dependencies of the packages it will install..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:288
#, kde-format
msgid "The transaction is currently checking the signatures of the packages..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:290
#, kde-format
msgid "The transaction is currently testing the commit of this set of packages..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:292
#, kde-format
msgid "The transaction is currently committing its set of packages..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:295
#, kde-format
msgid "The transaction has finished!"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:297
#, kde-format
msgid "The transaction was canceled"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:299
#, kde-format
msgid "The transaction is currently waiting for the lock..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:301
#, kde-format
msgid "Waiting for the user to authorize the transaction..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:306
#, kde-format
msgid "The transaction is currently copying files..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:308
#, kde-format
msgid "Currently refreshing the repository cache..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:313
#, kde-format
msgid "Unknown status %1."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:324
#, kde-format
msgctxt "update state"
msgid "Stable"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:326
#, kde-format
msgctxt "update state"
msgid "Unstable"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitMessages.cpp:328
#, kde-format
msgctxt "update state"
msgid "Testing"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:104
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:116
#, kde-format
msgid "Offline Updates"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:105
#, kde-format
msgid ""
"Failed to update %1 packages\n"
"%2"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:117
#, kde-format
msgid "Successfully updated %1 packages"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:198
#, kde-format
msgid "Upgrade available"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:202
#, kde-format
msgid "New unstable version: %1"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:205
#, kde-format
msgid "New version: %1"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:298
#, kde-format
msgid "Restart is required"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:299
#, kde-format
msgid "The system needs to be restarted for the updates to take effect."
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:302
#, kde-format
msgid "Session restart is required"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitNotifier.cpp:303
#, kde-format
msgid "You will need to log out and back in for the update to take effect."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:219
#, kde-format
msgctxt "package-name (version)"
msgid "%1 (%2)"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:221
#, kde-format
msgctxt "comma separating package names"
msgid ", "
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:238
#, kde-format
msgid "Reason:"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:239
#, kde-format
msgid "Obsoletes:"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:240
#, kde-format
msgid "Updates:"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:241
#, kde-format
msgid "Update State:"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:242
#, kde-format
msgid "Restart:"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:245
#, kde-format
msgid "Vendor:"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitResource.cpp:260
#, kde-format
msgid "%2 (plus %1 dependency)"
msgid_plural "%2 (plus %1 dependencies)"
msgstr[0] ""
msgstr[1] ""
#. +> stable5 plasma5lts
#: libmuon/backends/PackageKitBackend/PackageKitResource.cpp:351
#, kde-format
msgid "Change Log:"
msgstr ""
#. +> trunk5 stable5
-#: libdiscover/backends/PackageKitBackend/PackageKitSourcesBackend.cpp:110
+#: libdiscover/backends/PackageKitBackend/PackageKitSourcesBackend.cpp:102
#, kde-format
msgid "Repository URL:"
msgstr ""
#. +> plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitSourcesBackend.cpp:77
#, kde-format
msgid "Repository description:"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:175
#, kde-format
msgid "Packages to remove"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:175
#, kde-format
msgid ""
"The following packages will be removed by the update:\n"
"<ul>"
"<li>%1</li>"
"</ul>"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:277
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:251
#, kde-format
msgid ""
"Media Change of type '%1' is requested.\n"
"%2"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:290
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:236
#, kde-format
msgid "Accept EULA"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:290
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:236
#, kde-format
msgid ""
"The package %1 and its vendor %2 require that you accept their license:\n"
" %3"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:367
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:263
#, kde-format
msgid "Missing signature for %1 in %2"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PackageKitUpdater.cpp:368
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:264
#, kde-format
msgid ""
"Do you trust the following key?\n"
"\n"
"Url: %1\n"
"User: %2\n"
"Key: %3\n"
"Fingerprint: %4\n"
"Timestamp: %4\n"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:167
#, kde-format
msgid "Confirm..."
msgstr ""
#. +> trunk5 stable5
#: libdiscover/backends/PackageKitBackend/PKTransaction.cpp:167
#, kde-format
msgid ""
"To proceed with this action, the following package needs removal:\n"
"%2"
msgid_plural ""
"To proceed with this action, the following packages need removal:\n"
"%2"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: libdiscover/DiscoverBackendsFactory.cpp:114
#, kde-format
msgid "List all the backends we'll want to have loaded, separated by comma ','."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/resources/AbstractResource.cpp:104
#, kde-format
msgid "Broken"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/resources/AbstractResource.cpp:105
#, kde-format
msgid "Available"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/resources/AbstractResource.cpp:106
#, kde-format
msgid "Installed"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/resources/AbstractResource.cpp:107
#, kde-format
msgid "Upgradeable"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/resources/AbstractResource.cpp:246
#, kde-format
msgctxt "origin (backend name)"
msgid "%1 (%2)"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/resources/ResourcesModel.cpp:73
#, kde-format
msgctxt "@action Checks the Internet for updates"
msgid "Check for Updates"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/resources/ResourcesUpdatesModel.cpp:101
#, kde-format
msgid "Update"
msgstr ""
#. +> plasma5lts
#: libdiscover/resources/ResourcesUpdatesModel.cpp:176
#, kde-format
msgctxt "@item:intext Unknown remaining time"
msgid "Updating..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:87
#, kde-format
msgctxt "@info:status"
msgid "Starting"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:89
#, kde-format
msgctxt "@info:status"
msgid "Waiting"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:91
#, kde-format
msgctxt "@info:status"
msgid "Downloading"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:95
#, kde-format
msgctxt "@info:status"
msgid "Installing"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:97
#, kde-format
msgctxt "@info:status"
msgid "Removing"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:99
#, kde-format
msgctxt "@info:status"
msgid "Changing Addons"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: libdiscover/Transaction/TransactionModel.cpp:103
#, kde-format
msgctxt "@info:status"
msgid "Done"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/Transaction/TransactionModel.cpp:105
#, kde-format
msgctxt "@info:status"
msgid "Failed"
msgstr ""
#. +> trunk5 stable5
#: libdiscover/Transaction/TransactionModel.cpp:107
#, kde-format
msgctxt "@info:status"
msgid "Cancelled"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/UpdateModel/UpdateModel.cpp:200
#, kde-format
msgctxt "@item:inlistbox"
msgid "Important Security Updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/UpdateModel/UpdateModel.cpp:201
#, kde-format
msgctxt "@item:inlistbox"
msgid "Application Updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: libdiscover/UpdateModel/UpdateModel.cpp:202
#, kde-format
msgctxt "@item:inlistbox"
msgid "System Updates"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiTransaction.cpp:180
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:182
#, kde-format
msgid "Something went wrong!"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiTransaction.cpp:181
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:61
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:183
#, kde-format
msgid "Error"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiTransaction.cpp:184
#, kde-format
msgid "There are a couple of transaction messages:"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiTransaction.cpp:184
#, kde-format
msgid "Transaction messages"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:61
#, kde-format
msgid "Another transaction is still running!"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:87
#, kde-format
msgid "Started downloading packages..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:91
#, kde-format
msgid "Started processing packages..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:109
#, kde-format
msgid "Started downloading %1..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/AkabeiBackend/AkabeiUpdater.cpp:113
#, kde-format
msgid "Started processing %1..."
msgstr ""
-#. +> stable
-#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:50
-#, kde-format
-msgid "Muon Notification Daemon"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:51
-#, kde-format
-msgid "A Notification Daemon for Muon"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:53
-#, kde-format
-msgid "(C) 2013 Lukas Appelhans, (C) 2009-2012 Jonathan Thomas, (C) 2009 Harald Sitter"
-msgstr ""
-
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:89
#, kde-format
msgid "System update available!"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:91
#, kde-format
msgctxt "Notification when a new version of Kubuntu is available"
msgid "A new version of Kubuntu is available"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationNotifier.cpp:96
#, kde-format
msgid "Upgrade"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:255
#, kde-format
msgctxt "@title:window"
msgid "Media Change Required"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:256
#, kde-kuit-format
msgctxt "@label"
msgid "Please insert %1 into <filename>%2</filename>"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:265
#, kde-format
msgctxt "@title:window"
msgid "Warning - Unverified Software"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:267
#, kde-kuit-format
msgctxt "@label"
msgid "The following piece of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgid_plural "The following pieces of software cannot be verified. <warning>Installing unverified software represents a security risk, as the presence of unverifiable software can be a sign of tampering.</warning> Do you wish to continue?"
msgstr[0] ""
msgstr[1] ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:285
#, kde-format
msgctxt "@title:window"
msgid "Configuration File Changed"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:287
#, kde-kuit-format
msgctxt "@label Notifies a config file change"
msgid "A new version of the configuration file <filename>%1</filename> is available, but your version has been modified. Would you like to keep your current version or install the new version?"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:292
#, kde-format
msgctxt "@action Use the new config file"
msgid "Use New Version"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:293
#, kde-format
msgctxt "@action Keep the old config file"
msgid "Keep Old Version"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:309
#, kde-format
msgctxt "@info Status info, widget title"
msgid "Starting"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:314
#, kde-format
msgctxt "@info Status info, widget title"
msgid "Waiting for Authentication"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:319
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:326
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:333
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:340
#, kde-format
msgctxt "@info Status information, widget title"
msgid "Waiting"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:321
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for other transactions to finish"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:328
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for other software managers to quit"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:335
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for required medium"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:342
#, kde-format
msgctxt "@info Status info"
msgid "Waiting for configuration file"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:352
#, kde-format
msgctxt "@info Status info"
msgid "Loading Software List"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:358
#, kde-format
msgctxt "@info Status information, widget title"
msgid "Updating software sources"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:363
#, kde-format
msgctxt "@info Status information, widget title"
msgid "Downloading Packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:372
#, kde-format
msgctxt "@info Status information, widget title"
msgid "Applying Changes"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ApplicationUpdates.cpp:378
#, kde-format
msgctxt "@info Status information, widget title"
msgid "Finished"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/AptSourcesBackend.cpp:140
#, kde-format
msgid "Adding Origins..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/AptSourcesBackend.cpp:154
#, kde-format
msgid "Removing Origins..."
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/AptSourcesBackend.cpp:208
#, kde-format
msgid "%1 (Binary)"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/AptSourcesBackend.cpp:220
#, kde-format
msgid ""
"<sourceline> - The apt repository source line to add. This is one of:\n"
" a complete apt line, \n"
" a repo url and areas (areas defaults to 'main')\n"
" a PPA shortcut.\n"
"\n"
" Examples:\n"
" deb http://myserver/path/to/repo stable myrepo\n"
" http://myserver/path/to/repo myrepo\n"
" https://packages.medibuntu.org free non-free\n"
" http://extras.ubuntu.com/ubuntu\n"
" ppa:user/repository"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/AptSourcesBackend.cpp:235
#, kde-format
msgid "Software Management"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/ReviewsBackend.cpp:425
#, kde-format
msgid "No reviews available for Debian."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/ApplicationBackend/UbuntuLoginBackend.cpp:59
#: libmuon/backends/ApplicationBackend/UbuntuLoginBackend.cpp:67
#, kde-format
msgid "Log in to the Ubuntu SSO service"
msgstr ""
-#. +> stable
-#: libmuon/backends/BodegaBackend/BodegaBackend.cpp:38
-#, kde-format
-msgid "Bodega Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/BodegaBackend/BodegaBackend.cpp:38
-#, kde-format
-msgid "Install Bodega data in your system"
-msgstr ""
-
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/BodegaBackend/BodegaBackend.cpp:59
#, kde-format
msgid "Enter %1 credentials for MakePlayLive (http://makeplaylive.com)"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/backends/BodegaBackend/muon-bodegawallpapers-backend-categories.xml:5
#, kde-format
msgctxt "Category"
msgid "Wallpapers"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/backends/KNSBackend/muon-knscomics-backend-categories.xml:4
#, kde-format
msgctxt "Category"
msgid "Comics"
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:170
-#, kde-format
-msgid "PackageKit does not tell us a useful status right now! Its status is %1."
-msgstr ""
-
#. +> stable5
#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:264
#, kde-format
msgid "PackageKit error found"
msgstr ""
#. +> stable5
#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:271
#: libmuon/backends/PackageKitBackend/PKTransaction.cpp:149
#, kde-format
msgid "PackageKit media change"
msgstr ""
#. +> stable5
#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:276
#: libmuon/backends/PackageKitBackend/PKTransaction.cpp:154
#, kde-format
msgid "PackageKit restart required"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:282
#, kde-format
msgid "%1 requires user to accept its license"
msgstr ""
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitUpdater.cpp:337
-#: libmuon/backends/PackageKitBackend/PKTransaction.cpp:130
-#, kde-format
-msgid "%1 requires user to accept its license!"
-msgstr ""
-
#. +> stable5
#: libmuon/backends/PackageKitBackend/PKTransaction.cpp:143
#, kde-format
msgid "PackageKit Error"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuon/Category/Category.cpp:42
#, kde-format
msgctxt "@label The label used for viewing all members of this category"
msgid "All"
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/MuonBackendsFactory.cpp:117
#, kde-format
msgid "List all the available backends."
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/MuonBackendsFactory.cpp:118
#, kde-format
msgid "List all the backends we'll want to have loaded, separated by coma ','."
msgstr ""
#. +> stable5 plasma5lts
#: libmuon/MuonBackendsFactory.cpp:125
#, kde-format
msgid "Available backends:\n"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/resources/ResourcesUpdatesModel.cpp:159
#, kde-format
msgctxt "@item:intext Remaining time"
msgid "%1 remaining"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/resources/StandardBackendUpdater.cpp:73
#, kde-format
msgid "%1 has been updated"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuon/resources/StandardBackendUpdater.cpp:170
#, kde-format
msgid "Setting up for install..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/ChangesDialog.cpp:39
#, kde-format
msgctxt "@title:window"
msgid "Confirm Additional Changes"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/ChangesDialog.cpp:44
#, kde-format
msgctxt "@info"
msgid "<h2>Mark additional changes?</h2>"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/ChangesDialog.cpp:48
#, kde-format
msgid "This action requires a change to another package:"
msgid_plural "This action requires changes to other packages:"
msgstr[0] ""
msgstr[1] ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:48
#, kde-kuit-format
msgctxt "@info"
msgid "<title>History</title>"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:54
#, kde-format
msgctxt "@label Line edit click message"
msgid "Search"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:66
#, kde-format
msgctxt "@item:inlistbox Filters all changes in the history view"
msgid "All changes"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:70
#, kde-format
msgctxt "@item:inlistbox Filters installations in the history view"
msgid "Installations"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:74
#, kde-format
msgctxt "@item:inlistbox Filters updates in the history view"
msgid "Updates"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:78
#, kde-format
msgctxt "@item:inlistbox Filters removals in the history view"
msgid "Removals"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:89
#, kde-format
msgctxt "@title:column"
msgid "Date"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:97
#, kde-format
msgctxt "@info:status describes a past-tense action"
msgid "Installed"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:98
#, kde-format
msgctxt "@info:status describes a past-tense action"
msgid "Upgraded"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:99
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Downgraded"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:100
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Removed"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:101
#, kde-format
msgctxt "@status describes a past-tense action"
msgid "Purged"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/HistoryView/HistoryView.cpp:136
#: libmuonapt/HistoryView/HistoryView.cpp:151
#: libmuonapt/HistoryView/HistoryView.cpp:166
#: libmuonapt/HistoryView/HistoryView.cpp:181
#: libmuonapt/HistoryView/HistoryView.cpp:196
#, kde-format
msgctxt "@item example: muon installed at 16:00"
msgid "%1 %2 at %3"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:49
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"admin\""
msgid "System Administration"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:51
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"base\""
msgid "Base System"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:53
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"cli-mono\""
msgid "Mono/CLI Infrastructure"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:55
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"comm\""
msgid "Communication"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:57
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"database\""
msgid "Databases"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:59
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"devel\""
msgid "Development"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:61
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"doc\""
msgid "Documentation"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:63
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"debug\""
msgid "Debug"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:65
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"editors\""
msgid "Editors"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:67
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"electronics\""
msgid "Electronics"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:69
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"embedded\""
msgid "Embedded Devices"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:71
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"fonts\""
msgid "Fonts"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:73
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"games\""
msgid "Games and Amusement"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:75
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnome\""
msgid "GNOME Desktop Environment"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:77
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"graphics\""
msgid "Graphics"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:79
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnu-r\""
msgid "GNU R Statistical System"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:81
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"gnustep\""
msgid "Gnustep Desktop Environment"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:83
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"hamradio\""
msgid "Amateur Radio"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:85
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"haskell\""
msgid "Haskell Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:87
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"httpd\""
msgid "Web Servers"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:89
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"interpreters\""
msgid "Interpreted Computer Languages"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:91
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"java\""
msgid "Java Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:93
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"kde\""
msgid "KDE Software Compilation"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:95
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"kernel\""
msgid "Kernel and Modules"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:97
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"libdevel\""
msgid "Libraries - Development"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:99
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"libs\""
msgid "Libraries"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:101
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"lisp\""
msgid "Lisp Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:103
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"localization\""
msgid "Localization"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:105
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"mail\""
msgid "Email"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:107
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"math\""
msgid "Mathematics"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:109
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"misc\""
msgid "Miscellaneous - Text-based"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:111
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"net\""
msgid "Networking"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:113
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"news\""
msgid "Newsgroups"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:115
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"ocaml\""
msgid "OCaml Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:117
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"oldlibs\""
msgid "Libraries - Old"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:119
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"otherosfs\""
msgid "Cross Platform"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:121
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"perl\""
msgid "Perl Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:123
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"php\""
msgid "PHP Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:125
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"python\""
msgid "Python Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:127
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"ruby\""
msgid "Ruby Programming Language"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:129
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"science\""
msgid "Science"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:131
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"shells\""
msgid "Shells"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:133
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"sound\""
msgid "Multimedia"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:135
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"tex\""
msgid "TeX Authoring"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:137
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"text\""
msgid "Word Processing"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:139
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"utils\""
msgid "Utilities"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:141
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"vcs\""
msgid "Version Control Systems"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:143
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"video\""
msgid "Video Software"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:145
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"web\""
msgid "Internet"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:147
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"x11\""
msgid "Miscellaneous - Graphical"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:149
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"xfce\""
msgid "Xfce Desktop Environment"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:151
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"zope\""
msgid "Zope/Plone Environment"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:153
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"unknown\""
msgid "Unknown"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:155
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"alien\""
msgid "Converted from RPM by Alien"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:157
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"translations\""
msgid "Internationalization and Localization"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:159
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"metapackages\""
msgid "Meta Packages"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:161
#, kde-format
msgctxt "@item:inlistbox Debian package section \"non-US\", for packages that cannot be shipped in the US"
msgid "Restricted On Export"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:163
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"non-free\""
msgid "Non-free"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:165
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"contrib\""
msgid "Contrib"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:167
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"education\""
msgid "Education"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:169
#, kde-format
msgctxt "@item:inlistbox Human-readable name for the Debian package section \"introspection\""
msgid "GObject Introspection Data"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:195
#, kde-format
msgctxt "@info:status Package state"
msgid "No Change"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:196 libmuonapt/MuonStrings.cpp:197
#, kde-format
msgctxt "@info:status Requested action"
msgid "Install"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:198
#, kde-format
msgctxt "@info:status Requested action"
msgid "Reinstall"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:199
#, kde-format
msgctxt "@info:status Requested action"
msgid "Upgrade"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:200
#, kde-format
msgctxt "@info:status Requested action"
msgid "Downgrade"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:201
#, kde-format
msgctxt "@info:status Requested action"
msgid "Remove"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:202
#, kde-format
msgctxt "@info:status Package state"
msgid "Held"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:203
#, kde-format
msgctxt "@info:status Package state"
msgid "Installed"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:204
#, kde-format
msgctxt "@info:status Package state"
msgid "Upgradeable"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:205
#, kde-format
msgctxt "@info:status Package state"
msgid "Broken"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:206
#, kde-format
msgctxt "@info:status Package state"
msgid "Install Broken"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:207
#, kde-format
msgctxt "@info:status Package state"
msgid "Orphaned"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:208
#, kde-format
msgctxt "@info:status Package state"
msgid "Locked"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:209
#, kde-format
msgctxt "@info:status Package state"
msgid "New in repository"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:210
#, kde-format
msgctxt "@info:status Package state"
msgid "Residual Configuration"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:211
#, kde-format
msgctxt "@info:status Package state"
msgid "Not Downloadable"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:212
#, kde-format
msgctxt "@info:status Requested action"
msgid "Purge"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:213
#, kde-format
msgctxt "@info:status Package state"
msgid "Important for base install"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:214
#, kde-format
msgctxt "@info:status Package state"
msgid "Version overridden"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:215
#, kde-format
msgctxt "@info:status Package state"
msgid "Required by other packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:216
#, kde-format
msgctxt "@info:status Package state"
msgid "Installed (auto-removable)"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:217 libmuonapt/MuonStrings.cpp:218
#, kde-format
msgctxt "@info:status Package state"
msgid "Policy Broken"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:219
#, kde-format
msgctxt "@info:status Package state"
msgid "Not Installed"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:221
#, kde-format
msgctxt "@info:status Package locked at a certain version"
msgid "Locked"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:222
#, kde-format
msgctxt "@info:status Package state"
msgid "Manually held back"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:243
#, kde-format
msgctxt "@item:inlistbox"
msgid "Common"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:244
#, kde-format
msgctxt "@item:inlistbox CPU architecture"
msgid "32-bit"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:245
#, kde-format
msgctxt "@item:inlistbox CPU architecture"
msgid "64-bit"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: libmuonapt/MuonStrings.cpp:246
#, kde-format
msgctxt "@item:inlistbox PU architecture"
msgid "Power PC"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:265
#, kde-format
msgctxt "@title:window"
msgid "Initialization Error"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:267
#, kde-format
msgctxt "@title:window"
msgid "Unable to Obtain Package System Lock"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:269
#, kde-format
msgctxt "@title:window"
msgid "Low Disk Space"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:272
#, kde-format
msgctxt "@title:window"
msgid "Failed to Apply Changes"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:274
#, kde-format
msgctxt "@title:window"
msgid "Authentication error"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:276
#, kde-format
msgctxt "@title:window"
msgid "Unexpected Error"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:278
#, kde-format
msgctxt "@title:window"
msgid "Untrusted Packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:281
#, kde-format
msgctxt "@title:window"
msgid "Unknown Error"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:291
#, kde-format
msgctxt "@label"
msgid "The package system could not be initialized, your configuration may be broken."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:296
#, kde-format
msgctxt "@label"
msgid "Another application seems to be using the package system at this time. You must close all other package managers before you will be able to install or remove any packages."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:303
#, kde-format
msgctxt "@label"
msgid "You do not have enough disk space in the directory at %1 to continue with this operation."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:307
#, kde-format
msgctxt "@label"
msgid "Could not download packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:310
#, kde-format
msgctxt "@label"
msgid "An error occurred while applying changes:"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:314
#, kde-format
msgctxt "@label"
msgid "This operation cannot continue since proper authorization was not provided"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:318
#, kde-format
msgctxt "@label"
msgid "It appears that the QApt worker has either crashed or disappeared. Please report a bug to the QApt maintainers"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/MuonStrings.cpp:323
#, kde-format
msgctxt "@label"
msgid "The following package has not been verified by its author. Downloading untrusted packages has been disallowed by your current configuration."
msgid_plural "The following packages have not been verified by their authors. Downloading untrusted packages has been disallowed by your current configuration."
msgstr[0] ""
msgstr[1] ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:118
#, kde-format
msgctxt "@action Reverts all potential changes to the cache"
msgid "Unmark All"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:125
#, kde-format
msgctxt "@action Opens the software sources configuration dialog"
msgid "Configure Software Sources"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:131
#, kde-format
msgctxt "@action"
msgid "Read Markings..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:137
#, kde-format
msgctxt "@action"
msgid "Save Markings As..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:144
#, kde-format
msgctxt "@action"
msgid "Save Package Download List..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:151
#, kde-format
msgctxt "@action"
msgid "Download Packages From List..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:160
#, kde-format
msgctxt "@action"
msgid "Add Downloaded Packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:167
#, kde-format
msgctxt "@action"
msgid "Save Installed Packages List..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:173
#, kde-format
msgctxt "@action::inmenu"
msgid "History..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:179
#, kde-format
msgctxt "@action"
msgid "Upgrade"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:182
#, kde-format
msgctxt "Notification when a new version of Kubuntu is available"
msgid "A new version of Kubuntu is available."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:226
#, kde-format
msgctxt "@title:window"
msgid "Save Markings As"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:233 libmuonapt/QAptActions.cpp:258
#: libmuonapt/QAptActions.cpp:282
#, kde-kuit-format
msgctxt "@label"
msgid ""
"The document could not be saved, as it was not possible to write to <filename>%1</filename>\n"
"\n"
"Check that you have write access to this file or that enough disk space is available."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:251
#, kde-format
msgctxt "@title:window"
msgid "Save Installed Packages List As"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:275
#, kde-format
msgctxt "@title:window"
msgid "Save Download List As"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:297 libmuonapt/QAptActions.cpp:314
#, kde-format
msgctxt "@title:window"
msgid "Open File"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:322
#, kde-format
msgctxt "@label"
msgid "Could not mark changes. Please make sure that the file is a markings file created by either the Muon Package Manager or the Synaptic Package Manager."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:333
#, kde-format
msgctxt "@title:window"
msgid "Choose a Directory"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:356
#, kde-format
msgctxt "@label"
msgid "%1 package was successfully added to the cache"
msgid_plural "%1 packages were successfully added to the cache"
msgstr[0] ""
msgstr[1] ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:362
#, kde-format
msgctxt "@label"
msgid "No valid packages could be found in this directory. Please make sure the packages are compatible with your computer and are at the latest version."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:366
#, kde-format
msgctxt "@title:window"
msgid "Packages Could Not be Found"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: libmuonapt/QAptActions.cpp:481
#, kde-format
msgctxt "@title:window"
msgid "Package History"
msgstr ""
-
-#. +> stable
-#: libmuon/backends/AkabeiBackend/AkabeiBackend.cpp:38
-#, kde-format
-msgid "Akabei Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/AkabeiBackend/AkabeiBackend.cpp:38
-#, kde-format
-msgid "Chakra-Applications in your system"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/ApplicationBackend/ApplicationBackend.cpp:66
-#, kde-format
-msgid "Applications Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/ApplicationBackend/ApplicationBackend.cpp:66
-#, kde-format
-msgid "Applications in your system"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/DummyBackend/DummyBackend.cpp:38
-#, kde-format
-msgid "Dummy Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/DummyBackend/DummyBackend.cpp:38
-#, kde-format
-msgid "Dummy backend to test muon frontends"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/KNSBackend/KNSBackend.cpp:50
-#, kde-format
-msgid "KNewStuff Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/KNSBackend/KNSBackend.cpp:50
-#, kde-format
-msgid "Install KNewStuff data in your system"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:44
-#, kde-format
-msgid "PackageKit Backend"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:44
-#, kde-format
-msgid "Install PackageKit data in your system"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:52
-#, kde-format
-msgid "No network connection available!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:54
-#, kde-format
-msgid "Operation not supported!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:56
-#, kde-format
-msgid "Internal error!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:58
-#, kde-format
-msgid "GPG failure!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:60
-#, kde-format
-msgid "PackageID invalid!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:62
-#, kde-format
-msgid "Package not installed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:64
-#, kde-format
-msgid "Package not found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:66
-#, kde-format
-msgid "Package is already installed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:68
-#, kde-format
-msgid "Package download failed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:70
-#, kde-format
-msgid "Package group not found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:72
-#, kde-format
-msgid "Package group list invalid!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:74
-#, kde-format
-msgid "Dependency resolution failed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:76
-#, kde-format
-msgid "Filter invalid!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:78
-#, kde-format
-msgid "Failed while creating a thread!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:80
-#, kde-format
-msgid "Transaction failure!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:82
-#, kde-format
-msgid "Transaction canceled!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:86
-#, kde-format
-msgid "Cannot find repository!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:88
-#, kde-format
-msgid "Cannot remove system package!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:90
-#, kde-format
-msgid "Cannot kill process!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:92
-#, kde-format
-msgid "Initialization failure!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:94
-#, kde-format
-msgid "Failed to finalize transaction!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:96
-#, kde-format
-msgid "Config parsing failed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:100
-#, kde-format
-msgid "Cannot obtain lock!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:102
-#, kde-format
-msgid "No packages to update!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:104
-#, kde-format
-msgid "Cannot write repo config!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:106
-#, kde-format
-msgid "Local install failed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:108
-#, kde-format
-msgid "Bad GPG signature found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:110
-#, kde-format
-msgid "No GPG signature found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:112
-#, kde-format
-msgid "Cannot install source package!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:114
-#, kde-format
-msgid "Repo configuration error!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:116
-#, kde-format
-msgid "No license agreement!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:118
-#, kde-format
-msgid "File conflicts found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:120
-#, kde-format
-msgid "Package conflict found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:122
-#, kde-format
-msgid "Repo not available!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:124
-#, kde-format
-msgid "Invalid package file!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:126
-#, kde-format
-msgid "Package install blocked!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:128
-#, kde-format
-msgid "Corrupt package found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:130
-#, kde-format
-msgid "All packages already installed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:132
-#, kde-format
-msgid "File not found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:134
-#, kde-format
-msgid "No more mirrors available!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:136
-#, kde-format
-msgid "No distro upgrade data!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:138
-#, kde-format
-msgid "Incompatible architecture!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:140
-#, kde-format
-msgid "No space on device left!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:142
-#, kde-format
-msgid "A media change is required!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:144
-#, kde-format
-msgid "You have no authorization to execute this operation!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:146
-#, kde-format
-msgid "Update not found!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:148
-#, kde-format
-msgid "Cannot install from unsigned repo!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:150
-#, kde-format
-msgid "Cannot update from unsigned repo!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:152
-#, kde-format
-msgid "Cannot get file list!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:154
-#, kde-format
-msgid "Cannot get requires!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:156
-#, kde-format
-msgid "Cannot disable repository!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:158
-#, kde-format
-msgid "Restricted download detected!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:160
-#, kde-format
-msgid "Package failed to configure!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:162
-#, kde-format
-msgid "Package failed to build!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:164
-#, kde-format
-msgid "Package failed to install!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:166
-#, kde-format
-msgid "Package failed to remove!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:168
-#, kde-format
-msgid "Update failed due to running process!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:170
-#, kde-format
-msgid "The package database changed!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:172
-#, kde-format
-msgid "The provided type is not supported!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:174
-#, kde-format
-msgid "Install root is invalid!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:176
-#, kde-format
-msgid "Cannot fetch sources!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:178
-#, kde-format
-msgid "Canceled priority!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:180
-#, kde-format
-msgid "Unfinished transaction!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:182
-#, kde-format
-msgid "Lock required!"
-msgstr ""
-
-#. +> stable
-#: libmuon/backends/PackageKitBackend/PackageKitBackend.cpp:185
-#, kde-format
-msgid "Unknown error"
-msgstr ""
-
-#. +> stable
-#: libmuon/MuonMainWindow.cpp:68
-#, kde-format
-msgctxt "@label Easter Egg"
-msgid "This Muon has super cow powers"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:71
-#, kde-format
-msgid "%1 update notifier"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:75
-#, kde-format
-msgid "Muon %1 update notifier"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:77
-#, kde-format
-msgid "Open Muon..."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:78
-#, kde-format
-msgid "Quit notifier..."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:138
-#, kde-format
-msgid "A security update is available for your system."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:141
-#, kde-format
-msgid "An update is available for your system."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:146
-#, kde-format
-msgid "There are %1 updated packages, of which %2 were updated for security reasons."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:148
-#, kde-format
-msgid "There are %1 updated packages."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:150
-#, kde-format
-msgid "%1 packages were updated for security reasons"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:154
-#, kde-format
-msgid "A system update is recommended"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:162
-#, kde-format
-msgid "System update available"
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:167
-#, kde-format
-msgid "Your system is up-to-date."
-msgstr ""
-
-#. +> stable
-#: libmuon/resources/AbstractKDEDModule.cpp:167
-#, kde-format
-msgid "No system update available"
-msgstr ""
-
-#. +> stable
-#: libmuon/settings/NotifySettingsPage.cpp:66
-#, kde-format
-msgid "Show notifications for available updates"
-msgstr ""
-
-#. +> stable
-#: libmuon/settings/NotifySettingsPage.cpp:67
-#, kde-format
-msgid "Show the number of available updates"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-browser-extension.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-browser-extension.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-browser-extension.pot (revision 1509808)
@@ -1,163 +1,163 @@
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
-"POT-Creation-Date: 2018-02-01 08:38+0100\n"
-"PO-Revision-Date: 2018-02-01T02:29:50.592Z\n"
+"POT-Creation-Date: 2018-02-02 13:42+0100\n"
+"PO-Revision-Date: 2018-02-02T02:35:22.397Z\n"
"Language: en\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"
#. +> trunk5
msgid "options##description"
msgstr ""
#. +> trunk5
msgid "options##message"
msgstr ""
#. +> trunk5
msgctxt "restore##description"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "restore##message"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "save##message"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "tab##description"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "tab##message"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "mpris##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "mpris##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "kdeconnect##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "kdeconnect##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "downloads##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "downloads##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "tabsrunner##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "tabsrunner##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "slc##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "slc##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "incognito##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "incognito##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "breezeScrollBars##description"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "breezeScrollBars##message"
msgid "options_plugin"
msgstr ""
#. +> trunk5
msgctxt "about##message"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "translated##message"
msgid "options_about"
msgstr ""
#. +> trunk5
msgctxt "about##description"
msgid "options"
msgstr ""
#. +> trunk5
msgctxt "by##message"
msgid "options_about_created"
msgstr ""
#. +> trunk5
msgctxt "open##description"
msgid "kdeconnect"
msgstr ""
#. +> trunk5
msgctxt "open##message"
msgid "kdeconnect"
msgstr ""
#. +> trunk5
msgctxt "error##description"
msgid "general"
msgstr ""
#. +> trunk5
msgctxt "error##message"
msgid "general"
msgstr ""
#. +> trunk5
msgctxt "port##description"
msgid "general_error"
msgstr ""
#. +> trunk5
msgctxt "port##message"
msgid "general_error"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-discover.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-discover.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kde-workspace/plasma-discover.pot (revision 1509808)
@@ -1,1017 +1,939 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:38+0100\n"
+"POT-Creation-Date: 2018-02-02 13:42+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#: discover/DiscoverObject.cpp:176
#, kde-format
msgid "Could not find category '%1'"
msgstr ""
#. +> trunk5 stable5
-#: discover/DiscoverObject.cpp:205 discover/DiscoverObject.cpp:233
+#: discover/DiscoverObject.cpp:205 discover/DiscoverObject.cpp:232
#, kde-format
msgid "Couldn't open %1"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:45
#, kde-format
msgid "Directly open the specified application by its package name."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:46
#, kde-format
msgid "Open with a program that can deal with the given mimetype."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:47
#, kde-format
msgid "Display a list of entries with a category."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:48
#, kde-format
msgid "Open Discover in a said mode. Modes correspond to the toolbar buttons."
msgstr ""
-#. +> stable
-#: discover/main.cpp:50
-#, kde-format
-msgid "List all the backends we'll want to have loaded, separated by coma ','."
-msgstr ""
-
-#. +> stable5 stable
+#. +> stable5
#: discover/main.cpp:51
#, kde-format
msgid "Open Muon Discover in a said mode. Modes correspond to the toolbar buttons."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:49
#, kde-format
msgid "List all the available modes."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:50
#, kde-format
msgid "Compact Mode (auto/compact/full)."
msgstr ""
#. +> trunk5 stable5
#: discover/main.cpp:51
#, kde-format
msgid "Local package file to install"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: discover/main.cpp:52
#, kde-format
msgid "List all the available backends."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:54
#, kde-format
msgid "Supports appstream: url scheme"
msgstr ""
#. +> plasma5lts
#: discover/main.cpp:81
#, kde-format
msgid "Malformed url '%1'"
msgstr ""
#. +> plasma5lts
#: discover/main.cpp:85
#, kde-format
msgid "Unrecognized url: %1"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:96 discover/qml/DiscoverWindow.qml:48
#, kde-format
msgid "Discover"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/main.cpp:37
#, kde-format
msgid "Muon Discover"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:96
#, kde-format
msgid "An application explorer"
msgstr ""
-#. +> stable
-#: discover/main.cpp:31
-#, kde-format
-msgid "An application discoverer"
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:97
#, kde-format
msgid "© 2010-2016 Plasma Development Team"
msgstr ""
#. +> stable5
#: discover/main.cpp:38
#, kde-format
msgid "© 2010-2014 Muon Development Team"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:98
#, kde-format
msgid "Aleix Pol Gonzalez"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:99
#, kde-format
msgid "Jonathan Thomas"
msgstr ""
-#. +> stable
-#: discover/main.cpp:36
-#, kde-format
-msgid "©2010-2012 Jonathan Thomas"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: discover/main.cpp:111
#, kde-format
msgid "Available backends:\n"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/main.cpp:141
#, kde-format
msgid "Available modes:\n"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/AddonsView.qml:25 discover/qml/ApplicationPage.qml:206
#, kde-format
msgid "Addons"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/AddonsView.qml:74
#, kde-format
msgid "Apply Changes"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/AddonsView.qml:81
#, kde-format
msgid "Discard"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/AddonsView.qml:92
#, kde-format
msgid "More..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/AddSourceDialog.qml:27
#, kde-format
msgid "Specify the new source for %1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:69
#, kde-format
msgid ""
"\n"
"Also available in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:101
#, kde-format
msgid "Back"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ApplicationPage.qml:136
#, kde-format
msgid "Launch"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ApplicationPage.qml:212 discover/qml/ReviewsPage.qml:54
#, kde-format
msgid "Review"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:220
#, kde-format
msgid "Show reviews (%1)..."
msgstr ""
#. +> plasma5lts
#: discover/qml/ApplicationPage.qml:179
#, kde-format
msgid "Show comments (%1)..."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:247
#, kde-format
msgid "Category:"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:259
#, kde-format
msgid "Version:"
msgstr ""
#. +> plasma5lts
#: discover/qml/ApplicationPage.qml:127
#, kde-format
msgid "Version: %1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:273
#, kde-format
msgid "Size:"
msgstr ""
#. +> plasma5lts
#: discover/qml/ApplicationPage.qml:130
#, kde-format
msgid "Size: %1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:278
#, kde-format
msgid "%1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:284
#, kde-format
msgid "Source:"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:298
#, kde-format
msgid "License:"
msgstr ""
#. +> plasma5lts
#: discover/qml/ApplicationPage.qml:134
#, kde-format
msgid "License: %1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationPage.qml:315
#, kde-format
msgid "Homepage:"
msgstr ""
#. +> trunk5
#: discover/qml/ApplicationPage.qml:331
#, kde-format
msgid "User Guide:"
msgstr ""
#. +> trunk5
#: discover/qml/ApplicationPage.qml:347
#, kde-format
msgid "Donate:"
msgstr ""
#. +> trunk5
#: discover/qml/ApplicationPage.qml:363
#, kde-format
msgid "Report a Problem:"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:88
#, kde-format
msgid "Name"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:96 discover/qml/CategoryPage.qml:120
#, kde-format
msgid "Popularity"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationsListPage.qml:100
#, kde-format
msgid "Sorry, nothing found..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:104
#, kde-format
msgid "Buzz"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:112
#, kde-format
msgid "Origin"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:140
#, kde-format
msgid "List"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ApplicationsListPage.qml:147
#, kde-format
msgid "Still looking..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationsListPage.qml:149
#, kde-format
msgid "Grid"
msgstr ""
#. +> stable5
#: discover/qml/ApplicationsListPage.qml:163
#, kde-format
msgid "Show technical packages"
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: discover/qml/ApplicationsListPage.qml:213
#: discover/qml/InstallApplicationButton.qml:39
#, kde-format
msgid "Update"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/BrowsingPage.qml:33
#, kde-format
msgid "Featured"
msgstr ""
#. +> plasma5lts
#: discover/qml/BrowsingPage.qml:53
#, kde-format
msgid "Most Popular"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:43
#, kde-format
msgid "Running as <em>root</em> is discouraged and unnecessary."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/DiscoverWindow.qml:57
#, kde-format
msgid "Search"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:64 discover/qml/InstalledPage.qml:15
#, kde-format
msgid "Installed"
msgstr ""
#. +> plasma5lts
#: discover/qml/DiscoverWindow.qml:71
#, kde-format
msgid "Installing..."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/DiscoverWindow.qml:71
#, kde-format
msgid "Checking for updates..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:71
#, kde-format
msgid "No Updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:71
#, kde-format
msgctxt "Update section name"
msgid "Update (%1)"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:78 discover/qml/SourcesPage.qml:14
#, kde-format
msgid "Settings"
msgstr ""
#. +> plasma5lts
#: discover/qml/DiscoverWindow.qml:95
#, kde-format
msgid "Configure Sources..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:114
#, kde-format
msgid "Could not close the application, there are tasks that need to be done."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/DiscoverWindow.qml:116
#, kde-format
msgid "Unable to find resource: %1"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/DiscoverWindow.qml:150
#, kde-format
msgid "Proceed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: discover/qml/DiscoverWindow.qml:160 discover/qml/UpdatesPage.qml:54
#, kde-format
msgid "Cancel"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/InstallApplicationButton.qml:14
#, kde-format
msgid "Install"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/InstallApplicationButton.qml:14
#, kde-format
msgid "Remove"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/LoadingPage.qml:8
#, kde-format
msgid "Loading..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/navigation.js:32
#, kde-format
msgid "Resources for '%1'"
msgstr ""
#. +> stable5
#: discover/qml/navigation.js:49
#, kde-format
msgid "Ratings for %1"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/navigation.js:56
#, kde-format
msgid "Extensions..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/PageHeader.qml:53
#, kde-format
msgid "Search: %1 + %2"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/PageHeader.qml:54
#, kde-format
msgid "Search: %1"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ProgressView.qml:12
#, kde-format
msgid "Tasks (%1%)"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ProgressView.qml:12
#, kde-format
msgid "Tasks"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ProgressView.qml:109
#, kde-format
msgctxt "TransactioName TransactionStatus"
msgid "%1 %2"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:35
#, kde-format
msgid "<em>Tell us about this review!</em>"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:36
#, kde-format
msgid "<em>%1 out of %2 people found this review useful</em>"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ReviewDelegate.qml:45
#, kde-format
msgid "unknown reviewer"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:45
#, kde-format
msgid "<b>%1</b> by %2"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ReviewDelegate.qml:51
#, kde-format
msgid ""
"<p style='margin: 0 0 0 0'><b>%1</b> by %2</p>"
"<p style='margin: 0 0 0 0'>%3</p>"
"<p style='margin: 0 0 0 0'>%4</p>"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:67
#, kde-format
msgid "<em>Useful? <a href='true'><b>Yes</b></a>/<a href='false'>No</a></em>"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:70
#, kde-format
msgid "<em>Useful? <a href='true'>Yes</a>/<a href='false'><b>No</b></a></em>"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDelegate.qml:73
#, kde-format
msgid "<em>Useful? <a href='true'>Yes</a>/<a href='false'>No</a></em>"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDialog.qml:20
#, kde-format
msgid "Reviewing '%1'"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ReviewDialog.qml:15
#, kde-format
msgid "Reviewing %1"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDialog.qml:21
#, kde-format
msgid "Rating:"
msgstr ""
-#. +> stable
-#: discover/qml/ReviewDialog.qml:21
-#, kde-format
-msgid "Submit"
-msgstr ""
-
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDialog.qml:27
#, kde-format
msgid "Summary:"
msgstr ""
-#. +> stable
-#: discover/qml/ReviewDialog.qml:30
-#, kde-format
-msgid "Close"
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDialog.qml:31
#, kde-format
msgid "Short summary..."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ReviewDialog.qml:38
#, kde-format
msgid "Comment too short"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ReviewDialog.qml:39
#, kde-format
msgid "Comment too long"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/ReviewDialog.qml:48
#, kde-format
msgid "Accept"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/ReviewDialog.qml:49
#, kde-format
msgid "Improve summary"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/SearchField.qml:32
#, kde-format
msgid "Search..."
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/SearchField.qml:32
#, kde-format
msgid "Search in '%1'..."
msgstr ""
-#. +> stable
-#: discover/qml/CategoryPage.qml:116
-#, kde-format
-msgid "Popularity Contest"
-msgstr ""
-
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/CategoryPage.qml:121
#, kde-format
msgid "points: %1"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/CategoryPage.qml:130
#, kde-format
msgid "Rating"
msgstr ""
-#. +> stable
-#: discover/qml/CategoryPage.qml:128
-#, kde-format
-msgid "Best Ratings"
-msgstr ""
-
-#. +> stable
-#: discover/qml/SourcesPage.qml:40
-#, kde-format
-msgid "Specify the new source"
-msgstr ""
-
-#. +> stable
-#: discover/qml/SourcesPage.qml:44
-#, kde-format
-msgid "OK"
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: discover/qml/SourcesPage.qml:47
#, kde-format
msgid "Help..."
msgstr ""
-#. +> stable
-#: discover/qml/SourcesPage.qml:72
-#, kde-format
-msgid "<sourceline> - The apt repository source line to add. This is one of:\n"
-msgstr ""
-
#. +> trunk5 stable5
-#: discover/qml/SourcesPage.qml:84
+#: discover/qml/SourcesPage.qml:88
#, kde-format
msgid "%1 (Default)"
msgstr ""
#. +> trunk5 stable5
-#: discover/qml/SourcesPage.qml:110
+#: discover/qml/SourcesPage.qml:109
#, kde-format
msgid "Make default"
msgstr ""
#. +> trunk5 stable5
-#: discover/qml/SourcesPage.qml:115
+#: discover/qml/SourcesPage.qml:114
#, kde-format
msgid "Add Source..."
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: discover/qml/SourcesPage.qml:23
#, kde-format
msgid "Add Source"
msgstr ""
-#. +> stable
-#: discover/qml/SourcesPage.qml:136
-#, kde-format
-msgid "%1 (Binary)"
-msgstr ""
-
-#. +> stable
-#: discover/qml/SourcesPage.qml:162
-#, kde-format
-msgid "%1. %2"
-msgstr ""
-
#. +> trunk5 stable5 plasma5lts
#: discover/qml/SourcesPage.qml:180
#, kde-format
msgid "Browse the origin's resources"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/SourcesPage.qml:185
#, kde-format
msgid "Delete the origin"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/SourcesPage.qml:189
#, kde-format
msgid "Failed to remove the source '%1'"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:15
#, kde-format
msgid "Updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:43
#, kde-format
msgid "Update Selected"
msgstr ""
-#. +> trunk5 stable5 plasma5lts stable
+#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:43
#, kde-format
msgid "Update All"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:73
#, kde-format
msgid "updates selected"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:81
#, kde-format
msgid "updates not selected"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:188
#, kde-format
msgid "%1 (%2)"
msgstr ""
#. +> plasma5lts
#: discover/qml/UpdatesPage.qml:192
#, kde-format
msgid "Open"
msgstr ""
#. +> trunk5 stable5
#: discover/qml/UpdatesPage.qml:219
#, kde-format
msgid "More Information..."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/UpdatesPage.qml:246
#, kde-format
msgctxt "@info"
msgid "Fetching..."
msgstr ""
#. +> trunk5 stable5
#: discover/qml/UpdatesPage.qml:247
#, kde-format
msgctxt "@info"
msgid "Looking for updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:251
#, kde-format
msgctxt "@info"
msgid "Updating..."
msgstr ""
#. +> plasma5lts
#: discover/qml/UpdatesPage.qml:220
#, kde-format
msgctxt "@info"
msgid "Loading..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:252
#, kde-format
msgctxt "@info"
msgid "Fetching updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:256
#, kde-format
msgctxt "@info"
msgid "Updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:260 discover/qml/UpdatesPage.qml:265
#, kde-format
msgctxt "@info"
msgid "The system is up to date"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:261 discover/qml/UpdatesPage.qml:266
#, kde-format
msgctxt "@info"
msgid "No updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:270
#, kde-format
msgctxt "@info"
msgid "No updates are available"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:274
#, kde-format
msgctxt "@info"
msgid "Should check for updates"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: discover/qml/UpdatesPage.qml:278
#, kde-format
msgctxt "@info"
msgid "It is unknown when the last check for updates was"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/MuonDiscoverMainWindow.cpp:100
#, kde-format
msgid "Found some errors while setting up the GUI, the application can't proceed."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/MuonDiscoverMainWindow.cpp:101
#, kde-format
msgid "Initialization error"
msgstr ""
#. +> stable5
#: discover/MuonDiscoverMainWindow.cpp:217
#, kde-format
msgid "Advanced..."
msgstr ""
-#. +> stable
-#: discover/MuonDiscoverMainWindow.cpp:235
-#, kde-format
-msgid "Menu"
-msgstr ""
-
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: discover/qml/ApplicationDescription.qml:87
#, kde-format
msgid "Description"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationDescription.qml:113
#, kde-format
msgid "Comments"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationDescription.qml:140
#, kde-format
msgid "More comments (%1)..."
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationDetails.qml:45
#, kde-format
msgid "Total Size: "
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationDetails.qml:47
#, kde-format
msgid "Version: "
msgstr ""
-#. +> stable5 plasma5lts stable
+#. +> stable5 plasma5lts
#: discover/qml/ApplicationDetails.qml:49
#, kde-format
msgid "Homepage: "
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/ApplicationDetails.qml:62
#, kde-format
msgid "License: "
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/DefaultBanner.qml:16
#, kde-format
msgid ""
"Welcome to\n"
"Muon Discover!"
msgstr ""
#. +> plasma5lts
#: discover/qml/DefaultBanner.qml:17
#, kde-format
msgid ""
"Discover\n"
"all the possibilities!"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/FeaturedBanner.qml:81
#, kde-format
msgid ""
"<b>%1</b><br/>"
"%2"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/Main.qml:108
#, kde-format
msgid "Installed (%1 update)"
msgid_plural "Installed (%1 updates)"
msgstr[0] ""
msgstr[1] ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/Main.qml:115
#, kde-format
msgid "Sources"
msgstr ""
-#. +> stable5 stable
+#. +> stable5
#: discover/qml/MuonToolbar.qml:112
#, kde-format
msgid "Configure and learn about Muon Discover"
msgstr ""
#. +> plasma5lts
#: discover/qml/Breadcrumbs.qml:34 discover/qml/BrowsingPage.qml:31
#, kde-format
msgid "Home"
msgstr ""
#. +> plasma5lts
#: discover/qml/JustMessageAction.qml:10
#, kde-format
msgid "Got it"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kde-workspace/plasma_applet_org.kde.plasma.networkmanagement.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kde-workspace/plasma_applet_org.kde.plasma.networkmanagement.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kde-workspace/plasma_applet_org.kde.plasma.networkmanagement.pot (revision 1509808)
@@ -1,144 +1,144 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-16 09:36+0100\n"
+"POT-Creation-Date: 2018-02-02 13:42+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#: contents/config/config.qml:29
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: contents/ui/configGeneral.qml:41
#, kde-format
msgid "Ask for PIN on modem detection"
msgstr ""
#. +> trunk5 stable5
#: contents/ui/configGeneral.qml:50
#, kde-format
msgid "Show and configure virtual connections"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:145
#, kde-format
msgid "Connect"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:145
#, kde-format
msgid "Disconnect"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:192
#, kde-format
msgid "Speed"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:197
#, kde-format
msgid "Details"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:356
#, kde-format
msgid "Connected, <font color='%1'>⬇</font> %2/s, <font color='%3'>⬆</font> %4/s"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/ConnectionItem.qml:362
#, kde-format
msgid "Connected"
msgstr ""
#. +> trunk5 stable5
#: contents/ui/DetailsText.qml:45
#, kde-format
msgid "Copy"
msgstr ""
#. +> plasma5lts
#: contents/ui/Header.qml:56
#, kde-format
msgid "Rescan wireless networks"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/Header.qml:87
#, kde-format
msgid "Available connections"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/main.qml:34
#, kde-format
msgid "Networks"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/main.qml:54
#, kde-format
msgid "&Configure Network Connections..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/PasswordField.qml:31
#, kde-format
msgid "Password..."
msgstr ""
#. +> trunk5 stable5
#: contents/ui/Toolbar.qml:69
#, kde-format
msgid "Enable wireless"
msgstr ""
#. +> trunk5 stable5
#: contents/ui/Toolbar.qml:83
#, kde-format
msgid "Enable mobile network"
msgstr ""
#. +> trunk5 stable5
#: contents/ui/Toolbar.qml:98
#, kde-format
msgid "Enable airplane mode"
msgstr ""
#. +> trunk5 stable5 plasma5lts
#: contents/ui/Toolbar.qml:124
#, kde-format
msgid "Configure network connections..."
msgstr ""
#. +> trunk5 stable5 plasma5lts
-#: contents/ui/TrafficMonitor.qml:66
+#: contents/ui/TrafficMonitor.qml:67
#, kde-format
msgid "Download"
msgstr ""
#. +> trunk5 stable5 plasma5lts
-#: contents/ui/TrafficMonitor.qml:71
+#: contents/ui/TrafficMonitor.qml:72
#, kde-format
msgid "Upload"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdeedu/cantor.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdeedu/cantor.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdeedu/cantor.pot (revision 1509808)
@@ -1,3328 +1,3328 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-29 09:11+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: animationresultitem.cpp:56
#, kde-format
msgid "Pause"
msgstr ""
#. +> trunk5 stable5
#: animationresultitem.cpp:59
#, kde-format
msgid "Start"
msgstr ""
#. +> trunk5 stable5
#: animationresultitem.cpp:63
#, kde-format
msgid "Stop"
msgstr ""
#. +> trunk5 stable5
#: animationresultitem.cpp:132 imageresultitem.cpp:90 resultitem.cpp:78
#: textresultitem.cpp:156
#, kde-format
msgid "Save result"
msgstr ""
#. +> trunk5 stable5
#: assistants/advancedplot/advancedplotassistant.cpp:49
#, kde-format
msgid "Advanced Plotting"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: assistants/advancedplot/advancedplotdialog.ui:24
#: backends/qalculate/plotassistant/qalculateplotassistant.cpp:43
#, kde-format
msgid "Plot"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: assistants/advancedplot/advancedplotdialog.ui:33
#: assistants/differentiate/differentiatedlg.ui:19
#: assistants/integrate/integratedlg.ui:19 assistants/plot2d/plot2ddlg.ui:19
#: assistants/plot3d/plot3ddlg.ui:17
#, kde-format
msgid "Expression:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: assistants/advancedplot/advancedplotdialog.ui:45
#, kde-format
msgid "Additional options:"
msgstr ""
#. i18n: ectx: Menu (Plot)
#. +> trunk5 stable5
#: assistants/advancedplot/cantor_advancedplot_assistant.rc:4
#: assistants/plot2d/cantor_plot2d_assistant.rc:4
#: assistants/plot3d/cantor_plot3d_assistant.rc:4
#: backends/qalculate/plotassistant/cantor_qalculateplotassistant.rc:4
#, kde-format
msgid "&Plot"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, directiveContainer)
#. +> trunk5 stable5
#: assistants/advancedplot/directivecontainer.ui:14
#, kde-format
msgid "Option active"
msgstr ""
#. i18n: ectx: Menu (calculate)
#. +> trunk5 stable5
#: assistants/differentiate/cantor_differentiate_assistant.rc:4
#: assistants/integrate/cantor_integrate_assistant.rc:4
#: assistants/solve/cantor_solve_assistant.rc:4
#, kde-format
msgid "&Calculate"
msgstr ""
#. +> trunk5 stable5
#: assistants/differentiate/differentiateassistant.cpp:48
#, kde-format
msgid "Differentiate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: assistants/differentiate/differentiatedlg.ui:29
#: assistants/integrate/integratedlg.ui:29
#, kde-format
msgid "Variable:"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, xVarEdit)
#. i18n: ectx: property (text), widget (KLineEdit, variable)
#. +> trunk5 stable5
#: assistants/differentiate/differentiatedlg.ui:36
#: assistants/integrate/integratedlg.ui:36
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:123
#, kde-format
msgid "x"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: assistants/differentiate/differentiatedlg.ui:47
#, kde-format
msgid "Times: "
msgstr ""
#. i18n: ectx: Menu (import_package)
#. +> trunk5 stable5
#: assistants/importpackage/cantor_import_package_assistant.rc:4
#, kde-format
msgid "&Package"
msgstr ""
#. +> trunk5 stable5
#: assistants/importpackage/importpackageassistant.cpp:48
#, kde-format
msgid "Import Package"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: assistants/importpackage/importpackagedlg.ui:17
#, kde-format
msgid "Package:"
msgstr ""
#. +> trunk5 stable5
#: assistants/integrate/integrateassistant.cpp:48
#, kde-format
msgid "Integrate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: assistants/integrate/integratedlg.ui:49
#, kde-format
msgid "Lower limit:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: assistants/integrate/integratedlg.ui:63
#, kde-format
msgid "Upper limit:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, isDefinite)
#. +> trunk5 stable5
#: assistants/integrate/integratedlg.ui:77
#, kde-format
msgid "definite integral"
msgstr ""
#. i18n: ectx: Menu (linear_algebra)
#. +> trunk5 stable5
#: assistants/linearalgebra/creatematrix/cantor_create_matrix_assistant.rc:4
#: assistants/linearalgebra/eigenvalues/cantor_eigenvalues_assistant.rc:4
#: assistants/linearalgebra/eigenvectors/cantor_eigenvectors_assistant.rc:4
#: assistants/linearalgebra/invertmatrix/cantor_invert_matrix_assistant.rc:4
#, kde-format
msgid "&Linear Algebra"
msgstr ""
#. +> trunk5 stable5
#: assistants/linearalgebra/creatematrix/creatematrixassistant.cpp:46
#, kde-format
msgid "Create Matrix"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: assistants/linearalgebra/creatematrix/creatematrixdlg.ui:19
#, kde-format
msgid "Columns:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: assistants/linearalgebra/creatematrix/creatematrixdlg.ui:37
#, kde-format
msgid "Rows:"
msgstr ""
#. +> trunk5 stable5
#: assistants/linearalgebra/eigenvalues/eigenvaluesassistant.cpp:47
#, kde-format
msgid "Compute Eigenvalues"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: assistants/linearalgebra/eigenvalues/eigenvaluesdlg.ui:17
#: assistants/linearalgebra/eigenvectors/eigenvectorsdlg.ui:17
#: assistants/linearalgebra/invertmatrix/invertmatrixdlg.ui:17
#, kde-format
msgid "Matrix:"
msgstr ""
#. +> trunk5 stable5
#: assistants/linearalgebra/eigenvectors/eigenvectorsassistant.cpp:46
#, kde-format
msgid "Compute Eigenvectors"
msgstr ""
#. +> trunk5 stable5
#: assistants/linearalgebra/invertmatrix/invertmatrixassistant.cpp:47
#, kde-format
msgid "Invert Matrix"
msgstr ""
#. +> trunk5 stable5
#: assistants/plot2d/plot2dassistant.cpp:47
#, kde-format
msgid "Plot 2D"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: assistants/plot2d/plot2ddlg.ui:31
#, kde-format
msgid "Variable"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: assistants/plot2d/plot2ddlg.ui:43 assistants/plot3d/plot3ddlg.ui:41
#: assistants/plot3d/plot3ddlg.ui:86
#, kde-format
msgid "Name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: assistants/plot2d/plot2ddlg.ui:53 assistants/plot3d/plot3ddlg.ui:51
#: assistants/plot3d/plot3ddlg.ui:96
#, kde-format
msgid "Minimum:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: assistants/plot2d/plot2ddlg.ui:63 assistants/plot3d/plot3ddlg.ui:61
#: assistants/plot3d/plot3ddlg.ui:106
#, kde-format
msgid "Maximum:"
msgstr ""
#. +> trunk5 stable5
#: assistants/plot3d/plot3dassistant.cpp:47
#, kde-format
msgid "Plot 3D"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: assistants/plot3d/plot3ddlg.ui:29
#, kde-format
msgid "1st Variable"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: assistants/plot3d/plot3ddlg.ui:74
#, kde-format
msgid "2nd Variable"
msgstr ""
#. +> trunk5 stable5
#: assistants/runscript/runscriptassistant.cpp:48 scripteditorwidget.cpp:55
#, kde-format
msgid "Run Script"
msgstr ""
#. +> trunk5 stable5
#: assistants/solve/solveassistant.cpp:48
#, kde-format
msgid "Solve equations"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: assistants/solve/solvedlg.ui:19
#, kde-format
msgid "Equations:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: assistants/solve/solvedlg.ui:33
#, kde-format
msgid "Variables:"
msgstr ""
#. +> trunk5 stable5
#: backendchoosedialog.cpp:31
#, kde-format
msgid ""
"<h1>%1</h1>"
"<div><b>Recommended version:</b> %4</div><br/>"
"<div>%2</div><br/>"
"<div>See <a href=\"%3\">%3</a> for more information</div>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backendchooser.ui:29
#, kde-format
msgid "Choose the Backend to use:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, makeDefault)
#. +> trunk5 stable5
#: backendchooser.ui:59
#, kde-format
msgid "Make this the default backend"
msgstr ""
#. +> trunk5 stable5
#: backends/julia/juliabackend.cpp:66
#, kde-format
msgid "<p><b>Julia</b> is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users of other technical computing environments. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.</p>"
msgstr ""
#. +> trunk5 stable5
#: backends/julia/juliabackend.cpp:79
#, kde-format
msgctxt "The url to the documentation of Julia, please check if there is a translated version and use the correct url"
msgid "http://docs.julialang.org/en/latest/"
msgstr ""
#. i18n: ectx: label, entry (replPath), group (JuliaBackend)
#. +> trunk5 stable5
#: backends/julia/juliabackend.kcfg:10
#, kde-format
msgid "Path to the Julia native REPL"
msgstr ""
#. i18n: ectx: label, entry (integratePlots), group (RBackend)
#. i18n: ectx: label, entry (integratePlots), group (MaximaBackend)
#. i18n: ectx: label, entry (integratePlots), group (ScilabBackend)
#. i18n: ectx: label, entry (integratePlots), group (JuliaBackend)
#. i18n: ectx: label, entry (integratePlots), group (OctaveBackend)
#. i18n: ectx: label, entry (integratePlots), group (Python2Backend)
#. i18n: ectx: label, entry (integratePlots), group (Python3Backend)
#. +> trunk5 stable5
#: backends/julia/juliabackend.kcfg:16 backends/maxima/maximabackend.kcfg:14
#: backends/octave/octavebackend.kcfg:14
#: backends/python2/python2backend.kcfg:9
#: backends/python3/python3backend.kcfg:9 backends/R/rserver/rserver.kcfg:9
#: backends/scilab/scilabbackend.kcfg:14
#, kde-format
msgid "Integrate Plots into the Worksheet"
msgstr ""
#. +> trunk5 stable5
#: backends/julia/juliaextensions.cpp:213
#, kde-format
msgid "Julia script file (*.jl)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/julia/settings.ui:24
#, kde-format
msgid "Path to Julia REPL:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_integratePlots)
#. +> trunk5 stable5
#: backends/julia/settings.ui:36
#, kde-format
msgid "Integrate Plots in Worksheet (start a new session when changed)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: backends/julia/settings.ui:45
#, kde-format
msgid "Inline Plots Intermediate Format:"
msgstr ""
#. +> trunk5 stable5
#: backends/kalgebra/kalgebrabackend.cpp:74
#, kde-format
msgctxt "the url to the documentation of KAlgebra, please check if there is a translated version and use the correct url"
msgid "http://docs.kde.org/stable/en/kdeedu/kalgebra/"
msgstr ""
#. i18n: ectx: label, entry (autorunScripts), group (QalculateBackend)
#. i18n: ectx: label, entry (autorunScripts), group (RBackend)
#. i18n: ectx: label, entry (autorunScripts), group (MaximaBackend)
#. i18n: ectx: label, entry (autorunScripts), group (SageBackend)
#. i18n: ectx: label, entry (autorunScripts), group (ScilabBackend)
#. i18n: ectx: label, entry (autorunScripts), group (KAlgebraBackend)
#. i18n: ectx: label, entry (autorunScripts), group (OctaveBackend)
#. i18n: ectx: label, entry (autorunScripts), group (Python2Backend)
#. i18n: ectx: label, entry (autorunScripts), group (Python3Backend)
#. i18n: ectx: label, entry (autorunScripts), group (LuaBackend)
#. +> trunk5 stable5
#: backends/kalgebra/kalgebrabackend.kcfg:9 backends/lua/luabackend.kcfg:14
#: backends/maxima/maximabackend.kcfg:22 backends/octave/octavebackend.kcfg:18
#: backends/python2/python2backend.kcfg:13
#: backends/python3/python3backend.kcfg:13
#: backends/qalculate/qalculatebackend.kcfg:130
#: backends/R/rserver/rserver.kcfg:13 backends/sage/sagebackend.kcfg:14
#: backends/scilab/scilabbackend.kcfg:18
#, kde-format
msgid "List of scripts to autorun at the beginning of session"
msgstr ""
#. +> trunk5 stable5
#: backends/kalgebra/kalgebraexpression.cpp:59
#, kde-format
msgid "Error: %1"
msgstr ""
#. +> trunk5 stable5
#: backends/kalgebra/kalgebrasyntaxhelpobject.cpp:39
#, kde-format
msgid "<p><b>%1:</b> %2</p>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_scriptGroup)
#. +> trunk5 stable5
#: backends/kalgebra/settings.ui:17 backends/lua/settings.ui:31
#: backends/maxima/settings.ui:48 backends/octave/settings.ui:38
#: backends/python/settings.ui:24 backends/qalculate/settings.ui:183
#: backends/R/settings.ui:24 backends/sage/settings.ui:31
#: backends/scilab/settings.ui:38
#, kde-format
msgid "Scripts to autorun"
msgstr ""
#. +> trunk5 stable5
#: backends/lua/luabackend.cpp:72
#, kde-format
msgctxt "Lua official documentation"
msgid "http://www.lua.org/docs.html"
msgstr ""
#. +> trunk5 stable5
#: backends/lua/luabackend.cpp:77
#, kde-format
msgid ""
"<p> Lua is a fast and lightweight scripting language, with a simple procedural syntax. There are several libraries in Lua aimed at math and science.</p>"
"<p>This backend supports luajit 2.</p>"
msgstr ""
#. i18n: ectx: label, entry (Path), group (LuaBackend)
#. +> trunk5 stable5
#: backends/lua/luabackend.kcfg:10
#, kde-format
msgid "Path to luajit command"
msgstr ""
#. +> trunk5 stable5
#: backends/lua/luaextensions.cpp:36
#, kde-format
msgid "Lua script file (*.lua)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/lua/settings.ui:19
#, kde-format
msgid "Path to luajit command:"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximabackend.cpp:94
#, kde-format
msgctxt "the url to the documentation of Maxima, please check if there is a translated version and use the correct url"
msgid "http://maxima.sourceforge.net/docs/manual/en/maxima.html"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximabackend.cpp:112
#, kde-format
msgid "Maxima is a system for the manipulation of symbolic and numerical expressions, including differentiation, integration, Taylor series, Laplace transforms, ordinary differential equations, systems of linear equations, polynomials, and sets, lists, vectors, matrices, and tensors. Maxima yields high precision numeric results by using exact fractions, arbitrary precision integers, and variable precision floating point numbers. Maxima can plot functions and data in two and three dimensions. "
msgstr ""
#. i18n: ectx: label, entry (Path), group (MaximaBackend)
#. +> trunk5 stable5
#: backends/maxima/maximabackend.kcfg:10
#, kde-format
msgid "Path to the Maxima executable"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_variableManagement)
#. i18n: ectx: label, entry (variableManagement), group (MaximaBackend)
#. +> trunk5 stable5
#: backends/maxima/maximabackend.kcfg:18 backends/maxima/settings.ui:41
#, kde-format
msgid "Enable Variable Management"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximaexpression.cpp:103
#, kde-format
msgid "Error: Too many */"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximaexpression.cpp:116
#, kde-format
msgid "Error: Too many /*"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximaexpression.cpp:122
#, kde-format
msgid "Error: expected \" before ;"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximaexpression.cpp:593
#, kde-format
msgid "Waiting for Image..."
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximaextensions.cpp:46
#, kde-format
msgid "Maxima batch file (*.mac)"
msgstr ""
#. +> trunk5 stable5
-#: backends/maxima/maximasession.cpp:209
+#: backends/maxima/maximasession.cpp:197
#, kde-format
msgid "Failed to start Maxima"
msgstr ""
#. +> trunk5 stable5
-#: backends/maxima/maximasession.cpp:316
+#: backends/maxima/maximasession.cpp:304
#, kde-format
msgid "Maxima crashed. restarting..."
msgstr ""
#. +> trunk5 stable5
-#: backends/maxima/maximasession.cpp:330
+#: backends/maxima/maximasession.cpp:318
#, kde-format
msgid "Maxima crashed twice within a short time. Stopping to try starting"
msgstr ""
#. +> trunk5 stable5
-#: backends/maxima/maximasession.cpp:330 cantor_part.cpp:144
+#: backends/maxima/maximasession.cpp:318 cantor_part.cpp:144
#: cantor_part.cpp:848 worksheet.cpp:828 worksheet.cpp:853 worksheet.cpp:870
#: worksheet.cpp:906 worksheet.cpp:918
#, kde-format
msgid "Error - Cantor"
msgstr ""
#. +> trunk5 stable5
#: backends/maxima/maximavariablemodel.cpp:223
#, kde-format
msgid "function"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/maxima/settings.ui:19
#, kde-format
msgid "Path to Maxima:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_integratePlots)
#. +> trunk5 stable5
#: backends/maxima/settings.ui:31 backends/octave/settings.ui:31
#: backends/python/settings.ui:17 backends/R/settings.ui:17
#: backends/scilab/settings.ui:31
#, kde-format
msgid "Integrate Plots in Worksheet"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_variableManagement)
#. +> trunk5 stable5
#: backends/maxima/settings.ui:38
#, kde-format
msgid "Let Cantor follow the creation/destruction of variables"
msgstr ""
#. +> trunk5 stable5
#: backends/octave/octavebackend.cpp:77
#, kde-format
msgctxt "the url to the documentation of Octave, please check if there is a translated version (currently Czech and Japanese) and use the correct url"
msgid "http://www.gnu.org/software/octave/doc/interpreter/"
msgstr ""
#. +> trunk5 stable5
#: backends/octave/octavebackend.cpp:82
#, kde-format
msgid ""
"GNU Octave is a high-level language, primarily intended for numerical computations. <br/>"
"It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab."
msgstr ""
#. i18n: ectx: label, entry (Path), group (OctaveBackend)
#. +> trunk5 stable5
#: backends/octave/octavebackend.kcfg:10
#, kde-format
msgid "Path to the Octave executable"
msgstr ""
#. +> trunk5 stable5
#: backends/octave/octaveextensions.cpp:47
#, kde-format
msgid "Octave script file (*.m)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/octave/settings.ui:19
#, kde-format
msgid "Path to Octave:"
msgstr ""
#. +> trunk5 stable5
#: backends/python/pythonextensions.cpp:185
#, kde-format
msgid "Python script file (*.py)"
msgstr ""
#. +> trunk5 stable5
#: backends/python2/python2backend.cpp:58
#, kde-format
msgctxt "the url to the documentation Python 2"
msgid "http://docs.python.org/2/"
msgstr ""
#. +> trunk5 stable5
#: backends/python2/python2backend.cpp:63
#, kde-format
msgid ""
"<p>Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. There are several Python packages to scientific programming.</p>"
"<p>This backend supports Python 2.</p>"
msgstr ""
#. +> trunk5 stable5
#: backends/python3/python3backend.cpp:51
#, kde-format
msgctxt "the url to the documentation Python 3"
msgid "http://docs.python.org/3/"
msgstr ""
#. +> trunk5 stable5
#: backends/python3/python3backend.cpp:56
#, kde-format
msgid ""
"<p>Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. There are several Python packages to scientific programming.</p>"
"<p>This backend supports Python 3.</p>"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, QalculatePlotAssistantBase)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:14
#, kde-format
msgid "Cantor - Plot Dialog"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:24
#, kde-format
msgid "Functions"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, functionTable)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:40
#, kde-format
msgid "Title"
msgstr ""
#. i18n: ectx: property (text), widget (QTableWidget, functionTable)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:45
#, kde-format
msgid "Expression"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addButton)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:72
#, kde-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:82
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, clearButton)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:92
#, kde-format
msgid "Clear List"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:107
#, kde-format
msgid "X variable"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:134
#, kde-format
msgid "Style"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:145
#: backends/qalculate/settings.ui:509
#, kde-format
msgid "Lines"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:150
#: backends/qalculate/settings.ui:514
#, kde-format
msgid "Points"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:155
#: backends/qalculate/settings.ui:519
#, kde-format
msgid "Points and Lines"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:160
#: backends/qalculate/settings.ui:524
#, kde-format
msgid "Boxes"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:165
#: backends/qalculate/settings.ui:529
#, kde-format
msgid "Histogram"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:170
#, kde-format
msgid "Steps"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:175
#: backends/qalculate/settings.ui:539
#, kde-format
msgid "Candlesticks"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. i18n: ectx: property (text), item, widget (KComboBox, styleBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:180
#: backends/qalculate/settings.ui:544
#, kde-format
msgid "Dots"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:192
#, kde-format
msgid "Smoothing"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_minExp)
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_angleUnit)
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_structuring)
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotSmoothing)
#. i18n: ectx: property (text), item, widget (KComboBox, smoothingBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:203
#: backends/qalculate/settings.ui:95 backends/qalculate/settings.ui:249
#: backends/qalculate/settings.ui:287 backends/qalculate/settings.ui:466
#, kde-format
msgid "None"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotSmoothing)
#. i18n: ectx: property (text), item, widget (KComboBox, smoothingBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:208
#: backends/qalculate/settings.ui:471
#, kde-format
msgid "Monotonic"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, smoothingBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:213
#, kde-format
msgid "Natural Cubic Splines"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotSmoothing)
#. i18n: ectx: property (text), item, widget (KComboBox, smoothingBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:218
#: backends/qalculate/settings.ui:481
#, kde-format
msgid "Bezier"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotSmoothing)
#. i18n: ectx: property (text), item, widget (KComboBox, smoothingBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:223
#: backends/qalculate/settings.ui:486
#, kde-format
msgid "Bezier (monotonic)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:233
#, kde-format
msgid "Function Range"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:239
#, kde-format
msgid "X range"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, xMinEdit)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:254
#, kde-format
msgid "0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:261
#, kde-format
msgid "-"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, xMaxEdit)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:274
#, kde-format
msgid "10"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, stepsButton)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:283
#, kde-format
msgid "Sa&mpling rate"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, stepButton)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:293
#, kde-format
msgid "Step si&ze"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:324
#, kde-format
msgid "Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_19)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:332
#, kde-format
msgid "Plot title"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_20)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:353
#, kde-format
msgid "X-axis label"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:374
#, kde-format
msgid "Y-axis label"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_22)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:395
#, kde-format
msgid "Legend position"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:403
#: backends/qalculate/settings.ui:567
#, kde-format
msgid "Hide legend"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:408
#: backends/qalculate/settings.ui:572
#, kde-format
msgid "Top-left"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:413
#: backends/qalculate/settings.ui:577
#, kde-format
msgid "Top-right"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:418
#: backends/qalculate/settings.ui:582
#, kde-format
msgid "Bottom-left"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:423
#: backends/qalculate/settings.ui:587
#, kde-format
msgid "Bottom-right"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:428
#: backends/qalculate/settings.ui:592
#, kde-format
msgid "Below"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotLegend)
#. i18n: ectx: property (text), item, widget (KComboBox, legendBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:433
#: backends/qalculate/settings.ui:597
#, kde-format
msgid "Outside"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, gridCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:445
#, kde-format
msgid "Display Grid"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, borderCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:452
#, kde-format
msgid "Display full border"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, colorCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:463
#, kde-format
msgid "Use Colors"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, inlineCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:470
#, kde-format
msgid "Display inline"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, xLogCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:481
#, kde-format
msgid "Logarithmic x scale"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, yLogCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:502
#, kde-format
msgid "Logarithmic y scale"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:521
#, kde-format
msgid "File Options"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, saveCheckBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:527
#, kde-format
msgid "Save plot to file"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_23)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:547
#, kde-format
msgid "File type"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:555
#, kde-format
msgid "Detect from filename"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:560
#, kde-format
msgid "PNG"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:565
#, kde-format
msgid "PS"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:570
#, kde-format
msgid "EPS"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:575
#, kde-format
msgid "LaTeX"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:580
#, kde-format
msgid "SVG"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, saveFileBox)
#. +> trunk5 stable5
#: backends/qalculate/plotassistant/qalculateplotdialog.ui:585
#, kde-format
msgid "FIG"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.cpp:73
#, kde-format
msgid "Qalculate! is not your regular software replication of the cheapest available calculator. Qalculate! aims to make full use of the superior interface, power and flexibility of modern computers. The center of attention in Qalculate! is the expression entry. Instead of entering each number in a mathematical expression separately, you can directly write the whole expression and later modify it. The interpretation of expressions is flexible and fault tolerant, and if you nevertheless do something wrong, Qalculate! will tell you so. Not fully solvable expressions are however not errors. Qalculate! will simplify as far as it can and answer with an expression. In addition to numbers and arithmetic operators, an expression may contain any combination of variables, units, and functions."
msgstr ""
#. i18n: ectx: label, entry (postConversion), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:9
#, kde-format
msgid "If and how units will be automatically converted. If true, convert to the best suited SI units (the least amount of units)."
msgstr ""
#. i18n: ectx: label, entry (angleUnit), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:13
#, kde-format
msgid "Default angle unit for trigonometric functions."
msgstr ""
#. i18n: ectx: label, entry (base), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:23
#, kde-format
msgid "Base of parsed and evaluated numbers."
msgstr ""
#. i18n: ectx: label, entry (structuring), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:32
#, kde-format
msgid "If the evaluation result will be simplified or factorized."
msgstr ""
#. i18n: ectx: label, entry (fractionFormat), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:42
#, kde-format
msgid "If rational numbers will be displayed with decimals, as a fraction, or something in between."
msgstr ""
#. i18n: ectx: label, entry (indicateInfiniteSeries), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:46
#, kde-format
msgid "Show that the digit series of a number continues forever with three dots, instead of rounding (ex. 2/3 displays as 0.666666... instead of 0.666667)."
msgstr ""
#. i18n: ectx: label, entry (useAllPrefixes), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:50
#, kde-format
msgid "Use all decimal SI prefixes. If false, prefixes which is not a multiple of thousand (centi, deci, deca, hecto) will not be used automatically."
msgstr ""
#. i18n: ectx: label, entry (negativeExponents), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:54
#, kde-format
msgid "If true, negative exponents will be used instead of division (ex. 5/x^2 becomes 5*x^-2)."
msgstr ""
#. i18n: ectx: label, entry (minExp), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:64
#, kde-format
msgid "Numerical display."
msgstr ""
#. i18n: ectx: label, entry (inlinePlot), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:68
#, kde-format
msgid "If true, plots will be displayed inside the worksheet. If not they appear in a separate window."
msgstr ""
#. i18n: ectx: label, entry (coloredPlot), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:72
#, kde-format
msgid "Whether colors should be used in plots."
msgstr ""
#. i18n: ectx: label, entry (plotGrid), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:76
#, kde-format
msgid "Whether a grid should be plotted."
msgstr ""
#. i18n: ectx: label, entry (plotBorder), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:80
#, kde-format
msgid "Whether full borders should be drawn around the plot."
msgstr ""
#. i18n: ectx: label, entry (plotLineWidth), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:84
#, kde-format
msgid "Width of lines, in pixels."
msgstr ""
#. i18n: ectx: label, entry (plotSteps), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:88
#, kde-format
msgid "Number of interpolation steps to be used in plotting."
msgstr ""
#. i18n: ectx: label, entry (plotSmoothing), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:99
#, kde-format
msgid "Smoothing mode in plots."
msgstr ""
#. i18n: ectx: label, entry (plotStyle), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:113
#, kde-format
msgid "Style of plots."
msgstr ""
#. i18n: ectx: label, entry (plotLegend), group (QalculateBackend)
#. +> trunk5 stable5
#: backends/qalculate/qalculatebackend.kcfg:126
#, kde-format
msgid "Legend position in plots."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:140
#, kde-format
msgid "Usage: saveVariables file"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:169
#, kde-format
msgid "Saving failed."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:181
#, kde-format
msgid "Usage: loadVariables file"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:192
#, kde-format
msgid "Loading failed."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:233
#: backends/qalculate/qalculateexpression.cpp:282
#, kde-format
msgid "missing %1"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:261
#, kde-format
msgid "Qalculate reports it cannot print. Is gnuplot installed?"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:372
#, kde-format
msgid "%1 must be a number."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:373
#, kde-format
msgid "%1 must be a integer."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:374
#, kde-format
msgid "%1 must be a boolean."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:375
#, kde-format
msgid "invalid option for %1: %2"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:702
#, kde-format
msgid "found multiple expressions in one plot command (%1 and %2)."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:802
#: backends/qalculate/qalculateexpression.cpp:909
#: backends/qalculate/qalculatehighlighter.cpp:44
#, kde-format
msgid "ERROR"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculateexpression.cpp:804
#: backends/qalculate/qalculateexpression.cpp:911
#: backends/qalculate/qalculatehighlighter.cpp:44
#, kde-format
msgid "WARNING"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:58
#, kde-format
msgid "No function, variable or unit with specified name exist."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:65
#, kde-format
msgid "Function: %1"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:150
#, kde-format
msgid "Plotting interface"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:151
#, kde-format
msgid "Plots one or more functions either inline or in a separate window."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:152
#, kde-format
msgid "expression"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:153
#, kde-format
msgid "option"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:154
#, kde-format
msgid "value"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:158
#, kde-format
msgid "integer"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:159
#, kde-format
msgid "boolean"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:160
#, kde-format
msgid "number"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:161
#, kde-format
msgid "default: %1"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:221
#, kde-format
msgid "The function's name"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:223
#, kde-format
msgid "Title label"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:224
#, kde-format
msgid "x-axis label"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:225
#, kde-format
msgid "y-axis label"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:226
#, kde-format
msgid "Image to save plot to. If empty shows plot in a window on the screen. If inline=true the image is shown regardless of this option."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:227
#, kde-format
msgid "The image type to save as. One of auto, png, ps, eps, latex, svg, fig."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:228
#, kde-format
msgid "Set to true for colored plot, false for monochrome."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:229
#, kde-format
msgid "Minimum x-axis value."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:230
#, kde-format
msgid "Maximum x-axis value."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:231
#, kde-format
msgid "If a logarithmic scale shall be used for the x-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:232
#, kde-format
msgid "If a logarithmic scale shall be used for the y-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:233
#, kde-format
msgid "Logarithmic base for the x-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:234
#, kde-format
msgid "Logarithmic base for the y-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:235
#, kde-format
msgid "If a grid shall be shown in the plot."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:236
#, kde-format
msgid "If the plot shall be surrounded by borders on all sides (not just axis)."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:237
#, kde-format
msgid "Width of lines."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:238
#, kde-format
msgid "Where the plot legend shall be placed. One of none, top_left, top_right, bottom_left, bottom_right, below, outside"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:239
#, kde-format
msgid "Plot smoothing. One of none, unique, csplines, bezier, sbezier"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:240
#, kde-format
msgid "Plot style. One of lines, points, points_lines, boxes, histogram, steps, candlesticks, dots"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:241
#, kde-format
msgid "Use scale on second x-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:242
#, kde-format
msgid "Use scale on second y-axis."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:243
#, kde-format
msgid "If the plot is to be drawn inline, instead of in a new window."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:244
#, kde-format
msgid "Distance between two interpolation points. See also steps."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:245
#, kde-format
msgid "Number of interpolation points. See also step."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:246
#, kde-format
msgid "The name of the x variable. This must be an unknown variable"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:255
#, kde-format
msgid "Save variables to a file"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:256
#, kde-format
msgid "Save all currently defined variables to a file. They can be reloaded with %1."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:257
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:266
#, kde-format
msgid "file"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:258
#, kde-format
msgid "file: the file to save to"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:264
#, kde-format
msgid "Load variables from a file"
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:265
#, kde-format
msgid "Load variables from a file that has previously been created by %1."
msgstr ""
#. +> trunk5 stable5
#: backends/qalculate/qalculatesyntaxhelpobject.cpp:267
#, kde-format
msgid "file: the file to load"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:21 cantor.cpp:444
#, kde-format
msgid "General"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:29
#, kde-format
msgid "Number base:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:46
#, kde-format
msgid "Fraction format:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_fractionFormat)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:57
#, kde-format
msgid "Decimal"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_fractionFormat)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:62
#, kde-format
msgid "Exact"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_fractionFormat)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:67
#, kde-format
msgid "Fractional"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_fractionFormat)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:72
#, kde-format
msgid "Combined"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_9)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:84
#, kde-format
msgid "Numerical display:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_minExp)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:100
#, kde-format
msgid "Pure"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_minExp)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:105
#, kde-format
msgid "Scientific"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_minExp)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:110
#, kde-format
msgid "Precision"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:122
#, kde-format
msgid "Indicate infinite series:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_indicateInfiniteSeries)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_useAllPrefixes)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_negativeExponents)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_postConversion)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_inlinePlot)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_coloredPlot)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_plotGrid)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_plotBorder)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:132 backends/qalculate/settings.ui:153
#: backends/qalculate/settings.ui:174 backends/qalculate/settings.ui:227
#: backends/qalculate/settings.ui:339 backends/qalculate/settings.ui:360
#: backends/qalculate/settings.ui:381 backends/qalculate/settings.ui:402
#, kde-format
msgid "Enabled"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:143
#, kde-format
msgid "Use all SI prefixes:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_8)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:164
#, kde-format
msgid "Use negative exponents:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:209
#, kde-format
msgid "Evaluate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:217
#, kde-format
msgid "Convert to best SI units:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:238
#, kde-format
msgid "Angle unit:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_angleUnit)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:254
#, kde-format
msgid "Radians"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_angleUnit)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:259
#, kde-format
msgid "Degrees"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_angleUnit)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:264
#, kde-format
msgid "Gradians"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:276
#, kde-format
msgid "Structuring Mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_structuring)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:292
#, kde-format
msgid "Simplify"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_structuring)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:297
#, kde-format
msgid "Factorize"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:321
#, kde-format
msgid "Plotting"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_10)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:329
#, kde-format
msgid "Display plots inline:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_15)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:350
#, kde-format
msgid "Colored Plots:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:371
#, kde-format
msgid "Show grid:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_12)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:392
#, kde-format
msgid "Show full borders:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_17)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:413
#, kde-format
msgid "Width of lines:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_18)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:434
#, kde-format
msgid "Sampling rate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_13)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:455
#, kde-format
msgid "Smoothing Mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotSmoothing)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:476
#, kde-format
msgid "Natural cubic Splines"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_14)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:498
#, kde-format
msgid "Plot Style:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_plotStyle)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:534
#, kde-format
msgctxt "Plot Style"
msgid "Steps"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_16)
#. +> trunk5 stable5
#: backends/qalculate/settings.ui:556
#, kde-format
msgid "Legend Position:"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rbackend.cpp:91
#, kde-format
msgctxt "the url to the documentation of R, please check if there is a translated version and use the correct url"
msgid "http://rwiki.sciviews.org/doku.php?id=rdoc:rdoc"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rbackend.cpp:96
#, kde-format
msgid ""
"R is a language and environment for statistical computing and graphics, similar to the S language and environment. <br/>"
"It provides a wide variety of statistical (linear and nonlinear modelling, classical statistical tests, time-series analysis, classification, clustering, ...) and graphical techniques, and is highly extensible. The S language is often the vehicle of choice for research in statistical methodology, and R provides an Open Source route to participation in that activity."
msgstr ""
#. +> trunk5 stable5
#: backends/R/rexpression.cpp:116 backends/R/rexpression.cpp:117
#, kde-format
msgid "Error opening file %1"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rexpression.cpp:145 backends/R/rexpression.cpp:146
#, kde-format
msgid "cannot open file %1: Unknown MimeType"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rextensions.cpp:42
#, kde-format
msgid "R script file (*.R)"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rserver/main.cpp:30
#, kde-format
msgid "Server for the Cantor R Backend"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rserver/main.cpp:40
#, kde-format
msgid "R Server"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rserver/main.cpp:47
#, kde-format
msgid "(C) 2009 Alexander Rieder"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rserver/main.cpp:51 cantor_part.cpp:414 main.cpp:78
#, kde-format
msgid "Alexander Rieder"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rserver/rserver.cpp:403
#, kde-format
msgid "Error Parsing Command"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rsettingswidget.cpp:33
#, kde-format
msgid "Double click to open file selection dialog"
msgstr ""
#. +> trunk5 stable5
#: backends/R/rsettingswidget.cpp:53
#, kde-format
msgid "*.R *.r|R source files (*.R, *.r)"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagebackend.cpp:99
#, kde-format
msgctxt "the url to the documentation of Sage, please check if there is a translated version and use the correct url"
msgid "http://www.sagemath.org/doc/reference/index.html"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagebackend.cpp:104
#, kde-format
msgid ""
"Sage is a free open-source mathematics software system licensed under the GPL. <br/>"
"It combines the power of many existing open-source packages into a common Python-based interface."
msgstr ""
#. i18n: ectx: label, entry (Path), group (SageBackend)
#. +> trunk5 stable5
#: backends/sage/sagebackend.kcfg:10
#, kde-format
msgid "Path to the Sage executable"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sageexpression.cpp:135
#, kde-format
msgid "Syntax Error"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sageexpression.cpp:225 backends/sage/sageexpression.cpp:227
#, kde-format
msgid "Result of %1"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sageexpression.cpp:234
#, kde-format
msgid ""
"%1\n"
"The last output was: \n"
" %2"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sageextensions.cpp:47
#, kde-format
msgid "Python script file (*.py);;Sage script file (*.sage)"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:308
#, kde-format
msgid "The Sage process crashed while evaluating this expression"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:312 backends/sage/sagesession.cpp:322
#: cantor.cpp:168 cantor.cpp:169 main.cpp:64 worksheet.cpp:970
#: worksheet.cpp:978
#, kde-format
msgid "Cantor"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:312
#, kde-format
msgid "The Sage process crashed"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:318
#, kde-format
msgid "The Sage process exited while evaluating this expression"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:322
#, kde-format
msgid "The Sage process exited"
msgstr ""
#. +> trunk5 stable5
#: backends/sage/sagesession.cpp:332
#, kde-format
msgid "Failed to start Sage"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/sage/settings.ui:19
#, kde-format
msgid "Path to Sage:"
msgstr ""
#. +> trunk5 stable5
#: backends/scilab/scilabbackend.cpp:96
#, kde-format
msgctxt "the url to the documentation of Scilab, please check if there is a translated version and use the correct url"
msgid "http://www.scilab.org/support/documentation"
msgstr ""
#. +> trunk5 stable5
#: backends/scilab/scilabbackend.cpp:101
#, kde-format
msgid ""
"<p>Scilab is a free software, cross-platform numerical computational package and a high-level, numerically oriented programming language.</p>"
"Scilab is distributed under CeCILL license (GPL compatible)"
msgstr ""
#. i18n: ectx: label, entry (Path), group (ScilabBackend)
#. +> trunk5 stable5
#: backends/scilab/scilabbackend.kcfg:10
#, kde-format
msgid "Path to scilab-adv-cli command (Warning: Scilab version must better or equal than 5.4 version)"
msgstr ""
#. +> trunk5 stable5
#: backends/scilab/scilabextensions.cpp:38
#, kde-format
msgid ";;Scilab script file (*.sce);;Scilab function file (*.sci)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: backends/scilab/settings.ui:19
#, kde-format
msgid "Path to scilab-adv-cli command:"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:124
#, kde-format
msgid "Download Example Worksheets"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:129
#, kde-format
msgid "&Open Example"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:178
#, kde-format
msgid "Open file"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:178
#, kde-format
msgid "*.cws|Cantor Worksheet"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:236
#, kde-format
msgid ""
"<h1>No Backend Found</h1>"
"\n"
"<div>You could try:\n"
" "
"<ul> "
"<li>Changing the settings in the config dialog;</li>"
" "
"<li>Installing packages for the following program:</li>"
" %2 </ul>"
" </div> "
msgid_plural ""
"<h1>No Backend Found</h1>"
"\n"
"<div>You could try:\n"
" "
"<ul> "
"<li>Changing the settings in the config dialog;</li>"
" "
"<li>Installing packages for one of the following programs:</li>"
" %2 </ul>"
" </div> "
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: cantor.cpp:256
#, kde-format
msgid "Error"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:292 cantor.cpp:294
#, kde-format
msgid "Session %1"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:308
#, kde-format
msgid "Could not find the Cantor Part."
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:397
#, kde-format
msgid "Multiple unsaved Worksheets are opened. Do you want to close them?"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:398
#, kde-format
msgid "Close Cantor"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:408
#, kde-format
msgid "The current project has been modified. Do you want to save it?"
msgstr ""
#. +> trunk5 stable5
#: cantor.cpp:409
#, kde-format
msgid "Save Project"
msgstr ""
#. i18n: ectx: label, entry (DefaultBackend), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:10
#, kde-format
msgid "The Backend that is used by default"
msgstr ""
#. i18n: ectx: label, entry (TypesetDefault), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:14
#, kde-format
msgid "Do Typesetting by default"
msgstr ""
#. i18n: ectx: label, entry (HighlightDefault), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:18
#, kde-format
msgid "Do Syntax Highlighting by default"
msgstr ""
#. i18n: ectx: label, entry (CompletionDefault), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:22
#, kde-format
msgid "Enable Completions by default"
msgstr ""
#. i18n: ectx: label, entry (ExpressionNumberingDefault), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:26
#, kde-format
msgid "Enable Numbering of Expressions by default"
msgstr ""
#. i18n: ectx: label, entry (AnimationDefault), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:30
#, kde-format
msgid "Animate changes in the Worksheet by default"
msgstr ""
#. i18n: ectx: label, entry (AutoEval), group (Cantor)
#. +> trunk5 stable5
#: cantor.kcfg:34
#, kde-format
msgid "Automatically reevaluate the entries below the current"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:144
#, kde-format
msgid "Backend %1 is not installed"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:178
#, kde-format
msgid "Save Plain Text"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:225 cantor_part.cpp:493
#, kde-format
msgid "Export to LaTeX"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:239 cantor_part.cpp:539 worksheet.cpp:1097
#, kde-format
msgid "Evaluate Worksheet"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:245
#, kde-format
msgid "Typeset using LaTeX"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:250
#, kde-format
msgid "Syntax Highlighting"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:255
#, kde-format
msgid "Completion"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:260
#, kde-format
msgid "Line Numbers"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:265
#, kde-format
msgid "Animate Worksheet"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:270
#, kde-format
msgid "Restart Backend"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:275 worksheetentry.cpp:308 worksheetentry.cpp:700
#, kde-format
msgid "Evaluate Entry"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:280 worksheet.cpp:1125
#, kde-format
msgid "Insert Command Entry"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:285 worksheet.cpp:1126
#, kde-format
msgid "Insert Text Entry"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:289
#, kde-format
msgid "Insert Latex Entry"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:293 worksheet.cpp:1129
#, kde-format
msgid "Insert Page Break"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:297 worksheet.cpp:1128
#, kde-format
msgid "Insert Image"
msgstr ""
#. i18n("Insert Command Entry Before"), actionCollection());
#. //insertCommandEntryBefore->setShortcut(Qt::CTRL + Qt::Key_Return);
#. actionCollection()->addAction("insert_command_entry_before", insertCommandEntryBefore);
#. connect(insertCommandEntryBefore, SIGNAL(triggered()), m_worksheet, SLOT(insertCommandEntryBefore()));
#.
#. QAction * insertTextEntryBefore=new QAction(i18n("Insert Text Entry Before"), actionCollection());
#. //insertTextEntryBefore->setShortcut(Qt::CTRL + Qt::Key_Return);
#. actionCollection()->addAction("insert_text_entry_before", insertTextEntryBefore);
#. connect(insertTextEntryBefore, SIGNAL(triggered()), m_worksheet, SLOT(insertTextEntryBefore()));
#.
#. QAction * insertPageBreakEntryBefore=new QAction(i18n("Insert Page Break Before"), actionCollection());
#. actionCollection()->addAction("insert_page_break_entry_before", insertPageBreakEntryBefore);
#. connect(insertPageBreakEntryBefore, SIGNAL(triggered()), m_worksheet, SLOT(insertPageBreakEntryBefore()));
#.
#. QAction * insertImageEntryBefore=new QAction(i18n("Insert Image Entry Before"), actionCollection());
#. //insertTextEntryBefore->setShortcut(Qt::CTRL + Qt::Key_Return);
#. actionCollection()->addAction("insert_image_entry_before", insertImageEntryBefore);
#. connect(insertImageEntryBefore, SIGNAL(triggered()), m_worksheet, SLOT(insertImageEntryBefore()));
#.
#. +> trunk5 stable5
#: cantor_part.cpp:323
#, kde-format
msgid "Remove current Entry"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:328 cantor_part.cpp:760
#, kde-format
msgid "Show %1 Help"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:333
#, kde-format
msgid "Publish Worksheet"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:338
#, kde-format
msgid "Show Script Editor"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:344
#, kde-format
msgid "Show Completion"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:408
#, kde-format
msgid "CantorPart"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:410
#, kde-format
msgid "(C) 2009-2015 Alexander Rieder"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:456
#, kde-format
msgid "Cantor Worksheet (*.cws)"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:468
#, kde-format
msgid "Save as"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:483 panelplugins/variablemgr/variablemanagerwidget.cpp:135
#, kde-format
msgid "Save"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:491
#, kde-format
msgid "*.tex|LaTeX Document"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:532 worksheet.cpp:1100
#, kde-format
msgid "Interrupt"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:536
#, kde-format
msgid "Calculating..."
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:543
#, kde-format
msgid "Ready"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:551
#, kde-format
msgid "Session Error: %1"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:574
#, kde-format
msgid "Initialization complete"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:579
#, kde-format
msgid "Initializing..."
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:613
#, kde-format
msgid "Unnamed"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:615
#, kde-format
msgid "%1: %2"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:766
#, kde-format
msgid "Do you want to upload current Worksheet to public web server?"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:767
#, kde-format
msgid "Question - Cantor"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:773
#, kde-format
msgid "The Worksheet is not saved. You should save it before uploading."
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:774
#, kde-format
msgid "Warning - Cantor"
msgstr ""
#. +> trunk5 stable5
#: cantor_part.cpp:848
#, kde-format
msgid "This backend does not support scripts."
msgstr ""
#. i18n: ectx: Menu (edit)
#. +> trunk5 stable5
#: cantor_part.rc:14 cantor_shell.rc:18
#, kde-format
msgid "&Edit"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5 stable5
#: cantor_part.rc:27 cantor_shell.rc:21
#, kde-format
msgid "&View"
msgstr ""
#. i18n: ectx: Menu (worksheet)
#. +> trunk5 stable5
#: cantor_part.rc:32
#, kde-format
msgid "&Worksheet"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 stable5
#: cantor_shell.rc:4
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (file_new_menu)
#. +> trunk5 stable5
#: cantor_shell.rc:6
#, kde-format
msgid "&New"
msgstr ""
#. i18n: ectx: Menu (panels)
#. +> trunk5 stable5
#: cantor_shell.rc:23
#, kde-format
msgid "Panels"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5 stable5
#: cantor_shell.rc:28
#, kde-format
msgid "&Settings"
msgstr ""
#. +> trunk5 stable5
#: commandentry.cpp:356
#, kde-format
msgid "Interrupted"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, StandardSearchBar)
#. i18n: ectx: property (windowTitle), widget (QWidget, ExtendedSearchBar)
#. +> trunk5 stable5
#: extendedsearchbar.ui:14 standardsearchbar.ui:14
#, kde-format
msgid "SearchBar"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, close)
#. i18n: ectx: property (text), widget (QToolButton, openExtended)
#. i18n: ectx: property (text), widget (QToolButton, openStandard)
#. i18n: ectx: property (text), widget (QToolButton, addFlag)
#. i18n: ectx: property (text), widget (QToolButton, removeFlag)
#. +> trunk5 stable5
#: extendedsearchbar.ui:22 extendedsearchbar.ui:77 extendedsearchbar.ui:159
#: extendedsearchbar.ui:166 standardsearchbar.ui:22 standardsearchbar.ui:86
#, kde-format
msgid "..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: extendedsearchbar.ui:47 standardsearchbar.ui:32
#, kde-format
msgid "Find:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, next)
#. +> trunk5 stable5
#: extendedsearchbar.ui:61 standardsearchbar.ui:42
#, kde-format
msgid "&Next"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, previous)
#. +> trunk5 stable5
#: extendedsearchbar.ui:68 standardsearchbar.ui:49
#, kde-format
msgid "&Previous"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: extendedsearchbar.ui:102
#, kde-format
msgid "Replace:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, replace)
#. +> trunk5 stable5
#: extendedsearchbar.ui:116
#, kde-format
msgid "&Replace"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, replaceAll)
#. +> trunk5 stable5
#: extendedsearchbar.ui:123
#, kde-format
msgid "Replace &All"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: extendedsearchbar.ui:139
#, kde-format
msgid "Search in:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, matchCase)
#. +> trunk5 stable5
#: extendedsearchbar.ui:173 standardsearchbar.ui:72
#, kde-format
msgid "&Match case"
msgstr ""
#. +> trunk5 stable5
#: imageentry.cpp:57 imageentry.cpp:310
#, kde-format
msgid "Configure Image"
msgstr ""
#. +> trunk5 stable5
#: imageentry.cpp:208
#, kde-format
msgid "Right click here to insert image"
msgstr ""
#. +> trunk5 stable5
#: imageentry.cpp:226
#, kde-format
msgid "Cannot load image %1"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ImageSettingsBase)
#. +> trunk5 stable5
#: imagesettings.ui:14
#, kde-format
msgid "Image Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, openDialogButton)
#. +> trunk5 stable5
#: imagesettings.ui:25
#, kde-format
msgid "Open"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: imagesettings.ui:34
#, kde-format
msgid "Display Size"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: imagesettings.ui:43 imagesettings.ui:97
#, kde-format
msgid "Width"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: imagesettings.ui:56 imagesettings.ui:110
#, kde-format
msgid "Height"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, gbPreview)
#. +> trunk5 stable5
#: imagesettings.ui:72
#, kde-format
msgid "Preview"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: imagesettings.ui:84
#, kde-format
msgid "Print Size"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, useDisplaySize)
#. +> trunk5 stable5
#: imagesettings.ui:90
#, kde-format
msgid "Use Display Size"
msgstr ""
#. +> trunk5 stable5
#: imagesettingsdialog.cpp:45
#, kde-format
msgid "(auto)"
msgstr ""
#. +> trunk5 stable5
#: imagesettingsdialog.cpp:45
#, kde-format
msgid "px"
msgstr ""
#. +> trunk5 stable5
#: imagesettingsdialog.cpp:45
#, kde-format
msgid "%"
msgstr ""
#. +> trunk5 stable5
#: imagesettingsdialog.cpp:138
#, kde-format
msgid "Open image file"
msgstr ""
#. +> trunk5 stable5
#: latexentry.cpp:70 textentry.cpp:69
#, kde-format
msgid "Show LaTeX code"
msgstr ""
#. i18n: ectx: label, entry (latexCommand), group (Cantor)
#. +> trunk5 stable5
#: lib/cantor_libs.kcfg:10
#, kde-format
msgid "Path to the latex executable"
msgstr ""
#. i18n: ectx: label, entry (dvipsCommand), group (Cantor)
#. +> trunk5 stable5
#: lib/cantor_libs.kcfg:14
#, kde-format
msgid "Path to the dvips executable"
msgstr ""
#. +> trunk5 stable5
#: lib/defaultvariablemodel.cpp:79
#, kde-format
msgctxt "@title:column"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: lib/defaultvariablemodel.cpp:82
#, kde-format
msgctxt "@title:column"
msgid "Value"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: lib/directives/axisrange.ui:19
#, kde-format
msgid "From:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: lib/directives/axisrange.ui:40
#, kde-format
msgid "To:"
msgstr ""
#. +> trunk5 stable5
#: lib/directives/plotdirectives.cpp:34
#, kde-format
msgid "Main title"
msgstr ""
#. +> trunk5 stable5
#: lib/directives/plotdirectives.cpp:45
#, kde-format
msgid "Abscissa scale"
msgstr ""
#. +> trunk5 stable5
#: lib/directives/plotdirectives.cpp:56
#, kde-format
msgid "Ordinate scale"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: lib/directives/plottitle.ui:19
#, kde-format
msgid "Plot title:"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:33
#, kde-format
msgid "KDE Frontend to mathematical applications"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:72
#, kde-format
msgid ""
"(C) 2016 Filipe Saraiva<br/>"
"(C) 2009-2015 Alexander Rieder"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:76
#, kde-format
msgid "Filipe Saraiva"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:76
#, kde-format
msgid ""
"Maintainer<br/>"
"Qt5/KF5 port, Scilab and Python backends"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:78
#, kde-format
msgid ""
"Original author<br/>"
"Maintainer (2009 - 2015)"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:79
#, kde-format
msgid "Aleix Pol Gonzalez"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:79
#, kde-format
msgid "KAlgebra backend"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:80
#, kde-format
msgid "Miha Čančula"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:80
#, kde-format
msgid "Octave backend"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:82
#, kde-format
msgid "Martin Küttler"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:82
#, kde-format
msgid "Interface"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:84 main.cpp:85
#, kde-format
msgid "Cantor icon"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:93
#, kde-format
msgid "Use backend <backend>"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:96
#, kde-format
msgid "Documents to open."
msgstr ""
#. +> trunk5 stable5
#: pagebreakentry.cpp:39
#, kde-format
msgid "--- Page Break ---"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/helppanel/helppanelplugin.cpp:44
#, kde-format
msgid ""
"<h1>Cantor</h1>"
"The KDE way to do Mathematics"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: panelplugins/variablemgr/newvardlg.ui:17
#, kde-format
msgid "Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: panelplugins/variablemgr/newvardlg.ui:27
#, kde-format
msgid "Value:"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:52
#, kde-format
msgid "Add new variable"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:59
#, kde-format
msgid "Load Variables"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:66
#, kde-format
msgid "Store Variables"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:73
#, kde-format
msgid "Clear Variables"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:113
#, kde-format
msgid "Are you sure you want to remove all variables?"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:113
#, kde-format
msgid "Confirmation - Cantor"
msgstr ""
#. +> trunk5 stable5
#: panelplugins/variablemgr/variablemanagerwidget.cpp:148
#, kde-format
msgid "Load file"
msgstr ""
#. +> trunk5 stable5
#: resultitem.cpp:79
#, kde-format
msgid "Remove result"
msgstr ""
#. +> trunk5 stable5
#: scripteditorwidget.cpp:60
#, kde-format
msgid ""
"A KDE text-editor component could not be found;\n"
"please check your KDE installation."
msgstr ""
#. +> trunk5 stable5
#: scripteditorwidget.cpp:148
#, kde-format
msgid "Script Editor"
msgstr ""
#. +> trunk5 stable5
#: scripteditorwidget.cpp:151
#, kde-format
msgid "Script Editor - %1"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:150 searchbar.cpp:199
#, kde-format
msgid "Not found"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:153
#, kde-format
msgid "Reached beginning"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:202
#, kde-format
msgid "Reached end"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:259
#, kde-format
msgid "Replaced %1 instance"
msgid_plural "Replaced %1 instances"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: searchbar.cpp:354 searchbar.cpp:383
#, kde-format
msgid "Commands"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:354 searchbar.cpp:383
#, kde-format
msgid "Results"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:354 searchbar.cpp:383
#, kde-format
msgid "Errors"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:355 searchbar.cpp:384
#, kde-format
msgid "Text"
msgstr ""
#. +> trunk5 stable5
#: searchbar.cpp:355 searchbar.cpp:384
#, kde-format
msgid "LaTeX Code"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: settings.ui:19
#, kde-format
msgid "Default Backend:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_AutoEval)
#. +> trunk5 stable5
#: settings.ui:35
#, kde-format
msgid "When enabled, Cantor will automatically evaluate every entry below the current one."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoEval)
#. +> trunk5 stable5
#: settings.ui:38
#, kde-format
msgid "Reevaluate Entries automatically"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: settings.ui:47
#, kde-format
msgid "Defaults"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TypesetDefault)
#. +> trunk5 stable5
#: settings.ui:53
#, kde-format
msgid "Enable LaTeX Typesetting"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HighlightDefault)
#. +> trunk5 stable5
#: settings.ui:60
#, kde-format
msgid "Enable Syntax Highlighting"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CompletionDefault)
#. +> trunk5 stable5
#: settings.ui:67
#, kde-format
msgid "Enable Completion"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpressionNumberingDefault)
#. +> trunk5 stable5
#: settings.ui:74
#, kde-format
msgid "Enable Line Numbers"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AnimationDefault)
#. +> trunk5 stable5
#: settings.ui:81
#, kde-format
msgid "Enable Worksheet Animations"
msgstr ""
#. +> trunk5 stable5
#: textresultitem.cpp:65
#, kde-format
msgid "Show Rendered"
msgstr ""
#. +> trunk5 stable5
#: textresultitem.cpp:67
#, kde-format
msgid "Show Code"
msgstr ""
#. +> trunk5 stable5
#: textresultitem.cpp:128
#, kde-format
msgid "Cannot render Eps file. You may need additional packages"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:827
#, kde-format
msgid "Cannot write file %1."
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:852
#, kde-format
msgid "Cannot write file."
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:870 worksheet.cpp:906
#, kde-format
msgid "Error saving file %1"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:918
#, kde-format
msgid "Error loading latex.xsl stylesheet"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:970
#, kde-format
msgid "The backend with which this file was generated is not installed. It needs %1"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:976
#, kde-format
msgid ""
"There are some problems with the %1 backend,\n"
"please check your configuration or install the needed packages.\n"
"You will only be able to view this worksheet."
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1108 worksheet.cpp:1114
#, kde-format
msgid "Command Entry"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1109 worksheet.cpp:1115
#, kde-format
msgid "Text Entry"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1110 worksheet.cpp:1116
#, kde-format
msgid "LaTeX Entry"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1111 worksheet.cpp:1117
#, kde-format
msgid "Image"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1112 worksheet.cpp:1118
#, kde-format
msgid "Page Break"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1120
#, kde-format
msgid "Insert"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1121
#, kde-format
msgid "Insert Before"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1127
#, kde-format
msgid "Insert LaTeX Entry"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1164
#, kde-format
msgctxt "@action"
msgid "Text &Color..."
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1165
#, kde-format
msgctxt "@label text color"
msgid "Color"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1173
#, kde-format
msgctxt "@action"
msgid "Text &Highlight..."
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1180
#, kde-format
msgctxt "@action"
msgid "&Font"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1187
#, kde-format
msgctxt "@action"
msgid "Font &Size"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1196
#, kde-format
msgctxt "@action boldify selected text"
msgid "&Bold"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1210
#, kde-format
msgctxt "@action italicize selected text"
msgid "&Italic"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1224
#, kde-format
msgctxt "@action underline selected text"
msgid "&Underline"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1237
#, kde-format
msgctxt "@action"
msgid "&Strike Out"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1250
#, kde-format
msgctxt "@action"
msgid "Align &Left"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1253
#, kde-format
msgctxt "@label left justify"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1262
#, kde-format
msgctxt "@action"
msgid "Align &Center"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1265
#, kde-format
msgctxt "@label center justify"
msgid "Center"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1274
#, kde-format
msgctxt "@action"
msgid "Align &Right"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1277
#, kde-format
msgctxt "@label right justify"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1286
#, kde-format
msgctxt "@action"
msgid "&Justify"
msgstr ""
#. +> trunk5 stable5
#: worksheet.cpp:1289
#, kde-format
msgctxt "@label justify fill"
msgid "Justify"
msgstr ""
#. +> trunk5 stable5
#: worksheetentry.cpp:310 worksheetentry.cpp:691
#, kde-format
msgid "Remove Entry"
msgstr ""
#. +> trunk5 stable5
#: worksheetentry.cpp:696
#, kde-format
msgid "Drag Entry"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdegraphics/gwenview.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdegraphics/gwenview.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdegraphics/gwenview.pot (revision 1509808)
@@ -1,2556 +1,2556 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:39+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: app/advancedconfigpage.ui:17
#, kde-format
msgid "Cache:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DeleteThumbnailCacheOnExit)
#. +> trunk5 stable5
#: app/advancedconfigpage.ui:29
#, kde-format
msgid "Delete thumbnail cache folder on exit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, cacheHelpLabel)
#. +> trunk5 stable5
#: app/advancedconfigpage.ui:51
#, kde-format
msgid ""
"Enable this option if you do not have a lot of disk space.<br/>"
"<br/>"
"<em>Be careful:</em> this will delete the folder named <filename>.thumbnails</filename> in your home folder, deleting all thumbnails previously generated by Gwenview and other applications."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: app/advancedconfigpage.ui:77
#, kde-format
msgid "History:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HistoryEnabled)
#. +> trunk5 stable5
#: app/advancedconfigpage.ui:89
#, kde-format
msgid "Remember folders and URLs"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, colorRenderingLabel)
#. +> trunk5
#: app/advancedconfigpage.ui:127
#, kde-format
msgid "Rendering intent:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, perceptualRenderingIntentRadioButton)
#. +> trunk5
#: app/advancedconfigpage.ui:142
#, kde-format
msgctxt "@option:Perceptual rendering intent"
msgid "Perceptual"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, perceptualHelpLabel)
#. +> trunk5
#: app/advancedconfigpage.ui:154
#, kde-format
msgid "Scale all colors equally to fit them within the active color profile's color gamut"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, relativeRenderingIntentRadioButton)
#. +> trunk5
#: app/advancedconfigpage.ui:182
#, kde-format
msgctxt "@option:Relative Colorimetric rendering intent"
msgid "Relative Colorimetric"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, relativeHelpLabel)
#. +> trunk5
#: app/advancedconfigpage.ui:194
#, kde-format
msgid "Squash colors that don't fit within the active color profile's color gamut, leaving other colors untouched"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:126 app/mainwindow.cpp:360 app/viewmainpage.cpp:421
#: lib/documentview/documentviewcontroller.cpp:92
#, kde-format
msgctxt "@title actions category - means actions changing smth in interface"
msgid "View"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:128
#, kde-format
msgctxt "@action:inmenu Navigation Bar"
msgid "Edit Location"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:132
#, kde-format
msgctxt "@action:inmenu"
msgid "Sort By"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:133
#, kde-format
msgctxt "@addAction:inmenu"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:135
#, kde-format
msgctxt "@addAction:inmenu"
msgid "Date"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:137
#, kde-format
msgctxt "@addAction:inmenu"
msgid "Size"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:145
#, kde-format
msgctxt "@action:inmenu"
msgid "Thumbnail Details"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:146
#, kde-format
msgctxt "@action:inmenu"
msgid "Filename"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:147
#, kde-format
msgctxt "@action:inmenu"
msgid "Date"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:148
#, kde-format
msgctxt "@action:inmenu"
msgid "Image Size"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:149
#, kde-format
msgctxt "@action:inmenu"
msgid "File Size"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:151
#, kde-format
msgctxt "@action:inmenu"
msgid "Rating"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:154 app/fileopscontextmanageritem.cpp:133
#: app/mainwindow.cpp:359
#, kde-format
msgctxt "@title actions category"
msgid "File"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:156
#, kde-format
msgctxt "@action:inmenu"
msgid "Add Folder to Places"
msgstr ""
#. +> trunk5 stable5
#: app/browsemainpage.cpp:183
#, kde-format
msgctxt "@label"
msgid "%1 document"
msgid_plural "%1 documents"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (text), widget (Gwenview::StatusBarToolButton, mAddFilterButton)
#. +> trunk5 stable5
#: app/browsemainpage.ui:88
#, kde-format
msgid "Add Filter"
msgstr ""
#. +> trunk5 stable5
#: app/configdialog.cpp:55
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: app/configdialog.cpp:89
#, kde-format
msgid "Image View"
msgstr ""
#. +> trunk5 stable5
#: app/configdialog.cpp:100
#, kde-format
msgid "Advanced"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:65
#, kde-format
msgctxt "@title:window %1 file name"
msgid "Copy %1"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:67
#, kde-format
msgctxt "@title:window %1 number of images"
msgid "Copy %1 image"
msgid_plural "Copy %1 images"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:69
#, kde-format
msgctxt "@action:button"
msgid "Copy"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:73
#, kde-format
msgctxt "@title:window %1 file name"
msgid "Move %1"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:75
#, kde-format
msgctxt "@title:window %1 number of images"
msgid "Move %1 image"
msgid_plural "Move %1 images"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:77
#, kde-format
msgctxt "@action:button"
msgid "Move"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:81
#, kde-format
msgctxt "@title:window %1 file name"
msgid "Link %1"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:83
#, kde-format
msgctxt "@title:window %1 number of images"
msgid "Link %1 image"
msgid_plural "Link %1 images"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:85
#, kde-format
msgctxt "@action:button"
msgid "Link"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:197
#, kde-format
msgid "Move Here"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:200
#, kde-format
msgid "Copy Here"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:203
#, kde-format
msgid "Link Here"
msgstr ""
#. +> trunk5 stable5
#: app/fileoperations.cpp:207
#, kde-format
msgid "Cancel"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:121
#, kde-format
msgid "File Operations"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:134
#: app/semanticinfocontextmanageritem.cpp:200
#, kde-format
msgctxt "@title actions category"
msgid "Edit"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:141
#, kde-format
msgctxt "Verb"
msgid "Copy To..."
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:145
#, kde-format
msgctxt "Verb"
msgid "Move To..."
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:149
#, kde-format
msgctxt "Verb: create link to the file where user wants"
msgid "Link To..."
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:153
#, kde-format
msgctxt "Verb"
msgid "Rename..."
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:158
#, kde-format
msgctxt "Verb"
msgid "Trash"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:165
#, kde-format
msgid "Restore"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:168
#, kde-format
msgid "Properties"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:172
#, kde-format
msgid "Create Folder..."
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:176
#, kde-format
msgid "Open With"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:183
#, kde-format
msgid "Open Containing Folder"
msgstr ""
#. +> trunk5 stable5
#: app/fileopscontextmanageritem.cpp:378
#, kde-format
msgid "Other Application..."
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:65
#, kde-format
msgid "Name contains"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:66
#, kde-format
msgid "Name does not contain"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:107
#, kde-format
msgid "Date >="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:108
#, kde-format
msgid "Date ="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:109
#, kde-format
msgid "Date <="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:142
#, kde-format
msgid "Rating >="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:143
#, kde-format
msgid "Rating ="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:144
#, kde-format
msgid "Rating <="
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:188
#, kde-format
msgid "Tagged"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:189
#, kde-format
msgid "Not Tagged"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:294
#, kde-format
msgctxt "@action:inmenu"
msgid "Filter by Name"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:295
#, kde-format
msgctxt "@action:inmenu"
msgid "Filter by Date"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:297
#, kde-format
msgctxt "@action:inmenu"
msgid "Filter by Rating"
msgstr ""
#. +> trunk5 stable5
#: app/filtercontroller.cpp:298
#, kde-format
msgctxt "@action:inmenu"
msgid "Filter by Tag"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:20
#, kde-format
msgid "Slideshow"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:29
#, kde-format
msgid "Interval:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mSlideShowLoopCheckBox)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:75
#, kde-format
msgid "Loop"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mSlideShowRandomCheckBox)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:82
#, kde-format
msgid "Random"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:92
#, kde-format
msgid "Image Information"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mConfigureDisplayedInformationButton)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:101
#, kde-format
msgid "Select Image Information to Display..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, mThumbnailGroupBox)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:111
#, kde-format
msgid "Thumbnails"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mShowThumbnailsCheckBox)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:120
#, kde-format
msgid "Show thumbnails"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: app/fullscreenconfigwidget.ui:130
#, kde-format
msgid "Height:"
msgstr ""
#. +> trunk5 stable5
#: app/fullscreencontent.cpp:213
#, kde-format
msgctxt "@item:intext fullscreen meta info separator"
msgid ", "
msgstr ""
#. +> trunk5 stable5
#: app/fullscreencontent.cpp:269
#, kde-format
msgctxt "Slideshow interval in seconds"
msgid "%1 sec"
msgid_plural "%1 secs"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/fullscreencontent.cpp:367
#, kde-format
msgctxt "@info:tooltip"
msgid "Configure full screen mode"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: app/generalconfigpage.ui:17
#, kde-format
msgid "Background color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: app/generalconfigpage.ui:82
#, kde-format
msgid "Videos:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ListVideos)
#. +> trunk5 stable5
#: app/generalconfigpage.ui:89
#, kde-format
msgid "Show videos"
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:74
#, kde-format
msgctxt "@title:window"
msgid "Save Image"
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:106
#, kde-format
msgctxt "@info"
msgid "Gwenview cannot save images as %1."
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:243
#, kde-format
msgid "Save using another format"
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:246
#, kde-format
msgid "Gwenview cannot save images in '%1' format."
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:271
#, kde-kuit-format
msgctxt "@info"
msgid ""
"A file named <filename>%1</filename> already exists.\n"
"Are you sure you want to overwrite it?"
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:286 app/gvcore.cpp:309
#, kde-kuit-format
msgctxt "@info"
msgid ""
"<b>Saving <filename>%1</filename> failed:</b><br />"
"%2"
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:329
#, kde-format
msgid "You are now viewing the new document."
msgstr ""
#. +> trunk5 stable5
#: app/gvcore.cpp:331
#, kde-format
msgid "Go back to the original"
msgstr ""
#. i18n: ectx: Menu (rating)
#. +> trunk5 stable5
#: app/gwenviewui.rc:47
#, kde-format
msgid "&Rating"
msgstr ""
#. i18n: ectx: Menu (plugins)
#. +> trunk5 stable5
#: app/gwenviewui.rc:76
#, kde-format
msgid "&Plugins"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5 stable5
#: app/gwenviewui.rc:79
#, kde-format
msgid "&Settings"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
#. +> trunk5 stable5
#: app/gwenviewui.rc:94 part/gvpart.rc:15
#, kde-format
msgid "Main Toolbar"
msgstr ""
#. +> trunk5 stable5
#: app/imagemetainfodialog.cpp:130
#, kde-format
msgctxt "@title:window"
msgid "Image Information"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:82
#, kde-format
msgctxt "@title actions category - means actions changing image"
msgid "Edit"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:85
#, kde-format
msgid "Rotate Left"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:86
#, kde-format
msgctxt "@info:tooltip"
msgid "Rotate image to the left"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:91
#, kde-format
msgid "Rotate Right"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:92
#, kde-format
msgctxt "@info:tooltip"
msgid "Rotate image to the right"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:97
#, kde-format
msgid "Mirror"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:101
#, kde-format
msgid "Flip"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:105 lib/resize/resizeimagedialog.cpp:64
#, kde-format
msgid "Resize"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, CropWidget)
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:110 lib/crop/cropimageoperation.cpp:71
#: lib/crop/cropwidget.cpp:191 lib/crop/cropwidget.ui:20
#, kde-format
msgid "Crop"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:115
#, kde-format
msgid "Red Eye Reduction"
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:141 lib/document/documentjob.cpp:79
#, kde-format
msgctxt "@info"
msgid "Gwenview cannot edit this kind of image."
msgstr ""
#. +> trunk5 stable5
#: app/imageopscontextmanageritem.cpp:153
#, kde-format
msgid "Image Operations"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_1)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:17
#, kde-format
msgid "Transparent background:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, checkBoardRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:38
#, kde-format
msgid "&Check board"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, solidColorRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:71
#, kde-format
msgid "&Solid color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:119
#, kde-format
msgid "Mouse wheel behavior:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, mouseWheelScrollRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:134
#, kde-format
msgctxt "@option:radio action on mouse wheel"
msgid "Scroll"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, mouseWheelBrowseRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:161
#, kde-format
msgctxt "@option:radio action on mouse wheel"
msgid "Browse"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:199
#, kde-format
msgid "Zoom mode:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, autofitZoomModeRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:214
#, kde-format
msgid "Autofit each image"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, keepSameZoomModeRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:241
#, kde-format
msgid "Keep same zoom and position"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, individualZoomModeRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:265
#, kde-format
msgid "Per image zoom and position"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnlargeSmallerImages)
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_PrintEnlargeSmallerImages)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:305 lib/print/printoptionspage.ui:98
#, kde-format
msgid "Enlarge smaller images"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:343
#, kde-format
msgid "Animations:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, glAnimationRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:358
#, kde-format
msgid "OpenGL"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, softwareAnimationRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:385
#, kde-format
msgid "Software"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, noAnimationRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:409
#, kde-format
msgid "None"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:447
#, kde-format
msgid "<b>Thumbnail Bar</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:470
#, kde-format
msgid "Orientation:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, horizontalRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:485
#, kde-format
msgid "Horizontal"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, verticalRadioButton)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:509
#, kde-format
msgid "Vertical"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. +> trunk5 stable5
#: app/imageviewconfigpage.ui:531
#, kde-format
msgid "Row count:"
msgstr ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:149
#, kde-format
msgctxt "@item:intext %1 is a key, we append a colon to it. A value is displayed after"
msgid "%1:"
msgstr ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:227
#, kde-format
msgctxt "@action show more image meta info"
msgid "More..."
msgstr ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:241
#, kde-format
msgctxt "@title:group"
msgid "Meta Information"
msgstr ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:333
#, kde-format
msgctxt "@label"
msgid "%1 file selected"
msgid_plural "%1 files selected"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:335
#, kde-format
msgctxt "@label"
msgid "%1 folder selected"
msgid_plural "%1 folders selected"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:338
#, kde-format
msgid "%1 folder"
msgid_plural "%1 folders"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:338
#, kde-format
msgid "%1 file"
msgid_plural "%1 files"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/infocontextmanageritem.cpp:338
#, kde-format
msgctxt "@label. The two parameters are strings like '2 folders' and '1 file'."
msgid "%1 and %2 selected"
msgstr ""
#. +> trunk5 stable5
#: app/kipiexportaction.cpp:50
#, kde-format
msgid "Last Used Plugin"
msgstr ""
#. +> trunk5 stable5
#: app/kipiexportaction.cpp:52
#, kde-format
msgid "Other Plugins"
msgstr ""
#. +> trunk5 stable5
#: app/kipiexportaction.cpp:62 app/kipiinterface.cpp:240
#, kde-format
msgid "No Plugin Found"
msgstr ""
#. +> trunk5 stable5
#: app/kipiexportaction.cpp:70
#, kde-format
msgctxt "@action"
msgid "Share"
msgstr ""
#. +> trunk5 stable5
#: app/kipiexportaction.cpp:76
#, kde-format
msgctxt "@info:tooltip"
msgid "Share images using various services"
msgstr ""
#. +> trunk5 stable5
#: app/kipiimagecollectionselector.cpp:55
#, kde-format
msgctxt "%1 is collection name, %2 is image count in collection"
msgid "%1 (%2 image)"
msgid_plural "%1 (%2 images)"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:239
#, kde-format
msgid "Loading..."
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:241
#, kde-format
msgctxt "@item:inmenu"
msgid "Install Plugins"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:275
#, kde-format
msgctxt "@title:menu"
msgid "Images"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:276
#, kde-format
msgctxt "@title:menu"
msgid "Tools"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:277
#, kde-format
msgctxt "@title:menu"
msgid "Import"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:278
#, kde-format
msgctxt "@title:menu"
msgid "Export"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:279
#, kde-format
msgctxt "@title:menu"
msgid "Batch Processing"
msgstr ""
#. +> trunk5 stable5
#: app/kipiinterface.cpp:280
#, kde-format
msgctxt "@title:menu"
msgid "Collections"
msgstr ""
#. +> trunk5 stable5
#: app/kipiuploadwidget.cpp:43
#, kde-format
msgid ""
"Images will be uploaded here:\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:128
#, kde-format
msgid "Gwenview"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:130 part/gvpart.cpp:126
#, kde-format
msgid "An Image Viewer"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:140
#, kde-format
msgid "Start in fullscreen mode"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:142
#, kde-format
msgid "Start in slideshow mode"
msgstr ""
#. +> trunk5 stable5
#: app/main.cpp:145
#, kde-format
msgid "A starting file or folders"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:371
#, kde-format
msgctxt "@action reload the currently viewed image"
msgid "Reload"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:376
#, kde-format
msgctxt "@action:intoolbar Switch to file list"
msgid "Browse"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:377
#, kde-format
msgctxt "@info:tooltip"
msgid "Browse folders for images"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:385
#, kde-format
msgctxt "@action:intoolbar Switch to image view"
msgid "View"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:386
#, kde-format
msgctxt "@info:tooltip"
msgid "View selected images"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:408
#, kde-format
msgctxt "@action"
msgid "Leave Fullscreen Mode"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:413
#, kde-format
msgctxt "@action Go to previous image"
msgid "Previous"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:414
#, kde-format
msgctxt "@info:tooltip"
msgid "Go to previous image"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:421
#, kde-format
msgctxt "@action Go to next image"
msgid "Next"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:422
#, kde-format
msgctxt "@info:tooltip"
msgid "Go to next image"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:428
#, kde-format
msgctxt "@action Go to first image"
msgid "First"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:429
#, kde-format
msgctxt "@info:tooltip"
msgid "Go to first image"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:434
#, kde-format
msgctxt "@action Go to last image"
msgid "Last"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:435
#, kde-format
msgctxt "@info:tooltip"
msgid "Go to last image"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:445
#, kde-format
msgctxt "@action"
msgid "Start Page"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:446
#, kde-format
msgctxt "@info:tooltip"
msgid "Open the start page"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:453
#, kde-format
msgctxt "@action"
msgid "Sidebar"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:493
#, kde-format
msgctxt "@title actions category - means actions changing smth in interface"
msgid "Edit"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:498
#, kde-format
msgid "Redo"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:506
#, kde-format
msgid "Undo"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:535
#, kde-format
msgid "Folders"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:541
#, kde-format
msgid "Information"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:551
#, kde-format
msgid "Operations"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:1092
#, kde-format
msgctxt "@info:tooltip"
msgid "Hide sidebar"
msgstr ""
#. +> trunk5 stable5
#: app/mainwindow.cpp:1092
#, kde-format
msgctxt "@info:tooltip"
msgid "Show sidebar"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1343
+#: app/mainwindow.cpp:1344
#, kde-format
msgctxt "@title:window"
msgid "Open Image"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1403
+#: app/mainwindow.cpp:1404
#, kde-format
msgid "Stop Slideshow"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1406
+#: app/mainwindow.cpp:1407
#, kde-format
msgid "Start Slideshow"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1420
+#: app/mainwindow.cpp:1421
#, kde-format
msgid "Save All Changes"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1421
+#: app/mainwindow.cpp:1422
#, kde-format
msgid "Discard Changes"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1422
+#: app/mainwindow.cpp:1423
#, kde-format
msgid "One image has been modified."
msgid_plural "%1 images have been modified."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1424
+#: app/mainwindow.cpp:1425
#, kde-format
msgid "If you quit now, your changes will be lost."
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1621
+#: app/mainwindow.cpp:1622
#, kde-format
msgid "You reached the first document, what do you want to do?"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1622 app/mainwindow.cpp:1636
+#: app/mainwindow.cpp:1623 app/mainwindow.cpp:1637
#, kde-format
msgid "Stay There"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1623
+#: app/mainwindow.cpp:1624
#, kde-format
msgid "Go to the Last Document"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1624 app/mainwindow.cpp:1638
+#: app/mainwindow.cpp:1625 app/mainwindow.cpp:1639
#, kde-format
msgid "Go Back to the Document List"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1635
+#: app/mainwindow.cpp:1636
#, kde-format
msgid "You reached the last document, what do you want to do?"
msgstr ""
#. +> trunk5 stable5
-#: app/mainwindow.cpp:1637
+#: app/mainwindow.cpp:1638
#, kde-format
msgid "Go to the First Document"
msgstr ""
#. +> trunk5
#: app/renamedialog.cpp:50
#, kde-format
msgctxt "@action:button"
msgid "Rename"
msgstr ""
#. +> trunk5 stable5
#: app/renamedialog.cpp:63
#, kde-kuit-format
msgid "Rename <filename>%1</filename> to:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, RenameDialog)
#. +> trunk5 stable5
#: app/renamedialog.ui:26
#, kde-format
msgctxt "@title:window"
msgid "Rename"
msgstr ""
#. +> trunk5 stable5
#: app/saveallhelper.cpp:58
#, kde-format
msgctxt "@info:progress saving all image changes"
msgid "Saving..."
msgstr ""
#. +> trunk5 stable5
#: app/saveallhelper.cpp:59
#, kde-format
msgid "&Stop"
msgstr ""
#. +> trunk5 stable5
#: app/saveallhelper.cpp:84
#, kde-format
msgctxt "@info"
msgid "One document could not be saved:"
msgid_plural "%1 documents could not be saved:"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/saveallhelper.cpp:108
#, kde-kuit-format
msgctxt "@info %1 is the name of the document which failed to save, %2 is the reason for the failure"
msgid "<filename>%1</filename>: %2"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:87
#, kde-format
msgid "You have modified many images. To avoid memory problems, you should save your changes."
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:176
#, kde-format
msgid "Current image modified"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:182
#, kde-format
msgid "Previous modified image"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:183
#, kde-format
msgid "Next modified image"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:199
#, kde-format
msgid "One image modified"
msgid_plural "%1 images modified"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: app/savebar.cpp:201
#, kde-format
msgid "Go to first modified image"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:203
#, kde-format
msgid "Go to it"
msgstr ""
#. +> trunk5 stable5
#: app/savebar.cpp:301 app/savebar.cpp:305
#, kde-format
msgid "Save All"
msgstr ""
#. +> trunk5 stable5
#: app/semanticinfocontextmanageritem.cpp:176
#, kde-format
msgid "Semantic Information"
msgstr ""
#. +> trunk5 stable5
#: app/semanticinfocontextmanageritem.cpp:203
#, kde-format
msgctxt "@action"
msgid "Edit Tags"
msgstr ""
#. +> trunk5 stable5
#: app/semanticinfocontextmanageritem.cpp:213
#, kde-format
msgctxt "@action Rating value of zero"
msgid "Zero"
msgstr ""
#. +> trunk5 stable5
#: app/semanticinfocontextmanageritem.cpp:249
#, kde-format
msgid "Edit"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, SemanticInfoDialog)
#. +> trunk5 stable5
#: app/semanticinfodialog.ui:13
#, kde-format
msgid "Tag Editor"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mPreviousButton)
#. +> trunk5 stable5
#: app/semanticinfodialog.ui:31
#, kde-format
msgid "Previous"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mNextButton)
#. +> trunk5 stable5
#: app/semanticinfodialog.ui:38
#, kde-format
msgid "Next"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: app/semanticinfosidebaritem.ui:22
#, kde-format
msgid "Rating:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: app/semanticinfosidebaritem.ui:45
#, kde-format
msgid "Tags:"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QTextEdit, mDescriptionTextEdit)
#. +> trunk5 stable5
#: app/semanticinfosidebaritem.ui:76
#, kde-format
msgid "Description"
msgstr ""
#. +> trunk5 stable5
#: app/startmainpage.cpp:272
#, kde-format
msgid "Add to Places"
msgstr ""
#. +> trunk5 stable5
#: app/startmainpage.cpp:273
#, kde-format
msgid "Forget this Folder"
msgstr ""
#. +> trunk5 stable5
#: app/startmainpage.cpp:275
#, kde-format
msgid "Forget All"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, mHistoryDisabledLabel)
#. +> trunk5 stable5
#: app/startmainpage.ui:34
#, kde-format
msgid "History has been disabled."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5 stable5
#: app/startmainpage.ui:51
#, kde-format
msgid "Recent Folders"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5 stable5
#: app/startmainpage.ui:65
#, kde-format
msgid "Recent Files"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, placesTab)
#. +> trunk5 stable5
#: app/startmainpage.ui:97
#, kde-format
msgid "Places"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tagsTab)
#. +> trunk5 stable5
#: app/startmainpage.ui:120
#, kde-format
msgid "Tags"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, mTagLabel)
#. +> trunk5 stable5
#: app/startmainpage.ui:126
#, kde-format
msgid "Browsing by tags is not available. Make sure Nepomuk is properly installed on your computer."
msgstr ""
#. +> trunk5 stable5
#: app/viewmainpage.cpp:298 app/viewmainpage.cpp:432
#, kde-format
msgid "Synchronize"
msgstr ""
#. +> trunk5 stable5
#: app/viewmainpage.cpp:424
#, kde-format
msgid "Thumbnail Bar"
msgstr ""
#. +> trunk5 stable5
#: app/viewmainpage.cpp:716
#, kde-format
msgctxt "@action:button"
msgid "Discard Changes and Reload"
msgstr ""
#. +> trunk5 stable5
#: app/viewmainpage.cpp:718
#, kde-format
msgctxt "@info"
msgid "This image has been modified. Reloading it will discard all your changes."
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:104
#, kde-format
msgid "Shooting date"
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:105
#, kde-format
msgid "Shooting time"
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:106
#, kde-format
msgid "Original extension"
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:107
#, kde-format
msgid "Original extension, in lower case"
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:108
#, kde-format
msgid "Original filename"
msgstr ""
#. +> trunk5 stable5
#: importer/filenameformater.cpp:109
#, kde-format
msgid "Original filename, in lower case"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:74
#, kde-format
msgid "One document has been imported."
msgid_plural "%1 documents have been imported."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:79
#, kde-format
msgid "One document has been skipped because it had already been imported."
msgid_plural "%1 documents have been skipped because they had already been imported."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:87
#, kde-format
msgid "One of them has been renamed because another document with the same name had already been imported."
msgid_plural "%1 of them have been renamed because other documents with the same name had already been imported."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:96
#, kde-format
msgid "Delete the imported document from the device?"
msgid_plural "Delete the %1 imported documents from the device?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:101
#, kde-format
msgid "Delete the skipped document from the device?"
msgid_plural "Delete the %1 skipped documents from the device?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:107
#, kde-format
msgctxt "Singular sentence is actually never used."
msgid "Delete the imported or skipped document from the device?"
msgid_plural "Delete the %1 imported and skipped documents from the device?"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:114
#, kde-format
msgctxt "@title:window"
msgid "Import Finished"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:116
#, kde-format
msgid "Keep"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:129
#, kde-format
msgid ""
"Failed to delete the document:\n"
"%2"
msgid_plural ""
"Failed to delete documents:\n"
"%2"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:133
#, kde-format
msgid "Retry"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:134
#, kde-format
msgid "Ignore"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:156
#, kde-format
msgid "What do you want to do now?"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:158
#, kde-format
msgid "View Imported Documents with Gwenview"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:159
#, kde-format
msgid "Import more Documents"
msgstr ""
#. +> trunk5 stable5
#: importer/importdialog.cpp:160
#, kde-format
msgid "Quit"
msgstr ""
#. +> trunk5 stable5
#: importer/importer.cpp:80
#, kde-format
msgid "Could not create destination folder."
msgstr ""
#. +> trunk5 stable5
#: importer/importer.cpp:87
#, kde-format
msgid ""
"Could not create temporary upload folder:\n"
"%1"
msgstr ""
#. +> trunk5 stable5
#: importer/importerconfigdialog.cpp:56
#, kde-format
msgctxt "%1 is the importer keyword, %2 is keyword explanation"
msgid "%1: %2"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoRename)
#. +> trunk5 stable5
#: importer/importerconfigdialog.ui:17
#, kde-format
msgid "Rename documents automatically"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: importer/importerconfigdialog.ui:39
#, kde-format
msgid "Rename Format:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: importer/importerconfigdialog.ui:59
#, kde-format
msgid "Preview:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: importer/importerconfigdialog.ui:83
#, kde-format
msgid "<i>Type text or click the items below to customize the format</i>"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:48
#, kde-format
msgid "Gwenview Importer"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:50
#, kde-format
msgid "Photo Importer"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:56
#, kde-format
msgid "The device UDI, used to retrieve information about the device (name, icon...)"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:56
#, kde-format
msgid "Device UDI"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:59
#, kde-format
msgid "Source folder"
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:64
#, kde-format
msgid "Missing required source folder argument."
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:68
#, kde-format
msgid "Too many arguments."
msgstr ""
#. +> trunk5 stable5
#: importer/main.cpp:74
#, kde-format
msgid "Invalid source folder."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: importer/progresspage.ui:30
#, kde-format
msgid "Importing documents..."
msgstr ""
#. +> trunk5 stable5
#: importer/thumbnailpage.cpp:200
#, kde-format
msgid "Import Selected"
msgstr ""
#. +> trunk5 stable5
#: importer/thumbnailpage.cpp:203
#, kde-format
msgid "Import All"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: importer/thumbnailpage.ui:173
#, kde-format
msgid "Select the documents to import"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, mConfigureButton)
#. +> trunk5 stable5
#: importer/thumbnailpage.ui:185
#, kde-format
msgid "Settings..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: importer/thumbnailpage.ui:201
#, kde-format
msgid "Enter the import destination"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: importer/thumbnailpage.ui:220
#, kde-format
msgid "Listing content of:"
msgstr ""
#. +> trunk5 stable5
#: lib/about.cpp:39
#, kde-format
msgid "Copyright 2000-2014 Gwenview authors"
msgstr ""
#. +> trunk5 stable5
#: lib/about.cpp:43
#, kde-format
msgid "Current Maintainer"
msgstr ""
#. +> trunk5 stable5
#: lib/about.cpp:47 lib/about.cpp:51
#, kde-format
msgid "Developer"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:140
#, kde-format
msgid "Square"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:141
#, kde-format
msgid "This Screen"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:142
#, kde-format
msgid "Landscape"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:147 lib/crop/cropwidget.cpp:154
#, kde-format
msgid "ISO Size (A4, A3...)"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:148 lib/crop/cropwidget.cpp:155
#, kde-format
msgid "US Letter"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:149
#, kde-format
msgid "Portrait"
msgstr ""
#. i18n("%1:%2") because ':' should not be translated, it is
#. used to parse the ratio string.
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:164
#, kde-format
msgid "Width"
msgstr ""
#. +> trunk5 stable5
#: lib/crop/cropwidget.cpp:164
#, kde-format
msgid "Height"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, advancedCheckBox)
#. +> trunk5 stable5
#: lib/crop/cropwidget.ui:29
#, kde-format
msgid "Advanced settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. +> trunk5 stable5
#: lib/crop/cropwidget.ui:55
#, kde-format
msgid "Ratio:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: lib/crop/cropwidget.ui:84
#, kde-format
msgid "Position:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: lib/crop/cropwidget.ui:117
#, kde-format
msgid "Si&ze:"
msgstr ""
#. +> trunk5 stable5
#: lib/document/document.cpp:305
#, kde-format
msgctxt "@info"
msgid "Gwenview cannot save this kind of documents."
msgstr ""
#. +> trunk5 stable5
#: lib/document/loadingdocumentimpl.cpp:139
#, kde-format
msgctxt "@info"
msgid "Gwenview cannot display documents of type %1."
msgstr ""
#. +> trunk5 stable5
#: lib/document/loadingdocumentimpl.cpp:394
#, kde-format
msgctxt "@info"
msgid "Could not open file %1"
msgstr ""
#. +> trunk5 stable5
#: lib/document/loadingdocumentimpl.cpp:482
#, kde-format
msgctxt "@info"
msgid "Loading meta information failed."
msgstr ""
#. +> trunk5 stable5
#: lib/document/loadingdocumentimpl.cpp:510
#, kde-format
msgctxt "@info"
msgid "Loading image failed."
msgstr ""
#. +> trunk5 stable5
#: lib/document/loadingjob.cpp:58
#, kde-format
msgid "Could not load document %1"
msgstr ""
#. +> trunk5 stable5
#: lib/document/savejob.cpp:107
#, kde-kuit-format
msgctxt "@info"
msgid "Could not open file for writing, check that you have the necessary rights in <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: lib/document/savejob.cpp:132
#, kde-kuit-format
msgctxt "@info"
msgid "Could not overwrite file, check that you have the necessary rights to write in <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentview.cpp:189
#, kde-format
msgctxt "@info:tooltip"
msgid "Trash"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentview.cpp:190
#, kde-format
msgctxt "@action:button"
msgid "Deselect"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentview.cpp:388
#, kde-format
msgid "Gwenview does not know how to display this kind of document"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentview.cpp:492
#, kde-kuit-format
msgid "Loading <filename>%1</filename> failed"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentviewcontroller.cpp:98
#, kde-format
msgid "Zoom to Fit"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentviewcontroller.cpp:100
#, kde-format
msgctxt "@action:button Zoom to fit, shown in status bar, keep it short please"
msgid "Fit"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentviewcontroller.cpp:106
#, kde-format
msgid "Zoom to Fit Width"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentviewcontroller.cpp:108
#, kde-format
msgctxt "@action:button Zoom to fit width, shown in status bar, keep it short please"
msgid "Fit Width"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/documentviewcontroller.cpp:114
#, kde-format
msgctxt "@action:button Zoom to original size, shown in status bar, keep it short please"
msgid "100%"
msgstr ""
#. +> trunk5 stable5
#: lib/documentview/messageviewadapter.cpp:52
#, kde-format
msgid "No document selected"
msgstr ""
#. +> trunk5 stable5
#: lib/fullscreenbar.cpp:261 lib/statusbartoolbutton.cpp:107
#, kde-format
msgctxt "@info:tooltip of custom toolbar button"
msgid "%1"
msgstr ""
#. i18n: ectx: whatsthis, entry (PercentageOfMemoryUsageWarning), group (General)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:33
#, kde-format
msgid ""
"The percentage of memory used by Gwenview before it\n"
" warns the user and suggest saving changes."
msgstr ""
#. i18n: ectx: whatsthis, entry (BlackListedExtensions), group (General)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:40
#, kde-format
msgid ""
"A list of filename extensions Gwenview should not try to\n"
" load. We exclude *.new as well because this is the extension\n"
" used for temporary files by KSaveFile."
msgstr ""
#. i18n: ectx: whatsthis, entry (ZoomMode), group (ImageView)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:160
#, kde-format
msgid ""
"Defines what happens when going to image B after\n"
" having zoomed in on an area of image A. If set to Autofit,\n"
" image B is zoomed out to fit the screen. If set to KeepSame,\n"
" all images share the same zoom and position: image B is set\n"
" to the same zoom parameters as image A (and if these are\n"
" changed, image A will then be displayed with the updated zoom\n"
" and position). If set to Individual, all images remember\n"
" their own zoom and position: image B is initially set to the\n"
" same zoom parameters as image A, but will then remember its\n"
" own zoom and position (if these are changed, image A will NOT\n"
" be displayed with the updated zoom and position)."
msgstr ""
#. i18n: ectx: whatsthis, entry (RenderingIntent), group (ImageView)
#. +> trunk5
#: lib/gwenviewconfig.kcfg:174
#, kde-format
msgid ""
"Defines how colors are rendered when your display\n"
" uses an ICC color profile and an image has colors that do not\n"
" fit within the profile's color gamut. \"Perceptual\" will scale\n"
" the colors of the entire image so that they all fit within the\n"
" display's capabilities. \"Relative\" will squash only the colors\n"
" that cannot be displayed, and leave the other colors alone."
msgstr ""
#. i18n: ectx: label, entry (random), group (slide show)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:255
#, kde-format
msgid "Display slide show images in random order"
msgstr ""
#. i18n: ectx: label, entry (fullscreen), group (slide show)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:259
#, kde-format
msgid "Show slideshow in fullscreen mode"
msgstr ""
#. i18n: ectx: label, entry (loop), group (slide show)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:263
#, kde-format
msgid "Loop on images"
msgstr ""
#. i18n: ectx: label, entry (stopAtEnd), group (slide show)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:267
#, kde-format
msgid "Stop at last image of folder"
msgstr ""
#. i18n: ectx: label, entry (interval), group (slide show)
#. +> trunk5 stable5
#: lib/gwenviewconfig.kcfg:271
#, kde-format
msgid "Interval between images (in seconds)"
msgstr ""
#. +> trunk5 stable5
#: lib/historymodel.cpp:139
#, kde-format
msgid "Last visited: %1"
msgstr ""
#. +> trunk5 stable5
#: lib/hud/hudwidget.cpp:106
#, kde-format
msgctxt "@info:tooltip"
msgid "Close"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:254
#, kde-format
msgctxt "@item:intable Image file name"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:255
#, kde-format
msgctxt "@item:intable"
msgid "File Size"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:256
#, kde-format
msgctxt "@item:intable"
msgid "File Time"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:257
#, kde-format
msgctxt "@item:intable"
msgid "Image Size"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:258
#, kde-format
msgctxt "@item:intable"
msgid "Comment"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:318
#, kde-format
msgctxt "@title:group General info about the image"
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:408
#, kde-format
msgctxt "@item:intable %1 is image width, %2 is image height"
msgid "%1x%2"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:416
#, kde-format
msgctxt "@item:intable %1 is number of millions of pixels in image"
msgid "(%1MP)"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:567
#, kde-format
msgctxt "@title:column"
msgid "Property"
msgstr ""
#. +> trunk5 stable5
#: lib/imagemetainfomodel.cpp:569
#, kde-format
msgctxt "@title:column"
msgid "Value"
msgstr ""
#. +> trunk5 stable5
#: lib/jpegcontent.cpp:581
#, kde-format
msgctxt "@info"
msgid "Could not open file for writing."
msgstr ""
#. +> trunk5 stable5
#: lib/jpegcontent.cpp:597
#, kde-format
msgctxt "@info"
msgid "No data to store."
msgstr ""
#. +> trunk5 stable5
#: lib/print/printhelper.cpp:133
#, kde-format
msgid "Print Image"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, PrintOptionsPage)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:14
#, kde-format
msgid "Image Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:20
#, kde-format
msgid "Image Position"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:45
#, kde-format
msgid "Scaling"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, mNoScale)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:51
#, kde-format
msgid "&No scaling"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, mScaleToPage)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:61
#, kde-format
msgid "&Fit image to page"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, mScaleTo)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:123
#, kde-format
msgid "&Scale to:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:158
#, kde-format
msgctxt "Dimension separator, as in: '15 x 10 centimeters'"
msgid "x"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_PrintUnit)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:185
#, kde-format
msgid "Millimeters"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_PrintUnit)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:190
#, kde-format
msgid "Centimeters"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_PrintUnit)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:195
#, kde-format
msgid "Inches"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_PrintKeepRatio)
#. +> trunk5 stable5
#: lib/print/printoptionspage.ui:224
#, kde-format
msgid "Keep ratio"
msgstr ""
#. +> trunk5 stable5
#: lib/redeyereduction/redeyereductionimageoperation.cpp:77
#, kde-format
msgid "RedEyeReduction"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: lib/redeyereduction/redeyereductionwidget.ui:24
#, kde-format
msgid "Si&ze"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: lib/redeyereduction/redeyereductionwidget.ui:61
#, kde-format
msgid "Click on the red eye you want to fix"
msgstr ""
#. +> trunk5 stable5
#: lib/resize/resizeimageoperation.cpp:71
#, kde-format
msgctxt "(qtundo-format)"
msgid "Resize"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ResizeImageWidget)
#. +> trunk5 stable5
#: lib/resize/resizeimagewidget.ui:14
#, kde-format
msgid "Image Resizing"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: lib/resize/resizeimagewidget.ui:20
#, kde-format
msgid "Enter the new size for this image."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: lib/resize/resizeimagewidget.ui:32
#, kde-format
msgid "Current size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: lib/resize/resizeimagewidget.ui:88
#, kde-format
msgid "New Si&ze:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, mKeepAspectCheckBox)
#. +> trunk5 stable5
#: lib/resize/resizeimagewidget.ui:129
#, kde-format
msgid "Keep aspect ratio"
msgstr ""
#. +> trunk5 stable5
#: lib/semanticinfo/tagitemdelegate.cpp:67
#, kde-format
msgctxt "@info:tooltip"
msgid "Assign this tag to all selected images"
msgstr ""
#. +> trunk5 stable5
#: lib/semanticinfo/tagwidget.cpp:152
#, kde-format
msgid "Add tag"
msgstr ""
#. +> trunk5 stable5
#: lib/slideshow.cpp:186
#, kde-format
msgctxt "@item:inmenu toggle loop in slideshow"
msgid "Loop"
msgstr ""
#. +> trunk5 stable5
#: lib/slideshow.cpp:191
#, kde-format
msgctxt "@item:inmenu toggle random order in slideshow"
msgid "Random"
msgstr ""
#. +> trunk5 stable5
#: lib/transformimageoperation.cpp:61
#, kde-format
msgctxt "(qtundo-format)"
msgid "Rotate Right"
msgstr ""
#. +> trunk5 stable5
#: lib/transformimageoperation.cpp:64
#, kde-format
msgctxt "(qtundo-format)"
msgid "Rotate Left"
msgstr ""
#. +> trunk5 stable5
#: lib/transformimageoperation.cpp:67
#, kde-format
msgctxt "(qtundo-format)"
msgid "Mirror"
msgstr ""
#. +> trunk5 stable5
#: lib/transformimageoperation.cpp:70
#, kde-format
msgctxt "(qtundo-format)"
msgid "Flip"
msgstr ""
#. +> trunk5 stable5
#: lib/transformimageoperation.cpp:75
#, kde-format
msgctxt "(qtundo-format)"
msgid "Transform"
msgstr ""
#. +> trunk5 stable5
#: part/gvpart.cpp:81
#, kde-format
msgctxt "@action"
msgid "Properties"
msgstr ""
#. +> trunk5 stable5
#: part/gvpart.cpp:124
#, kde-format
msgid "Gwenview KPart"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 stable5
#: part/gvpart.rc:4
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5 stable5
#: part/gvpart.rc:8
#, kde-format
msgid "&View"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdegraphics/okular.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdegraphics/okular.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdegraphics/okular.pot (revision 1509808)
@@ -1,4519 +1,4519 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:39+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:23 ui/annotationwidgets.cpp:346 ui/sidebar.cpp:766
#, kde-format
msgid "Okular"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:25
#, kde-format
msgid "Okular, a universal document viewer"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:27
#, kde-format
msgid ""
"(C) 2002 Wilco Greven, Christophe Devriese\n"
"(C) 2004-2005 Enrico Ros\n"
"(C) 2005 Piotr Szymanski\n"
"(C) 2004-2017 Albert Astals Cid\n"
"(C) 2006-2009 Pino Toscano"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:36
#, kde-format
msgid "Former maintainer"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:37
#, kde-format
msgid "Lots of framework work, ODT and FictionBook backends"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:38
#, kde-format
msgid "Developer"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:39
#, kde-format
msgid "Created Okular from KPDF codebase"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:40
#, kde-format
msgid "KPDF developer"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:41
#, kde-format
msgid "Annotations artwork"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:42
#, kde-format
msgid "Table selection tool"
msgstr ""
#. +> trunk5 stable5
#: aboutdata.h:43
#, kde-format
msgid "Annotation improvements"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HighlightImages)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:28
#, kde-format
msgid "Draw border around &Images"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_HighlightLinks)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:35
#, kde-format
msgid "Draw border around &Links"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_ChangeColors)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:45
#, kde-format
msgid "Change &colors"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, warn)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:63
#, kde-format
msgid "Warning: these options can badly affect drawing speed."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:78
#, kde-format
msgid "Color mode:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_RenderMode)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:89
#, kde-format
msgid "Invert Colors"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_RenderMode)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:94
#, kde-format
msgid "Change Paper Color"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_RenderMode)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:99
#, kde-format
msgid "Change Dark & Light Colors"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_RenderMode)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:104
#, kde-format
msgid "Convert to Black & White"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:165
#, kde-format
msgid "Paper color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:218
#, kde-format
msgid "Dark color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:250
#, kde-format
msgid "Light color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:291
#, kde-format
msgid "Threshold:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
#. +> trunk5 stable5
#: conf/dlgaccessibilitybase.ui:323
#, kde-format
msgid "Contrast:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: conf/dlgannotationsbase.ui:31
#, kde-format
msgid "Identity"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: conf/dlgannotationsbase.ui:55 ui/annotationpropertiesdialog.cpp:65
#, kde-format
msgid "&Author:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: conf/dlgannotationsbase.ui:71
#, kde-format
msgid "<b>Note</b>: the information here is used only for comments and reviews. Information inserted here will not be transmitted without your knowledge."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, annotToolsGroup)
#. +> trunk5 stable5
#: conf/dlgannotationsbase.ui:87
#, kde-format
msgid "Annotation tools"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:28
#, kde-format
msgctxt "Text editor"
msgid "Custom Text Editor"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:29
#, kde-format
msgctxt "Text editor"
msgid "Kate"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:30
#, kde-format
msgctxt "Text editor"
msgid "Kile"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:31
#, kde-format
msgctxt "Text editor"
msgid "SciTE"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:32
#, kde-format
msgctxt "Text editor"
msgid "Emacs client"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:33
#, kde-format
msgctxt "Text editor"
msgid "Lyx client"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgeditor.cpp:36
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"<qt>Set the command of a custom text editor to be launched.<br />"
"\n"
"You can also put few placeholders:\n"
"<ul>\n"
" "
"<li>%f - the file name</li>"
"\n"
" "
"<li>%l - the line of the file to be reached</li>"
"\n"
" "
"<li>%c - the column of the file to be reached</li>"
"\n"
"</ul>"
"\n"
"If %f is not specified, then the file name is appended to the specified command."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: conf/dlgeditorbase.ui:19 conf/preferencesdialog.cpp:56
#, kde-format
msgid "Editor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: conf/dlgeditorbase.ui:25
#, kde-format
msgid "Editor:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ExternalEditor)
#. +> trunk5 stable5
#: conf/dlgeditorbase.ui:32
#, kde-format
msgctxt "@info:whatsthis"
msgid "Choose the editor you want to launch when Okular wants to open a source file."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: conf/dlgeditorbase.ui:70
#, kde-format
msgid "Command:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:32 conf/dlgpresentationbase.ui:96
#: conf/editannottooldialog.cpp:74
#, kde-format
msgid "Appearance"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowScrollBars)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:70
#, kde-format
msgid "Show scroll&bars"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SyncThumbnailsViewport)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:80
#, kde-format
msgid "Link the &thumbnails with the page"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowOSD)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:87
#, kde-format
msgid "Show &hints and info messages"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DisplayDocumentTitle)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:94
#, kde-format
msgid "Display document title in titlebar if available"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:101
#, kde-format
msgid "When not displaying document title:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFileName)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:126
#, kde-format
msgid "Display file name only"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, radioFilePath)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:136
#, kde-format
msgid "Display full file path"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseCustomBackgroundColor)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:164
#, kde-format
msgid "Use custom background color"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:233
#, kde-format
msgid "Program Features"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShellOpenFileInTabs)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:271
#, kde-format
msgid "Open new files in &tabs"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ObeyDRM)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:278
#, kde-format
msgid "&Obey DRM limitations"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_WatchFile)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:285
#, kde-format
msgid "&Reload document on file change"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ChooseGenerators)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:292
#, kde-format
msgid "Show backend selection dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_rtlReadingDirection)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:318
#, kde-format
msgid "Right to left reading direction"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:343
#, kde-format
msgid "View Options"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, columnLabel)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:349
#, kde-format
msgid "Overview &columns:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, scrollOverlapLabel)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:372
#, kde-format
msgid "Defines how much of the current viewing area will still be visible when pressing the Page Up/Down keys."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, scrollOverlapLabel)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:375
#, kde-format
msgid "&Page Up/Down overlap:"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_ScrollOverlap)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:388
#, kde-format, no-c-format
msgid "%"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:402 conf/dlggeneralbase.ui:423
#, kde-format
msgid ""
"Defines the default zoom mode for files which were never opened before.\n"
"For files which were opened before the previous zoom is applied."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLabel, label_3)
#. i18n: ectx: property (whatsThis), widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:406 conf/dlggeneralbase.ui:427
#, kde-format
msgctxt "@info:whatsthis"
msgid ""
"Defines the default zoom mode for files which were never opened before.\n"
"For files which were opened before the previous zoom is applied."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:409
#, kde-format
msgid "&Default Zoom:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:431
#, kde-format, no-c-format
msgid "100%"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:436 part.cpp:2964 ui/pageview.cpp:4057
#, kde-format
msgid "Fit Width"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:441 ui/pageview.cpp:4057
#, kde-format
msgid "Fit Page"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_ZoomMode)
#. +> trunk5 stable5
#: conf/dlggeneralbase.ui:446 ui/pageview.cpp:4057
#, kde-format
msgid "Auto Fit"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgperformance.cpp:55
#, kde-format
msgid "Keeps used memory as low as possible. Do not reuse anything. (For systems with low memory.)"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgperformance.cpp:58
#, kde-format
msgid "A good compromise between memory usage and speed gain. Preload next page and boost searches. (For systems with 2GB of memory, typically.)"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgperformance.cpp:61
#, kde-format
msgid "Keeps everything in memory. Preload next pages. Boost searches. (For systems with more than 4GB of memory.)"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgperformance.cpp:65
#, kde-format, no-c-format
msgid "Loads and keeps everything in memory. Preload all pages. (Will use at maximum 50% of your total memory or your free memory, whatever is bigger.)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:32
#, kde-format
msgid "CPU Usage"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableCompositing)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:87
#, kde-format
msgid "Enable &transparency effects"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupbox)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:146
#, kde-format
msgid "Memory Usage"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lowRadio)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:193
#, kde-format
msgid "&Low"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, normalRadio)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:203
#, kde-format
msgid "Nor&mal (default)"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, aggressiveRadio)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:213
#, kde-format
msgid "Aggr&essive"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, greedyRadio)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:223
#, kde-format
msgid "G&reedy"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:302
#, kde-format
msgid "Rendering"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TextAntialias)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:308
#, kde-format
msgid "Enable Text Antialias"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GraphicsAntialias)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:315
#, kde-format
msgid "Enable Graphics Antialias"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TextHinting)
#. +> trunk5 stable5
#: conf/dlgperformancebase.ui:322
#, kde-format
msgid "Enable Text Hinting"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgpresentation.cpp:35
#, kde-format
msgctxt "@label:listbox The current screen, for the presentation mode"
msgid "Current Screen"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgpresentation.cpp:36
#, kde-format
msgctxt "@label:listbox The default screen for the presentation mode"
msgid "Default Screen"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgpresentation.cpp:40
#, kde-format
msgctxt "@label:listbox %1 is the screen number (0, 1, ...)"
msgid "Screen %1"
msgstr ""
#. +> trunk5 stable5
#: conf/dlgpresentation.cpp:55
#, kde-format
msgctxt "Advance every %1 seconds"
msgid " second"
msgid_plural " seconds"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:29
#, kde-format
msgid "Navigation"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SlidesAdvance)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:67
#, kde-format
msgid "Advance every:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SlidesLoop)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:86
#, kde-format
msgid "Loop after last page"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:104
#, kde-format
msgid "Background color:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:117
#, kde-format
msgid "Mouse cursor:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesCursor)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:128
#, kde-format
msgid "Hidden After Delay"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesCursor)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:133
#, kde-format
msgid "Always Visible"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesCursor)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:138
#, kde-format
msgid "Always Hidden"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SlidesShowProgress)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:148
#, kde-format
msgid "Show &progress indicator"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SlidesShowSummary)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:155
#, kde-format
msgid "Show s&ummary page"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_SlidesTransitionsEnabled)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:165
#, kde-format
msgid "Enable transitions"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:177
#, kde-format
msgid "Default transition:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:188
#, kde-format
msgid "Blinds Vertical"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:193
#, kde-format
msgid "Blinds Horizontal"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:198
#, kde-format
msgid "Box In"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:203
#, kde-format
msgid "Box Out"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:208
#, kde-format
msgid "Dissolve"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:213
#, kde-format
msgid "Fade"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:218
#, kde-format
msgid "Glitter Down"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:223
#, kde-format
msgid "Glitter Right"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:228
#, kde-format
msgid "Glitter Right-Down"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:233
#, kde-format
msgid "Random Transition"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:238
#, kde-format
msgid "Replace"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:243
#, kde-format
msgid "Split Horizontal In"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:248
#, kde-format
msgid "Split Horizontal Out"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:253
#, kde-format
msgid "Split Vertical In"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:258
#, kde-format
msgid "Split Vertical Out"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:263
#, kde-format
msgid "Wipe Down"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:268
#, kde-format
msgid "Wipe Right"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:273
#, kde-format
msgid "Wipe Left"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_SlidesTransition)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:278
#, kde-format
msgid "Wipe Up"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:289
#, kde-format
msgid "Placement"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:295
#, kde-format
msgid "Screen:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, annotationToolsGroupBox)
#. +> trunk5 stable5
#: conf/dlgpresentationbase.ui:311
#, kde-format
msgid "Drawing Tool Configuration"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:53 conf/editdrawingtooldialog.cpp:46
#, kde-format
msgid "&Name:"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:62
#, kde-format
msgid "&Type:"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:80 ui/guiutils.cpp:72
#: ui/pageviewannotator.cpp:218 ui/pageviewannotator.cpp:1093
#, kde-format
msgid "Pop-up Note"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:81 ui/guiutils.cpp:74
#: ui/pageviewannotator.cpp:203 ui/pageviewannotator.cpp:1091
#, kde-format
msgid "Inline Note"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:82 ui/guiutils.cpp:106
#: ui/pageviewannotator.cpp:1089
#, kde-format
msgid "Freehand Line"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:83 ui/guiutils.cpp:78
#: ui/pageviewannotator.cpp:1103
#, kde-format
msgid "Straight Line"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:84 ui/guiutils.cpp:80
#: ui/pageviewannotator.cpp:1095
#, kde-format
msgid "Polygon"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:85
#, kde-format
msgid "Text markup"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:86
#, kde-format
msgid "Geometrical shape"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:87 ui/guiutils.cpp:103
#: ui/pageviewannotator.cpp:1101
#, kde-format
msgid "Stamp"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:93
#, kde-format
msgid "Create annotation tool"
msgstr ""
#. +> trunk5 stable5
#: conf/editannottooldialog.cpp:97
#, kde-format
msgid "Edit annotation tool"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:53
#, kde-format
msgid "Color:"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:60
#, kde-format
msgid "&Pen Width:"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:66
#, kde-format
msgctxt "Suffix for the pen width, eg '10 px'"
msgid " px"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:70 ui/annotationwidgets.cpp:209
#, kde-format
msgid "&Opacity:"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:76 ui/annotationwidgets.cpp:214
#, kde-format
msgctxt "Suffix for the opacity level, eg '80 %'"
msgid " %"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:82
#, kde-format
msgid "Create drawing tool"
msgstr ""
#. +> trunk5 stable5
#: conf/editdrawingtooldialog.cpp:89
#, kde-format
msgid "Edit drawing tool"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:40
#, kde-format
msgid "General"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:40
#, kde-format
msgid "General Options"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:41
#, kde-format
msgid "Accessibility"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:41
#, kde-format
msgid "Accessibility Reading Aids"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:42
#, kde-format
msgid "Performance"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:42
#, kde-format
msgid "Performance Tuning"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:45
#, kde-format
msgid "Configure Viewer"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:52
#, kde-format
msgid "Presentation"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:53
#, kde-format
msgid "Options for Presentation Mode"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:54
#, kde-format
msgid "Annotations"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:55
#, kde-format
msgid "Annotation Options"
msgstr ""
#. +> trunk5 stable5
#: conf/preferencesdialog.cpp:56
#, kde-format
msgid "Editor Options"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetconfigurationtoolsbase.cpp:33
#, kde-format
msgid "&Add..."
msgstr ""
#. +> trunk5 stable5
#: conf/widgetconfigurationtoolsbase.cpp:36
#, kde-format
msgid "&Edit..."
msgstr ""
#. +> trunk5 stable5
#: conf/widgetconfigurationtoolsbase.cpp:40
#, kde-format
msgid "&Remove"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetconfigurationtoolsbase.cpp:44
#, kde-format
msgid "Move &Up"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetconfigurationtoolsbase.cpp:48
#, kde-format
msgid "Move &Down"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetdrawingtools.cpp:113
#, kde-format
msgid "Default Drawing Tool #%1"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetdrawingtools.cpp:148 conf/widgetdrawingtools.cpp:192
#, kde-format
msgid "Duplicated Name"
msgstr ""
#. +> trunk5 stable5
#: conf/widgetdrawingtools.cpp:148 conf/widgetdrawingtools.cpp:192
#, kde-format
msgid "There's already a tool with that name. Using a default one"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:106
#, kde-format
msgid "Go to page %1"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:107
#, kde-format
msgid "Open external file"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:165
#, kde-format
msgid "Execute '%1'..."
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:264
#, kde-format
msgid "First Page"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:266 ui/presentationwidget.cpp:171
#, kde-format
msgid "Previous Page"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:268 ui/presentationwidget.cpp:187
#, kde-format
msgid "Next Page"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:270
#, kde-format
msgid "Last Page"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:272
#, kde-format
msgid "Back"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:274
#, kde-format
msgid "Forward"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:276
#, kde-format
msgid "Quit"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:278
#, kde-format
msgid "Start Presentation"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:280
#, kde-format
msgid "End Presentation"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:282
#, kde-format
msgid "Find..."
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:284
#, kde-format
msgid "Go To Page..."
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:331
#, kde-format
msgid "Play sound..."
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:398 core/action.cpp:511
#, kde-format
msgid "JavaScript Script"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:446
#, kde-format
msgid "Play movie..."
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:516
#, kde-format
msgid "Play movie"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:518
#, kde-format
msgid "Stop movie"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:520
#, kde-format
msgid "Pause movie"
msgstr ""
#. +> trunk5 stable5
#: core/action.cpp:522
#, kde-format
msgid "Resume movie"
msgstr ""
#. +> trunk5 stable5
#: core/chooseenginedialog.cpp:25
#, kde-format
msgid "Backend Selection"
msgstr ""
#. +> trunk5 stable5
#: core/chooseenginedialog.cpp:43
#, kde-format
msgid ""
"<qt>More than one backend found for the MIME type:<br />"
"<b>%1</b> (%2).<br />"
"<br />"
"Please select which one to use:</qt>"
msgstr ""
#. +> trunk5
#: core/document.cpp:177
#, kde-format
msgctxt "paper type and orientation (eg: Portrait A4)"
msgid "Portrait %1"
msgstr ""
#. +> stable5
#: core/document.cpp:177
#, kde-format
msgctxt "paper type and orientation (eg: Portrait A4)"
msgid "Portrait %0"
msgstr ""
#. +> trunk5
#: core/document.cpp:179
#, kde-format
msgctxt "paper type and orientation (eg: Portrait A4)"
msgid "Landscape %1"
msgstr ""
#. +> stable5
#: core/document.cpp:179
#, kde-format
msgctxt "paper type and orientation (eg: Portrait A4)"
msgid "Landscape %0"
msgstr ""
#. +> trunk5 stable5
#: core/document.cpp:206
#, kde-format
msgctxt "%1 is width, %2 is height, %3 is paper size name"
msgid "%1 x %2 in (%3)"
msgstr ""
#. +> trunk5 stable5
#: core/document.cpp:210
#, kde-format
msgctxt "%1 is width, %2 is height, %3 is paper size name"
msgid "%1 x %2 mm (%3)"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:1607
+#: core/document.cpp:1622
#, kde-format
msgid "Continuing search from beginning"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:1612
+#: core/document.cpp:1627
#, kde-format
msgid "Continuing search from bottom"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:2334
+#: core/document.cpp:2349
#, kde-format
msgid "Can not find a plugin which is able to handle the document being passed."
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:3352
+#: core/document.cpp:3495
#, kde-format
msgctxt "remove a collection of annotations from the page"
msgid "remove annotations"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:3931 core/document.cpp:3939
+#: core/document.cpp:4074 core/document.cpp:4082
#, kde-format
msgid "The document is trying to execute an external application and, for your safety, Okular does not allow that."
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:3952
+#: core/document.cpp:4095
#, kde-format
msgid "No application found for opening file of mimetype %1."
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4200
+#: core/document.cpp:4343
#, kde-format
msgid "Could not open a temporary file"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4202
+#: core/document.cpp:4345
#, kde-format
msgid "Print conversion failed"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4204
+#: core/document.cpp:4347
#, kde-format
msgid "Printing process crashed"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4206
+#: core/document.cpp:4349
#, kde-format
msgid "Printing process could not start"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4208
+#: core/document.cpp:4351
#, kde-format
msgid "Printing to file failed"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4210
+#: core/document.cpp:4353
#, kde-format
msgid "Printer was in invalid state"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4212
+#: core/document.cpp:4355
#, kde-format
msgid "Unable to find file to print"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4214
+#: core/document.cpp:4357
#, kde-format
msgid "There was no file to print"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4216
+#: core/document.cpp:4359
#, kde-format
msgid "Could not find a suitable binary for printing. Make sure CUPS lpr binary is available"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:4218
+#: core/document.cpp:4361
#, kde-format
msgid "The page print size is invalid"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5298
+#: core/document.cpp:5444
#, kde-format
msgid "Title"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5301
+#: core/document.cpp:5447
#, kde-format
msgid "Subject"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5304
+#: core/document.cpp:5450
#, kde-format
msgid "Description"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5307
+#: core/document.cpp:5453
#, kde-format
msgid "Author"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5310
+#: core/document.cpp:5456
#, kde-format
msgid "Creator"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5313
+#: core/document.cpp:5459
#, kde-format
msgid "Producer"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5316
+#: core/document.cpp:5462
#, kde-format
msgid "Copyright"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5319
+#: core/document.cpp:5465
#, kde-format
msgid "Pages"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5322
+#: core/document.cpp:5468
#, kde-format
msgid "Created"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5325
+#: core/document.cpp:5471
#, kde-format
msgid "Modified"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5328
+#: core/document.cpp:5474
#, kde-format
msgid "Mime Type"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5331
+#: core/document.cpp:5477
#, kde-format
msgid "Category"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5334
+#: core/document.cpp:5480
#, kde-format
msgid "Keywords"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5337
+#: core/document.cpp:5483
#, kde-format
msgid "File Path"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5340
+#: core/document.cpp:5486
#, kde-format
msgid "File Size"
msgstr ""
#. +> trunk5 stable5
-#: core/document.cpp:5343
+#: core/document.cpp:5489
#, kde-format
msgid "Page Size"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:69
#, kde-format
msgctxt "Add an annotation to the page"
msgid "add annotation"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:116
#, kde-format
msgctxt "Remove an annotation from the page"
msgid "remove annotation"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:167
#, kde-format
msgctxt "Modify an annotation's internal properties (Color, line-width, etc.)"
msgid "modify annotation properties"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:205
#, kde-format
msgctxt "Translate an annotation's position on the page"
msgid "translate annotation"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:282
#, kde-format
msgctxt "Change an annotation's size"
msgid "adjust annotation"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:355
#, kde-format
msgctxt "Generic text edit command"
msgid "edit text"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:444
#, kde-format
msgctxt "Edit an annotation's text contents"
msgid "edit annotation contents"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:502
#, kde-format
msgctxt "Edit an form's text contents"
msgid "edit form contents"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:559
#, kde-format
msgctxt "Edit a list form's choices"
msgid "edit list form choices"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:601
#, kde-format
msgctxt "Edit a combo form's selection"
msgid "edit combo form selection"
msgstr ""
#. +> trunk5 stable5
#: core/documentcommands.cpp:690
#, kde-format
msgctxt "Edit the state of a group of form buttons"
msgid "edit form button states"
msgstr ""
#. +> trunk5 stable5
-#: core/generator.cpp:686
+#: core/generator.cpp:766
#, kde-format
msgid "Plain &Text..."
msgstr ""
#. +> trunk5 stable5
-#: core/generator.cpp:689
+#: core/generator.cpp:769
#, kde-format
msgid "PDF"
msgstr ""
#. +> trunk5 stable5
-#: core/generator.cpp:694
+#: core/generator.cpp:774
#, kde-format
msgctxt "This is the document format"
msgid "OpenDocument Text"
msgstr ""
#. +> trunk5 stable5
-#: core/generator.cpp:698
+#: core/generator.cpp:778
#, kde-format
msgctxt "This is the document format"
msgid "HTML"
msgstr ""
#. +> trunk5 stable5
#: core/sourcereference.cpp:102
#, kde-format
msgctxt "'source' is a source file"
msgid "Source: %1"
msgstr ""
#. +> trunk5 stable5
#: core/textdocumentsettings.cpp:40
#, kde-format
msgid "&Default Font:"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 stable5
#: part-viewermode.rc:5 part.rc:4
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5 stable5
#: part-viewermode.rc:9 part.rc:85
#, kde-format
msgid "&Settings"
msgstr ""
#. i18n: ectx: Menu (help)
#. +> trunk5 stable5
#: part-viewermode.rc:14 part.rc:91
#, kde-format
msgid "&Help"
msgstr ""
#. i18n: ectx: Menu (view_orientation)
#. +> trunk5 stable5
#: part-viewermode.rc:31 part.rc:41
#, kde-format
msgid "&Orientation"
msgstr ""
#. i18n: ectx: Menu (bookmarks)
#. i18n: ectx: Menu (okular_bookmarks)
#. +> trunk5 stable5
#: part-viewermode.rc:50 part.rc:63
#, kde-format
msgid "&Bookmarks"
msgstr ""
#. i18n: ectx: ToolBar (OkularViewerToolBar)
#. +> trunk5 stable5
#: part-viewermode.rc:63
#, kde-format
msgid "Viewer Toolbar"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:419
#, kde-format
msgid "Contents"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:425
#, kde-format
msgid "Layers"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:437
#, kde-format
msgid "Thumbnails"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:443
#, kde-format
msgid "Reviews"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:448
#, kde-format
msgid "Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:482
#, kde-format
msgid ""
"This document contains annotations or form data that were saved internally by a previous Okular version. Internal storage is <b>no longer supported</b>.<br/>"
"Please save to a file in order to move them if you want to continue to edit the document."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:488
#, kde-format
msgid "This document has embedded files. <a href=\"okular:/embeddedfiles\">Click here to see them</a> or go to File -> Embedded Files."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:642
#, kde-format
msgctxt "Previous page"
msgid "Previous"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:643
#, kde-format
msgid "Go back to the Previous Page"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:644
#, kde-format
msgid "Moves to the previous page of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:654
#, kde-format
msgctxt "Next page"
msgid "Next"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:655
#, kde-format
msgid "Advance to the Next Page"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:656
#, kde-format
msgid "Moves to the next page of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:667
#, kde-format
msgid "Beginning of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:668
#, kde-format
msgid "Moves to the beginning of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:672
#, kde-format
msgid "End of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:673
#, kde-format
msgid "Moves to the end of the document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:684 part.cpp:2309 ui/bookmarklist.cpp:249 ui/bookmarklist.cpp:276
#, kde-format
msgid "Rename Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:686
#, kde-format
msgid "Rename the current bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:690
#, kde-format
msgid "Previous Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:692
#, kde-format
msgid "Go to the previous bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:696
#, kde-format
msgid "Next Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:698
#, kde-format
msgid "Go to the next bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:724
#, kde-format
msgid "Configure Okular..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:729
#, kde-format
msgid "Configure Viewer..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:736
#, kde-format
msgid "Configure Viewer Backends..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:740
#, kde-format
msgid "Configure Backends..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:753 ui/annotationpopup.cpp:105 ui/annotationpopup.cpp:140
#: ui/propertiesdialog.cpp:53
#, kde-format
msgid "&Properties"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:774
#, kde-format
msgid "About Backend"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:779
#, kde-format
msgid "Reloa&d"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:781
#, kde-format
msgid "Reload the current document from disk."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:787
#, kde-format
msgid "Close &Find Bar"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:792
#, kde-format
msgid "Page Number"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:835
#, kde-format
msgid "Show &Navigation Panel"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:843
#, kde-format
msgid "Show &Page Bar"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:849
#, kde-format
msgid "&Embedded Files"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:855
#, kde-format
msgid "E&xport As"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:867
#, kde-format
msgid "S&hare"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:876
#, kde-format
msgid "P&resentation"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:883
#, kde-format
msgid "&Import PostScript as PDF..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:888
#, kde-format
msgid "&Get Books From Internet..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:893
#, kde-format
msgid "Switch Blackscreen Mode"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:901
#, kde-format
msgid "Erase Drawings"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:906
#, kde-format
msgid "Configure Annotations..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:911
#, kde-format
msgid "Play/Pause Presentation"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1061
#, kde-format
msgid "Could not open '%1'. File does not exist"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1068
#, kde-format
msgid "Could not open '%1' (%2) "
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1123
#, kde-format
msgid "The loading of %1 has been canceled."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1139
#, kde-format
msgid "Could not open %1. Reason: %2"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1171
#, kde-format
msgid "Configure Viewer Backends"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1175
#, kde-format
msgid "Configure Backends"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1264
#, kde-format
msgid "The program \"ps2pdf\" was not found, so Okular can not import PS files using it."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1264
#, kde-format
msgid "ps2pdf not found"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1269
#, kde-format
msgid "PostScript files (%1)"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1285
#, kde-format
msgid "Importing PS file as PDF (this may take a while)..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1423
#, kde-format
msgid "Please enter the password to read the document:"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1425
#, kde-format
msgid "Incorrect password. Try again:"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1430
#, kde-format
msgid "Document Password"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1540
#, kde-format
msgid "This document has XFA forms, which are currently <b>unsupported</b>."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1548
#, kde-format
msgid "This document has forms. Click on the button to interact with them, or use View -> Show Forms."
msgstr ""
#. +> trunk5
#: part.cpp:1627
#, kde-format
msgid ""
"This document wants to be shown full screen.\n"
"Leave normal mode and enter presentation mode?"
msgstr ""
#. +> stable5
#: part.cpp:1627
#, kde-format
msgid ""
"The document requested to be launched in presentation mode.\n"
"Do you want to allow it?"
msgstr ""
#. +> trunk5
#: part.cpp:1629
#, kde-format
msgid "Request to Change Viewing Mode"
msgstr ""
#. +> trunk5
#: part.cpp:1630
#, kde-format
msgid "Enter Presentation Mode"
msgstr ""
#. +> stable5
#: part.cpp:1629
#, kde-format
msgid "Presentation Mode"
msgstr ""
#. +> stable5
#: part.cpp:1630
#, kde-format
msgid "Allow"
msgstr ""
#. +> stable5
#: part.cpp:1630
#, kde-format
msgid "Allow the presentation mode"
msgstr ""
#. +> trunk5
#: part.cpp:1631
#, kde-format
msgid "Deny Request"
msgstr ""
#. +> stable5
#: part.cpp:1631
#, kde-format
msgid "Do Not Allow"
msgstr ""
#. +> stable5
#: part.cpp:1631
#, kde-format
msgid "Do not allow the presentation mode"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1700
#, kde-format
msgid "Could not open %1"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1720
#, kde-format
msgid ""
"There are unsaved changes, and the file '%1' has been modified by another program. Your changes will be lost, because the file can no longer be saved.<br>"
"Do you want to continue reloading the file?"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1721 part.cpp:1729 part.cpp:2488
#, kde-format
msgid "File Changed"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1722
#, kde-format
msgid "Continue Reloading"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1723
#, kde-format
msgid "Abort Reloading"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1728
#, kde-format
msgid ""
"There are unsaved changes, and the file '%1' has been modified by another program. Your changes will be lost, because the file can no longer be saved.<br>"
"Do you want to continue closing the file?"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1730
#, kde-format
msgid "Continue Closing"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1731
#, kde-format
msgid "Abort Closing"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1737
#, kde-format
msgid "Do you want to save your changes to \"%1\" or discard them?"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1738
#, kde-format
msgid "Close Document"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1856
#, kde-format
msgid "This link points to a close document action that does not work when using the embedded viewer."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1862
#, kde-format
msgid "This link points to a quit application action that does not work when using the embedded viewer."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:1964 part.cpp:1983
#, kde-format
msgid "Reloading the document..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2118 part.cpp:2960 ui/bookmarklist.cpp:250
#, kde-format
msgid "Remove Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2184
#, kde-format
msgid "Go to Page"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2207
#, kde-format
msgid "&Page:"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2309
#, kde-format
msgid "Enter the new name of the bookmark:"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2360
#, kde-format
msgid "Rename this Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2363
#, kde-format
msgid "Remove this Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2453 part.cpp:2454 part.cpp:3116
#, kde-format
msgctxt "File type name and pattern"
msgid "%1 (%2)"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2463
#, kde-format
msgid "Save As"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2489
#, kde-format
msgid "The file '%1' has been modified by another program, which means it can no longer be saved."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2497
#, kde-format
msgid ""
"The current document is protected with a password.<br />"
"In order to save, the file needs to be reloaded. You will be asked for the password again and your undo/redo history will be lost.<br />"
"Do you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2498 part.cpp:2533
#, kde-format
msgid "Save - Warning"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2517
#, kde-format
msgid "Could not open the temporary file for saving."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2532
#, kde-format
msgid ""
"After saving, the current document format requires the file to be reloaded. Your undo/redo history will be lost.<br />"
"Do you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2547 part.cpp:2618 part.cpp:2641 part.cpp:3133
#, kde-format
msgid "File could not be saved in '%1'. Try to save it to another location."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2560
#, kde-format
msgid "Filled form contents"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2561
#, kde-format
msgid "User annotations"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2567
#, kde-format
msgid "You are about to save changes, but the current file format does not support saving the following elements. Please use the <i>Okular document archive</i> format to preserve them."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2570 part.cpp:2593
#, kde-format
msgid "Warning"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2571 part.cpp:2594
#, kde-format
msgid "Save as Okular document archive..."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2586
#, kde-format
msgid "You are about to save changes, but the current file format does not support saving the following elements. Please use the <i>Okular document archive</i> format to preserve them. Click <i>Continue</i> to save the document and discard these elements."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2587
#, kde-format
msgid "You are about to save changes, but the current file format does not support saving the following elements. Please use the <i>Okular document archive</i> format to preserve them. Click <i>Continue</i> to save, but you will lose these elements as well as the undo/redo history."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2589
#, kde-format
msgid "Continue"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2590
#, kde-format
msgid "Continue losing changes"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2620
#, kde-format
msgid "File could not be saved in '%1'. %2"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2664
#, kde-format
msgid ""
"Okular cannot copy %1 to the specified location.\n"
"\n"
"The document does not exist anymore."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2698
#, kde-format
msgid "File could not be saved in '%1'. Error: '%2'. Try to save it to another location."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2957 ui/annotationmodel.cpp:331
#, kde-format
msgid "Page %1"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2962
#, kde-format
msgid "Add Bookmark"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:2972
#, kde-format
msgid "Tools"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3170
#, kde-format
msgctxt "@title:window"
msgid "Print"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3231
#, kde-format
msgid "Printing this document is not allowed."
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3240
#, kde-format
msgid "Could not print the document. Unknown error. Please report to bugs.kde.org"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3244
#, kde-format
msgid "Could not print the document. Detailed error is \"%1\". Please report to bugs.kde.org"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3328
#, kde-format
msgid "Go to the place you were before"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3332
#, kde-format
msgid "Go to the place you were after"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3357
#, kde-format
msgid "<qt><strong>File Error!</strong> Could not create temporary file <nobr><strong>%1</strong></nobr>.</qt>"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3370
#, kde-format
msgid "<qt><strong>File Error!</strong> Could not open the file <nobr><strong>%1</strong></nobr> for uncompression. The file will not be loaded.</qt>"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3373
#, kde-format
msgid "<qt>This error typically occurs if you do not have enough permissions to read the file. You can check ownership and permissions if you right-click on the file in the Dolphin file manager and then choose the 'Properties' tab.</qt>"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3395
#, kde-format
msgid "<qt><strong>File Error!</strong> Could not uncompress the file <nobr><strong>%1</strong></nobr>. The file will not be loaded.</qt>"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3398
#, kde-format
msgid "<qt>This error typically occurs if the file is corrupt. If you want to be sure, try to decompress the file manually using command-line tools.</qt>"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3427
#, kde-format
msgid "No Bookmarks"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3500
#, kde-format
msgid "There was a problem sharing the document: %1"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3501 part.cpp:3508
#, kde-format
msgid "Share"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3505
#, kde-format
msgid "Document shared successfully"
msgstr ""
#. +> trunk5 stable5
#: part.cpp:3507
#, kde-format
msgid "You can find the shared document at: <a href=\"%1\">%1</a>"
msgstr ""
#. i18n: ectx: Menu (edit)
#. +> trunk5 stable5
#: part.rc:17
#, kde-format
msgid "&Edit"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5 stable5
#: part.rc:29
#, kde-format
msgid "&View"
msgstr ""
#. i18n: ectx: Menu (go)
#. +> trunk5 stable5
#: part.rc:51
#, kde-format
msgid "&Go"
msgstr ""
#. i18n: ectx: Menu (tools)
#. +> trunk5 stable5
#: part.rc:71
#, kde-format
msgid "&Tools"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
#. +> trunk5 stable5
#: part.rc:95 shell/shell.rc:22
#, kde-format
msgid "Main Toolbar"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:49
#, kde-format
msgid "Page of the document to be shown"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:50
#, kde-format
msgid "Start the document in presentation mode"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:51
#, kde-format
msgid "Start with print dialog"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:52
#, kde-format
msgid "\"Unique instance\" control"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:53
#, kde-format
msgid "Not raise window"
msgstr ""
#. +> trunk5 stable5
#: shell/main.cpp:54
#, kde-format
msgid "Documents to open. Specify '-' to read from stdin."
msgstr ""
#. +> trunk5 stable5
#: shell/okular_main.cpp:127
#, kde-format
msgid "Error: Can't open more than one document with the --unique switch"
msgstr ""
#. +> trunk5 stable5
#: shell/okular_main.cpp:134
#, kde-format
msgid "Error: Can't open more than one document with the --presentation switch"
msgstr ""
#. +> trunk5 stable5
#: shell/okular_main.cpp:141
#, kde-format
msgid "Error: Can't open more than one document with the --print switch"
msgstr ""
#. +> trunk5 stable5
#: shell/okular_main.cpp:148
#, kde-format
msgid "Error: Can't open more than one document with the --page switch"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:92
#, kde-format
msgid "Unable to find the Okular component: %1"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:135
#, kde-format
msgid "There is already a unique Okular instance running. This instance won't be the unique one."
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:152
#, kde-format
msgid "Unable to find the Okular component."
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:341
#, kde-format
msgid ""
"Click to open a file\n"
"Click and hold to open a recent file"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:342
#, kde-format
msgid "<b>Click</b> to open a file or <b>Click and hold</b> to select a recent file"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:355
#, kde-format
msgid "Next Tab"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:361
#, kde-format
msgid "Previous Tab"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:470
#, kde-format
msgid "All files (*)"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:471
#, kde-format
msgid "All supported files (%1)"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:474
#, kde-format
msgid "Open Document"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:579
#, kde-format
msgid "Confirm Close"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:583
#, kde-format
msgid "Close Tabs"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:589
#, kde-format
msgid "You are about to close %1 tabs. Are you sure you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: shell/shell.cpp:590
#, kde-format
msgid "Warn me when I attempt to close multiple tabs"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpopup.cpp:88
#, kde-format
msgid "Annotation"
msgid_plural "%1 Annotations"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: ui/annotationpopup.cpp:90 ui/annotationpopup.cpp:130
#, kde-format
msgid "&Open Pop-up Note"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpopup.cpp:95 ui/annotationpopup.cpp:134
#, kde-format
msgid "&Delete"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpopup.cpp:115 ui/annotationpopup.cpp:149
#, kde-format
msgctxt "%1 is the name of the file to save"
msgid "&Save '%1'..."
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:57
#, kde-format
msgid "&Appearance"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:62
#, kde-format
msgid "&General"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:73
#, kde-format
msgid "Created: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:78 ui/annotationpropertiesdialog.cpp:178
#, kde-format
msgid "Modified: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:118
#, kde-format
msgid "Pop-up Note Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:120
#, kde-format
msgid "Inline Note Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:124
#, kde-format
msgid "Straight Line Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:126
#, kde-format
msgid "Polygon Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:129
#, kde-format
msgid "Geometry Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:132
#, kde-format
msgid "Text Markup Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:135
#, kde-format
msgid "Stamp Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:138
#, kde-format
msgid "Freehand Line Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:141
#, kde-format
msgid "Caret Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:144
#, kde-format
msgid "File Attachment Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:147
#, kde-format
msgid "Sound Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:150
#, kde-format
msgid "Movie Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationpropertiesdialog.cpp:153
#, kde-format
msgid "Annotation Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:202
#, kde-format
msgid "&Color:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:257
#, kde-format
msgid "Icon"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:262
#, kde-format
msgid "Comment"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:263
#, kde-format
msgid "Help"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:264
#, kde-format
msgid "Insert"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:265
#, kde-format
msgid "Key"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:266
#, kde-format
msgid "New Paragraph"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:267
#, kde-format
msgid "Note"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:268
#, kde-format
msgid "Paragraph"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:278
#, kde-format
msgid "Font:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:284
#, kde-format
msgid "Align:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:288
#, kde-format
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:289
#, kde-format
msgid "Center"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:290
#, kde-format
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:293
#, kde-format
msgid "Border Width:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:340
#, kde-format
msgid "Stamp Symbol"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:347
#, kde-format
msgid "Bookmark"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:348
#, kde-format
msgid "KDE"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:349
#, kde-format
msgid "Information"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:350
#, kde-format
msgid "Approved"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:351
#, kde-format
msgid "As Is"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:352
#, kde-format
msgid "Confidential"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:353
#, kde-format
msgid "Departmental"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:354
#, kde-format
msgid "Draft"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:355
#, kde-format
msgid "Experimental"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:356
#, kde-format
msgid "Expired"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:357
#, kde-format
msgid "Final"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:358
#, kde-format
msgid "For Comment"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:359
#, kde-format
msgid "For Public Release"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:360
#, kde-format
msgid "Not Approved"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:361
#, kde-format
msgid "Not For Public Release"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:362
#, kde-format
msgid "Sold"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:363
#, kde-format
msgid "Top Secret"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:401
#, kde-format
msgid "Line Extensions"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:403
#, kde-format
msgid "Leader Line Length:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:408
#, kde-format
msgid "Leader Line Extensions Length:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:417 ui/annotationwidgets.cpp:509
#, kde-format
msgid "Style"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:419 ui/annotationwidgets.cpp:511
#: ui/annotationwidgets.cpp:591
#, kde-format
msgid "&Size:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:427 ui/annotationwidgets.cpp:587
#, kde-format
msgid "Inner color:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:546 ui/annotationwidgets.cpp:582
#, kde-format
msgid "Type:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:552 ui/guiutils.cpp:89
#, kde-format
msgid "Highlight"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:553 ui/guiutils.cpp:92
#: ui/pageviewannotator.cpp:1099
#, kde-format
msgid "Squiggle"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:554 ui/guiutils.cpp:95
#: ui/pageviewannotator.cpp:1107
#, kde-format
msgid "Underline"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:555 ui/pageviewannotator.cpp:1105
#, kde-format
msgid "Strike out"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:597 ui/pageviewannotator.cpp:1097
#, kde-format
msgid "Rectangle"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:598 ui/pageviewannotator.cpp:1085
#, kde-format
msgid "Ellipse"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:651
#, kde-format
msgid "File Attachment Symbol"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:657
#, kde-format
msgctxt "Symbol for file attachment annotations"
msgid "Graph"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:658
#, kde-format
msgctxt "Symbol for file attachment annotations"
msgid "Push Pin"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:659
#, kde-format
msgctxt "Symbol for file attachment annotations"
msgid "Paperclip"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:660
#, kde-format
msgctxt "Symbol for file attachment annotations"
msgid "Tag"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:671
#, kde-format
msgctxt "'File' as normal file, that can be opened, saved, etc.."
msgid "File"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:675 ui/embeddedfilesdialog.cpp:92
#, kde-format
msgctxt "Not available size"
msgid "N/A"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:676
#, kde-format
msgid "No description available."
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:680
#, kde-format
msgid "Name: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:684
#, kde-format
msgid "Size: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:688
#, kde-format
msgid "Description:"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:754
#, kde-format
msgid "Caret Symbol"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:759
#, kde-format
msgctxt "Symbol for caret annotations"
msgid "None"
msgstr ""
#. +> trunk5 stable5
#: ui/annotationwidgets.cpp:760
#, kde-format
msgctxt "Symbol for caret annotations"
msgid "P"
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:57
#, kde-format
msgid "Close this note"
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:102 ui/findbar.cpp:65
#, kde-format
msgid "Options"
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:113
#, kde-format
msgid ""
"This annotation may contain LaTeX code.\n"
"Click here to render."
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:375
#, kde-format
msgid "Cannot find latex executable."
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:375 ui/annotwindow.cpp:380 ui/annotwindow.cpp:385
#: ui/annotwindow.cpp:390
#, kde-format
msgid "LaTeX rendering failed"
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:380
#, kde-format
msgid "Cannot find dvipng executable."
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:385
#, kde-format
msgid "A problem occurred during the execution of the 'latex' command."
msgstr ""
#. +> trunk5 stable5
#: ui/annotwindow.cpp:390
#, kde-format
msgid "A problem occurred during the execution of the 'dvipng' command."
msgstr ""
#. +> trunk5 stable5
#: ui/bookmarklist.cpp:110
#, kde-format
msgctxt "%1 is the file name"
msgid ""
"%1\n"
"\n"
"One bookmark"
msgid_plural ""
"%1\n"
"\n"
"%2 bookmarks"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: ui/bookmarklist.cpp:155
#, kde-format
msgid "Current document only"
msgstr ""
#. +> trunk5 stable5
#: ui/bookmarklist.cpp:248
#, kde-format
msgid "Go to This Bookmark"
msgstr ""
#. +> trunk5 stable5
#: ui/bookmarklist.cpp:275
#, kde-format
msgctxt "Opens the selected document"
msgid "Open Document"
msgstr ""
#. +> trunk5 stable5
#: ui/bookmarklist.cpp:277
#, kde-format
msgid "Remove Bookmarks"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:11
#, kde-format
msgid "Red"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:16
#, kde-format
msgid "Green"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:21
#, kde-format
msgid "Blue"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:26
#, kde-format
msgid "Yellow"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:31
#, kde-format
msgid "Black"
msgstr ""
#. i18n: tag tool attribute name
#. +> trunk5 stable5
#: ui/data/drawingtools.xml:36
#, kde-format
msgid "White"
msgstr ""
#. +> trunk5 stable5
#: ui/drawingtoolactions.cpp:170
#, kde-format
msgid "Drawing Tool: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/drawingtoolactions.cpp:192 ui/drawingtoolactions.cpp:193
#, kde-format
msgid "Eraser"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:44
#, kde-format
msgctxt "Unknown date"
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:49
#, kde-format
msgctxt "@title:window"
msgid "Embedded Files"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:63
#, kde-format
msgctxt "@action:button"
msgid "View"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:71
#, kde-format
msgctxt "@title:column"
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:72
#, kde-format
msgctxt "@title:column"
msgid "Description"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:73
#, kde-format
msgctxt "@title:column"
msgid "Size"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:74
#, kde-format
msgctxt "@title:column"
msgid "Created"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:75
#, kde-format
msgctxt "@title:column"
msgid "Modified"
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:156
#, kde-format
msgctxt "@action:inmenu"
msgid "&Save As..."
msgstr ""
#. +> trunk5 stable5
#: ui/embeddedfilesdialog.cpp:157
#, kde-format
msgctxt "@action:inmenu"
msgid "&View..."
msgstr ""
#. +> trunk5 stable5
#: ui/fileprinterpreview.cpp:137
#, kde-format
msgid "Could not load print preview part"
msgstr ""
#. +> trunk5 stable5
#: ui/fileprinterpreview.cpp:152
#, kde-format
msgid "Print Preview"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:36 ui/presentationsearchbar.cpp:66
#, kde-format
msgid "Close"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:40
#, kde-format
msgctxt "Find text"
msgid "F&ind:"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:51
#, kde-format
msgid "Text to search for"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:56
#, kde-format
msgctxt "Find and go to the next search match"
msgid "Next"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:57
#, kde-format
msgid "Jump to next match"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:60
#, kde-format
msgctxt "Find and go to the previous search match"
msgid "Previous"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:61
#, kde-format
msgid "Jump to previous match"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:66
#, kde-format
msgid "Modify search behavior"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:68
#, kde-format
msgid "Case sensitive"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:70
#, kde-format
msgid "From current page"
msgstr ""
#. +> trunk5 stable5
#: ui/findbar.cpp:72
#, kde-format
msgid "Find as you type"
msgstr ""
#. +> trunk5 stable5
#: ui/formwidgets.cpp:631
#, kde-format
msgid "*|All Files"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:83
#, kde-format
msgid "Geometry"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:98
#, kde-format
msgid "Strike Out"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:109
#, kde-format
msgid "Caret"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:112
#, kde-format
msgid "File Attachment"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:115
#, kde-format
msgid "Sound"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:118
#, kde-format
msgid "Movie"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:121
#, kde-format
msgctxt "Caption for a screen annotation"
msgid "Screen"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:124
#, kde-format
msgctxt "Caption for a widget annotation"
msgid "Widget"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:127
#, kde-format
msgctxt "Caption for a rich media annotation"
msgid "Rich Media"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:139
#, kde-format
msgctxt "Unknown author"
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:156 ui/presentationwidget.cpp:379
#, kde-format
msgid "Author: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:207 ui/propertiesdialog.cpp:214
#, kde-format
msgid "Where do you want to save %1?"
msgstr ""
#. +> trunk5 stable5
#: ui/guiutils.cpp:218 ui/propertiesdialog.cpp:227
#, kde-format
msgid "Could not open \"%1\" for writing. File was not saved."
msgstr ""
#. +> trunk5 stable5
#: ui/ktreeviewsearchline.cpp:285
#, kde-format
msgid "Search Options"
msgstr ""
#. +> trunk5 stable5
#: ui/ktreeviewsearchline.cpp:286
#, kde-format
msgctxt "Enable case sensitive search in the side navigation panels"
msgid "Case Sensitive"
msgstr ""
#. +> trunk5 stable5
#: ui/ktreeviewsearchline.cpp:289
#, kde-format
msgctxt "Enable regular expression search in the side navigation panels"
msgid "Regular Expression"
msgstr ""
#. +> trunk5 stable5
#: ui/ktreeviewsearchline.cpp:376
#, kde-format
msgid "S&earch:"
msgstr ""
#. +> trunk5 stable5
#: ui/minibar.cpp:187
#, kde-format
msgctxt "Layouted like: '5 [pages] of 10'"
msgid "of"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:476
#, kde-format
msgid "Zoom"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:496
#, kde-format
msgid "Rotate &Right"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:497
#, kde-format
msgctxt "Rotate right"
msgid "Right"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:501
#, kde-format
msgid "Rotate &Left"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:502
#, kde-format
msgctxt "Rotate left"
msgid "Left"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:506
#, kde-format
msgid "Original Orientation"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:511
#, kde-format
msgid "&Page Size"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:519
#, kde-format
msgid "&Trim View"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:523
#, kde-format
msgid "&Trim Margins"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:530
#, kde-format
msgid "Trim To &Selection"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:536
#, kde-format
msgid "Fit &Width"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:540
#, kde-format
msgid "Fit &Page"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:544
#, kde-format
msgid "&Auto Fit"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:548
#, kde-format
msgid "Fit Wi&ndow to Page"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:555
#, kde-format
msgid "&View Mode"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:568
#, kde-format
msgid "Single Page"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:569
#, kde-format
msgid "Facing Pages"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:570
#, kde-format
msgid "Facing Pages (Center First Page)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:571
#, kde-format
msgid "Overview"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:583
#, kde-format
msgid "&Continuous"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:591
#, kde-format
msgid "&Browse Tool"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:594
#, kde-format
msgctxt "Browse Tool"
msgid "Browse"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:600
#, kde-format
msgid "&Zoom Tool"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:603
#, kde-format
msgctxt "Zoom Tool"
msgid "Zoom"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:609
#, kde-format
msgid "&Toggle Change Colors"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:623
#, kde-format
msgid "&Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:626
#, kde-format
msgctxt "Select Tool"
msgid "Selection"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:633
#, kde-format
msgid "&Text Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:636
#, kde-format
msgctxt "Text Selection Tool"
msgid "Text Selection"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:642
#, kde-format
msgid "T&able Selection Tool"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:645
#, kde-format
msgctxt "Table Selection Tool"
msgid "Table Selection"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:651
#, kde-format
msgid "&Magnifier"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:654
#, kde-format
msgctxt "Magnifier Tool"
msgid "Magnifier"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:660
#, kde-format
msgid "&Review"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:674
#, kde-format
msgid "Speak Whole Document"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:679
#, kde-format
msgid "Speak Current Page"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:684
#, kde-format
msgid "Stop Speaking"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:695
#, kde-format
msgid "Scroll Up"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:701
#, kde-format
msgid "Scroll Down"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:707
#, kde-format
msgid "Scroll Page Up"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:713
#, kde-format
msgid "Scroll Page Down"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:1141
#, kde-format
msgid " Loaded a one-page document."
msgid_plural " Loaded a %1-page document."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2811
#, kde-format
msgid "Text (1 character)"
msgid_plural "Text (%1 characters)"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2812 ui/pageview.cpp:2830
#, kde-format
msgid "Copy to Clipboard"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2818 ui/pageview.cpp:2979 ui/pageview.cpp:3107
#, kde-format
msgid "Copy forbidden by DRM"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2822 ui/pageview.cpp:3102
#, kde-format
msgid "Speak Text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2829
#, kde-format
msgid "Image (%1 by %2 pixels)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2831
#, kde-format
msgid "Save to File..."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2853
#, kde-format
msgid "Image [%1x%2] copied to clipboard."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2858
#, kde-format
msgid "Save file"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2858
#, kde-format
msgid "Images (*.png *.jpeg)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2860
#, kde-format
msgid "File not saved."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:2871
#, kde-format
msgid "Image [%1x%2] saved to %3 file."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:3098
#, kde-format
msgid "Copy Text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:3121
#, kde-format
msgid "Go to '%1'"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4307
#, kde-format
msgid "Hide Forms"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4311
#, kde-format
msgid "Show Forms"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4366
#, kde-format
msgid "Search for '%1' with"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4381
#, kde-format
msgid "Configure Web Shortcuts..."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4402
#, kde-format
msgid "Follow This Link"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4405
#, kde-format
msgid "Play this Sound"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4407
#, kde-format
msgid "Stop Sound"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4417
#, kde-format
msgid "Copy Link Address"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:4930
#, kde-format
msgid "Welcome"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5032
#, kde-format
msgid "Select zooming area. Right-click to zoom out."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5048
#, kde-format
msgid "Click to see the magnified view."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5060
#, kde-format
msgid "Draw a rectangle around the text/graphics to copy."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5077
#, kde-format
msgid "Select text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5095
#, kde-format
msgid "Draw a rectangle around the table, then click near edges to divide up; press Esc to clear."
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5132
#, kde-format
msgid "Annotations author"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5133
#, kde-format
msgid "Please insert your name or initials:"
msgstr ""
#. +> trunk5 stable5
#: ui/pageview.cpp:5304
#, kde-format
msgid "Draw a rectangle around the page area you wish to keep visible"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:165
#, kde-format
msgid "Text of the new note:"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:167
#, kde-format
msgid "New Text Note"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1024
#, kde-format
msgctxt "Annotation tool"
msgid "Draw an ellipse (drag to select a zone)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1026
#, kde-format
msgctxt "Annotation tool"
msgid "Highlight text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1028
#, kde-format
msgctxt "Annotation tool"
msgid "Draw a freehand line"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1030
#, kde-format
msgctxt "Annotation tool"
msgid "Inline Text Annotation (drag to select a zone)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1032
#, kde-format
msgctxt "Annotation tool"
msgid "Put a pop-up note"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1034
#, kde-format
msgctxt "Annotation tool"
msgid "Draw a polygon (click on the first point to close it)"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1036
#, kde-format
msgctxt "Annotation tool"
msgid "Draw a rectangle"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1038
#, kde-format
msgctxt "Annotation tool"
msgid "Squiggle text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1040
#, kde-format
msgctxt "Annotation tool"
msgid "Put a stamp symbol"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1042
#, kde-format
msgctxt "Annotation tool"
msgid "Draw a straight line"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1044
#, kde-format
msgctxt "Annotation tool"
msgid "Strike out text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1046
#, kde-format
msgctxt "Annotation tool"
msgid "Underline text"
msgstr ""
#. +> trunk5 stable5
#: ui/pageviewannotator.cpp:1087
#, kde-format
msgid "Highlighter"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationsearchbar.cpp:80
#, kde-format
msgid "Find Next"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:160
#, kde-format
msgctxt "[document title/filename] – Presentation"
msgid "%1 – Presentation"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:215
#, kde-format
msgid "Switch Screen"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:222
#, kde-format
msgctxt "%1 is the screen number (0, 1, ...)"
msgid "Screen %1"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:229
#, kde-format
msgid "Exit Presentation Mode"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:377
#, kde-format
msgid "Title: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:380
#, kde-format
msgid "Pages: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:381
#, kde-format
msgid "Click to begin"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:525
#, kde-format
msgctxt "For Presentation"
msgid "Pause"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:530
#, kde-format
msgctxt "For Presentation"
msgid "Play"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:1595
#, kde-format
msgid "There are two ways of exiting presentation mode, you can press either ESC key or click with the quit button that appears when placing the mouse in the top-right corner. Of course you can cycle windows (Alt+TAB by default)"
msgstr ""
#. +> trunk5 stable5
#: ui/presentationwidget.cpp:1720
#, kde-format
msgctxt "Reason for inhibiting the screensaver activation, when the presentation mode is active"
msgid "Giving a presentation"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:48
#, kde-format
msgid "Unknown File"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:62
#, kde-format
msgid "%1 Properties"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:109
#, kde-format
msgctxt "mimetype information, example: \"PDF Document (application/pdf)\""
msgid "%1 (%2)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:122
#, kde-format
msgid "%1:"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:129
#, kde-format
msgid "&Fonts"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:150
#, kde-format
msgid "Reading font information..."
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:209
#, kde-format
msgctxt "@action:inmenu"
msgid "&Extract Font"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:261
#, kde-format
msgid "Type 1"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:264
#, kde-format
msgid "Type 1C"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:267
#, kde-format
msgctxt "OT means OpenType"
msgid "Type 1C (OT)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:270
#, kde-format
msgid "Type 3"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:273
#, kde-format
msgid "TrueType"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:276
#, kde-format
msgctxt "OT means OpenType"
msgid "TrueType (OT)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:279
#, kde-format
msgid "CID Type 0"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:282
#, kde-format
msgid "CID Type 0C"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:285
#, kde-format
msgctxt "OT means OpenType"
msgid "CID Type 0C (OT)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:288
#, kde-format
msgid "CID TrueType"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:291
#, kde-format
msgctxt "OT means OpenType"
msgid "CID TrueType (OT)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:294
#, kde-format
msgid "TeX PK"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:297
#, kde-format
msgid "TeX virtual"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:300
#, kde-format
msgid "TeX Font Metric"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:303
#, kde-format
msgid "TeX FreeType-handled"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:306
#, kde-format
msgctxt "Unknown font type"
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:320
#, kde-format
msgid "Embedded (subset)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:323
#, kde-format
msgid "Fully embedded"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:334
#, kde-format
msgid "No"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:337
#, kde-format
msgid "Yes (subset)"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:340
#, kde-format
msgid "Yes"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:359
#, kde-format
msgctxt "font name not available (empty)"
msgid "[n/a]"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:374
#, kde-format
msgid "Unknown font"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:378
#, kde-format
msgid "Embedded: %1"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:411
#, kde-format
msgid "Name"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:412
#, kde-format
msgid "Type"
msgstr ""
#. +> trunk5 stable5
#: ui/propertiesdialog.cpp:413
#, kde-format
msgid "File"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:40
#, kde-format
msgid "Enter at least 3 letters to filter pages"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:50
#, kde-format
msgid "Case Sensitive"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:52
#, kde-format
msgid "Match Phrase"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:53
#, kde-format
msgid "Match All Words"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:54
#, kde-format
msgid "Match Any Word"
msgstr ""
#. +> trunk5 stable5
#: ui/searchwidget.cpp:73
#, kde-format
msgid "Filter Options"
msgstr ""
#. +> trunk5 stable5
#: ui/side_reviews.cpp:63
#, kde-format
msgid ""
"<div align=center>"
"<h3>No annotations</h3>"
"To create new annotations press F6 or select <i>Tools -&gt; Review</i> from the menu.</div>"
msgstr ""
#. +> trunk5 stable5
#: ui/side_reviews.cpp:130
#, kde-format
msgid "Group by Page"
msgstr ""
#. +> trunk5 stable5
#: ui/side_reviews.cpp:135
#, kde-format
msgid "Group by Author"
msgstr ""
#. +> trunk5 stable5
#: ui/side_reviews.cpp:143
#, kde-format
msgid "Show reviews for current page only"
msgstr ""
#. +> trunk5 stable5
#: ui/sidebar.cpp:767
#, kde-format
msgid "Show Text"
msgstr ""
#. +> trunk5 stable5
#: ui/sidebar.cpp:783
#, kde-format
msgid "Small Icons"
msgstr ""
#. +> trunk5 stable5
#: ui/sidebar.cpp:784
#, kde-format
msgid "Normal Icons"
msgstr ""
#. +> trunk5 stable5
#: ui/sidebar.cpp:785
#, kde-format
msgid "Large Icons"
msgstr ""
#. +> trunk5 stable5
#: ui/thumbnaillist.cpp:999
#, kde-format
msgid "Show bookmarked pages only"
msgstr ""
#. +> trunk5 stable5
#: ui/toolaction.cpp:21
#, kde-format
msgid "Selection Tools"
msgstr ""
#. +> trunk5 stable5
#: ui/toolaction.cpp:71 ui/toolaction.cpp:83
#, kde-format
msgid ""
"Click to use the current selection tool\n"
"Click and hold to choose another selection tool"
msgstr ""
#. +> trunk5 stable5
#: ui/videowidget.cpp:142
#, kde-format
msgctxt "start the movie playback"
msgid "Play"
msgstr ""
#. +> trunk5 stable5
#: ui/videowidget.cpp:147
#, kde-format
msgctxt "pause the movie playback"
msgid "Pause"
msgstr ""
#. +> trunk5 stable5
#: ui/videowidget.cpp:255
#, kde-format
msgctxt "stop the movie playback"
msgid "Stop"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdegraphics/okular_dvi.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdegraphics/okular_dvi.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdegraphics/okular_dvi.pot (revision 1509808)
@@ -1,481 +1,481 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-07-30 09:34+0200\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: dviexport.cpp:129
#, kde-format
msgid ""
"<qt>"
"<p>Okular could not locate the program <em>dvipdfm</em> on your computer. This program is essential for the export function to work. You can, however, convert the DVI-file to PDF using the print function of Okular, but that will often produce documents which print okay, but are of inferior quality if viewed in Acrobat Reader. It may be wise to upgrade to a more recent version of your TeX distribution which includes the <em>dvipdfm</em> program.</p>"
"<p>Hint to the perplexed system administrator: Okular uses the PATH environment variable when looking for programs.</p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviexport.cpp:148
#, kde-format
msgid "<qt>The external program 'dvipdfm', which was used to export the file, reported an error. You might wish to look at the <strong>document info dialog</strong> which you will find in the File-Menu for a precise error report.</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviexport.cpp:177
#, kde-format
msgid "<qt>This DVI file refers to external graphic files which are not in PostScript format, and cannot be handled by the <em>dvips</em> program that Okular uses internally to print or to export to PostScript. The functionality that you require is therefore unavailable in this version of Okular.</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviexport.cpp:184
#, kde-format
msgid ""
"<qt>"
"<p>Okular could not locate the program <em>dvips</em> on your computer. That program is essential for the export function to work.</p>"
"<p>Hint to the perplexed system administrator: Okular uses the PATH environment variable when looking for programs.</p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviexport.cpp:281
#, kde-format
msgid "<qt>The external program 'dvips', which was used to export the file, reported an error. You might wish to look at the <strong>document info dialog</strong> which you will find in the File-Menu for a precise error report.</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:113
#, kde-format
msgid "The DVI file does not start with the preamble."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:118
#, kde-format
msgid "The DVI file contains the wrong version of DVI output for this program. Hint: If you use the typesetting system Omega, you have to use a special program, such as oxdvi."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:156
#, kde-format
msgid "The DVI file is badly corrupted. Okular was not able to find the postamble."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:171
#, kde-format
msgid "The postamble does not begin with the POST command."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:224
#, kde-format
msgid "The postamble contained a command other than FNTDEF."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:260
#, kde-format
msgid "The page %1 does not start with the BOP command."
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:392
#, kde-format
msgid ""
"<qt>"
"<p>The external program <strong>pdf2ps</strong> could not be started. As a result, the PDF-file %1 could not be converted to PostScript. Some graphic elements in your document will therefore not be displayed.</p>"
"<p><b>Possible reason:</b> The program <strong>pdf2ps</strong> may not be installed on your system, or cannot be found in the current search path.</p>"
"<p><b>What you can do:</b> The program <strong>pdf2ps</strong> is normally contained in distributions of the ghostscript PostScript interpreter system. If ghostscript is not installed on your system, you could install it now. If you are sure that ghostscript is installed, try to use <strong>pdf2ps</strong> from the command line to check if it really works.</p>"
"<p><em>PATH:</em> %2</p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviFile.cpp:416
#, kde-format
msgid ""
"<qt>"
"<p>The PDF-file %1 could not be converted to PostScript. Some graphic elements in your document will therefore not be displayed.</p>"
"<p><b>Possible reason:</b> The file %1 might be broken, or might not be a PDF-file at all. This is the output of the <strong>pdf2ps</strong> program that Okular used:</p>"
"<p><strong>%2</strong></p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:228 dviRenderer.cpp:471
#, kde-format
msgid "File corruption. %1"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:365
#, kde-format
msgid "Not all PostScript files could be embedded into your document. %1"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:368
#, kde-format
msgid "All external PostScript files were embedded into your document."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:456
#, kde-format
msgid "The specified file '%1' does not exist."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:615
#, kde-format
msgid "You have asked Okular to locate the place in the DVI file which corresponds to line %1 in the TeX-file %2. It seems, however, that the DVI file does not contain the necessary source file information. "
msgstr ""
#. +> trunk5 stable5
#: dviRenderer.cpp:655
#, kde-format
msgid "Okular was not able to locate the place in the DVI file which corresponds to line %1 in the TeX-file %2."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:263
#, kde-format
msgid "The DVI code set a character of an unknown font."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:292 dviRenderer_prescan.cpp:650
#, kde-format
msgid "The DVI code referred to font #%1, which was not previously defined."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:377
#, kde-format
msgid "The stack was not empty when the EOP command was encountered."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:389
#, kde-format
msgid "The stack was empty when a POP command was encountered."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:526 dviRenderer_draw.cpp:535
#, kde-format
msgid "The DVI code referred to a font which was not previously defined."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:576
#, kde-format
msgid "An illegal command was encountered."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_draw.cpp:581
#, kde-format
msgid "The unknown op-code %1 was encountered."
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_prescan.cpp:89
#, kde-format
msgid "Embedding %1"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_prescan.cpp:104
#, kde-format
msgid "Page %1: The PDF file <strong>%2</strong> could not be converted to PostScript.<br>"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_prescan.cpp:106
#, kde-format
msgid "Page %1: The PostScript file <strong>%2</strong> could not be found.<br>"
msgstr ""
#. +> trunk5 stable5
#: dviRenderer_prescan.cpp:255
#, kde-format
msgid "The papersize data '%1' could not be parsed."
msgstr ""
#. +> trunk5 stable5
#: fontpool.cpp:209
#, kde-format
msgid ""
"<qt>"
"<p>Okular was not able to locate all the font files which are necessary to display the current DVI file. Your document might be unreadable.</p>"
"<p><small><b>PATH:</b> %1</small></p>"
"<p><small>%2</small></p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: fontpool.cpp:279
#, kde-format
msgid ""
"<qt>"
"<p>There were problems running <em>kpsewhich</em>. As a result, some font files could not be located, and your document might be unreadable.<br/>"
"Possible reason: the <em>kpsewhich</em> program is perhaps not installed on your system, or it cannot be found in the current search path.</p>"
"<p><small><b>PATH:</b> %1</small></p>"
"<p><small>%2</small></p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: fontpool.cpp:298
#, kde-format
msgid "<qt>The font generation by <em>kpsewhich</em> was aborted (exit code %1, error %2). As a result, some font files could not be located, and your document might be unreadable.</qt>"
msgstr ""
#. +> trunk5 stable5
#: fontpool.cpp:476
#, kde-format
msgid "Currently generating %1 at %2 dpi..."
msgstr ""
#. +> trunk5 stable5
-#: generator_dvi.cpp:327
+#: generator_dvi.cpp:329
#, kde-format
msgid "Generator/Date"
msgstr ""
#. +> trunk5 stable5
-#: generator_dvi.cpp:425
+#: generator_dvi.cpp:427
#, kde-format
msgid "Font file not found"
msgstr ""
#. +> trunk5 stable5
#: pageSize.cpp:323
#, kde-format
msgid "portrait"
msgstr ""
#. +> trunk5 stable5
#: pageSize.cpp:325
#, kde-format
msgid "landscape"
msgstr ""
#. +> trunk5 stable5
#: psgs.cpp:264
#, kde-format
msgid "The version of Ghostview that is installed on this computer does not contain any of the Ghostview device drivers that are known to Okular. PostScript support has therefore been turned off in Okular."
msgstr ""
#. +> trunk5 stable5
#: psgs.cpp:268
#, kde-format
msgid ""
"<qt>"
"<p>The Ghostview program, which Okular uses internally to display the PostScript graphics that is included in this DVI file, is generally able to write its output in a variety of formats. The sub-programs that Ghostview uses for these tasks are called 'device drivers'; there is one device driver for each format that Ghostview is able to write. Different versions of Ghostview often have different sets of device drivers available. It seems that the version of Ghostview that is installed on this computer does not contain <strong>any</strong> of the device drivers that are known to Okular.</p>"
"<p>It seems unlikely that a regular installation of Ghostview would not contain these drivers. This error may therefore point to a serious misconfiguration of the Ghostview installation on your computer.</p>"
"<p>If you want to fix the problems with Ghostview, you can use the command <strong>gs --help</strong> to display the list of device drivers contained in Ghostview. Among others, Okular can use the 'png256', 'jpeg' and 'pnm' drivers. Note that Okular needs to be restarted to re-enable PostScript support.</p>"
"</qt>"
msgstr ""
#. +> trunk5 stable5
#: special.cpp:36
#, kde-format
msgid "That makes 25 errors. Further error messages will not be printed."
msgstr ""
#. +> trunk5 stable5
#: special.cpp:217
#, kde-format
msgid "Error in DVIfile '%1', page %2. Color pop command issued when the color stack is empty."
msgstr ""
#. +> trunk5 stable5
#: special.cpp:302
#, kde-format
msgid ""
"Malformed parameter in the epsf special command.\n"
"Expected a float to follow %1 in %2"
msgstr ""
#. +> trunk5 stable5
#: special.cpp:434
#, kde-format
msgid ""
"File not found: \n"
" %1"
msgstr ""
#. +> trunk5 stable5
#: special.cpp:681
#, kde-format
msgid "Error in DVIfile '%1', page %2. Could not interpret angle in text rotation special."
msgstr ""
#. +> trunk5 stable5
#: special.cpp:704
#, kde-format
msgid "The special command '%1' is not implemented."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:44
#, kde-format
msgid "The font file %1 could be opened and read, but its font format is unsupported."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:50
#, kde-format
msgid "The font file %1 is broken, or it could not be opened or read."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:171
#, kde-format
msgid "FreeType reported an error when setting the character size for font file %1."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:187
#, kde-format
msgid "FreeType is unable to load glyph #%1 from font file %2."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:199
#, kde-format
msgid "FreeType is unable to render glyph #%1 from font file %2."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:212
#, kde-format
msgid "Glyph #%1 is empty."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:213
#, kde-format
msgid "Glyph #%1 from font file %2 is empty."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PFB.cpp:281
#, kde-format
msgid "FreeType is unable to load metric for glyph #%1 from font file %2."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:90
#, kde-format
msgid "Cannot open font file %1."
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:139
#, kde-format
msgid "TexFont_PK::operator[]: Character %1 not defined in font %2"
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:455
#, kde-format
msgid "Unexpected %1 in PK file %2"
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:522
#, kde-format
msgid "The character %1 is too large in file %2"
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:623 TeXFont_PK.cpp:709
#, kde-format
msgid "Wrong number of bits stored: char. %1, font %2"
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:625 TeXFont_PK.cpp:711
#, kde-format
msgid "Bad pk file (%1), too many bits"
msgstr ""
#. +> trunk5 stable5
#: TeXFont_PK.cpp:742
#, kde-format
msgid "Font has non-square aspect ratio "
msgstr ""
#. +> trunk5 stable5
#: TeXFontDefinition.cpp:109
#, kde-format
msgid "Cannot find font %1, file %2."
msgstr ""
#. +> trunk5 stable5
#: TeXFontDefinition.cpp:125
#, kde-format
msgid "Checksum mismatch for font file %1"
msgstr ""
#. +> trunk5 stable5
#: TeXFontDefinition.cpp:173
#, kde-format
msgid "Cannot recognize format for font file %1"
msgstr ""
#. +> trunk5 stable5
#: util.cpp:79
#, kde-format
msgid ""
"Fatal error.\n"
"\n"
msgstr ""
#. +> trunk5 stable5
#: util.cpp:81
#, kde-format
msgid ""
"\n"
"\n"
"This probably means that either you found a bug in Okular,\n"
"or that the DVI file, or auxiliary files (such as font files, \n"
"or virtual font files) were really badly broken.\n"
"Okular will abort after this message. If you believe that you \n"
"found a bug, or that Okular should behave better in this situation\n"
"please report the problem."
msgstr ""
#. +> trunk5 stable5
#: vf.cpp:183
#, kde-format
msgid "Wrong command byte found in VF macro list: %1"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdegraphics/okular_poppler.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdegraphics/okular_poppler.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdegraphics/okular_poppler.pot (revision 1509808)
@@ -1,155 +1,155 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-11-17 09:44+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: conf/pdfsettingswidget.ui:12
#, kde-format
msgid "Enhance thin lines:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_EnhanceThinLines)
#. +> trunk5 stable5
-#: conf/pdfsettingswidget.ui:23 generator_pdf.cpp:726
+#: conf/pdfsettingswidget.ui:23 generator_pdf.cpp:729
#, kde-format
msgid "No"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_EnhanceThinLines)
#. +> trunk5 stable5
#: conf/pdfsettingswidget.ui:28
#, kde-format
msgid "Solid"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_EnhanceThinLines)
#. +> trunk5 stable5
#: conf/pdfsettingswidget.ui:33
#, kde-format
msgid "Shape"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:80
#, kde-format
msgid "PDF Options"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:82
#, kde-format
msgid "Print annotations"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:83
#, kde-format
msgid "Include annotations in the printed document"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:84
#, kde-format
msgid "Includes annotations in the printed document. You can disable this if you want to print the original unannotated document."
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:86
#, kde-format
msgid "Force rasterization"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:87
#, kde-format
msgid "Rasterize into an image before printing"
msgstr ""
#. +> trunk5 stable5
#: generator_pdf.cpp:88
#, kde-format
msgid "Forces the rasterization of each page into an image before printing it. This usually gives somewhat worse results, but is useful when printing documents that appear to print incorrectly."
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:724
+#: generator_pdf.cpp:727
#, kde-format
msgctxt "PDF v. <version>"
msgid "PDF v. %1.%2"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:724
+#: generator_pdf.cpp:727
#, kde-format
msgid "Format"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:725
+#: generator_pdf.cpp:728
#, kde-format
msgid "Encrypted"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:725
+#: generator_pdf.cpp:728
#, kde-format
msgid "Unencrypted"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:725
+#: generator_pdf.cpp:728
#, kde-format
msgid "Security"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:726
+#: generator_pdf.cpp:729
#, kde-format
msgid "Yes"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:726
+#: generator_pdf.cpp:729
#, kde-format
msgid "Optimized"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:1382
+#: generator_pdf.cpp:1469
#, kde-format
msgid "PDF"
msgstr ""
#. +> trunk5 stable5
-#: generator_pdf.cpp:1382
+#: generator_pdf.cpp:1469
#, kde-format
msgid "PDF Backend Configuration"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdemultimedia/juk.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdemultimedia/juk.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdemultimedia/juk.pot (revision 1509808)
@@ -1,2327 +1,2327 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:39+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:45
#, kde-format
msgid "Create Search Playlist"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:54
#, kde-format
msgid "Playlist name:"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:58
#, kde-format
msgid "Search Criteria"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:63
#, kde-format
msgid "Match any of the following"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:64
#, kde-format
msgid "Match all of the following"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:88
#, kde-format
msgctxt "additional search options"
msgid "More"
msgstr ""
#. +> trunk5 stable5
#: advancedsearchdialog.cpp:93
#, kde-format
msgid "Fewer"
msgstr ""
#. +> trunk5 stable5
#: cache.cpp:303
#, kde-format
msgid "The music data cache has been corrupted. JuK needs to rescan it now. This may take some time."
msgstr ""
#. +> trunk5 stable5
#: collectionlist.cpp:137
#, kde-format
msgid "Collection List"
msgstr ""
#. +> trunk5 stable5
#: collectionlist.cpp:278
#, kde-format
msgid ""
"Removing an item from the collection will also remove it from all of your playlists. Are you sure you want to continue?\n"
"\n"
"Note, however, that if the directory that these files are in is in your \"scan on startup\" list, they will be readded on startup."
msgstr ""
#. +> trunk5 stable5
#: collectionlist.cpp:328
#, kde-format
msgid "Show Playing"
msgstr ""
#. +> trunk5 stable5
#: coverdialog.cpp:37
#, kde-format
msgid "&lt;All Artists&gt;"
msgstr ""
#. +> trunk5 stable5
#: coverdialog.cpp:148
#, kde-format
msgid "Remove Cover"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, CoverDialogBase)
#. +> trunk5 stable5
#: coverdialogbase.ui:14 playlistcollection.cpp:972
#, kde-format
msgid "Cover Manager"
msgstr ""
#. +> trunk5 stable5
#: deletedialog.cpp:60
#, kde-format
msgid "<b>1</b> file selected."
msgid_plural "<b>%1</b> files selected."
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: deletedialog.cpp:71
#, kde-format
msgid "<qt>These items will be <b>permanently deleted</b> from your hard disk.</qt>"
msgstr ""
#. +> trunk5 stable5
#: deletedialog.cpp:77
#, kde-format
msgid "<qt>These items will be moved to the Trash Bin.</qt>"
msgstr ""
#. +> trunk5 stable5
#: deletedialog.cpp:89
#, kde-format
msgid "&Send to Trash"
msgstr ""
#. +> trunk5 stable5
#: deletedialog.cpp:93
#, kde-format
msgid "About to delete selected files"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: deletedialogbase.ui:88
#, kde-format
msgid "Are you sure that you want to remove these items?"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, ddShouldDelete)
#. +> trunk5 stable5
#: deletedialogbase.ui:138
#, kde-format
msgid "If checked, files will be permanently removed instead of being placed in the Trash Bin"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, ddShouldDelete)
#. +> trunk5 stable5
#: deletedialogbase.ui:143
#, kde-format
msgid ""
"<qt>"
"<p>If this box is checked, files will be <b>permanently removed</b> instead of being placed in the Trash Bin.</p>"
"\n"
"\n"
"<p><em>Use this option with caution</em>: Most filesystems are unable to reliably undelete deleted files.</p>"
"</qt>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, ddShouldDelete)
#. +> trunk5 stable5
#: deletedialogbase.ui:146
#, kde-format
msgid "&Delete files instead of moving them to the trash"
msgstr ""
#. +> trunk5 stable5
#: directorylist.cpp:56
#, kde-format
msgid "Folder List"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, informationLabel)
#. +> trunk5 stable5
#: directorylistbase.ui:19
#, kde-format
msgid "Please choose the folders where you keep your music:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QListView, directoryListView)
#. i18n: ectx: property (toolTip), widget (QListView, excludeDirectoryListView)
#. +> trunk5 stable5
#: directorylistbase.ui:34 directorylistbase.ui:117
#, kde-format
msgid "These folders will be scanned on startup for new files."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, addDirectoryButton)
#. i18n: ectx: property (text), widget (QPushButton, addExcludeDirectoryButton)
#. +> trunk5 stable5
#: directorylistbase.ui:64 directorylistbase.ui:147
#, kde-format
msgid "Add Folder..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, removeDirectoryButton)
#. i18n: ectx: property (text), widget (QPushButton, removeExcludeDirectoryButton)
#. +> trunk5 stable5
#: directorylistbase.ui:71 directorylistbase.ui:154
#, kde-format
msgid "Remove Folder"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, ExcludeInformationLabel)
#. +> trunk5 stable5
#: directorylistbase.ui:102
#, kde-format
msgid "Please choose the folders that should be excluded from music search:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, importPlaylistsCheckBox)
#. +> trunk5 stable5
#: directorylistbase.ui:183
#, kde-format
msgid "Import playlists"
msgstr ""
#. +> trunk5 stable5
-#: exampleoptions.cpp:56 main.cpp:62 playermanager.cpp:450 playlist.cpp:360
+#: exampleoptions.cpp:56 main.cpp:62 playermanager.cpp:450 playlist.cpp:192
#: systemtray.cpp:492 systemtray.cpp:503
#, kde-format
msgid "JuK"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, ExampleOptionsBase)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:13 filerenamerbase.ui:203
#, kde-format
msgid "Example"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:37
#, kde-format
msgid "Example Tag Selection"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_fileTagsButton)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:58
#, kde-format
msgid "Get example tags from this file:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_manualTagsButton)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:81
#, kde-format
msgid "Enter example tags manually:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_manualGroup)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:91
#, kde-format
msgid "Example Tags"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:135
#, kde-format
msgctxt "song title"
msgid "Title:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:145
#, kde-format
msgid "Artist:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:155
#, kde-format
msgid "Album:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:165
#, kde-format
msgid "Genre:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:175
#, kde-format
msgid "Track number:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:185
#, kde-format
msgid "Year:"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_exampleTitle)
#. +> trunk5 stable5
#: exampleoptionsbase.ui:214
#, kde-format
msgctxt "example song title"
msgid "Title"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_exampleArtist)
#. i18n: ectx: property (text), widget (K3ListView, trackList)
#. +> trunk5 stable5
-#: exampleoptionsbase.ui:221 playlist.cpp:1431 tagrenameroptions.cpp:104
+#: exampleoptionsbase.ui:221 playlist.cpp:1266 tagrenameroptions.cpp:104
#: trackpickerdialogbase.ui:108
#, kde-format
msgid "Artist"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_exampleAlbum)
#. i18n: ectx: property (text), widget (K3ListView, trackList)
#. +> trunk5 stable5
-#: exampleoptionsbase.ui:228 playlist.cpp:1432 tagrenameroptions.cpp:108
+#: exampleoptionsbase.ui:228 playlist.cpp:1267 tagrenameroptions.cpp:108
#: trackpickerdialogbase.ui:119
#, kde-format
msgid "Album"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_exampleGenre)
#. +> trunk5 stable5
-#: exampleoptionsbase.ui:235 playlist.cpp:1435 tagrenameroptions.cpp:117
+#: exampleoptionsbase.ui:235 playlist.cpp:1270 tagrenameroptions.cpp:117
#, kde-format
msgid "Genre"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:65
#, kde-format
msgctxt "warning about mass file rename"
msgid "Warning"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:76
#, kde-format
msgid "You are about to rename the following files. Are you sure you want to continue?"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:83
#, kde-format
msgid "Original Name"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:84
#, kde-format
msgid "New Name"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:107
#, kde-format
msgid "No Change"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:394
#, kde-format
msgctxt "remove music genre from file renamer"
msgid "Remove"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:399
#, kde-format
msgctxt "file renamer genre options"
msgid "Options"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:497
#, kde-format
msgid "Insert folder separator"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:590
#, kde-format
msgid "No file selected, or selected file has no tags."
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:833
#, kde-format
msgid "Hide Renamer Test Dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_showExample)
#. +> trunk5 stable5
#: filerenamer.cpp:838 filerenamerbase.ui:257
#, kde-format
msgid "Show Renamer Test Dialog"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:920
#, kde-format
msgid "%1 to %2"
msgstr ""
#. +> trunk5 stable5
#: filerenamer.cpp:927
#, kde-format
msgid "The following rename operations failed:\n"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, FileRenamerBase)
#. +> trunk5 stable5
#: filerenamerbase.ui:20
#, kde-format
msgid "File Renamer Configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_6)
#. +> trunk5 stable5
#: filerenamerbase.ui:65
#, kde-format
msgid "Music folder:"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:90
#, kde-format
msgid "Album Tag"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:95
#, kde-format
msgid "Artist Tag"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:100
#, kde-format
msgid "Genre Tag"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:105
#, kde-format
msgid "Title Tag"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:110
#, kde-format
msgid "Track Tag"
msgstr ""
#. i18n: ectx: property (text), item, widget (KComboBox, m_category)
#. +> trunk5 stable5
#: filerenamerbase.ui:115
#, kde-format
msgid "Year Tag"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_insertCategory)
#. +> trunk5 stable5
#: filerenamerbase.ui:123
#, kde-format
msgid "Insert Category"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. +> trunk5 stable5
#: filerenamerbase.ui:135
#, kde-format
msgid "&Add category:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_7)
#. +> trunk5 stable5
#: filerenamerbase.ui:145
#, kde-format
msgid "Separator:"
msgstr ""
#. +> trunk5 stable5
#: filerenamerconfigdlg.cpp:29
#, kde-format
msgid "File Renamer Options"
msgstr ""
#. +> trunk5 stable5
#: filerenameroptions.cpp:38
#, kde-format
msgctxt "%1 will be a music tag category like Artist or Album"
msgid "%1 Options"
msgstr ""
#. +> trunk5 stable5
#: filerenameroptions.cpp:39
#, kde-format
msgid "%1 Format"
msgstr ""
#. +> trunk5 stable5
#: filerenameroptions.cpp:40
#, kde-format
msgid "When the Track's %1 is Empty"
msgstr ""
#. +> trunk5 stable5
#: filerenameroptions.cpp:41
#, kde-format
msgid "When using the file renamer your files will be renamed to the values that you have in your track's %1 tag, plus any additional text that you specify below."
msgstr ""
#. +> trunk5 stable5
#: filerenameroptions.cpp:114
#, kde-format
msgid "File Renamer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_substitution)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:115
#, kde-format
msgid "Substitution Example"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_includeEmptyButton)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:137
#, kde-format
msgid "Include in the &filename anyways"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_ignoreTagButton)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:144
#, kde-format
msgid "&Ignore this tag when renaming the file"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_useValueButton)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:162
#, kde-format
msgid "Use &this value:"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_emptyTagValue)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:172
#, kde-format
msgctxt "value to use in replacement when source tag empty"
msgid "Empty"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_trackGroup)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:184
#, kde-format
msgid "Track numbering"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel10)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:196
#, kde-format
msgid "JuK can force the track used in a file name to have a minimum number of digits. You may want to do this for better sorting in file managers."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:228
#, kde-format
msgid "Minimum number of digits:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_doubleDigitExample)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:266
#, kde-format
msgid "014"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_singleDigitExample)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:284
#, kde-format
msgid "003"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_singleDigit)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:291
#, kde-format
msgid "3 ->"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_doubleDigit)
#. +> trunk5 stable5
#: filerenameroptionsbase.ui:301
#, kde-format
msgid "14 ->"
msgstr ""
#. +> trunk5 stable5
#: historyplaylist.cpp:42
#, kde-format
msgid "Time"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:153
#, kde-format
msgid "Your album art failed to download."
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:155
#, kde-format
msgid "Your album art has finished downloading."
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:198 systemtray.cpp:185
#, kde-format
msgid "&Random Play"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:205
#, kde-format
msgid "&Disable Random Play"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:211
#, kde-format
msgid "Use &Random Play"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:217
#, kde-format
msgid "Use &Album Random Play"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:224
#, kde-format
msgid "Remove From Playlist"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:228
#, kde-format
msgid "&Play"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:232
#, kde-format
msgid "P&ause"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:236
#, kde-format
msgid "&Stop"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:239
#, kde-format
msgctxt "previous track"
msgid "Previous"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:244
#, kde-format
msgctxt "next track"
msgid "&Next"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:248
#, kde-format
msgid "&Loop Playlist"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:252
#, kde-format
msgid "&Resize Playlist Columns Manually"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:257
#, kde-format
msgctxt "silence playback"
msgid "Mute"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:261
#, kde-format
msgid "Volume Up"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:265
#, kde-format
msgid "Volume Down"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:269
#, kde-format
msgid "Play / Pause"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:273
#, kde-format
msgid "Seek Forward"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:277
#, kde-format
msgid "Seek Back"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:281
#, kde-format
msgid "Show / Hide"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:288
#, kde-format
msgid "&Dock in System Tray"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:292
#, kde-format
msgid "&Stay in System Tray on Close"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:295
#, kde-format
msgid "Popup &Track Announcement"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:298
#, kde-format
msgid "Save &Play Queue on Exit"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:301
#, kde-format
msgid "&Tag Guesser..."
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:304
#, kde-format
msgid "&File Renamer..."
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:307
#, kde-format
msgid "&Configure scrobbling..."
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:314
#, kde-format
msgid "Track Position"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:316 slider.cpp:232
#, kde-format
msgid "Volume"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:485
#, kde-format
msgid "<qt>Closing the main window will keep JuK running in the system tray. Use Quit from the File menu to quit the application.</qt>"
msgstr ""
#. +> trunk5 stable5
#: juk.cpp:487
#, kde-format
msgid "Docking in System Tray"
msgstr ""
#. i18n: ectx: Menu (file)
#. +> trunk5 stable5
#: jukui-rtl.rc:4 jukui.rc:6
#, kde-format
msgid "&File"
msgstr ""
#. i18n: ectx: Menu (view)
#. +> trunk5 stable5
#: jukui-rtl.rc:26 jukui.rc:28
#, kde-format
msgid "&View"
msgstr ""
#. i18n: ectx: Menu (player)
#. +> trunk5 stable5
#: jukui-rtl.rc:39 jukui.rc:41
#, kde-format
msgid "&Player"
msgstr ""
#. i18n: ectx: Menu (playlist)
#. +> trunk5 stable5
#: jukui-rtl.rc:56 jukui.rc:58
#, kde-format
msgid "&Tagger"
msgstr ""
#. i18n: ectx: Menu (settings)
#. +> trunk5 stable5
#: jukui-rtl.rc:67 jukui.rc:69
#, kde-format
msgid "&Settings"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
#. +> trunk5 stable5
#: jukui-rtl.rc:79 jukui.rc:81
#, kde-format
msgid "Main Toolbar"
msgstr ""
#. i18n: ectx: ToolBar (playToolBar)
#. +> trunk5 stable5
#: jukui-rtl.rc:97 jukui.rc:99
#, kde-format
msgid "Play Toolbar"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:101
#, kde-format
msgid "Configure Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:117
#, kde-format
msgid "Global Shortcuts"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:123
#, kde-format
msgid "&No keys"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:127
#, kde-format
msgid "&Standard keys"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:131
#, kde-format
msgid "&Multimedia keys"
msgstr ""
#. +> trunk5 stable5
#: keydialog.cpp:137
#, kde-format
msgid "Here you can select the keys used as global shortcuts to control the player"
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:45
#, kde-format
msgid "Show &Lyrics"
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:72
#, kde-format
msgid "<i>No file playing.</i>"
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:76
#, kde-format
msgid "<i>Loading...</i>"
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:115 lyricswidget.cpp:143
#, kde-format
msgid "<span style='color:red'>Error while retrieving lyrics!</span>"
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:152
#, kde-format
msgid "No lyrics available."
msgstr ""
#. +> trunk5 stable5
#: lyricswidget.cpp:161
#, kde-format
msgid ""
"<br />"
"<br />"
"<i>Lyrics provided by <a href='http://lyrics.wikia.com/Lyrics_Wiki'>LyricWiki</a></i>"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:34
#, kde-format
msgid "Jukebox and music manager by the KDE community"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:35
#, kde-format
msgid "Author, chief dork and keeper of the funk"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:36
#, kde-format
msgid "Assistant super-hero, fixer of many things"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:37
#, kde-format
msgid "More KDE Platform 4 porting efforts"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:38
#, kde-format
msgid ""
"System tray docking, \"inline\" tag editing,\n"
"bug fixes, evangelism, moral support"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:39
#, kde-format
msgid "GStreamer port"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:40
#, kde-format
msgid "Global keybindings support"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:41
#, kde-format
msgid "Track announcement popups"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:42
#, kde-format
msgid "Automagic track data guessing, bugfixes"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:43
#, kde-format
msgid "More automagical things, now using MusicBrainz"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:44
#, kde-format
msgid "Co-conspirator in MusicBrainz wizardry"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:45
#, kde-format
msgid "Friendly, neighborhood aRts guru"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:46
#, kde-format
msgid "Making JuK friendlier to people with terabytes of music"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:47
#, kde-format
msgid "DCOP interface"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:48
#, kde-format
msgid "FLAC and MPC support"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:49
#, kde-format
msgid "Album cover manager"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:50
#, kde-format
msgid "Gimper of splash screen"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:51
#, kde-format
msgid "Porting to KDE 4 when no one else was around"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:52
#, kde-format
msgid "Badly-needed tag editor bugfixes."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:53
#, kde-format
msgid "Last.fm scrobbling support, lyrics, prepping for KDE Frameworks."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:54
#, kde-format
msgid "MPRIS2 Interface implementation."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:55
#, kde-format
msgid "Porting to KF5 when no one else was around"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:64
#, kde-format
msgid "© 2002–2017, Scott Wheeler, Michael Pyne, and others"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:68
#, kde-format
msgid "Scott Wheeler"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:69
#, kde-format
msgid "Michael Pyne"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:70
#, kde-format
msgid "Kacper Kasper"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:71
#, kde-format
msgid "Eike Hein"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:72
#, kde-format
msgid "Martin Sandsmark"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:73
#, kde-format
msgid "Γιώργος Κυλάφας (Giorgos Kylafas)"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:74
#, kde-format
msgid "Georg Grabler"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:75
#, kde-format
msgid "Laurent Montel"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:76
#, kde-format
msgid "Nathan Toone"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:77
#, kde-format
msgid "Matthias Kretz"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:78
#, kde-format
msgid "Daniel Molkentin"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:79
#, kde-format
msgid "Tim Jansen"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:80
#, kde-format
msgid "Stefan Asserhäll"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:81
#, kde-format
msgid "Stephen Douglas"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:82
#, kde-format
msgid "Frerich Raabe"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:83
#, kde-format
msgid "Zack Rusin"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:84
#, kde-format
msgid "Adam Treat"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:85
#, kde-format
msgid "Maks Orlovich"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:86
#, kde-format
msgid "Antonio Larrosa Jimenez"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:87
#, kde-format
msgid "Allan Sandfeld Jensen"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:88
#, kde-format
msgid "Pascal Klein"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:95
#, kde-format
msgid "File(s) to open"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:118
#, kde-format
msgid ""
"JuK running in docked mode\n"
"Use context menu in system tray to restore."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:119
#, kde-format
msgid "JuK Docked"
msgstr ""
#. +> trunk5 stable5
#: mediafiles.cpp:126
#, kde-format
msgctxt "open audio file"
msgid "Open"
msgstr ""
#. +> trunk5 stable5
#: mediafiles.cpp:139
#, kde-format
msgid "Save Playlist"
msgstr ""
#. +> trunk5 stable5
#: musicbrainzquery.cpp:39
#, kde-format
msgid "Querying MusicBrainz server..."
msgstr ""
#. +> trunk5 stable5
#: musicbrainzquery.cpp:52
#, kde-format
msgid "No matches found."
msgstr ""
#. +> trunk5 stable5
#: musicbrainzquery.cpp:66
#, kde-format
msgid "Error connecting to MusicBrainz server."
msgstr ""
#. +> trunk5 stable5
#: nowplaying.cpp:312
#, kde-format
msgid "back to playlist"
msgstr ""
#. +> trunk5 stable5
#: playermanager.cpp:420
#, kde-format
msgctxt "%1 will be the /path/to/file, %2 will be some string from Phonon describing the error"
msgid ""
"JuK is unable to play the audio file<nl/>"
"<filename>%1</filename><nl/>"
"for the following reason:<nl/>"
"<message>%2</message>"
msgstr ""
#. +> trunk5 stable5
#: playermanager.cpp:466
#, kde-format
msgctxt "%1 is the artist and %2 is the title of the currently playing track."
msgid "%1 - %2 :: JuK"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:503
+#: playlist.cpp:335
#, kde-format
msgid "Could not save to file %1."
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:744
+#: playlist.cpp:576
#, kde-format
msgid "Are you sure you want to delete these covers?"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:746
+#: playlist.cpp:578
#, kde-format
msgid "&Delete Covers"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:775
+#: playlist.cpp:607
#, kde-format
msgid "Select Cover Image File"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:777
+#: playlist.cpp:609
#, kde-format
msgid "Images (*.png *.jpg)"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:930
+#: playlist.cpp:762
#, kde-format
msgid "Could not delete these files"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:931
+#: playlist.cpp:763
#, kde-format
msgid "Could not move these files to the Trash"
msgstr ""
#. i18n: ectx: property (text), widget (K3ListView, trackList)
#. +> trunk5 stable5
-#: playlist.cpp:1430 trackpickerdialogbase.ui:97
+#: playlist.cpp:1265 trackpickerdialogbase.ui:97
#, kde-format
msgid "Track Name"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1433
+#: playlist.cpp:1268
#, kde-format
msgid "Cover"
msgstr ""
#. i18n: ectx: property (text), widget (K3ListView, trackList)
#. +> trunk5 stable5
-#: playlist.cpp:1434 tagrenameroptions.cpp:112 trackpickerdialogbase.ui:130
+#: playlist.cpp:1269 tagrenameroptions.cpp:112 trackpickerdialogbase.ui:130
#, kde-format
msgctxt "cd track number"
msgid "Track"
msgstr ""
#. i18n: ectx: property (text), widget (K3ListView, trackList)
#. +> trunk5 stable5
-#: playlist.cpp:1436 tagrenameroptions.cpp:121 trackpickerdialogbase.ui:141
+#: playlist.cpp:1271 tagrenameroptions.cpp:121 trackpickerdialogbase.ui:141
#, kde-format
msgid "Year"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1437
+#: playlist.cpp:1272
#, kde-format
msgid "Length"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1438
+#: playlist.cpp:1273
#, kde-format
msgid "Bitrate"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1439
+#: playlist.cpp:1274
#, kde-format
msgid "Comment"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, fileInfoGroup)
#. +> trunk5 stable5
-#: playlist.cpp:1440 trackpickerdialogbase.ui:21
+#: playlist.cpp:1275 trackpickerdialogbase.ui:21
#, kde-format
msgid "File Name"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1441
+#: playlist.cpp:1276
#, kde-format
msgid "File Name (full path)"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:1608
+#: playlist.cpp:1440
#, kde-format
msgid "&Show Columns"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2026
+#: playlist.cpp:1858
#, kde-format
msgid "Add to Play Queue"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2039
+#: playlist.cpp:1871
#, kde-format
msgid "Edit"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2054
+#: playlist.cpp:1886
#, kde-format
msgid "Create Playlist From Selected Items..."
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2070
+#: playlist.cpp:1902
#, kde-format
msgid "Edit '%1'"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2243 playlistcollection.h:191
+#: playlist.cpp:2075 playlistcollection.h:191
#, kde-format
msgid "Create New Playlist"
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2252
+#: playlist.cpp:2084
#, kde-format
msgid "Manual column widths have been enabled. You can switch back to automatic column sizes in the view menu."
msgstr ""
#. +> trunk5 stable5
-#: playlist.cpp:2255
+#: playlist.cpp:2087
#, kde-format
msgid "Manual Column Widths Enabled"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:107
#, kde-format
msgid "View Modes"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:158
#, kde-format
msgid "Show &History"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:210 playlistcollection.cpp:424
#, kde-format
msgctxt "verb, copy the playlist"
msgid "Duplicate"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:337
#, kde-format
msgid "Do you want to delete these files from the disk as well?"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:337
#, kde-format
msgid "Keep"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:347
#, kde-format
msgid "Could not delete these files."
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:354
#, kde-format
msgid "Are you sure you want to remove these playlists from your collection?"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:357
#, kde-format
msgid "Remove Items?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bRemove)
#. +> trunk5 stable5
#: playlistbox.cpp:358 tagguesserconfigdlgwidget.ui:100
#, kde-format
msgid "&Remove"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:551
#, kde-format
msgid "Hid&e"
msgstr ""
#. +> trunk5 stable5
#: playlistbox.cpp:553 playlistcollection.cpp:964
#, kde-format
msgid "R&emove"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:206
#, kde-format
msgid "Dynamic List"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:249
#, kde-format
msgid "Now Playing"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:351
#, kde-format
msgid "Do you want to add these items to the current list or to the collection list?"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:353
#, kde-format
msgctxt "current playlist"
msgid "Current"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:354
#, kde-format
msgid "Collection"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:412
#, kde-format
msgid "Rename"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:531
#, kde-format
msgid "Search Playlist"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:556
#, kde-format
msgid "Create Folder Playlist"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:595
#, kde-format
msgid "History"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:780
#, kde-format
msgid "Please enter a name for this playlist:"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:925
#, kde-format
msgctxt "new playlist"
msgid "&New"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:928
#, kde-format
msgid "&Empty Playlist..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:930
#, kde-format
msgid "&Search Playlist..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:932
#, kde-format
msgid "Playlist From &Folder..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:938
#, kde-format
msgid "&Guess Tag Information"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:943
#, kde-format
msgid "From &File Name"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:945
#, kde-format
msgid "From &Internet"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:948
#, kde-format
msgid "Guess Tag Information From &File Name"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:953
#, kde-format
msgid "Play First Track"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:954
#, kde-format
msgid "Play Next Album"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:960
#, kde-format
msgid "Manage &Folders..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:961
#, kde-format
msgid "&Rename..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:962
#, kde-format
msgctxt "verb, copy the playlist"
msgid "D&uplicate..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:965
#, kde-format
msgid "Reload"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:966
#, kde-format
msgid "Edit Search..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:968
#, kde-format
msgid "&Delete"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:969
#, kde-format
msgid "Refresh"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:970
#, kde-format
msgid "&Rename File"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:975
#, kde-format
msgid "&View Cover"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:977
#, kde-format
msgid "Get Cover From &File..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:979
#, kde-format
msgid "Get Cover From &Internet..."
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:981
#, kde-format
msgid "&Delete Cover"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:983
#, kde-format
msgid "Show Cover &Manager"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.cpp:987
#, kde-format
msgid "Show &Play Queue"
msgstr ""
#. +> trunk5 stable5
#: playlistcollection.h:194
#, kde-format
msgid "Playlist"
msgstr ""
#. +> trunk5 stable5
#: playlistsplitter.cpp:163
#, kde-format
msgid "Show &Search Bar"
msgstr ""
#. +> trunk5 stable5
#: playlistsplitter.cpp:166
#, kde-format
msgid "Edit Track Search"
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:38
#, kde-format
msgid "Configure scrobbling..."
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:43
#, kde-format
msgid "Test login..."
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:50
#, kde-format
msgid "Please enter your <a href=\"https://last.fm/\">last.fm</a> login credentials:"
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:54
#, kde-format
msgid "Username:"
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:55
#, kde-format
msgid "Password:"
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:84
#, kde-format
msgid "KWallet is unavailable, your Last.fm credentials will be stored without encryption."
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:84
#, kde-format
msgid "KWallet is unavailable"
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:130
#, kde-format
msgid "Validating login..."
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:140
#, kde-format
msgid "Login invalid."
msgstr ""
#. +> trunk5 stable5
#: scrobbleconfigdlg.cpp:148
#, kde-format
msgid "Login valid."
msgstr ""
#. +> trunk5 stable5
#: searchwidget.cpp:72
#, kde-format
msgid "Normal Matching"
msgstr ""
#. +> trunk5 stable5
#: searchwidget.cpp:73
#, kde-format
msgid "Case Sensitive"
msgstr ""
#. +> trunk5 stable5
#: searchwidget.cpp:74
#, kde-format
msgid "Pattern Matching"
msgstr ""
#. +> trunk5 stable5
#: searchwidget.cpp:173
#, kde-format
msgid "All Visible"
msgstr ""
#. +> trunk5 stable5
#: searchwidget.cpp:205
#, kde-format
msgid "Search:"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:233
#, kde-format
msgid "100%"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:234
#, kde-format
msgid "80%"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:235
#, kde-format
msgid "60%"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:236
#, kde-format
msgid "40%"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:237
#, kde-format
msgid "20%"
msgstr ""
#. +> trunk5 stable5
#: slider.cpp:238
#, kde-format
msgid "0%"
msgstr ""
#. +> trunk5 stable5
#: slideraction.cpp:53
#, kde-format
msgid "Seeking is not supported in this file with your audio settings."
msgstr ""
#. +> trunk5 stable5
#: statuslabel.cpp:85
#, kde-format
msgid "Jump to the currently playing item"
msgstr ""
#. +> trunk5 stable5
#: statuslabel.cpp:115
#, kde-format
msgid "1 item"
msgid_plural "%1 items"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: systemtray.cpp:165
#, kde-format
msgid "Redisplay Popup"
msgstr ""
#. +> trunk5 stable5
#: tag.cpp:95
#, kde-format
msgctxt "a playing track, %1 is artist, %2 is song title"
msgid "%1 - <i>%2</i>"
msgstr ""
#. +> trunk5 stable5
#: tageditor.cpp:481
#, kde-format
msgid "Show &Tag Editor"
msgstr ""
#. +> trunk5 stable5
#: tageditor.cpp:485
#, kde-format
msgid "&Save"
msgstr ""
#. +> trunk5 stable5
#: tageditor.cpp:611
#, kde-format
msgid "Do you want to save your changes to:\n"
msgstr ""
#. +> trunk5 stable5
#: tageditor.cpp:613
#, kde-format
msgid "Save Changes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, fileNameLabel)
#. +> trunk5 stable5
#: tageditor.ui:19
#, kde-format
msgid "F&ile name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, trackLabel)
#. +> trunk5 stable5
#: tageditor.ui:29
#, kde-format
msgid "T&rack:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, artistNameLabel)
#. +> trunk5 stable5
#: tageditor.ui:39
#, kde-format
msgid "&Artist name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, albumNameLabel)
#. +> trunk5 stable5
#: tageditor.ui:49
#, kde-format
msgid "Album &name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, genreLabel)
#. +> trunk5 stable5
#: tageditor.ui:59
#, kde-format
msgid "&Genre:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, yearLabel)
#. +> trunk5 stable5
#: tageditor.ui:72
#, kde-format
msgid "&Year:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lengthLabel)
#. +> trunk5 stable5
#: tageditor.ui:96
#, kde-format
msgid "&Length:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, bitrateLabel)
#. +> trunk5 stable5
#: tageditor.ui:106
#, kde-format
msgid "&Bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, commentLabel)
#. +> trunk5 stable5
#: tageditor.ui:116
#, kde-format
msgid "&Comment:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, trackNameLabel)
#. +> trunk5 stable5
#: tageditor.ui:184
#, kde-format
msgid "Trac&k name:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, artistNameEnable)
#. i18n: ectx: property (text), widget (QCheckBox, trackNameEnable)
#. i18n: ectx: property (text), widget (QCheckBox, albumNameEnable)
#. i18n: ectx: property (text), widget (QCheckBox, genreEnable)
#. i18n: ectx: property (text), widget (QCheckBox, trackEnable)
#. i18n: ectx: property (text), widget (QCheckBox, yearEnable)
#. i18n: ectx: property (text), widget (QCheckBox, commentEnable)
#. +> trunk5 stable5
#: tageditor.ui:194 tageditor.ui:207 tageditor.ui:217 tageditor.ui:227
#: tageditor.ui:237 tageditor.ui:247 tageditor.ui:257
#, kde-format
msgid "Enable"
msgstr ""
#. +> trunk5 stable5
#: tagguesserconfigdlg.cpp:37
#, kde-format
msgid "Tag Guesser Configuration"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QTreeView, lvSchemes)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:18
#, kde-format
msgid "Currently used file name schemes"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QTreeView, lvSchemes)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:29
#, kde-format, no-c-format
msgid ""
"Here you can see the currently configured file name schemes which the \"Guess Tag Information From File Name\" entry in the song's context menu uses to extract tag information from a file name. Each string may contain one of the following placeholders:"
"<ul>\n"
"<li>%t: Title</li>"
"\n"
"<li>%a: Artist</li>"
"\n"
"<li>%A: Album</li>"
"\n"
"<li>%T: Track</li>"
"\n"
"<li>%c: Comment</li>"
"\n"
"</ul>"
"\n"
"For example, the file name scheme \"[%T] %a - %t\" would match \"[01] Deep Purple - Smoke on the water\" but not \"(Deep Purple) Smoke on the water\". For that second name, you would use the scheme \"(%a) %t\".<p/>"
"\n"
"Note that the order in which the schemes appear in the list is relevant, since the tag guesser will go through the list from the top to the bottom, and use the first matching scheme."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bMoveUp)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:42
#, kde-format
msgid "Move scheme up"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QToolButton, bMoveUp)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:45
#, kde-format
msgid "Press this button to move the currently selected scheme one step upwards."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, bMoveDown)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:55
#, kde-format
msgid "Move scheme down"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QToolButton, bMoveDown)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:58
#, kde-format
msgid "Press this button to move the currently selected scheme one step downwards."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bAdd)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:68
#, kde-format
msgid "Add a new scheme"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, bAdd)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:71
#, kde-format
msgid "Press this button to add a new file name scheme to the end of the list."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bAdd)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:74
#, kde-format
msgid "&Add"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bModify)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:81
#, kde-format
msgid "Modify scheme"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, bModify)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:84
#, kde-format
msgid "Press this button to modify the currently selected scheme."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, bModify)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:87
#, kde-format
msgid "&Modify"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, bRemove)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:94
#, kde-format
msgid "Remove scheme"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QPushButton, bRemove)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:97
#, kde-format
msgid "Press this button to remove the currently selected scheme from the list."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5 stable5
#: tagguesserconfigdlgwidget.ui:128
#, kde-format, no-c-format
msgid ""
"You can use the following placeholders:\n"
"%t: Title\n"
"%A: Album\n"
"%a: Artist\n"
"%T: Track\n"
"%c: Comment"
msgstr ""
#. +> trunk5 stable5
#: tagrenameroptions.cpp:99
#, kde-format
msgctxt "song title"
msgid "Title"
msgstr ""
#. +> trunk5 stable5
#: tagrenameroptions.cpp:127
#, kde-format
msgctxt "unknown renamer category"
msgid "Unknown"
msgstr ""
#. +> trunk5 stable5
#: tagtransactionmanager.cpp:112
#, kde-format
msgid ""
"This file already exists.\n"
"Do you want to replace it?"
msgstr ""
#. +> trunk5 stable5
#: tagtransactionmanager.cpp:113
#, kde-format
msgid "File Exists"
msgstr ""
#. +> trunk5 stable5
#: tagtransactionmanager.cpp:113
#, kde-format
msgid "Replace"
msgstr ""
#. +> trunk5 stable5
#: tagtransactionmanager.cpp:178
#, kde-format
msgid "The following files were unable to be changed."
msgstr ""
#. +> trunk5 stable5
#: tagtransactionmanager.cpp:180
#, kde-format
msgid "Error"
msgstr ""
#. +> trunk5 stable5
#: trackpickerdialog.cpp:54
#, kde-format
msgid "Internet Tag Guesser"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, trackInfoGroup)
#. +> trunk5 stable5
#: trackpickerdialogbase.ui:64
#, kde-format
msgid "Select Best Possible Match"
msgstr ""
#. +> trunk5 stable5
#: treeviewitemplaylist.cpp:47
#, kde-format
msgid "artist"
msgstr ""
#. +> trunk5 stable5
#: treeviewitemplaylist.cpp:49
#, kde-format
msgid "genre"
msgstr ""
#. +> trunk5 stable5
#: treeviewitemplaylist.cpp:51
#, kde-format
msgid "album"
msgstr ""
#. +> trunk5 stable5
#: treeviewitemplaylist.cpp:55
#, kde-format
msgid "You are about to change the %1 on these files."
msgstr ""
#. +> trunk5 stable5
#: treeviewitemplaylist.cpp:57
#, kde-format
msgid "Changing Track Tags"
msgstr ""
#. +> trunk5 stable5
#: upcomingplaylist.cpp:36
#, kde-format
msgid "Play Queue"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:159
#, kde-format
msgctxt "the normal viewing mode"
msgid "Default"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:288
#, kde-format
msgctxt "compact viewing mode"
msgid "Compact"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:325
#, kde-format
msgid "Tree"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:462
#, kde-format
msgid "Artists"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:465
#, kde-format
msgid "Albums"
msgstr ""
#. +> trunk5 stable5
#: viewmode.cpp:468
#, kde-format
msgid "Genres"
msgstr ""
#. +> trunk5 stable5
#: volumepopupbutton.cpp:75
#, kde-format
msgid "Mute/Unmute"
msgstr ""
#. +> trunk5 stable5
#: volumepopupbutton.cpp:114
#, kde-format
msgid "%1%"
msgstr ""
#. +> trunk5 stable5
#: volumepopupbutton.cpp:123 volumepopupbutton.cpp:134
#, kde-format
msgid "Volume: %1% (muted)"
msgstr ""
#. +> trunk5 stable5
#: volumepopupbutton.cpp:123
#, kde-format
msgid "Volume: %1%"
msgstr ""
#. +> trunk5 stable5
#: webimagefetcher.cpp:84
#, kde-format
msgid "Searching for cover. Please Wait..."
msgstr ""
#. +> trunk5 stable5
#: webimagefetcher.cpp:145
#, kde-format
msgid "Downloading cover. Please Wait..."
msgstr ""
#. +> trunk5 stable5
#: webimagefetcher.cpp:162
#, kde-format
msgid "Cover found"
msgstr ""
#. +> trunk5 stable5
#: webimagefetcher.cpp:191
#, kde-format
msgid "Cover fetched from <a href='https://last.fm/'>last.fm</a>."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.desktop.pot (revision 1509808)
@@ -1,488 +1,422 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-07 09:49+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: kioslaves/videodvd/videodvd.desktop:6
msgctxt "Name"
msgid "Video DVD Browser"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: kioslaves/videodvd/videodvd.protocol:18
msgctxt "Description"
msgid "A kioslave that allows files to be copied from a Video DVD (including decryption)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: libk3b/plugin/k3bplugin.desktop:4
msgctxt "Name"
msgid "K3b Plugin"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/ffmpeg/k3bffmpegdecoder.desktop:2
msgctxt "Name"
msgid "K3b FFMpeg Decoder"
msgstr ""
#. +> trunk5 stable5
#: plugins/decoder/ffmpeg/k3bffmpegdecoder.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode WMA files"
msgstr ""
-#. +> stable
-#: plugins/decoder/ffmpeg/k3bffmpegdecoder.desktop:56
-msgctxt "Comment"
-msgid "Decoding module to decode wma files"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/flac/k3bflacdecoder.desktop:2
msgctxt "Name"
msgid "K3b FLAC Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/flac/k3bflacdecoder.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode FLAC files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/libsndfile/k3blibsndfiledecoder.desktop:2
msgctxt "Name"
msgid "K3b Libsndfile Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/libsndfile/k3blibsndfiledecoder.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode audio files supported by libsndfile"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/mp3/k3bmaddecoder.desktop:2
msgctxt "Name"
msgid "K3b MAD Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/mp3/k3bmaddecoder.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode MPEG 1 Layer III files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/musepack/k3bmpcdecoder.desktop:2
msgctxt "Name"
msgid "K3b Musepack Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/musepack/k3bmpcdecoder.desktop:56
msgctxt "Comment"
msgid "Decoding module to decode Musepack audio files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/ogg/k3boggvorbisdecoder.desktop:2
msgctxt "Name"
msgid "K3b Ogg Vorbis Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/ogg/k3boggvorbisdecoder.desktop:58
msgctxt "Comment"
msgid "Decoding module to decode Ogg Vorbis files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/skeleton.desktop:2
msgctxt "Name"
msgid "K3b ??? Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/skeleton.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode ??? files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/wave/k3bwavedecoder.desktop:2
msgctxt "Name"
msgid "K3b Wave Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/decoder/wave/k3bwavedecoder.desktop:57
msgctxt "Comment"
msgid "Decoding module to decode wave files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/external/k3bexternalencoder.desktop:2
msgctxt "Name"
msgid "K3b External Audio Encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/external/k3bexternalencoder.desktop:57
msgctxt "Comment"
msgid "Encoding module that allows specifying an encoding command"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/external/kcm_k3bexternalencoder.desktop:2
msgctxt "Name"
msgid "K3b External Audio Encoder Config Widget"
msgstr ""
#. +> trunk5 stable5
#: plugins/encoder/lame/k3blameencoder.desktop:2
msgctxt "Name"
msgid "K3b Lame MP3 Encoder"
msgstr ""
-#. +> stable
-#: plugins/encoder/lame/k3blameencoder.desktop:2
-msgctxt "Name"
-msgid "K3b Lame Mp3 Encoder"
-msgstr ""
-
#. +> trunk5 stable5
#: plugins/encoder/lame/k3blameencoder.desktop:34
msgctxt "Comment"
msgid "Encoding module to encode MPEG1 Layer III (MP3) files"
msgstr ""
-#. +> stable
-#: plugins/encoder/lame/k3blameencoder.desktop:55
-msgctxt "Comment"
-msgid "Encoding module to encode MPEG1 Layer III (mp3) files"
-msgstr ""
-
#. +> trunk5 stable5
#: plugins/encoder/lame/kcm_k3blameencoder.desktop:2
msgctxt "Name"
msgid "K3b Lame MP3 Encoder Config Module"
msgstr ""
-#. +> stable
-#: plugins/encoder/lame/kcm_k3blameencoder.desktop:2
-msgctxt "Name"
-msgid "K3b Lame Mp3 Encoder Config Module"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/ogg/k3boggvorbisencoder.desktop:2
msgctxt "Name"
msgid "K3b Ogg Vorbis Encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/ogg/k3boggvorbisencoder.desktop:56
msgctxt "Comment"
msgid "Encoding module to encode Ogg Vorbis files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/ogg/kcm_k3boggvorbisencoder.desktop:2
msgctxt "Name"
msgid "K3b Ogg Vorbis Encoder Config Widget"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/skeleton.desktop:2
msgctxt "Name"
msgid "K3b ??? Encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/skeleton.desktop:56
msgctxt "Comment"
msgid "Encoding module to encode <name> files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/sox/k3bsoxencoder.desktop:2
msgctxt "Name"
msgid "K3b SoX Audio Encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/sox/k3bsoxencoder.desktop:56
msgctxt "Comment"
msgid "Encoding module to encode many file formats using SoX"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/encoder/sox/kcm_k3bsoxencoder.desktop:2
msgctxt "Name"
msgid "K3b SoX Audio Encoder Config Module"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.desktop:2
msgctxt "Name"
msgid "K3b Audio Metainfo Renamer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.desktop:51
msgctxt "Comment"
msgid "Plugin to rename audio files in a data project based on the meta info."
msgstr ""
#. +> trunk5 stable5
#: plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.desktop:2
msgctxt "Name"
msgid "K3b CDDB Audio Plugin"
msgstr ""
-#. +> stable
-#: plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.desktop:2
-msgctxt "Name"
-msgid "K3b Cddb Audio Plugin"
-msgstr ""
-
#. +> trunk5 stable5
#: plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.desktop:34
msgctxt "Comment"
msgid "Plugin to query a CDDB server for information about an audio project."
msgstr ""
-#. +> stable
-#: plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.desktop:52
-msgctxt "Comment"
-msgid "Plugin to query a cddb server for information about an audio project."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/helper/k3b.actions:2
msgctxt "Name"
msgid "Update device and programs permissions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/helper/k3b.actions:53
msgctxt "Description"
msgid "Authentication is required to update permissions of devices and programs"
msgstr ""
#. +> trunk5 stable5
#: src/helper/k3b.actions:104
msgctxt "Name"
msgid "Adds current user to a specified group"
msgstr ""
#. +> trunk5 stable5
#: src/helper/k3b.actions:148
msgctxt "Description"
msgid "Authentication is required to add current user to a group"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b-cue.desktop:7 src/k3b-iso.desktop:7 src/org.kde.k3b.desktop:112
msgctxt "Name"
msgid "K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:3
msgctxt "Comment"
msgid "K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:68
msgctxt "Name"
msgid "Process successful"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:129
msgctxt "Comment"
msgid "Process successfully finished"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:191
msgctxt "Name"
msgid "Process error"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:252
msgctxt "Comment"
msgid "Process finished with errors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:317
msgctxt "Name"
msgid "Waiting for medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/k3b.notifyrc:377
msgctxt "Comment"
msgid "The user needs to insert a medium"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:437
msgctxt "Name"
msgid "Busy"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:488
msgctxt "Comment"
msgid "K3b is currently busy and cannot start any other operations"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:537
msgctxt "Name"
msgid "No problems found"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:584
msgctxt "Comment"
msgid "No problems found in system configuration"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:633
msgctxt "Name"
msgid "Mount/unmount failed"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:681
msgctxt "Comment"
msgid "Medium cannot be mount or unmounted"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:731
msgctxt "Name"
msgid "Track data not found"
msgstr ""
#. +> trunk5 stable5
#: src/k3b.notifyrc:777
msgctxt "Comment"
msgid "Track information has not been found in the online database"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/org.kde.k3b.desktop:6
msgctxt "GenericName"
msgid "Disk Burning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/org.kde.k3b.desktop:58
msgctxt "Comment"
msgid "Disk writing program"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_audiocd_rip.desktop:8
msgctxt "Name"
msgid "Extract Digital Audio with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_copy_disc.desktop:8
msgctxt "Name"
msgid "Copy with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_create_audio_cd.desktop:10
#: src/services/k3b_create_audio_cd_from_blank_medium.desktop:9
msgctxt "Name"
msgid "Create Audio CD with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_create_data_project.desktop:10
#: src/services/k3b_create_data_project_from_blank_medium.desktop:9
msgctxt "Name"
msgid "Create file project with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_create_video_cd.desktop:9
msgctxt "Name"
msgid "Create Video CD with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_dvd_copy.desktop:8
msgctxt "Name"
msgid "Copy DVD with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_videodvd_rip.desktop:8
msgctxt "Name"
msgid "Rip Video DVD Titles with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_write_bin_image.desktop:9
msgctxt "Name"
msgid "Write CD Image with K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: src/services/k3b_write_iso_image.desktop:9
msgctxt "Name"
msgid "Write image to disc with K3b"
msgstr ""
-
-#. +> stable
-#: k3bsetup/k3bsetup.desktop:3
-msgctxt "Comment"
-msgid "K3bSetup – modify permission for CD/DVD burning with K3b"
-msgstr ""
-
-#. +> stable
-#: k3bsetup/k3bsetup.desktop:54
-msgctxt "Keywords"
-msgid "K3bSetup;k3bsetup;"
-msgstr ""
-
-#. +> stable
-#: k3bsetup/k3bsetup.desktop:85
-msgctxt "Name"
-msgid "K3bSetup"
-msgstr ""
-
-#. +> stable
-#: k3bsetup/k3bsetup.desktop:151
-msgctxt "X-KDE-Keywords"
-msgid "k3b,k3bsetup,cd,dvd"
-msgstr ""
-
-#. +> stable
-#: k3bsetup/k3bsetup.desktop:193
-msgctxt "GenericName"
-msgid "CD/DVD/BD Burning Setup"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdemultimedia/k3b.pot (revision 1509808)
@@ -1,12887 +1,11350 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:39+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp:244
#, kde-format
msgid "Windows Media v1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp:246
#, kde-format
msgid "Windows Media v2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp:248
#, kde-format
msgid "MPEG 1 Layer III"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ffmpeg/k3bffmpegwrapper.cpp:250
#, kde-format
msgid "Advanced Audio Coding (AAC)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:369
#, kde-format
msgid "FLAC"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:375
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:390
#: ../plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp:118
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:382
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:395
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:115
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:331
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:339
#, kde-format
msgid "Channels"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:376
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:392
#: ../plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp:119
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:383
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:409
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:116
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:332
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:341
#, kde-format
msgid "Sampling Rate"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:377
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:394
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:333
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:343
#, kde-format
msgid "Sample Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:384
#, kde-format
msgid "Vendor"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:393
#: ../plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp:119
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:410
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:116
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:342
#, kde-format
msgid "%1 Hz"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/flac/k3bflacdecoder.cpp:395
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:344
#, kde-format
msgid "1 bit"
msgid_plural "%1 bits"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:384
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:411
#, kde-format
msgid "Bitrate"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:385
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:417
#, kde-format
msgid "Layer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:386
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:429
#, kde-format
msgid "Emphasis"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:387
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:441
#, kde-format
msgid "Copyright"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:388
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:443
#, kde-format
msgid "Original"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:389
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:445
#, kde-format
msgid "CRC"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboMode)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:398
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:180
#: ../plugins/encoder/lame/k3blametyes.h:94
#, kde-format
msgid "Mono"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:400
#, kde-format
msgid "Dual"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboMode)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:402
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:175
#: ../plugins/encoder/lame/k3blametyes.h:93
#, kde-format
msgid "Joint Stereo"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboMode)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:404
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:170
#: ../plugins/encoder/lame/k3blametyes.h:92
#, kde-format
msgid "Stereo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:413
#, kde-format
msgid "VBR"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:415
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:118
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:120
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:122
#, kde-format
msgid "%1 bps"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioNoEmulation)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:432
#: projects/base_k3bbootimagedialog.ui:94 projects/k3bbootimagemodel.cpp:83
#, kde-format
msgid "None"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:434
#, kde-format
msgid "50/15 ms"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:436
#, kde-format
msgid "CCITT J.17"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:438
#, kde-format
msgid "Unknown"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:442
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:444
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:446
#, kde-format
msgid "Yes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:442
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:444
#: ../plugins/decoder/mp3/k3bmaddecoder.cpp:446
#, kde-format
msgid "No"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/musepack/k3bmpcdecoder.cpp:68
#, kde-format
msgid "Musepack"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:114
#: option/k3bexternalbinmodel.cpp:238 option/k3bthememodel.cpp:103
#, kde-format
msgid "Version"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:118
#, kde-format
msgid "Bitrate Upper"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:120
#, kde-format
msgid "Bitrate Nominal"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:122
#, kde-format
msgid "Bitrate Lower"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/ogg/k3boggvorbisdecoder.cpp:201
#: ../plugins/encoder/ogg/k3boggvorbisencoder.cpp:413
#, kde-format
msgid "Ogg-Vorbis"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/decoder/wave/k3bwavedecoder.cpp:325
#, kde-format
msgid "WAVE"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:22
#, kde-format
msgid ""
"<p>This dialog can be used to setup external command line applications as audio encoders. These can then be used by K3b to encode audio data (Tracks from an audio CD or the titles from an audio project) to formats that are normally not supported (i.e. no encoder plugin exists).\n"
"<p>K3b comes with a selection of predefined external applications that depends on the installed applications."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:32
#, kde-format
msgid "Configured Encoders"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, m_viewEncoders)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:45
#, kde-format
msgid "Name"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, m_viewEncoders)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:50
#, kde-format
msgid "Extension"
msgstr ""
#. i18n: ectx: property (text), widget (QTreeWidget, m_viewEncoders)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:55
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:57
#, kde-format
msgid "Command"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonRemove)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:81
#: projects/k3baudioviewimpl.cpp:104 projects/k3bdataviewimpl.cpp:117
#: projects/k3bmovixview.cpp:67 projects/k3bvcdview.cpp:64
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonEdit)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:88
#, kde-format
msgid "Edit..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonAdd)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencoderconfigwidget.ui:95
#, kde-format
msgid "Add..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:18
#, kde-format
msgid "General"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:24
#, kde-format
msgid "Name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:37
#, kde-format
msgid "Filename extension:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:80
#, kde-format, no-c-format
msgid ""
"Please insert the command used to encode the audio data. The command has to read raw little endian (see <em>Swap Byte Order</em>) 16-bit stereo audio frames from stdin.\n"
"<p>The following strings will be replaced by K3b:<br>"
"\n"
"<b>%f</b> - The filename of the resulting file. This is where the command has to write its output to.<br>"
"\n"
"<em>The following refer to metadata stored for example in the ID3 tag of an mp3 file (Be aware that these values might be empty).</em><br>"
"\n"
"<b>%t</b> - Title<br>"
"\n"
"<b>%a</b> - Artist<br>"
"\n"
"<b>%c</b> - Comment<br>"
"\n"
"<b>%n</b> - Track number<br>"
"\n"
"<b>%m</b> - Album Title<br>"
"\n"
"<b>%r</b> - Album Artist<br>"
"\n"
"<b>%x</b> - Album comment<br>"
"\n"
"<b>%y</b> - Release Year"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:103
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:366
#: k3bfileview.cpp:94 rip/base_k3baudiorippingoptionwidget.ui:47
#, kde-format
msgid "Options"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkSwapByteOrder)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:109
#, kde-format
msgid "Swap the byte order of the input data"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkSwapByteOrder)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:113
#, kde-format
msgid ""
"<p> If this option is checked K3b will swap the byte order of the input data. Thus, the command has to read big endian audio frames.\n"
"<p>If the resulting audio file sounds bad it is highly likely that the byte order is wrong and this option has to be checked."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkSwapByteOrder)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:116
#, kde-format
msgid "Swap &Byte Order"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkWriteWaveHeader)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:123
#, kde-format
msgid "Create a wave header for the input data"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkWriteWaveHeader)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:126
#, kde-format
msgid "<p>If this option is checked K3b will write a wave header. This is useful in case the encoder application cannot read plain raw audio data."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkWriteWaveHeader)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/base_k3bexternalencodereditdialog.ui:129
#, kde-format
msgid "Write W&ave Header"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoder.cpp:177
#, kde-format
msgid "Command failed: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoder.cpp:205
#, kde-format
msgid "Could not find program '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoder.cpp:212
#, kde-format
msgid "Invalid command: the command is empty."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:35
#, kde-format
msgid "Editing external audio encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:71
#, kde-format
msgid "Please specify a name for the command."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:72
#, kde-format
msgid "No name specified"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:76
#, kde-format
msgid "Please specify an extension for the command."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:77
#, kde-format
msgid "No extension specified"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:81
#, kde-format
msgid "Please specify the command line."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:82
#, kde-format
msgid "No command line specified"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:87
#, kde-format, no-c-format
msgid "Please add the output filename (%f) to the command line."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/external/k3bexternalencoderconfigwidget.cpp:88
#, kde-format
msgid "No filename specified"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupOptions)
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:34
#: misc/k3bimagewritingdialog.cpp:547 misc/k3bimagewritingdialog.cpp:563
#: misc/k3bmediacopydialog.cpp:117 misc/k3bmediaformattingdialog.cpp:71
#: option/k3boptiondialog.cpp:49 projects/base_k3bbootimagedialog.ui:110
#: projects/k3baudioburndialog.cpp:76 projects/k3bdatapropertiesdialog.cpp:146
#: projects/k3bprojectburndialog.cpp:264 projects/k3bvcdburndialog.cpp:417
#: projects/k3bvcdburndialog.cpp:449 projects/k3bvcdtrackdialog.cpp:452
#: rip/k3baudioprojectconvertingdialog.cpp:143
#: rip/k3baudiorippingdialog.cpp:161 rip/k3bvideocdrippingdialog.cpp:98
#, kde-format
msgid "Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:40
#, kde-format
msgid "Quality Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioQualityLevel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:48
#, kde-format
msgid "Preset:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, m_labelQualityLevel)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:55
-#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:51
-#, kde-format
-msgid "textLabel1"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:105
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:348
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:120
#, kde-format
msgid "high quality"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:123
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:138
#, kde-format
msgid "small file"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioManual)
#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:172
#, kde-format
msgid "Manua&l settings:"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, m_radioManual)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:187
-#, kde-format
-msgid "Manual settings:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, m_labelManualSettings)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:203
-#, kde-format
-msgid "textLabel2"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QPushButton, m_buttonManualSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:239
#, kde-format
msgid "Change Settings..."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:265
#: misc/k3bimagewritingdialog.cpp:593 misc/k3bimagewritingdialog.cpp:974
#: option/k3boptiondialog.cpp:216 projects/k3baudioburndialog.cpp:107
#: projects/k3bdatapropertiesdialog.cpp:147 projects/k3bvcdburndialog.cpp:388
#: rip/k3baudiorippingdialog.cpp:175
#, kde-format
msgid "Advanced"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:271
#, kde-format
msgid "Encoder Quality"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, m_spinEncoderQuality)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:277
#, kde-format
msgid "Choose the noise shaping & psycho acoustic algorithm."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QSpinBox, m_spinEncoderQuality)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:285
#, kde-format
msgid ""
"<p>Bitrate is of course the main influence on quality. The higher the bitrate, the higher the quality. But for a given bitrate, we have a choice of algorithms to determine the best scalefactors and huffman encoding (noise shaping).\n"
"<p>The quality increases from 0 to 9 while the encoding speed drops.\n"
"<p>9 uses the slowest & best possible version of all algorithms.\n"
"<p><b>7 is the recommended setting</b> while 4 still produced reasonable quality at good speed.\n"
"<p>0 disables almost all algorithms including psy-model resulting in poor quality.\n"
"<p><b>This setting has no influence on the size of the resulting file.</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:333
#, kde-format
msgid "fast encoding"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkCopyright)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:372
#, kde-format
msgid "Mark the encoded file as being copyrighted."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkCopyright)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:375
#, kde-format
msgid "Mark copyrighted"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkOriginal)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:382
#, kde-format
msgid "Mark the encoded file as being a copy."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkOriginal)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:385
#, kde-format
msgid "Mark as original"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkISO)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:392
#, kde-format
msgid "Enforce strict ISO compliance"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkISO)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:396
#, kde-format
msgid ""
"<p>If this option is checked, LAME will enforce the 7680 bit limitation on total frame size.<br>"
"\n"
"This results in many wasted bits for high bitrate encodings but will ensure strict ISO compatibility. This compatibility might be important for hardware players."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkISO)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:399
#, kde-format
msgid "Strict ISO compliance"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkError)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:406
#, kde-format
msgid "Turn on CRC error protection."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkError)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:409
#, kde-format
msgid "<p>If this option is checked, a cyclic redundancy check (CRC) code will be added to each frame, allowing transmission errors that could occur on the MP3 stream to be detected; however, it takes 16 bits per frame that would otherwise be used for encoding, thus slightly reducing the sound quality."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkError)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3blameencodersettingswidget.ui:412
#, kde-format
msgid "Error protection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:17
#, kde-format
msgid "Quality"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioConstantBitrate)
#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:23
#, kde-format
msgid "&Constant Bitrate"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, m_radioConstantBitrate)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3bmanualbitratesettingswidget.ui:17
-#, kde-format
-msgid "Constant Bitrate"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QRadioButton, m_radioVariableBitrate)
#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:56
#, kde-format
msgid "&Variable Bitrate"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, m_radioVariableBitrate)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3bmanualbitratesettingswidget.ui:50
-#, kde-format
-msgid "Variable Bitrate"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateMaximum)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:69
#, kde-format
msgid "Maximum bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateAverage)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:89
#, kde-format
msgid "Average bitrate:"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, m_spinVideoBitrate)
#. i18n: ectx: property (suffix), widget (QSpinBox, m_spinAudioBitrate)
#. i18n: ectx: property (suffix), widget (QSpinBox, m_spinAverageBitrate)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:102
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:109
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:268
#, kde-format
msgid " kbps"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateMinimum)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:115
#, kde-format
msgid "Minimum bitrate:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:151
#, kde-format
msgid "Channel Mode"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, m_comboMode)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:157
#, kde-format
msgid "Select the channel mode."
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, m_comboMode)
#. +> trunk5 stable5
#: ../plugins/encoder/lame/base_k3bmanualbitratesettingsdialog.ui:166
#, kde-format
msgid ""
"<p>Select the channel mode of the resulting MP3 file:\n"
"<p><b>Stereo</b><br>"
"\n"
"In this mode, the encoder makes no use of potential correlations between the two input channels; it can, however, negotiate the bit demand between both channel, i.e. give one channel more bits if the other contains silence or needs fewer bits because of a lower complexity.\n"
"<p><b>Joint-Stereo</b><br>"
"\n"
"In this mode, the encoder will make use of correlations between both channels. The signal will be matrixed into a sum (\"mid\"), computed by L+R, and difference (\"side\") signal, computed by L-R, and more bits are allocated to the mid channel. This will effectively increase the bandwidth if the signal does not have too much stereo separation, thus giving a significant gain in encoding quality.\n"
"<p><b>Mono</b><br>"
"\n"
"The input will be encoded as a mono signal. If it was a stereo signal, it will be downsampled to mono. The downmix is calculated as the sum of the left and right channel, attenuated by 6 dB."
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (KComboBox, m_comboMode)
-#. +> stable
-#: ../plugins/encoder/lame/base_k3bmanualbitratesettingswidget.ui:178
-#, kde-format
-msgid ""
-"<p>Select the channel mode of the resulting Mp3 file:\n"
-"<p><b>Stereo</b><br>"
-"\n"
-"In this mode, the encoder makes no use of potential correlations between the two input channels; it can, however, negotiate the bit demand between both channel, i.e. give one channel more bits if the other contains silence or needs fewer bits because of a lower complexity.\n"
-"<p><b>Joint-Stereo</b><br>"
-"\n"
-"In this mode, the encoder will make use of correlations between both channels. The signal will be matrixed into a sum (\"mid\"), computed by L+R, and difference (\"side\") signal, computed by L-R, and more bits are allocated to the mid channel. This will effectively increase the bandwidth if the signal does not have too much stereo separation, thus giving a significant gain in encoding quality.\n"
-"<p><b>Mono</b><br>"
-"\n"
-"The input will be encoded as a mono signal. If it was a stereo signal, it will be downsampled to mono. The downmix is calculated as the sum of the left and right channel, attenuated by 6 dB."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:60
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:63
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:66
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:160
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:161
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:162
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:244
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:245
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:246
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:93
#, kde-format
msgid "%1 kbps"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:124
#, kde-format
msgid "Constant Bitrate: %1 kbps (%2)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blameencoderconfigwidget.cpp:128
#, kde-format
msgid "Variable Bitrate (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blamemanualsettingsdialog.cpp:22
#, kde-format
msgid "(Lame) Manual Quality Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:75
#, kde-format
msgid "Low quality (56 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:76
#, kde-format
msgid "Low quality (90 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:78
#, kde-format
msgid "Portable (average 115 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:79
#, kde-format
msgid "Portable (average 130 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:80
#, kde-format
msgid "Portable (average 160 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:82
#, kde-format
msgid "HiFi (average 175 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:83
#, kde-format
msgid "HiFi (average 190 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:84
#, kde-format
msgid "HiFi (average 210 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:85
#, kde-format
msgid "HiFi (average 230 kbps)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/lame/k3blametyes.h:87
#, kde-format
msgid "Archiving (320 kbps)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:21
#, kde-format
msgid "File Quality"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, m_radioQualityLevel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:29
#, kde-format
msgid "Controls the quality of the encoded files"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QRadioButton, m_radioQualityLevel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:32
#, kde-format
msgid ""
"<p>Vorbis' audio quality is not best measured in kilobits per second, but on a scale from -1 to 10 called \"quality\". "
"<p>For now, quality -1 is roughly equivalent to 45kbps average, 5 is roughly 160kbps, and 10 gives about 400kbps. Most people seeking very-near-CD-quality audio encode at a quality of 5 or, for lossless stereo coupling, 6. The default setting is quality 3, which at approximately 110kbps gives a smaller filesize and significantly better fidelity than .mp3 compression at 128kbps. "
"<p><em>This explanation was copied from the www.vorbis.com FAQ.</em>"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioQualityLevel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:35
#, kde-format
msgid "&Quality level:"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioManual)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:169
#, kde-format
msgid "M&anual settings:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateUpper)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:209
#, kde-format
msgid "&Upper bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateLower)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:216
#, kde-format
msgid "Lower &bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:256
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:266
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:276
#, kde-format
msgid "kbps"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBitrateNominal)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui:292
#, kde-format
msgid "&Nominal bitrate:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/k3boggvorbisencoderconfigwidget.cpp:63
#, kde-format
msgid "Controls the quality of the encoded files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/k3boggvorbisencoderconfigwidget.cpp:64
#, kde-format
msgid ""
"<p>Vorbis' audio quality is not best measured in kilobits per second, but on a scale from -1 to 10 called <em>quality</em>."
"<p>For now, quality -1 is roughly equivalent to 45kbps average, 5 is roughly 160kbps, and 10 gives about 400kbps. Most people seeking very-near-CD-quality audio encode at a quality of 5 or, for lossless stereo coupling, 6. The quality 3 gives, at approximately 110kbps a smaller filesize and significantly better fidelity than .mp3 compression at 128kbps."
"<p><em>This explanation is based on the one from the www.vorbis.com FAQ.</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/ogg/k3boggvorbisencoderconfigwidget.cpp:112
#, kde-format
msgid "(targeted VBR of %1)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkManual)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:22
#, kde-format
msgid "Manual settings (used for all file types)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:49
#, kde-format
msgid "Sample rate:"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:63
#, kde-format
msgid ""
"<p>The sample data encoding is signed linear (2's complement), unsigned linear, u-law (logarithmic), A-law (logarithmic), ADPCM, IMA_ADPCM, GSM, or Floating-point.</p>"
"\n"
"<p><b>U-law</b> (actually shorthand for mu-law) and <b>A-law</b> are the U.S. and international standards for logarithmic telephone sound compression. When uncompressed u-law has roughly the precision of 14-bit PCM audio and A-law has roughly the precision of 13-bit PCM audio. A-law and u-law data is sometimes encoded using a reversed bit-ordering (i.e. MSB becomes LSB).<br>"
" <b>ADPCM </b> is a form of sound compression that has a good compromise between good sound quality and fast encoding/decoding time. It is used for telephone sound compression and places where full fidelity is not as important. When uncompressed it has roughly the precision of 16-bit PCM audio. Popular versions of ADPCM include G.726, MS ADPCM, and IMA ADPCM. It has different meanings in different file handlers. In .wav files it represents MS ADPCM files, in all others it means G.726 ADPCM. <br>"
" <b>IMA ADPCM</b> is a specific form of ADPCM compression, slightly simpler and slightly lower fidelity than Microsoft's flavor of ADPCM. IMA ADPCM is also called DVI ADPCM.<br>"
" <b>GSM</b> is a standard used for telephone sound compression in European countries and is gaining popularity because of its good quality. It is usually CPU intensive to work with GSM audio data.</p>"
" "
"<p><em>Description based on the SoX manpage</em></p>"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:67
#, kde-format
msgid "Signed Linear"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:72
#, kde-format
msgid "Unsigned Linear"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:77
#, kde-format
msgid "u-law (logarithmic)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:82
#, kde-format
msgid "A-law (logarithmic)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:87
#, kde-format
msgid "ADPCM"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:92
#, kde-format
msgid "IMA_ADPCM"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:97
#, kde-format
msgid "GSM"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:102
#, kde-format
msgid "Floating-Point"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, m_editSamplerate)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:113
#, kde-format
msgid "14400"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:123
#, kde-format
msgid "Data size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:133
#, kde-format
msgid "Data encoding:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:143
#, kde-format
msgid "Channels:"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboChannels)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:157
#, kde-format
msgid "1 (mono)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboChannels)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:162
#, kde-format
msgid "2 (stereo)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboChannels)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:167
#, kde-format
msgid "4 (quad sound)"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSize)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:179
#, kde-format
msgid "Bytes"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSize)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:184
#, kde-format
msgid "16-bit Words"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSize)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/base_k3bsoxencoderconfigwidget.ui:189
#, kde-format
msgid "32-bit Words"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:287
#, kde-format
msgid "Sun AU"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:289
#, kde-format
msgid "Amiga 8SVX"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:291
#, kde-format
msgid "AIFF"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:293
#, kde-format
msgid "Audio Visual Research"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:295
#, kde-format
msgid "CD-R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:297
#, kde-format
msgid "CVS"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:299
#, kde-format
msgid "Text Data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:301
#, kde-format
msgid "GSM Speech"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:303
#, kde-format
msgid "Macintosh HCOM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:305
#, kde-format
msgid "Maud (Amiga)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:307
#, kde-format
msgid "IRCAM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:309
#, kde-format
msgid "SPHERE"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:311
#, kde-format
msgid "Turtle Beach SampleVision"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:313
#, kde-format
msgid "Yamaha TX-16W"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:315
#, kde-format
msgid "VMS"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:317
#, kde-format
msgid "Sound Blaster VOC"
msgstr ""
#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:319
#, kde-format
msgid "Wave (SoX)"
msgstr ""
-#. +> stable
-#: ../plugins/encoder/sox/k3bsoxencoder.cpp:317
-#, kde-format
-msgid "Wave (Sox)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:321
#, kde-format
msgid "Psion 8-bit A-law"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:323
#, kde-format
msgid "Raw"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/encoder/sox/k3bsoxencoder.cpp:325 k3b.cpp:635
#, kde-format
msgid "Error"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:116
#, kde-format
msgid "Rename Pattern"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:122
#, kde-format
msgid "Scan"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:127
#, kde-format
msgid "Found Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:131
#, kde-format
msgid "New Name"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:131
#, kde-format
msgid "Old Name"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:146
#, kde-format
msgid "Scan for renamable files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:147
#, kde-format
msgid "<qt>This specifies how the files should be renamed. Currently only the special strings <em>%a</em> (Artist), <em>%n</em> (Track number), and <em>%t</em> (Title) are supported."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:164
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:386
#, kde-format
msgid "Rename Audio Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:170
#, kde-format
msgid "Based on meta info"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:190
#, kde-format
msgid "Please specify a valid pattern."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:221
#, kde-format
msgid "No renameable files found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:269
#, kde-format
msgid "Please click the Scan button to search for renameable files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:283
#, kde-format
msgid "Done."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp:387
#, kde-format
msgid "Rename audio files based on their meta info."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:47
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:73
#, kde-format
msgid "Query CDDB"
msgstr ""
-#. +> stable
-#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:70
-#, kde-format
-msgid "Query Cddb"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:48
#, kde-format
msgid "Query a CDDB entry for the current audio project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:69
#, kde-format
msgid "Please select a non-empty audio project for a CDDB query."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:73
#, kde-format
msgid "Cancel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:74
#: projects/k3baudioburndialog.cpp:60
#: projects/k3baudiotracktrmlookupdialog.cpp:123
#, kde-format
msgid "Audio Project"
msgstr ""
#. +> trunk5 stable5
#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:115
#, kde-format
msgid "CDDB error"
msgstr ""
-#. +> stable
-#: ../plugins/project/audioprojectcddb/k3baudioprojectcddbplugin.cpp:119
-#, kde-format
-msgid "Cddb error"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:232
#, kde-format
msgid "K3b - The CD and DVD Kreator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:294
#, kde-format
msgid "Opens an existing project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:298
#, kde-format
msgid "Opens a recently used file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:302
#, kde-format
msgid "Saves the current project"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:306
#, kde-format
msgid "Saves the current project to a new URL"
msgstr ""
-#. +> stable
-#: k3b.cpp:461
-#, kde-format
-msgid "Saves the current project to a new url"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:309
#, kde-format
msgid "Save All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:310
#, kde-format
msgid "Saves all open projects"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:316
#, kde-format
msgid "Closes the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:319
#, kde-format
msgid "Close All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:320
#, kde-format
msgid "Closes all open projects"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:326
#, kde-format
msgid "Quits the application"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:329
#, kde-format
msgid "New &Audio CD Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:330
#, kde-format
msgid "Creates a new audio CD project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:335
#, kde-format
msgid "New &Data Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:336
#, kde-format
msgid "Creates a new data project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:341
#, kde-format
msgid "New &Mixed Mode CD Project"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:342
#, kde-format
msgid "Creates a new mixed audio/data CD project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:347
#, kde-format
msgid "New &Video CD Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:348
#, kde-format
msgid "Creates a new Video CD project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:353
#, kde-format
msgid "New &eMovix Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:354
#, kde-format
msgid "Creates a new eMovix project"
msgstr ""
-#. +> stable
-#: k3b.cpp:357
-#, kde-format
-msgid "Lock Panels"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:359
#, kde-format
msgid "New V&ideo DVD Project"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:360
#, kde-format
msgid "Creates a new Video DVD project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:365 k3bdevicemenu.cpp:76
#, kde-format
msgid "Continue Multisession Project"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:366
#, kde-format
msgid "Continues multisession project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:371
#, kde-format
msgid "&New Project"
msgstr ""
-#. +> stable
-#: k3b.cpp:515
-#, kde-format
-msgid "Projects"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:373
#, kde-format
msgid "Creates a new project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:388
#, kde-format
msgid "&Add Files..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:389
#, kde-format
msgid "Add files to the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:394
#, kde-format
msgid "&Clear Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:395
#, kde-format
msgid "Clear the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:400 k3bdevicemenu.cpp:78
#, kde-format
msgid "&Format/Erase rewritable disk..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:401
#, kde-format
msgid "Format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:402 k3bdevicemenu.cpp:85
#, kde-format
msgid "Open the rewritable disk formatting/erasing dialog"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:407
#, kde-format
msgid "&Burn Image..."
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:408
#, kde-format
msgid "Write an ISO 9660, cue/bin, or cdrecord clone image to an optical disc"
msgstr ""
-#. +> stable
-#: k3b.cpp:451
-#, kde-format
-msgid "Write an Iso9660, cue/bin, or cdrecord clone image to an optical disc"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:413 k3bdevicemenu.cpp:77
#, kde-format
msgid "Copy &Medium..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:414 k3bdebuggingoutputdialog.cpp:59
#, kde-format
msgid "Copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:415 k3bdevicemenu.cpp:83
#, kde-format
msgid "Open the media copy dialog"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:420 k3bdevicemenu.cpp:79
#, kde-format
msgid "Rip Audio CD..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:421
#, kde-format
msgid "Digitally extract tracks from an audio CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:426 k3bdevicemenu.cpp:80
#, kde-format
msgid "Rip Video DVD..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:427
#, kde-format
msgid "Transcode Video DVD titles"
msgstr ""
-#. +> stable
-#: k3b.cpp:430
-#, kde-format
-msgid "&Setup System Permissions..."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:432 k3bdevicemenu.cpp:81
#, kde-format
msgid "Rip Video CD..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:433
#, kde-format
msgid "Extract tracks from a Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:438
#, kde-format
msgid "Show Projects Header"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:439
#, kde-format
msgid "Shows/hides title header of projects panel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:450
#, kde-format
msgid "Configure K3b settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:453
#, kde-format
msgid "System Check"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:454
#, kde-format
msgid "Checks system configuration"
msgstr ""
-#. +> stable
-#: k3b.cpp:474
-#, kde-format
-msgid "Setup the system permissions"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:499
#, kde-format
msgid "Current Projects"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:540
#, kde-format
msgid "&Location Bar"
msgstr ""
-#. +> stable
-#: k3b.cpp:551
-#, kde-format
-msgid "Folders"
-msgstr ""
-
-#. +> stable
-#: k3b.cpp:563
-#, kde-format
-msgid "Contents"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:607 k3b.cpp:924 k3b.cpp:938
#, kde-format
msgid "Opening file..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:635
#, kde-format
msgid "Could not open document."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:902
#, kde-format
msgid "%1 has unsaved data."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:903
#, kde-format
msgid "Closing Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:927
#, kde-format
msgid "Open Files"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:929 k3b.cpp:996
#, kde-format
msgid "K3b Projects (*.k3b)"
msgstr ""
-#. +> stable
-#: k3b.cpp:995 k3b.cpp:1064
-#, kde-format
-msgid "*.k3b|K3b Projects"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:961
#, kde-format
msgid "Saving file..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:971 k3b.cpp:1019
#, kde-format
msgid "Could not save the current document."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:971 k3b.cpp:1019
#, kde-format
msgid "I/O Error"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:988
#, kde-format
msgid "Saving file with a new filename..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:996
#, kde-format
msgid "Save As"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1010 k3bdebuggingoutputdialog.cpp:93
#: misc/k3bmediacopydialog.cpp:297 misc/k3bmediacopydialog.cpp:306
#: projects/k3bdataburndialog.cpp:180 projects/k3bmovixburndialog.cpp:215
#: projects/k3bvcdburndialog.cpp:554 projects/k3bvideodvdburndialog.cpp:169
#, kde-format
msgid "Do you want to overwrite %1?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1011 k3bdebuggingoutputdialog.cpp:94
#: misc/k3bmediacopydialog.cpp:298 misc/k3bmediacopydialog.cpp:307
#: projects/k3bdataburndialog.cpp:181 projects/k3bmovixburndialog.cpp:216
#: projects/k3bvcdburndialog.cpp:555 projects/k3bvideodvdburndialog.cpp:170
#, kde-format
msgid "File Exists"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1039
#, kde-format
msgid "Closing file..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1141
#, kde-format
msgid "Creating new Audio CD Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1150
#, kde-format
msgid "Creating new Data CD Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1166
#, kde-format
msgid "Creating new Video DVD Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1176
#, kde-format
msgid "Creating new Mixed Mode CD Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1185
#, kde-format
msgid "Creating new Video CD Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1195
#, kde-format
msgid "Creating new eMovix Project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1308
#, kde-format
msgid "Select Files to Add to Project"
msgstr ""
#. +> trunk5 stable5
#: k3b.cpp:1310
#, kde-format
msgid "All Files (*)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1317
#, kde-format
msgid "Please create a project before adding files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1317
#, kde-format
msgid "No Active Project"
msgstr ""
-#. +> stable
-#: k3b.cpp:1399 k3bsystemproblemdialog.cpp:615 option/k3bdeviceoptiontab.cpp:85
-#, kde-format
-msgid "Unable to start K3b::Setup."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1454
#, kde-format
msgid "Do you really want to clear the current project?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1455
#, kde-format
msgid "Clear Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1480
#, kde-format
msgid "Audio CD Rip"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1495
#, kde-format
msgid "Video DVD Rip"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3b.cpp:1516
#, kde-format
msgid "Video CD Rip"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:54
#, kde-format
msgid "Media &Info"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:56
#, kde-format
msgid "&Unmount"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:58
#, kde-format
msgid "&Mount"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:60 k3bemptydiscwaiter.cpp:283
#: k3bemptydiscwaiter.cpp:378 k3bemptydiscwaiter.cpp:464
#: k3bemptydiscwaiter.cpp:528 k3bemptydiscwaiter.cpp:590
#, kde-format
msgid "&Eject"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:62
#, kde-format
msgid "L&oad"
msgstr ""
#. i18n("Un&lock"), "", 0, this, SLOT(unlockDevice()),
#. actionCollection(), "device_unlock" );
#. QAction* actionlock = new QAction( i18n("Loc&k"), "", 0, this, SLOT(lockDevice()),
#. actionCollection(), "device_lock" );
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:68
#, kde-format
msgid "Set Read Speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:71
#, kde-format
msgid "Display generic medium information"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:73
#, kde-format
msgid "Unmount the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:75
#, kde-format
msgid "Mount the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:77
#, kde-format
msgid "Eject the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:79
#, kde-format
msgid "(Re)Load the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:81
#, kde-format
msgid "Force the drive's read speed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:288
#, kde-format
msgid "CD Read Speed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:289
#, kde-format
msgid ""
"<p>Please enter the preferred read speed for <b>%1</b>. This speed will be used for the currently mounted medium."
"<p>This is especially useful to slow down the drive when watching movies which are read directly from the drive and the spinning noise is intrusive."
"<p>Be aware that this has no influence on K3b since it will change the reading speed again when copying CDs or DVDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bappdevicemanager.cpp:305
#, kde-format
msgid "Setting the read speed failed."
msgstr ""
-#. +> stable
-#: k3bapplication.cpp:122
-#, kde-format
-msgid "Creating GUI..."
-msgstr ""
-
-#. +> stable
-#: k3bapplication.cpp:134
-#, kde-format
-msgid "Ready."
-msgstr ""
-
-#. +> stable
-#: k3bapplication.cpp:139
-#, kde-format
-msgid "Checking System"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bapplication.cpp:148
#, kde-format
msgid "K3b is busy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bapplication.cpp:149
#, kde-format
msgid "K3b is currently busy and cannot start any other operations."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bburnprogressdialog.cpp:40
#, kde-format
msgid "Estimated writing speed:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bburnprogressdialog.cpp:59
#, kde-format
msgid "Software buffer:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bburnprogressdialog.cpp:60
#, kde-format
msgid "Device buffer:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bburnprogressdialog.cpp:97
#, kde-format
msgid "Writer: %1 %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bburnprogressdialog.cpp:100 k3bburnprogressdialog.cpp:101
#: k3bburnprogressdialog.cpp:102
#, kde-format
msgid "no info"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdatamodewidget.cpp:31 k3bwriterselectionwidget.cpp:270
#: k3bwriterselectionwidget.cpp:523 k3bwritingmodewidget.cpp:163
#: projects/k3bdatamultisessioncombobox.cpp:73
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:355
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:356
#, kde-format
msgid "Auto"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdatamodewidget.cpp:32
#, kde-format
msgid "Mode1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdatamodewidget.cpp:33
#, kde-format
msgid "Mode2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdatamodewidget.cpp:35
#, kde-format
msgid "Select the mode for the data-track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdatamodewidget.cpp:36
#, kde-format
msgid ""
"<p><b>Data Mode</b>"
"<p>Data tracks may be written in two different modes:</p>"
"<p><b>Auto</b><br>"
"Let K3b select the best suited data mode.</p>"
"<p><b>Mode 1</b><br>"
"This is the <em>original</em> writing mode as introduced in the <em>Yellow Book</em> standard. It is the preferred mode when writing pure data CDs.</p>"
"<p><b>Mode 2</b><br>"
"To be exact <em>XA Mode 2 Form 1</em>, but since the other modes are rarely used it is common to refer to it as <em>Mode 2</em>.</p>"
"<p><b>Be aware:</b> Do not mix different modes on one CD. Some older drives may have problems reading mode 1 multisession CDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdebuggingoutputdialog.cpp:45
#, kde-format
msgid "Debugging Output"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdebuggingoutputdialog.cpp:55
#, kde-format
msgid "Save to file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdebuggingoutputdialog.cpp:59
#, kde-format
msgid "Copy to clipboard"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdebuggingoutputdialog.cpp:102
#, kde-format
msgid "Could not open file %1"
msgstr ""
#. i18n: ectx: Menu (device)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceui.rc:4 k3bui.rc:19
#, kde-format
msgid "&Device"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiroperator.cpp:51
#, kde-format
msgid "K3b Bookmarks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiroperator.cpp:54
#, kde-format
msgid "Bookmarks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiroperator.cpp:58 k3bfiletreeview.cpp:97
#, kde-format
msgid "&Add to Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdirview.cpp:201
#, kde-format
msgid "K3b uses vcdxrip from the vcdimager package to rip Video CDs. Please make sure it is installed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdirview.cpp:235
#, kde-format
msgid "Mount Failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdirview.cpp:236
#, kde-format
msgid "<p>K3b was unable to mount medium <b>%1</b> in device <em>%2 - %3</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdirview.cpp:251
#, kde-format
msgid "Unmount Failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdirview.cpp:252
#, kde-format
msgid "<p>K3b was unable to unmount medium <b>%1</b> in device <em>%2 - %3</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:89
#, kde-format
msgid "No medium present"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:114
#, kde-format
msgid "Medium"
msgstr ""
#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:118
#, kde-format
msgid "ISO 9660 Filesystem Info"
msgstr ""
-#. +> stable
-#: k3bdiskinfoview.cpp:105
-#, kde-format
-msgid "ISO9660 Filesystem Info"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:123
#, kde-format
msgid "Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:193 misc/k3bmediacopydialog.cpp:172
#: projects/k3bvcdtrackdialog.cpp:603 rip/k3baudiorippingdialog.cpp:356
#: rip/k3baudiorippingdialog.cpp:411 rip/videodvd/k3bvideodvdtitlemodel.cpp:314
#, kde-format
msgid "Audio"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:197
#, kde-format
msgid "Data/Mode1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:199
#, kde-format
msgid "Data/Mode2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:201
#, kde-format
msgid "Data/Mode2 XA Form1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:203
#, kde-format
msgid "Data/Mode2 XA Form2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:205 misc/k3bmediacopydialog.cpp:160
#: rip/categories.cpp:23 rip/k3baudiorippingdialog.cpp:411
#, kde-format
msgid "Data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:212
#, kde-format
msgid "copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:212
#, kde-format
msgid "no copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:214
#, kde-format
msgid "preemp"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:214
#, kde-format
msgid "no preemp"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:215
#, kde-format
msgid "incremental"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:215
#, kde-format
msgid "uninterrupted"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:242 projects/k3baudioburndialog.cpp:69
#: projects/k3baudiocdtextwidget.cpp:39 projects/k3bmixedburndialog.cpp:70
#, kde-format
msgid "CD-Text"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:255 projects/k3bdatamultisessionimportdialog.cpp:216
#, kde-format
msgid "Session %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:265 projects/k3bvcdburndialog.cpp:396
#: rip/k3baudiorippingdialog.cpp:143
#, kde-format
msgid "Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:267
#, kde-format
msgid "Attributes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:269
#, kde-format
msgid "First-Last Sector"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:271 rip/k3baudioprojectconvertingdialog.cpp:125
#: rip/k3baudiorippingdialog.cpp:141 rip/k3baudiotrackmodel.cpp:167
#: rip/k3bvideocdview.cpp:202
#, kde-format
msgid "Length"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:311
#, kde-format
msgid "Unknown (probably CD-ROM)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:312 projects/k3bdatapropertiesdialog.cpp:84
#: projects/k3bvcdtrackdialog.cpp:597 projects/k3bvcdtrackdialog.cpp:638
#, kde-format
msgid "Type:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:314 rip/k3baudioconvertingoptionwidget.cpp:223
#: rip/k3baudioconvertingoptionwidget.cpp:257
#: rip/k3baudioprojectconvertingdialog.cpp:274
#: rip/k3baudioprojectconvertingdialog.cpp:313
#: rip/k3baudiorippingdialog.cpp:355 rip/k3baudiorippingdialog.cpp:410
#: rip/k3bpatternparser.cpp:124 rip/k3bpatternparser.cpp:164
#: rip/k3bpatternparser.cpp:172 rip/videodvd/k3bvideodvdrippingwidget.cpp:278
#, kde-format
msgid "unknown"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:314
#, kde-format
msgid "Media ID:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:315 k3bdiskinfoview.cpp:317 k3bdiskinfoview.cpp:321
#: projects/k3bfillstatusdisplay.cpp:183 projects/k3bfillstatusdisplay.cpp:191
#: projects/k3bfillstatusdisplay.cpp:194 projects/k3bfillstatusdisplay.cpp:199
#: projects/k3bfillstatusdisplay.cpp:855
#, kde-format
msgid "%1 min"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:315
#, kde-format
msgid "Capacity:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:317
#, kde-format
msgid "Used Capacity:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:321
#, kde-format
msgid "Remaining:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:322
#, kde-format
msgid "Rewritable:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:322 k3bdiskinfoview.cpp:323 k3bdiskinfoview.cpp:324
#, kde-format
msgctxt "Availability"
msgid "yes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:322 k3bdiskinfoview.cpp:323 k3bdiskinfoview.cpp:324
#, kde-format
msgctxt "Availability"
msgid "no"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:323
#, kde-format
msgid "Appendable:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:324
#, kde-format
msgid "Empty:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:326
#, kde-format
msgctxt "Number of layers on an optical medium"
msgid "Layers:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:332
#, kde-format
msgid "not formatted"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:335
#, kde-format
msgid "incomplete"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:338
#, kde-format
msgid "in progress"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:341
#, kde-format
msgid "complete"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:344
#, kde-format
msgid "unknown state"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:347
#, kde-format
msgid "Background Format:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:350
#, kde-format
msgid "Sessions:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:372
#, kde-format
msgid "Supported writing speeds:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:385 misc/k3bimagewritingdialog.cpp:200
#, kde-format
msgid "System Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:386 misc/k3bimagewritingdialog.cpp:208
#, kde-format
msgid "Volume Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:387 misc/k3bimagewritingdialog.cpp:216
#, kde-format
msgid "Volume Set Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:388 misc/k3bimagewritingdialog.cpp:224
#, kde-format
msgid "Publisher Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:389 misc/k3bimagewritingdialog.cpp:232
#, kde-format
msgid "Preparer Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:390 misc/k3bimagewritingdialog.cpp:239
#, kde-format
msgid "Application Id:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:391 misc/k3bimagewritingdialog.cpp:190
#, kde-format
msgid "Volume Size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:394
#, kde-format
msgctxt "Size of one block, always 2048"
msgid "%1 B"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:395
#, kde-format
msgctxt "Number of blocks (one block has 2048 bytes)"
msgid "1 block"
msgid_plural "%1 blocks"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdiskinfoview.cpp:396
#, kde-format
msgid "1 B"
msgid_plural "%1 B"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:92
#, kde-format
msgid "Waiting for Disk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:115
#, kde-format
msgid "Eject"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:119
#, kde-format
msgid "Load"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:127
#, kde-format
msgid "Found medium:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:277 k3bemptydiscwaiter.cpp:371
#: k3bemptydiscwaiter.cpp:457
#, kde-format
msgid "Found %1 medium in %2 - %3. Should it be overwritten?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:281 k3bemptydiscwaiter.cpp:376
#: k3bemptydiscwaiter.cpp:462 k3bemptydiscwaiter.cpp:526
#, kde-format
msgid "Found %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:343
#, kde-format
msgid "Preformatting DVD+RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:521
#, kde-format
msgid "Found %1 medium in %2 - %3. Should it be formatted?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:527
#, kde-format
msgid "&Format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:550
#, kde-format
msgid "Formatting DVD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:586
#, kde-format
msgid "Found rewritable medium in %1 - %2. Should it be erased?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:588
#, kde-format
msgid "Found Rewritable Disk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:589
#, kde-format
msgid "E&rase"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:597
#, kde-format
msgid "Erasing CD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:666
#, kde-format
msgid "Waiting for Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bemptydiscwaiter.cpp:731
#, kde-format
msgid "Erasing failed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:77
#, kde-format
msgid "Filter:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:83 misc/k3bimagewritingdialog.cpp:463
#, kde-format
msgid "*|All Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:84
#, kde-format
msgid "audio/x-mp3 audio/x-wav application/x-ogg |Sound Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:85
#, kde-format
msgid "audio/x-wav |Wave Sound Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:86
#, kde-format
msgid "audio/x-mp3 |MP3 Sound Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:87
#, kde-format
msgid "application/x-ogg |Ogg Vorbis Sound Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:88
#, kde-format
msgid "video/mpeg |MPEG Video Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bfileview.cpp:91
#, kde-format
msgid "Show Bookmarks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:80
#, kde-format
msgid "Load default settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:81
#, kde-format
msgid "Load saved settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:82
#, kde-format
msgid "Load last used settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:107 projects/k3bprojectburndialog.cpp:147
#, kde-format
msgid "Start"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:108
#, kde-format
msgid "Start the task"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:199
#, kde-format
msgid "Load default or saved settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:200
#, kde-format
msgid "Save current settings to reuse them later"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:204
#, kde-format
msgid "<p>Load a set of settings either from the default K3b settings, settings saved before, or the last used ones."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3binteractiondialog.cpp:206
#, kde-format
msgid ""
"<p>Saves the current settings of the action dialog."
"<p>These settings can be loaded with the <em>Load saved settings</em> button."
"<p><b>The K3b defaults are not overwritten by this.</b>"
msgstr ""
-#. +> stable
-#: k3binteractiondialog.cpp:287
-#, kde-format
-msgid "Action Dialog Settings"
-msgstr ""
-
-#. +> stable
-#: k3binteractiondialog.cpp:288
-#, kde-format
-msgid ""
-"<p>K3b handles three sets of settings in action dialogs: the defaults, the saved settings, and the last used settings. Please choose which of these sets should be loaded if an action dialog is opened again."
-"<p><em>Be aware that this choice can always be changed from the K3b configuration dialog.</em>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:214
#, kde-format
msgid "Overall progress:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:236
#, kde-format
msgid "Show Debugging Output"
msgstr ""
#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:301 k3bjobprogressdialog.cpp:323
#, kde-format
msgctxt "%1 and %2 are byte sizes formatted via KFormat::formatByteSize"
msgid "%1 of %2"
msgstr ""
-#. +> stable
-#: k3bjobprogressdialog.cpp:281 k3bjobprogressdialog.cpp:292
-#: k3bjobprogressdialog.cpp:303 k3bjobprogressdialog.cpp:314
-#, kde-format
-msgctxt "%1 and %2 are byte sizes formatted via KLocale::formatByteSize"
-msgid "%1 of %2"
-msgstr ""
-
#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:379
#, kde-format
msgctxt "@info %1 is a duration formatted using QLocale::toString"
msgid "Elapsed time: %1"
msgstr ""
-#. +> stable
-#: k3bjobprogressdialog.cpp:359 k3bjobprogressdialog.cpp:564
-#, kde-format
-msgctxt "@info %1 is a duration formatted using KLocale::prettyFormatDuration"
-msgid "Elapsed time: %1"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:388
#, kde-format
msgid "Success."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:395
#, kde-format
msgid "Successfully finished."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:404
#, kde-format
msgid "Canceled."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:407
#, kde-format
msgid "Error."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:409
#, kde-format
msgid "Finished with errors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:489
#, kde-format
msgid "Do you really want to cancel?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:489
#, kde-format
msgid "Cancel Confirmation"
msgstr ""
#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:555
#, kde-format
msgctxt "@info %1 is a duration formatted"
msgid "Elapsed time: %1"
msgstr ""
#. +> trunk5 stable5
#: k3bjobprogressdialog.cpp:559
#, kde-format
msgctxt "@info %1 is a duration formatted"
msgid "Remaining: %1"
msgstr ""
-#. +> stable
-#: k3bjobprogressdialog.cpp:568
-#, kde-format
-msgctxt "@info %1 is a duration formatted using KLocale::prettyFormatDuration"
-msgid "Remaining: %1"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:47
#, kde-format
msgid "Device in use"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:54
#, kde-format
msgid "Continue"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:58
#, kde-format
msgid "Quit the other applications"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:61 k3blsofwrapperdialog.cpp:90
#, kde-format
msgid "Check again"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:81
#, kde-format
msgid ""
"<p>Device <b>'%1'</b> is already in use by other applications (<em>%2</em>)."
"<p>It is highly recommended to quit those before continuing. Otherwise K3b might not be able to fully access the device."
"<p><em>Hint: Sometimes shutting down an application does not happen instantly. In that case you might have to use the '%3' button."
msgstr ""
#. +> trunk5 stable5
#: k3blsofwrapperdialog.cpp:109
#, kde-format
msgid "<p>Do you really want K3b to kill the following processes: <em>%1</em>?</p>"
msgstr ""
-#. +> stable
-#: k3blsofwrapperdialog.cpp:101
-#, kde-format
-msgid "<p>Do you really want K3b to kill the following processes: <em>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bmediaselectiondialog.cpp:34
#, kde-format
msgid "Medium Selection"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bmediaselectiondialog.cpp:37
#, kde-format
msgid "Please select a medium:"
msgstr ""
#. +> trunk5 stable5
#: k3bmediumdelegate.cpp:141
#, kde-format
msgid "%2 in %1 track"
msgid_plural "%2 in %1 tracks"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: k3bmediumdelegate.cpp:141
-#, kde-format
-msgid "%1 in 1 track"
-msgid_plural "%1 in %2 tracks"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bmediumdelegate.cpp:145
#, kde-format
msgid " and %1 session"
msgid_plural " and %1 sessions"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bmediumdelegate.cpp:158
#, kde-format
msgid "Free space: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bmediumdelegate.cpp:170
#, kde-format
msgid "Capacity: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:213
#, kde-format
msgid "AudioCD%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:219
#, kde-format
msgid "Data%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:225
#, kde-format
msgid "MixedCD%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:231
#, kde-format
msgid "VideoCD%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:237
#, kde-format
msgid "eMovix%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojectmanager.cpp:244
#, kde-format
msgid "VideoDVD%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bprojecttabwidget.cpp:83 projects/k3bprojectburndialog.cpp:59
#, kde-format
msgid "Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:61
#, kde-format
msgid "Temp:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:122
#, kde-format
msgid "No info"
msgstr ""
#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:161
#, kde-format
msgid "One file in %2"
msgid_plural "%1 files in %2"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: k3bstatusbarmanager.cpp:171
-#, kde-format
-msgid "1 file in %2"
-msgid_plural "%1 files in %2"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:164
#, kde-format
msgid "one folder"
msgid_plural "%1 folders"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: k3bstatusbarmanager.cpp:174
-#, kde-format
-msgid "1 folder"
-msgid_plural "%1 folders"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:191
#, kde-format
msgid "Audio CD (1 track)"
msgid_plural "Audio CD (%1 tracks)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:197
#, kde-format
msgid "Data Project (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:204
#, kde-format
msgid "Mixed CD (1 track and %2)"
msgid_plural "Mixed CD (%1 tracks and %2)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:211
#, kde-format
msgid "Video CD (1 track)"
msgid_plural "Video CD (%1 tracks)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:217
#, kde-format
msgid "eMovix Project (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bstatusbarmanager.cpp:223
#, kde-format
msgid "Video DVD (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:94 k3bsystemproblemdialog.cpp:98
#, kde-format
msgid "System Configuration Problems"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:99
#, kde-format
msgid "1 problem"
msgid_plural "%1 problems"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: k3bsystemproblemdialog.cpp:105 option/k3bdevicewidget.cpp:57
-#, kde-format
-msgid "Modify Permissions..."
-msgstr ""
-
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:106
#, kde-format
msgid "Configure K3b..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:116
#, kde-format
msgid "Do not show again"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:152
#, kde-format
msgid "Solution"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:185
#, kde-format
msgid "No optical drive found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:186
#, kde-format
msgid "K3b did not find any optical device in your system."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:188
#, kde-format
msgid "Make sure HAL daemon is running, it is used by K3b for finding devices."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:196
#, kde-format
msgid "No CD/DVD/BD writer found."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:197
#, kde-format
msgid "K3b did not find an optical writing device in your system. Thus, you will not be able to burn CDs or DVDs. However, you can still use other K3b features such as audio track extraction, audio transcoding or ISO 9660 image creation."
msgstr ""
-#. +> stable
-#: k3bsystemproblemdialog.cpp:199
-#, kde-format
-msgid "K3b did not find an optical writing device in your system. Thus, you will not be able to burn CDs or DVDs. However, you can still use other K3b features such as audio track extraction, audio transcoding or ISO9660 image creation."
-msgstr ""
-
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:207 k3bsystemproblemdialog.cpp:268
#: k3bsystemproblemdialog.cpp:310
#, kde-format
msgid "Insufficient permissions for %1 executable: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:208 k3bsystemproblemdialog.cpp:215
#, kde-format
msgid "K3b uses cdrecord to actually write CDs."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:209 k3bsystemproblemdialog.cpp:270
#: k3bsystemproblemdialog.cpp:314
#, kde-format
msgid "Check permissions via Settings -> Configure K3b... -> Programs -> Permissions. If K3b's default value is set make sure you are member of \"%1\" group."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:214 k3bsystemproblemdialog.cpp:276
#: k3bsystemproblemdialog.cpp:298 k3bsystemproblemdialog.cpp:320
#: k3bsystemproblemdialog.cpp:365
#, kde-format
msgid "Unable to find %1 executable"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:216
#, kde-format
msgid "Install the cdrtools package which contains cdrecord."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:222 k3bsystemproblemdialog.cpp:329
#: k3bsystemproblemdialog.cpp:336 k3bsystemproblemdialog.cpp:344
#: k3bsystemproblemdialog.cpp:376 k3bsystemproblemdialog.cpp:482
#, kde-format
msgid "Used %1 version %2 is outdated"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:223
#, kde-format
msgid "Although K3b supports all cdrtools versions since 1.10 it is highly recommended to at least use version 2.0."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:226
#, kde-format
msgid "Install a more recent version of the cdrtools."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:242
#, kde-format
msgid "%1 will be run with root privileges on kernel >= 2.6.8"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:243
#, kde-format
msgid "Since Linux kernel 2.6.8 %1 will not work when run suid root for security reasons anymore."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:246 k3bsystemproblemdialog.cpp:260
#: k3bsystemproblemdialog.cpp:290
#, kde-format
msgid "Click \"Configure K3b...\" to solve this problem."
msgstr ""
-#. +> stable
-#: k3bsystemproblemdialog.cpp:180
-#, kde-format
-msgid "Click \"Modify Permissions...\" to solve this problem."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:253 k3bsystemproblemdialog.cpp:286
#, kde-format
msgid "%1 will be run without root privileges"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:254
#, kde-format
msgid "It is highly recommended to configure cdrecord to run with root privileges, as then cdrecord runs with high priority that increases the overall stability of the burning process. As well as this, it allows the size of the burning buffer to be changed, and a lot of user problems can be solved this way."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:269 k3bsystemproblemdialog.cpp:277
#, kde-format
msgid "K3b uses cdrdao to actually write CDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:278
#, kde-format
msgid "Install the cdrdao package."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:287
#, kde-format
msgid "It is highly recommended to configure cdrdao to run with root privileges to increase the overall stability of the burning process."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:299
#, kde-format
msgid "Cdrskin can substitute for cdrecord with data and audio CD, and for growisofs with DVD and BD."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:301
#, kde-format
msgid "Consider to install the libburn and cdrskin packages."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:311 k3bsystemproblemdialog.cpp:321
#, kde-format
msgid "K3b uses growisofs to actually write DVDs. Without growisofs you will not be able to write DVDs. Make sure to install at least version 5.10."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:324 k3bsystemproblemdialog.cpp:367
#, kde-format
msgid "Install the dvd+rw-tools package."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:330
#, kde-format
msgid "K3b needs at least growisofs version 5.10 to write DVDs. All older versions will not work and K3b will refuse to use them."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:332 k3bsystemproblemdialog.cpp:340
#: k3bsystemproblemdialog.cpp:348 k3bsystemproblemdialog.cpp:381
#, kde-format
msgid "Install a more recent version of %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:337
#, kde-format
msgid "K3b will not be able to copy DVDs on-the-fly or write a DVD+RW in multiple sessions using a growisofs version older than 5.12."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:345
#, kde-format
msgid "It is highly recommended to use growisofs 7.0 or higher. K3b will not be able to write a DVD+RW in multiple sessions using a growisofs version older than 7.0."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:366
#, kde-format
msgid "K3b uses dvd+rw-format to format DVD-RWs and DVD+RWs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:379
#, kde-format
msgid "K3b needs at least mkisofs version 1.14. Older versions may introduce problems when creating data projects."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:403
#, kde-format
msgid "Device %1 - %2 is automounted."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:405
#, kde-format
msgid "K3b is not able to unmount automounted devices. Thus, especially DVD+RW rewriting might fail. There is no need to report this as a bug or feature wish; it is not possible to solve this problem from within K3b."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:409
#, kde-format
msgid "Replace the automounting entries in /etc/fstab with old-fashioned ones or use a user-space mounting solution like pmount or ivman."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:418
#, kde-format
msgid "No ATAPI writing support in kernel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:419
#, kde-format
msgid "Your kernel does not support writing without SCSI emulation but there is at least one writer in your system not configured to use SCSI emulation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:423
#, kde-format
msgid "The best and recommended solution is to enable ide-scsi (SCSI emulation) for all devices. This way you will not have any problems. Be aware that you may still enable DMA on ide-scsi emulated drives."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:439 k3bsystemproblemdialog.cpp:458
#, kde-format
msgid "%1 %2 does not support ATAPI"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:440 k3bsystemproblemdialog.cpp:461
#, kde-format
msgid "The configured version of %1 does not support writing to ATAPI devices without SCSI emulation and there is at least one writer in your system not configured to use SCSI emulation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:445 k3bsystemproblemdialog.cpp:469
#, kde-format
msgid "The best, and recommended, solution is to use ide-scsi (SCSI emulation) for all writer devices: this way you will not have any problems; or, you can install (or select as the default) a more recent version of %1."
msgstr ""
-#. +> stable
-#: k3bsystemproblemdialog.cpp:414
-#, kde-format
-msgid "The best and recommended solution is to enable ide-scsi (SCSI emulation) for all devices. This way you will not have any problems. Or you install (or select as the default) a more recent version of %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:467
#, kde-format
msgid "Install cdrdao >= 1.1.8 which supports writing to ATAPI devices directly."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:483
#, kde-format
msgid "K3b will not be able to write DVD-R Dual Layer media using a growisofs version older than 6.0."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:485
#, kde-format
msgid "Install a more recent version of growisofs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:497
#, kde-format
msgid "No write access to device %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:498
#, kde-format
msgid "K3b needs write access to all the devices to perform certain tasks. Without it you might encounter problems with %1 - %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:500
#, kde-format
msgid "Make sure you have write access to %1. In case you are not using devfs or udev click \"Modify Permissions...\" and setup permissions by hand."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:506
#, kde-format
msgid "DMA disabled on device %1 - %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:507
#, kde-format
msgid "With most modern CD/DVD/BD devices enabling DMA highly increases read/write performance. If you experience very low writing speeds this is probably the cause."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:510
#, kde-format
msgid "Enable DMA temporarily as root with 'hdparm -d 1 %1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:525
#, kde-format
msgid "User parameters specified for external program %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:526
#, kde-format
msgid "Sometimes it may be necessary to specify user parameters in addition to the parameters generated by K3b. This is simply a warning to make sure that these parameters are really wanted and will not be part of some bug report."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:529
#, kde-format
msgid "To remove the user parameters for the external program %1 open the K3b settings page 'Programs' and choose the tab 'User Parameters'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:550
#, kde-format
msgid "MP3 Audio Decoder plugin not found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:551
#, kde-format
msgid "K3b could not load or find the MP3 decoder plugin. This means that you will not be able to create Audio CDs from MP3 files. Many Linux distributions do not include MP3 support for legal reasons."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:554
#, kde-format
msgid "To enable MP3 support, please install the MAD MP3 decoding library as well as the K3b MAD MP3 decoder plugin (the latter may already be installed but not functional due to the missing libmad). Some distributions allow installation of MP3 support via an online update tool."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:569
#, kde-format
msgid "System locale charset is ANSI_X3.4-1968"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:570
#, kde-format
msgid "Your system's locale charset (i.e. the charset used to encode filenames) is set to ANSI_X3.4-1968. It is highly unlikely that this has been done intentionally. Most likely the locale is not set at all. An invalid setting will result in problems when creating data projects."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:574
#, kde-format
msgid "To properly set the locale charset make sure the LC_* environment variables are set. Normally the distribution setup tools take care of this."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:587
#, kde-format
msgid "Running K3b as root user"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:588
#, kde-format
msgid "It is not recommended to run K3b under the root user account. This introduces unnecessary security risks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:590
#, kde-format
msgid "Run K3b from a proper user account and setup the device and external tool permissions appropriately."
msgstr ""
#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:592
#, kde-format
msgid "The latter can be done via \"Configure K3b...\"."
msgstr ""
-#. +> stable
-#: k3bsystemproblemdialog.cpp:562
-#, kde-format
-msgid "The latter can be done via \"Modify Permissions...\"."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:622
#, kde-format
msgid "System configured properly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bsystemproblemdialog.cpp:623
#, kde-format
msgid "No problems found in system configuration."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:51
#, kde-format
msgid "Free space in temporary folder:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:77
#, kde-format
msgid "The folder in which to save the image files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:81
#, kde-format
msgid ""
"<p>This is the folder in which K3b will save the <em>image files</em>."
"<p>Please make sure that it resides on a partition that has enough free space."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:188
#, kde-format
msgid "Select Temporary Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:190
#, kde-format
msgid "Wri&te image files to:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:191
#, kde-format
msgid "Temporary Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:194
#, kde-format
msgid "Select Temporary File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:196
#, kde-format
msgid "Wri&te image file to:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:197
#, kde-format
msgid "Temporary File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3btempdirselectionwidget.cpp:207
#, kde-format
msgid "Size of project:"
msgstr ""
#. i18n: ectx: Menu (project)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bui.rc:4
#, kde-format
msgid "&Project"
msgstr ""
#. i18n: ectx: Menu (tools)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bui.rc:9
#, kde-format
msgid "&Tools"
msgstr ""
-#. i18n: ectx: Menu (view_panels)
-#. +> stable
-#: k3bui.rc:23
-#, kde-format
-msgid "Panels"
-msgstr ""
-
#. i18n: ectx: Menu (help)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bui.rc:27
#, kde-format
msgid "&Help"
msgstr ""
#. i18n: ectx: ToolBar (mainToolBar)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bui.rc:32
#, kde-format
msgid "Main Toolbar"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwelcomewidget.cpp:87
#, kde-format
msgid "More actions..."
msgstr ""
#. +> trunk5 stable5
#: k3bwelcomewidget.cpp:270
#, kde-format
msgid "Welcome to K3b &ndash; The CD, DVD, and Blu-ray Kreator"
msgstr ""
-#. +> stable
-#: k3bwelcomewidget.cpp:263
-#, kde-format
-msgid "Welcome to K3b - The CD and DVD Kreator"
-msgstr ""
-
#. +> trunk5 stable5
#: k3bwelcomewidget.cpp:272
#, kde-format
msgid "K3b %1 Copyright &copy; 1998&ndash;2017 K3b authors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwelcomewidget.cpp:406
#, kde-format
msgid "Add Button"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwelcomewidget.cpp:429
#, kde-format
msgid "Remove Button"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:91
#, kde-format
msgid "Medium will be overwritten."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:125
#, kde-format
msgid "Burn Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:131
#, kde-format
msgid "Speed:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:137
#, kde-format
msgid "Writing app:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:169
#, kde-format
msgid "The medium that will be used for burning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:170
#, kde-format
msgid "The speed at which to burn the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:171
#, kde-format
msgid "The external application to actually burn the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:173
#, kde-format
msgid ""
"<p>Select the medium that you want to use for burning."
"<p>In most cases there will only be one medium available which does not leave much choice."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:176
#, kde-format
msgid ""
"<p>Select the speed with which you want to burn."
"<p><b>Auto</b><br>"
"This will choose the maximum writing speed possible with the used medium. This is the recommended selection for most media.</p>"
"<p><b>Ignore</b> (DVD only)<br>"
"This will leave the speed selection to the writer device. Use this if K3b is unable to set the writing speed."
"<p>1x refers to 175 KB/s for CD, 1385 KB/s for DVD, and 4496 KB/s for Blu-ray.</p>"
"<p><b>Caution:</b> Make sure your system is able to send the data fast enough to prevent buffer underruns."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:187
#, kde-format
msgid ""
"<p>K3b uses the command line tools cdrecord, growisofs, and cdrdao to actually write a CD or DVD."
"<p>Normally K3b chooses the best suited application for every task automatically but in some cases it may be possible that one of the applications does not work as intended with a certain writer. In this case one may select the application manually."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:272 projects/k3bdataurladdingdialog.cpp:402
#: projects/k3bdataurladdingdialog.cpp:634
#, kde-format
msgid "Ignore"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:316
#, kde-format
msgid "More..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:606
#, kde-format
msgid "Please enter the speed that K3b should use for burning (Example: 16x)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:609
#, kde-format
msgid ""
"<p>K3b is not able to perfectly determine the maximum writing speed of an optical writer. Writing speed is always reported subject to the inserted medium."
"<p>Please enter the writing speed here and K3b will remember it for future sessions (Example: 16x)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwriterselectionwidget.cpp:630
#, kde-format
msgid "Set writing speed manually"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:27
#, kde-format
msgid "Let K3b select the best-suited mode. This is the recommended selection."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:29
#, kde-format
msgid ""
"<em>Disk At Once</em> or more properly <em>Session At Once</em>. The laser is never turned off while writing the CD or DVD. This is the preferred mode to write audio CDs since it allows pregaps other than 2 seconds. Not all writers support DAO.<br>"
"DVD-R(W)s written in DAO provide the best DVD-Video compatibility."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:35
#, kde-format
msgid ""
"<em>Track At Once</em> should be supported by every CD writer. The laser will be turned off after every track.<br>"
"Most CD writers need this mode for writing multisession CDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:41
#, kde-format
msgid ""
"RAW writing mode. The error correction data is created by the software instead of the writer device.<br>"
"Try this if your CD writer fails to write in DAO and TAO."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:45
#, kde-format
msgid "Incremental sequential is the default writing mode for DVD-R(W). It allows multisession DVD-R(W)s. It only applies to DVD-R(W)."
msgstr ""
#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:48
#, kde-format
msgid "Restricted Overwrite allows to use a DVD-RW just like a DVD-RAM or a DVD+RW. The media may just be overwritten. It is not possible to write multisession DVD-RWs in this mode but K3b uses growisofs to grow an ISO 9660 filesystem within the first session, thus allowing new files to be added to an already burned disk."
msgstr ""
-#. +> stable
-#: k3bwritingmodewidget.cpp:42
-#, kde-format
-msgid "Restricted Overwrite allows to use a DVD-RW just like a DVD-RAM or a DVD+RW. The media may just be overwritten. It is not possible to write multisession DVD-RWs in this mode but K3b uses growisofs to grow an ISO9660 filesystem within the first session, thus allowing new files to be added to an already burned disk."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:104
#, kde-format
msgid "Select the writing mode to use"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:105
#, kde-format
msgid "Writing mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:106
#, kde-format
msgid "Be aware that the writing mode is ignored when writing DVD+R(W) and BD-R(E) since there is only one way to write them."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:109
#, kde-format
msgid "The selection of writing modes depends on the inserted burning medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:165
#, kde-format
msgid "DAO"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:167
#, kde-format
msgid "TAO"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:169
#, kde-format
msgid "RAW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:171
#, kde-format
msgid "Restricted Overwrite"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bwritingmodewidget.cpp:173
#, kde-format
msgid "Incremental"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:29
#, kde-format
msgid "K3b"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:30
#, kde-format
msgid ""
"<p>K3b is a full-featured CD/DVD/Blu-ray burning and ripping application.<br/>"
"It supports a variety of project types as well as copying of optical media, burning of different types of images, and ripping Audio CDs, Video CDs, and Video DVDs.<br/>"
"Its convenient user interface is targeted at all audiences, trying to be as simple as possible for novice users while also providing all features an advanced user might need."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:38
#, kde-format
msgid "Copyright © 1998–2017 K3b authors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:40
#, kde-format
msgid "http://www.k3b.org"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:44
#, kde-format
msgid "Leslie Zhai"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:44
#, kde-format
msgid "Maintainer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:45
#, kde-format
msgid "Michał Małek"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:45
#, kde-format
msgid "Maintainer and current lead Developer"
msgstr ""
-#. +> stable
-#: main.cpp:54
-#, kde-format
-msgid "Maintainer and Lead Developer"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:46
#, kde-format
msgid "Sebastian Trüg"
msgstr ""
-#. +> stable
-#: main.cpp:52
-#, kde-format
-msgid "(C) 1998-2009 Sebastian Trüg"
-msgstr ""
-
#. +> trunk5 stable5
#: main.cpp:46
#, kde-format
msgid "Main developer"
msgstr ""
-#. +> stable
-#: main.cpp:55
-#, kde-format
-msgid "Developer"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:47
#, kde-format
msgid "Christian Kvasny"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:47
#, kde-format
msgid "Video CD Project and Video CD ripping"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:48
#, kde-format
msgid "Montel Laurent"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:48
#, kde-format
msgid "Initial port to KDE Platform 4"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:49
#, kde-format
msgid "Ralf Habacker"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:49
#, kde-format
msgid "Windows port"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:51
#, kde-format
msgid "Klaus-Dieter Krannich"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:51
#, kde-format
msgid "Advanced Cdrdao integration"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:52
#, kde-format
msgid "Thomas Froescher"
msgstr ""
#. +> trunk5 stable5
#: main.cpp:53
#, kde-format
msgid "Video DVD ripping and video encoding in pre-1.0 versions."
msgstr ""
-#. +> stable
-#: main.cpp:62
-#, kde-format
-msgid "VideoDVD ripping and video encoding in pre-1.0 versions."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:55
#, kde-format
msgid "Alexis Younes aka Ayo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:56
#, kde-format
msgid "For his bombastic artwork."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:58
#, kde-format
msgid "Christoph Thielecke"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:59
#, kde-format
msgid "For extensive testing and the first German translation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:61
#, kde-format
msgid "Andy Polyakov"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:62
#, kde-format
msgid "For the great dvd+rw-tools and the nice cooperation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:64
#, kde-format
msgid "Roberto De Leo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:65
#, kde-format
msgid "For the very cool eMovix package and his accommodating work."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:67
#, kde-format
msgid "John Steele Scott"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:68
#, kde-format
msgid "For the flac decoding plugin."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:70
#, kde-format
msgid "György Szombathelyi"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:71
#, kde-format
msgid "For the very useful isofslib."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:73
#, kde-format
msgid "Erik de Castro Lopo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:74
#, kde-format
msgid "For libsamplerate which is used for generic resampling in the audio decoder framework."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:76
#, kde-format
msgid "Jakob Petsovits"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:77
#, kde-format
msgid "For the very cool conditional audio ripping pattern."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:79
#, kde-format
msgid "Heiner Eichmann"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:80
#, kde-format
msgid "For his work on the BSD port and some great patches."
msgstr ""
#. +> trunk5 stable5
#: main.cpp:82
#, kde-format
msgid "Adriaan de Groot"
msgstr ""
-#. +> stable
-#: main.cpp:91
-#, kde-format
-msgid "Adriaan De Groot"
-msgstr ""
-
#. +> trunk5 stable5
#: main.cpp:83
#, kde-format
msgid "For his work on the FreeBSD port."
msgstr ""
-#. +> stable
-#: main.cpp:92
-#, kde-format
-msgid "For his work on the BSD port."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:85
#, kde-format
msgid "Thiago Macieira"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:86
#, kde-format
msgid "For his help with the many invalid k3b entries on bugs.kde.org."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:88
#, kde-format
msgid "Marcel Dierkes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:89
#, kde-format
msgid "For the great K3b icon eyecandy."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:91
#, kde-format
msgid "Christoph Burger-Scheidlin"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:92
#, kde-format
msgid "For his neverending help cleaning out the K3b bug database."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:94
#, kde-format
msgid "Robert Wadley"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:95
#, kde-format
msgid "Rob created a great theme and came up with the idea for transparent themes."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:97
#, kde-format
msgid "Dmitry Novikov"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:98
#, kde-format
msgid "For the amazing K3b 1.0 theme."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:100
#, kde-format
msgid "Jeremy C. Andrus"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:101
#, kde-format
msgid "First Windows port of libk3bdevice."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:111
#, kde-format
msgid "file(s) to open"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:112
#, kde-format
msgid "Create a new data CD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:113
#, kde-format
msgid "Create a new audio CD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:114
#, kde-format
msgid "Create a new video CD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:115
#, kde-format
msgid "Create a new mixed mode CD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:116
#, kde-format
msgid "Create a new eMovix CD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:117
#, kde-format
msgid "Create a new Video DVD project and add all given files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:118
#, kde-format
msgid "Open the project burn dialog for the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:119
#, kde-format
msgid "Open the copy dialog, optionally specify the source device"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:120
#, kde-format
msgid "Write an image to a CD or DVD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:121
#, kde-format
msgid "Format a rewritable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:122
#, kde-format
msgid "Extract Audio tracks digitally (+encoding)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:123
#, kde-format
msgid "Rip Video DVD Titles (+transcoding)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:124
#, kde-format
msgid "Rip Video CD Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:125
#, kde-format
msgid "Set the GUI language"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:126
#, kde-format
msgid "Disable the splash screen"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: main.cpp:127
#, kde-format
msgid "Set the device to be used for new projects. (This option has no effect: its main purpose is to enable handling of empty media from the KDE Media Manager.)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:171 misc/k3bimagewritingdialog.cpp:251
#: misc/k3bimagewritingdialog.cpp:280 misc/k3bimagewritingdialog.cpp:309
#, kde-format
msgid "Detected:"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:172
#, kde-format
msgid "ISO 9660 image"
msgstr ""
-#. +> stable
-#: misc/k3bimagewritingdialog.cpp:656
-#, kde-format
-msgid "Iso9660 image"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:181 misc/k3bimagewritingdialog.cpp:258
#: misc/k3bimagewritingdialog.cpp:287
#, kde-format
msgid "Filesize:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:185
#, kde-format
msgid "%1 (different than declared volume size)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:252 misc/k3bimagewritingdialog.cpp:477
#, kde-format
msgid "Cdrecord clone image"
msgstr ""
-#. +> stable
-#: misc/k3bimagewritingdialog.cpp:262
-#, kde-format
-msgid "No image file selected"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:264 misc/k3bimagewritingdialog.cpp:293
#, kde-format
msgid "Image file:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:270
#, kde-format
msgid "TOC file:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:281 misc/k3bimagewritingdialog.cpp:474
#, kde-format
msgid "Cue/bin image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:299
#, kde-format
msgid "Cue file:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:310
#, kde-format
msgid "Audio Cue Image"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:316
#, kde-format
msgid "One track"
msgid_plural "%1 tracks"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: misc/k3bimagewritingdialog.cpp:796
-#, kde-format
-msgid "%1 track"
-msgid_plural "%1 tracks"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
-#: misc/k3bimagewritingdialog.cpp:330
+#. +> trunk5 stable5
+#: misc/k3bimagewritingdialog.cpp:330
#, kde-format
msgid "Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:366
#, kde-format
msgid "Burn Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:449
#, kde-format
msgid "Image to Burn"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:454
#, kde-format
msgid "Choose Image File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:455
#, kde-format
msgid "*.iso *.toc *.ISO *.TOC *.cue *.CUE|Image Files"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:457
#, kde-format
msgid "*.iso *.ISO|ISO 9660 Image Files"
msgstr ""
-#. +> stable
-#: misc/k3bimagewritingdialog.cpp:223
-#, kde-format
-msgid "*.iso *.ISO|ISO9660 Image Files"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:459
#, kde-format
msgid "*.cue *.CUE|Cue Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:461
#, kde-format
msgid "*.toc *.TOC|Cdrdao TOC Files and Cdrecord Clone Images"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:467
#, kde-format
msgid "Image Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:472
#, kde-format
msgid "Auto Detection"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:473
#, kde-format
msgid "ISO 9660 filesystem image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:475
#, kde-format
msgid "Audio cue file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:476
#, kde-format
msgid "Cdrdao TOC file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:478
#, kde-format
msgid "Plain data image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:529 misc/k3bmediacopydialog.cpp:102
#: misc/k3bmediaformattingdialog.cpp:64 projects/k3bprojectburndialog.cpp:259
#, kde-format
msgid "Writing Mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:535 misc/k3bmediacopydialog.cpp:107
#: projects/k3bprojectburndialog.cpp:278
#, kde-format
msgid "Copies"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:574 misc/k3bimagewritingdialog.cpp:996
#: misc/k3bmediacopydialog.cpp:151
#, kde-format
msgid "&Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:587
#, kde-format
msgid "Data mode:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:613
#, kde-format
msgid ""
"<p><b>Image types supported by K3b:</p>"
"<p><b>Plain image</b><br/>"
"Plain images are written as is to the medium using a single data track. Typical plain images are iso images as created by K3b's data project."
"<p><b>Cue/bin images</b><br/>"
"Cue/bin images consist of a cue file describing the table of contents of the medium and an image file which contains the actual data. The data will be written to the medium according to the cue file."
"<p><b>Audio Cue image</b><br/>"
"Audio cue images are a special kind of cue/bin image containing an image of an audio CD. The actual audio data can be encoded using any audio format supported by K3b. Audio cue files can also be imported into K3b audio projects which allows to change the order and add or remove tracks."
"<p><b>Cdrecord clone images</b><br/>"
"K3b creates a cdrecord clone image of a single-session CD when copying a CD in clone mode. These images can be reused here."
"<p><b>Cdrdao TOC files</b><br/>"
"K3b supports writing cdrdao's own image format, the toc files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:715
#, kde-format
msgid ""
"<p>The actual file size does not match the size declared in the file header. If it has been downloaded make sure the download is complete.</p>"
"<p>Only continue if you know what you are doing.</p>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:718 option/k3bmiscoptiontab.cpp:130
#, kde-format
msgid "Warning"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:875
#, kde-format
msgid "Type of image file is not recognizable. Do you want to burn it anyway?"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:876
#, kde-format
msgid "Unknown image type"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:885
#, kde-format
msgid "Unable to read image file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:887
#, kde-format
msgid "Seems not to be a usable image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:903
#, kde-format
msgid "File not found"
msgstr ""
#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1034
#, kde-format
msgid "MD5 Sum:"
msgstr ""
-#. +> stable
-#: misc/k3bimagewritingdialog.cpp:949
-#, kde-format
-msgid "Md5 Sum:"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1074
#, kde-format
msgid "Calculation canceled"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1076
#, kde-format
msgid "Calculation failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1092
#, kde-format
msgid "Copy checksum to clipboard"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1093
#, kde-format
msgid "Compare checksum..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1100
#, kde-format
msgid "MD5 Sum Check"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1101
#, kde-format
msgid "Please insert the MD5 Sum to compare:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1107
#, kde-format
msgid "The MD5 Sum of %1 equals that specified."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1108
#, kde-format
msgid "MD5 Sums Equal"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1110
#, kde-format
msgid "The MD5 Sum of %1 differs from that specified."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bimagewritingdialog.cpp:1111
#, kde-format
msgid "MD5 Sums Differ"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:65
#, kde-format
msgid "Disk Copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:66
#, kde-format
msgid "and CD Cloning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:76
#, kde-format
msgid "Source Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:95
#, kde-format
msgid "Copy Mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:97 misc/k3bmediacopydialog.cpp:227
#, kde-format
msgid "Normal Copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:98 misc/k3bmediacopydialog.cpp:232
#, kde-format
msgid "Clone Copy"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:138 projects/base_k3baudiotrackwidget.ui:164
#, kde-format
msgid "&Options"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:165
#, kde-format
msgid "No error correction"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:166 misc/k3bmediacopydialog.cpp:179
#: projects/k3baudioburndialog.cpp:95 rip/k3baudiorippingdialog.cpp:184
#, kde-format
msgid "Read retries:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:178
#, kde-format
msgid "Copy CD-Text"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:182 projects/k3baudioburndialog.cpp:89
#: rip/k3baudiorippingdialog.cpp:182
#, kde-format
msgid "Paranoia mode:"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:190
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:457
#, kde-format
msgid "&Advanced"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:211
#, kde-format
msgid "Skip unreadable data sectors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:212
#, kde-format
msgid "Disable the source drive's error correction"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:213
#, kde-format
msgid "Copy CD-Text from the source CD if available."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:215
#, kde-format
msgid ""
"<p>If this option is checked K3b will disable the source drive's ECC/EDC error correction. This way sectors that are unreadable by intention can be read."
"<p>This may be useful for cloning CDs with copy protection based on corrupted sectors."
msgstr ""
#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:220
#, kde-format
msgid "<p>If this option is checked K3b will search for CD-Text on the source CD. Disable it if your CD drive has problems with reading CD-Text or you want to stick to CDDB info."
msgstr ""
-#. +> stable
-#: misc/k3bmediacopydialog.cpp:223
-#, kde-format
-msgid "<p>If this option is checked K3b will search for CD-Text on the source CD. Disable it if your CD drive has problems with reading CD-Text or you want to stick to Cddb info."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:223
#, kde-format
msgid "<p>If this option is checked and K3b is not able to read a data sector from the source medium it will be replaced with zeros on the resulting copy."
msgstr ""
#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:228
#, kde-format
msgid ""
"<p>This is the normal copy mode for DVD, Blu-ray, and most CD media types. It allows copying Audio CDs, multi and single session Data Media, and Enhanced Audio CDs (an Audio CD containing an additional data session)."
"<p>For Video CDs please use the CD Cloning mode."
msgstr ""
-#. +> stable
-#: misc/k3bmediacopydialog.cpp:231
-#, kde-format
-msgid ""
-"<p>This is the normal copy mode for DVD, Blu-ray, and most CD media types. It allows copying Audio CDs, multi and single session Data Media, and Enhanced Audio CDs (an Audio CD containing an additional data session)."
-"<p>For VideoCDs please use the CD Cloning mode."
-msgstr ""
-
#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:233
#, kde-format
msgid ""
"<p>In CD Cloning mode K3b performs a raw copy of the CD. That means it does not care about the content but simply copies the CD bit by bit. It may be used to copy Video CDs or CDs which contain erroneous sectors."
"<p><b>Caution:</b> Only single session CDs can be cloned."
msgstr ""
-#. +> stable
-#: misc/k3bmediacopydialog.cpp:236
-#, kde-format
-msgid ""
-"<p>In CD Cloning mode K3b performs a raw copy of the CD. That means it does not care about the content but simply copies the CD bit by bit. It may be used to copy VideoCDs or CDs which contain erroneous sectors."
-"<p><b>Caution:</b> Only single session CDs can be cloned."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:270 projects/k3bprojectburndialog.cpp:209
#, kde-format
msgid "There does not seem to be enough free space in the temporary folder. Write anyway?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:550
#, kde-format
msgid "Use the same device for burning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediacopydialog.cpp:551
#, kde-format
msgid "<qt>Use the same device for burning <i>(Or insert another medium)</i>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:47
#, kde-format
msgid "Format and Erase"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:48
#, kde-format
msgid "CD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:48
#, kde-format
msgid "DVD±RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:48
#, kde-format
msgid "BD-RE"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:72
#, kde-format
msgid "Force"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:73
#, kde-format
msgid "Quick format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:87
#, kde-format
msgid "Force formatting of empty DVDs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:88
#, kde-format
msgid ""
"<p>If this option is checked K3b will format a DVD-RW even if it is empty. It may also be used to force K3b to format a DVD+RW, BD-RE or a DVD-RW in restricted overwrite mode."
"<p><b>Caution:</b> It is not recommended to format a DVD often as it may become unusable after only 10-20 reformat procedures."
"<p>DVD+RW and BD-RE media only needs to be formatted once. After that it just needs to be overwritten. The same applies to DVD-RW in restricted overwrite mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:98
#, kde-format
msgid "Try to perform quick formatting"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: misc/k3bmediaformattingdialog.cpp:99
#, kde-format
msgid ""
"<p>If this option is checked K3b will tell the writer to perform a quick format."
"<p>Erasing a rewritable medium completely can take a very long time and some writers perform a full format even if quick format is enabled."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:20 option/k3boptiondialog.cpp:138
#: projects/k3bdataburndialog.cpp:166 projects/k3bmixedburndialog.cpp:95
#: projects/k3bmixedburndialog.cpp:138 projects/k3bmovixburndialog.cpp:112
#: projects/k3bvcdburndialog.cpp:368
#, kde-format
msgid "Misc"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkSaveOnExit)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:26
#, kde-format
msgid "Ask to save modified projects on exit"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkSaveOnExit)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:29
#, kde-format
msgid "&Ask to save projects on exit"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:38
#, kde-format
msgid "Default Temporary Directory:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KUrlRequester, m_editTempDir)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:48
#, kde-format
msgid "The directory where K3b stores temporary files"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KUrlRequester, m_editTempDir)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:51
#, kde-format
msgid ""
"<p>This is the default temporary directory. This is where K3b will store temporary files such as iso images or decoded audio files."
"<p>Be aware that the temporary directory may also be changed in every project burn dialog."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:63
#, kde-format
msgid "System"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkSystemConfig)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:69
#, kde-format
msgid "Check system Configuration"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkSystemConfig)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:72
#, kde-format
msgid "<p>If this option is checked K3b will check the system configuration for any problems on startup and when the user changes the settings."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkSystemConfig)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:75
#, kde-format
msgid "&Check system configuration"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:85
#, kde-format
msgid "GUI Settings"
msgstr ""
-#. i18n: ectx: property (text), widget (QCheckBox, m_checkShowProgressOSD)
-#. +> stable
-#: option/base_k3bmiscoptiontab.ui:86
-#, kde-format
-msgid "Show progress &OSD"
-msgstr ""
-
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkShowProgressOSD)
#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:91
#, kde-format
msgid "<p>If this option is checked K3b will display the progress in KDE notification area. If K3b is run outside KDE environment a separate progress window may be shown instead.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkShowProgressOSD)
#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:94
#, kde-format
msgid "Show &progress in notification area"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkHideMainWindowWhileWriting)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:101
#, kde-format
msgid "Hide the main window while displaying the progress window"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkHideMainWindowWhileWriting)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:104
#, kde-format
msgid "<p>If this option is checked K3b will hide the main window while displaying the progress dialog."
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkShowProgressOSD)
-#. +> stable
-#: option/base_k3bmiscoptiontab.ui:83
-#, kde-format
-msgid "<p>If this option is checked K3b will display the progress in an OSD which always stays on top of all other windows."
-msgstr ""
-
#. i18n: ectx: property (text), widget (QCheckBox, m_checkHideMainWindowWhileWriting)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:107
#, kde-format
msgid "Hide &main window while writing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkShowSplash)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:114
#, kde-format
msgid "Show the splash screen when K3b starts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkShowSplash)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:117
#, kde-format
msgid "Show splash screen"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkKeepDialogsOpen)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:124
#, kde-format
msgid "Do not close action dialogs after finishing the process"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkKeepDialogsOpen)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:127
#, kde-format
msgid "<p>If this option is checked K3b will not close action dialogs such as the CD Copy dialog after the process has been finished. It will be kept open to start a new process, for instance, copying another CD."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkKeepDialogsOpen)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:130
#, kde-format
msgid "&Keep action dialogs open"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:139
#, kde-format
msgid "&Default action dialog settings:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (K3b::IntMapComboBox, m_comboActionDialogSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bmiscoptiontab.ui:152
#, kde-format
msgid "Settings to load when opening an action dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonConfigure)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bpluginoptiontab.ui:21
#, kde-format
msgid "Configure..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bpluginoptiontab.ui:47 option/k3bpluginoptiontab.cpp:40
#, kde-format
msgid "<p>Here all <em>K3b Plugins</em> may be configured. Be aware that this does not include the <em>KPart Plugins</em> which embed themselves in the K3b menu structure.</p>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:21
#, kde-format
msgid "Theme Selection"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox5)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:37
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:310
#, kde-format
msgid "Preview"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_centerPreviewLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:70
#, kde-format
msgid "No theme selected"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonGetNewThemes)
#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:119
#, kde-format
msgid "Get New Themes..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonInstallTheme)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:126
#, kde-format
msgid "Install New Theme..."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonRemoveTheme)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/base_k3bthemeoptiontab.ui:133
#, kde-format
msgid "Remove Theme"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:58
#, kde-format
msgid "Burning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:62
#, kde-format
msgid "Allow &overburning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:63
#, kde-format
msgid "&Force unsafe operations"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:64
#, kde-format
msgid "&Manual writing buffer size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:68 projects/k3bfillstatusdisplay.cpp:587
#, kde-format
msgid "MB"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:69
#, kde-format
msgid "Show &advanced GUI elements"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:78 rip/categories.cpp:23
#, kde-format
msgid "Miscellaneous"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:80
#, kde-format
msgid "Do not &eject medium after write process"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:82
#, kde-format
msgid "Automatically erase CD-RWs and DVD-RWs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:100
#, kde-format
msgid "Allow burning more than the official media capacities"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:101
#, kde-format
msgid "Show advanced GUI elements like allowing to choose between cdrecord and cdrdao"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:102
#, kde-format
msgid "Automatically erase CD-RWs and DVD-RWs without asking"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:103
#, kde-format
msgid "Do not eject the burn medium after a completed burn process"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:104
#, kde-format
msgid "Force K3b to continue some operations otherwise deemed as unsafe"
msgstr ""
#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:106
#, kde-format
msgid ""
"<p>If this option is checked additional GUI elements which allow one to influence the behavior of K3b are shown. This includes the manual selection of the used burning tool. (Choose between cdrecord and cdrdao when writing a CD or between cdrecord and growisofs when writing a DVD/BD.)"
"<p><b>Be aware that K3b does not support all possible tools in all project types and actions.</b>"
msgstr ""
-#. +> stable
-#: option/k3badvancedoptiontab.cpp:105
-#, kde-format
-msgid ""
-"<p>If this option is checked additional GUI elements which allow to influence the behavior of K3b are shown. This includes the manual selection of the used burning tool. (Choose between cdrecord and cdrdao when writing a CD or between cdrecord and growisofs when writing a DVD/BD.)"
-"<p><b>Be aware that K3b does not support all possible tools in all project types and actions.</b>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:114
#, kde-format
msgid ""
"<p>Each medium has an official maximum capacity which is stored in a read-only area of the medium and is guaranteed by the vendor. However, this official maximum is not always the actual maximum. Many media have an actual total capacity that is slightly larger than the official amount."
"<p>If this option is checked K3b will disable a safety check that prevents burning beyond the official capacity."
"<p><b>Caution:</b> Enabling this option can cause failures in the end of the burning process if K3b attempts to write beyond the official capacity. It makes sense to first determine the actual maximum capacity of the media brand with a simulated burn."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:125
#, kde-format
msgid "<p>If this option is checked K3b will automatically erase CD-RWs and format DVD-RWs if one is found instead of an empty media before writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:129
#, kde-format
msgid ""
"<p>K3b uses a software buffer during the burning process to avoid gaps in the data stream due to high system load. The default sizes used are %1 MB for CD and %2 MB for DVD burning."
"<p>If this option is checked the value specified will be used for both CD and DVD burning."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:135
#, kde-format
msgid ""
"<p>If this option is checked K3b will not eject the medium once the burn process finishes. This can be helpful in case one leaves the computer after starting the burning and does not want the tray to be open all the time."
"<p>However, on Linux systems a freshly burned medium has to be reloaded. Otherwise the system will not detect the changes and still treat it as an empty medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3badvancedoptiontab.cpp:141
#, kde-format
msgid ""
"<p>If this option is checked K3b will continue in some situations which would otherwise be deemed as unsafe."
"<p>This setting for example disables the check for medium speed verification. Thus, one can force K3b to burn a high speed medium on a low speed writer."
"<p><b>Caution:</b> Enabling this option may result in damaged media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bcddboptiontab.cpp:48
#, kde-format
msgid "Unable to load KCDDB configuration module."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:66 option/k3bexternalbinwidget.cpp:65
#, kde-format
msgid "Refresh"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:67
#, kde-format
msgid "Rescan the devices"
msgstr ""
-#. +> stable
-#: option/k3bdevicewidget.cpp:73
-#, kde-format
-msgid "CD/DVD/BD Drives"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:125
#, kde-format
msgid "Writer Drives"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:130
#, kde-format
msgid "Read-only Drives"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:146
#, kde-format
msgid "System device name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:152
#, kde-format
msgid "Vendor:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:158
#, kde-format
msgid "Description:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:164
#, kde-format
msgid "Firmware:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:173
#, kde-format
msgid "Write Capabilities:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:180
#, kde-format
msgid "Read Capabilities:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:191
#, kde-format
msgid "Buffer Size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:201
#, kde-format
msgid "Supports Burnfree:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:202
#, kde-format
msgid "yes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:202
#, kde-format
msgid "no"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:208
#, kde-format
msgid "Write modes:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:219 option/k3bdevicewidget.cpp:224
#, kde-format
msgid "none"
msgstr ""
#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:249
#, kde-format
msgid "In order to give K3b full access to the writer device the current user needs be added to a group <em>%1</em>."
msgstr ""
#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:251
#, kde-format
msgid ""
"<br/>"
"The Permission helper that could do this for you was not enabled during build.<br/>"
"Please rebuild the package with the Permission helper enabled or contact your distribution."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:258 projects/k3bdataurladdingdialog.cpp:770
#: projects/k3bdataurladdingdialog.cpp:786
#, kde-format
msgid "Add"
msgstr ""
#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:285
#, kde-format
msgid "Please relogin to apply the changes."
msgstr ""
#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:290
#, kde-format
msgid "Unable to execute the action: %1 (Error code: %2)"
msgstr ""
#. +> trunk5 stable5
#: option/k3bdevicewidget.cpp:291
#, kde-format
msgid "Retry"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinmodel.cpp:164
#, kde-format
msgid "%1 (not found)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinmodel.cpp:237
#, kde-format
msgid "Path"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinmodel.cpp:239
#, kde-format
msgid "Features"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinoptiontab.cpp:36
#, kde-format
msgid "Specify the paths to the external programs that K3b needs to work properly, or press \"Refresh\" to let K3b search for the programs."
msgstr ""
-#. +> stable
-#: option/k3bexternalbinoptiontab.cpp:49
-#, kde-format
-msgid "Specify the paths to the external programs that K3b needs to work properly, or press \"Search\" to let K3b search for the programs."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinparamsmodel.cpp:166
#: option/k3bexternalbinpermissionmodel.cpp:293
#, kde-format
msgid "Program"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinparamsmodel.cpp:167
#, kde-format
msgid "Parameters"
msgstr ""
-#. +> stable
-#: k3bsetupdevicesmodel.cpp:237
-#, kde-format
-msgid "Device"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinpermissionmodel.cpp:238
#, kde-format
msgid "no change"
msgstr ""
-#. +> stable
-#: k3bsetupdevicesmodel.cpp:238
-#, kde-format
-msgid "Devicenode"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinpermissionmodel.cpp:294
#: option/k3bexternalbinwidget.cpp:136
#, kde-format
msgid "Permissions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinpermissionmodel.cpp:295
#, kde-format
msgid "New permissions"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:81
#, kde-format
msgid "<p>If K3b finds more than one installed version of a program it will choose one as the <em>default</em>, which will be used to do the work. If you want to change the default, check desired version on the list."
msgstr ""
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:121
-#, kde-format
-msgid "<p>If K3b finds more than one installed version of a program it will choose one as the <em>default</em>, which will be used to do the work. If you want to change the default, select the desired version and press this button."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:89 option/k3boptiondialog.cpp:162
#, kde-format
msgid "Programs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:95
#, kde-format
msgid "User parameters have to be separated by space."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:108
#, kde-format
msgid "User Parameters"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:115
#, kde-format
msgid "Check the programs whose permissions you want to be changed:"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:117
#, kde-format
msgid ""
"The Permissions helper was not enabled during build.\n"
"Check the programs whose permissions should be changed:"
msgstr ""
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:119
-#, kde-format
-msgid "Set Default"
-msgstr ""
-
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:120
-#, kde-format
-msgid "Change the versions K3b should use."
-msgstr ""
-
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:125
-#, kde-format
-msgid "Use the 'Default' button to change the versions K3b should use."
-msgstr ""
-
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:128
#, kde-format
msgid "Change Permissions..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:144
#, kde-format
msgid "<qt><b>Hint:</b> to force K3b to use another than the default name for the executable specify it in the search path.</qt>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:152
#, kde-format
msgid "Search Path"
msgstr ""
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:107
-#, kde-format
-msgid "&Search"
-msgstr ""
-
-#. +> stable
-#: option/k3bexternalbinwidget.cpp:228
-#, kde-format
-msgid " (not found)"
-msgstr ""
-
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:261
#, kde-format
msgid "Following programs could not be updated:"
msgstr ""
#. +> trunk5 stable5
#: option/k3bexternalbinwidget.cpp:268
#, kde-format
msgid "Unable to execute the action: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:46
#, kde-format
msgid "Default Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:47
#, kde-format
msgid "Load the K3b Defaults at dialog startup."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:49
#, kde-format
msgid "Saved Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:50
#, kde-format
msgid "Load the settings saved by the user at dialog startup."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:52
#, kde-format
msgid "Last Used Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:53
#, kde-format
msgid "Load the last used settings at dialog startup."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:54
#, kde-format
msgid "K3b handles three sets of settings in action dialogs (action dialogs include the CD Copy dialog or the Audio CD project dialog):"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:57
#, kde-format
msgid "One of these sets is loaded once an action dialog is opened. This setting defines which set it will be."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:112
#, kde-format
msgid "Folder (%1) does not exist. Create?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:113
#, kde-format
msgid "Create Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:114
#, kde-format
msgid "Create"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:117 rip/k3bmassaudioencodingjob.cpp:290
#: rip/k3bmassaudioencodingjob.cpp:405
#, kde-format
msgid "Unable to create folder %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:128
#, kde-format
msgid "You specified a file for the temporary folder. K3b will use its base path as the temporary folder."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bmiscoptiontab.cpp:137
#, kde-format
msgid "You do not have permission to write to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:139
#, kde-format
msgid "Miscellaneous Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:148
#, kde-format
msgid "Devices"
msgstr ""
-#. +> stable
-#: option/k3boptiondialog.cpp:143
-#, kde-format
-msgid "Setup Devices"
-msgstr ""
-
#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:149
#, kde-format
msgid "Optical Devices"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:163
#, kde-format
msgid "Setup External Programs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:172
#, kde-format
msgid "Notifications"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:173
#, kde-format
msgid "System Notifications"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:182
#, kde-format
msgid "Plugins"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:183
#, kde-format
msgid "K3b Plugin Configuration"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:196
#, kde-format
msgid "Themes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:197
#, kde-format
msgid "K3b GUI Themes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:206
#, kde-format
msgid "CDDB"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:207
#, kde-format
msgid "CDDB Audio CD Info Retrieval"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3boptiondialog.cpp:217
#, kde-format
msgid "Advanced Settings"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthememodel.cpp:101
#, kde-format
msgid "Theme"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthememodel.cpp:102
#, kde-format
msgid "Author"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthememodel.cpp:104
#, kde-format
msgid "Comment"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:101
#, kde-format
msgid "K3b - The CD/DVD Kreator"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:121
#, kde-format
msgid "Drag or Type Theme URL"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:143
#, kde-format
msgid "Unable to find the icon theme archive %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:145
#, kde-format
msgid ""
"Unable to download the icon theme archive.\n"
"Please check that address %1 is correct."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:177
#, kde-format
msgid "The file is not a valid K3b theme archive."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:186
#, kde-format
msgid "A theme with the name '%1' already exists. Do you want to overwrite it?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:188
#, kde-format
msgid "Theme exists"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:206
#, kde-format
msgid ""
"<qt>Are you sure you want to remove the <strong>%1</strong> theme?<br>"
"<br>"
"This will delete the files installed by this theme.</qt>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: option/k3bthemeoptiontab.cpp:211
#, kde-format
msgid "Delete"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:18
#, kde-format
msgid "File Systems"
msgstr ""
-#. i18n: ectx: property (windowTitle), widget (QWidget, base_K3bDataCustomFilesystemsWidget)
-#. +> stable
-#: projects/base_k3badvanceddataimagesettings.ui:16
-#, kde-format
-msgid "Custom Data Filesystems"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (K3ListView, m_viewIsoSettings)
-#. +> stable
-#: projects/base_k3badvanceddataimagesettings.ui:38
-#, kde-format
-msgid "ISO9660 Filesystem"
-msgstr ""
-
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkRockRidge)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:24
#, kde-format
msgid "Add Rock Ridge extensions to the file system"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkRockRidge)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:30
#, kde-format
msgid ""
"<p>If this option is checked, K3b will generate the System Use Sharing Protocol records (SUSP) specified by the Rock Ridge Interchange Protocol (IEEE-P1282).\n"
"<p>Rock Ridge extends the ISO 9660 filesystem by features equal to the UNIX filesystems (permissions, symbolic links, very long filenames, ...). It uses ISO-8859 or UTF-16 based characters and allows 255 octets.\n"
"<p>Rock Ridge extensions are located at the end of each ISO 9660 directory record. This makes the Rock Ridge tree closely coupled to the ISO 9660 tree.\n"
"<p><b>It is highly recommended to use Rock Ridge extensions on every data CD or DVD.</b>"
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkRockRidge)
-#. +> stable
-#: projects/base_k3badvanceddataimagesettings.ui:73
-#, kde-format
-msgid ""
-"<p>If this option is checked, K3b will generate the System Use Sharing Protocol records (SUSP) specified by the Rock Ridge Interchange Protocol (IEEE-P1282).\n"
-"<p>Rock Ridge extends the ISO-9660 filesystem by features equal to the UNIX filesystems (permissions, symbolic links, very long filenames, ...). It uses ISO-8859 or UTF-16 based characters and allows 255 octets.\n"
-"<p>Rock Ridge extensions are located at the end of each ISO-9660 directory record. This makes the Rock Ridge tree closely coupled to the ISO-9660 tree.\n"
-"<p><b>It is highly recommended to use Rock Ridge extensions on every data CD or DVD.</b>"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QCheckBox, m_checkRockRidge)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:33
#, kde-format
msgid "&Generate Rock Ridge extensions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkJoliet)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:43
#, kde-format
msgid "Add Joliet extensions to the file system"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkJoliet)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:50
#, kde-format
msgid ""
"<p>If this option is checked, K3b will add additional Joliet extensions to the ISO 9660 file system.\n"
"<p>Joliet is not an accepted independent international standard like ISO 9660 or Rock Ridge. It is mainly used on Windows systems.\n"
"<p>Joliet does not allow all characters, so the Joliet filenames are not identical to the filenames on disk (as compared to Rock Ridge). Joliet has a filename length limitation of 64 chars (independent from the character coding and type e.g. European vs. Japanese). This is inconvenient, as modern file systems all allow 255 characters per path name component.\n"
"<p>Joliet uses UTF-16 coding.\n"
"<p><b>Caution:</b> With the exception of Linux and FreeBSD, there is no POSIX-like OS that supports Joliet. So <b>never create Joliet-only CDs or DVDs</b> for that reason."
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkJoliet)
-#. +> stable
-#: projects/base_k3badvanceddataimagesettings.ui:90
-#, kde-format
-msgid ""
-"<p>If this option is checked, K3b will add additional Joliet extensions to the ISO-9660 file system.\n"
-"<p>Joliet is not an accepted independent international standard like ISO-9660 or Rock Ridge. It is mainly used on Windows systems.\n"
-"<p>Joliet does not allow all characters, so the Joliet filenames are not identical to the filenames on disk (as compared to Rock Ridge). Joliet has a filename length limitation of 64 chars (independent from the character coding and type e.g. European vs. Japanese). This is inconvenient, as modern file systems all allow 255 characters per path name component.\n"
-"<p>Joliet uses UTF-16 coding.\n"
-"<p><b>Caution:</b> With the exception of Linux and FreeBSD, there is no POSIX-like OS that supports Joliet. So <b>never create Joliet-only CDs or DVDs</b> for that reason."
-msgstr ""
-
#. i18n: ectx: property (text), widget (QCheckBox, m_checkJoliet)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:53
#, kde-format
msgid "Generate &Joliet extensions"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkUdf)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:60
#, kde-format
msgid "Add UDF structures to the file system"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkUdf)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:64
#, kde-format
msgid ""
"<p>If this option is checked K3b will create UDF filesystem structures in addition to the ISO 9660 filesystem.\n"
"<p>The UDF (<em><b>U</b>niversal <b>D</b>isk <b>F</b>ormat</em>) is mainly used for DVDs."
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkUdf)
-#. +> stable
-#: projects/base_k3badvanceddataimagesettings.ui:104
-#, kde-format
-msgid ""
-"<p>If this option is checked K3b will create UDF filesystem structures in addition to the ISO9660 filesystem.\n"
-"<p>The UDF (<em><b>U</b>niversal <b>D</b>isk <b>F</b>ormat</em>) is mainly used for DVDs."
-msgstr ""
-
#. i18n: ectx: property (text), widget (QCheckBox, m_checkUdf)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:67
#, kde-format
msgid "Generate &UDF structures"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:77
#, kde-format
msgid "Other Settings"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkPreservePermissions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:84
#, kde-format
msgid ""
"<p>If this option is checked, all files in the resulting file system will have exactly the same permissions as the source files. (Otherwise, all files will have equal permissions and be owned by root).\n"
"<p>This is mainly useful for backups."
"<p><b>Caution:</b> The permissions may not make much sense on other file systems; for example, if a user that owns a file on the CD or DVD does not exist."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkPreservePermissions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:87
#, kde-format
msgid "Preserve file permissions (bac&kup)"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox_3)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:110
#, kde-format
msgid "Set special ISO 9660 Filesystem preferences."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:113
#, kde-format
msgid "File System Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupIsoSettings)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:134
#, kde-format
msgid "ISO 9660 Settings"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkAllowUntranslatedFilenames)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:143
#, kde-format
msgid "Force all options below"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowUntranslatedFilenames)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:146
#, kde-format
msgid "Allow untranslated ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkOmitTrailingPeriod)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:153
#, kde-format
msgid "Omit trailing period in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkOmitVersionNumbers)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:160
#, kde-format
msgid "Omit version numbers in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowBeginningPeriod)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:167
#, kde-format
msgid "Allow leading period in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllow31CharFilenames)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:174
#, kde-format
msgid "Allow 31 character ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowMultiDot)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:181
#, kde-format
msgid "Allow multiple dots in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowLowercaseCharacters)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:188
#, kde-format
msgid "Allow lowercase characters in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowOther)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:195
#, kde-format
msgid "Allow ~ and # in ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowFullAscii)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:202
#, kde-format
msgid "Allow full ASCII charset for ISO 9660 filenames"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAllowMaxLengthFilenames)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:209
#, kde-format
msgid "Allow max length ISO 9660 filenames (37 characters)"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, m_groupIsoLevel)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:225
#, kde-format
msgid ""
"<p>Set the ISO 9660 conformance level.\n"
"<ul>\n"
"<li>Level 1: Files may only consist of one section and filenames are restricted to 8.3 characters.</li>"
"\n"
"<li>Level 2: Files may only consist of one section.</li>"
"\n"
"<li>Level 3: No restrictions.</li>"
"\n"
"</ul>"
"\n"
"<p>With all ISO 9660 levels, all filenames are restricted to upper case letters, numbers and the underscore (_). The maximum filename length is 31 characters, the directory nesting level is restricted to 8 and the maximum path length is limited to 255 characters. (These restrictions may be violated with the additional ISO 9660 features K3b offers.)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupIsoLevel)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:228
#, kde-format
msgid "ISO 9660 Level"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioIsoLevel1)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:234
#, kde-format
msgid "&Level 1"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioIsoLevel2)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:241
#, kde-format
msgid "Level &2"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioIsoLevel3)
#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:248
#, kde-format
msgid "Level &3"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupRockRidgeSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:258
#, kde-format
msgid "Rock Ridge Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkCreateTransTbl)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:264
#, kde-format
msgid "Create TRANS.TBL files"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkHideTransTbl)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:271
#, kde-format
msgid "Hide TRANS.TBL files in Joliet"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupJolietSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:281
#, kde-format
msgid "Joliet Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkJolietLong)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:287
#, kde-format
msgid "Allow 103 character Joliet filenames"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupMiscSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:297
#, kde-format
msgid "Misc Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkDoNotImportSession)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:303
#, kde-format
msgid "Do not import previous session"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkDoNotCacheInodes)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3badvanceddataimagesettings.ui:310
#, kde-format
msgid "Do not cache inodes"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:18
#: projects/base_k3baudiocdtextwidget.ui:92
#: projects/base_k3baudiotrackwidget.ui:126
#, kde-format
msgid "&Title:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonCopyTitle)
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonCopyPerformer)
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonCopyArranger)
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonCopySongwriter)
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonCopyComposer)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:36
#: projects/base_k3baudiocdtextallfieldsdialog.ui:66
#: projects/base_k3baudiocdtextallfieldsdialog.ui:106
#: projects/base_k3baudiocdtextallfieldsdialog.ui:136
#: projects/base_k3baudiocdtextallfieldsdialog.ui:166
#: projects/base_k3baudiocdtextwidget.ui:66
#: projects/base_k3baudiocdtextwidget.ui:83
#, kde-format
msgid "Copy to all tracks"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, m_buttonConfigurePlugin)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonCopyTitle)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonCopyPerformer)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonCopyArranger)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonCopySongwriter)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonCopyComposer)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonFindBiblio)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonFindAbstract)
#. i18n: ectx: property (text), widget (QToolButton, m_buttonFindCopyright)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:39
#: projects/base_k3baudiocdtextallfieldsdialog.ui:69
#: projects/base_k3baudiocdtextallfieldsdialog.ui:109
#: projects/base_k3baudiocdtextallfieldsdialog.ui:139
#: projects/base_k3baudiocdtextallfieldsdialog.ui:169
#: projects/base_k3baudiocdtextwidget.ui:63
#: projects/base_k3baudiocdtextwidget.ui:80
#: projects/base_k3bdatavolumedescdialog.ui:159
#: projects/base_k3bdatavolumedescdialog.ui:193
#: projects/base_k3bdatavolumedescdialog.ui:231
#: rip/base_k3baudiorippingoptionwidget.ui:37
#, kde-format
msgid "..."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:48
#, kde-format
msgid "Per&former:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:88
#: projects/base_k3baudiotrackwidget.ui:58
#, kde-format
msgid "&Arranger:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:118
#: projects/base_k3baudiotrackwidget.ui:26
#, kde-format
msgid "So&ngwriter:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:148
#: projects/base_k3baudiotrackwidget.ui:71
#, kde-format
msgid "&Composer:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:178
#, kde-format
msgid "&UPC EAN:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:194
#, kde-format
msgid "&Disk id:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextallfieldsdialog.ui:210
#, kde-format
msgid "Messa&ge:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupCdText)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextwidget.ui:11
#, kde-format
msgid "Write CD-Text"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QGroupBox, m_groupCdText)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextwidget.ui:27
#, kde-format
msgid ""
"<p><b>CD-Text</b>\n"
"<p>If this option is checked K3b uses some otherwise unused space on the Audio CD to store additional information, such as the artist's name or the CD title.\n"
"<p>CD-Text is an extension to the audio CD standard introduced by Sony.\n"
"<p>CD-Text will only be usable on CD players that support this extension (mostly car CD players) and software like K3b, of course.\n"
"<p>Since a CD-Text-enhanced Audio CD will work in any Hifi CD or DVD player even if the player does not support CD-Text explicitly, enabling it is never a bad idea (just remember to fill in the CD-Text information)."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextwidget.ui:45
#, kde-format
msgid "Perf&ormer:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonMoreFields)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiocdtextwidget.ui:126
#, kde-format
msgid "More Fiel&ds..."
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:15
#, kde-format
msgid "C&D-Text"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:84
#, kde-format
msgid "&Message:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:100
#, kde-format
msgid "&Performer:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:113
#, kde-format
msgid "&ISRC:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkPreemphasis)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:170
#, kde-format
msgid "Preemph&asis"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkPreemphasis)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:173
#, kde-format
msgid "<p>Preemphasis is mainly used in audio processing. Higher frequencies in audio signals usually have lower amplitudes. This can lead to bad signal quality on noisy transmission because the high frequencies might become too weak. To avoid this effect, high frequencies are amplified before transmission (preemphasis); the receiver will then weaken them accordingly for playback."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkCopyPermitted)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:180
#, kde-format
msgid "&Copy permitted"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelPostGap)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:189
#, kde-format
msgid "Post-Gap:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (K3b::MsfEdit, m_editPostGap)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:199
#, kde-format
msgid "Set the length of the track's post-gap"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (K3b::MsfEdit, m_editPostGap)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3baudiotrackwidget.ui:207
#, kde-format
msgid ""
"<p>On an audio CD each track (except for the last) can have a post-gap.\n"
"This does not mean that K3b adds an additional gap of silence to the track. This setting simply influences the display on a Hifi audio CD player. The part of an audio track that is marked as post-gap is counted backwards.\n"
"<p>This setting is irrelevant for most users as modern CD burners can put arbitrary audio data in the post-gap when burning in DAO mode.\n"
"<p><i>In other CD-burning applications the post-gap might be called the pre-gap. The pre-gap of track 2 is the same as the post-gap of track 1.\n"
"<p><b>Changing the post-gap does not change the length of the track.</b>\n"
"<p><b>When writing in TAO writing mode (not recommended for Audio CDs) the post-gap will most likely be muted and on some burners forced to 2 seconds.</b>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:26
#, kde-format
msgid "Boot images:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, m_buttonNew)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:36
#, kde-format
msgid "Add new boot image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonNew)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:39
#, kde-format
msgid "&New..."
msgstr ""
#. i18n: ectx: property (toolTip), widget (QPushButton, m_buttonDelete)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:46
#, kde-format
msgid "Remove selected boot image"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonDelete)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:49
#, kde-format
msgid "&Delete"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupImageType)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:65 projects/k3bbootimagemodel.cpp:120
#, kde-format
msgid "Emulation Type"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, m_radioFloppy)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:71
#, kde-format
msgid "Emulate a 1440/2880 kb floppy"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioFloppy)
#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:74
#, kde-format
msgid "&Floppy"
msgstr ""
-#. i18n: ectx: property (text), widget (QRadioButton, m_radioFloppy)
-#. +> stable
-#: projects/base_k3bbootimageview.ui:105
-#, kde-format
-msgid "Flopp&y"
-msgstr ""
-
#. i18n: ectx: property (toolTip), widget (QRadioButton, m_radioHarddisk)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:81
#, kde-format
msgid "Emulate a harddisk"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_radioHarddisk)
#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:84
#, kde-format
msgid "Hardd&isk"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QRadioButton, m_radioNoEmulation)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:91
#, kde-format
msgid "No emulation at all"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkNoBoot)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:116
#, kde-format
msgid "Do not boot from the emulated floppy/harddisk"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkNoBoot)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:119
#, kde-format
msgid "No boot image"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkInfoTable)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:126
#, kde-format
msgid "Boot-info-table"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, m_editLoadSegment)
#. i18n: ectx: property (text), widget (QLineEdit, m_editLoadSize)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:138
#: projects/base_k3bbootimagedialog.ui:148
#, kde-format
msgid "0"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:158
#, kde-format
msgid "Boot load segment:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:171
#, kde-format
msgid "Boot load size:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonToggleOptions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:188
#, kde-format
msgid "Show Advanced Op&tions"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:215
#, kde-format
msgid "Boot catalog:"
msgstr ""
#. i18n: ectx: property (text), widget (QLineEdit, m_editBootCataloge)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bbootimagedialog.ui:225
#, kde-format
msgid "boot/boot.catalog"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, base_K3bDataImageSettings)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:15
#, kde-format
msgid "Data Image Settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupVolumeName)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:21
#, kde-format
msgid "Volume Name"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonMoreVolDescFields)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:34
#, kde-format
msgid "&More fields..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupFileSystem)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:44
#, kde-format
msgid "File System"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, m_comboFilesystems)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:56
#, kde-format
msgid "File system presets"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_buttonCustomPictureSize)
#. i18n: ectx: property (text), widget (QPushButton, m_buttonCustomFilesystems)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:63
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:79
#, kde-format
msgid "&Custom..."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupSymlinks)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:75
#, kde-format
msgid "Symbolic Links"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, m_comboSymlinkHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:87
#, kde-format
msgid "Symbolic link handling in the project"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, m_comboSymlinkHandling)
#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:105
#, kde-format
msgid ""
"<p>K3b can create ISO 9660 filesystems that contain symlinks if the Rock Ridge extensions are enabled (they are by default). You can change the way symlinks are handled in a K3b project.\n"
"\n"
"<p><b>No Change</b><br>"
"\n"
"Symlinks are used as they have been added to the project. \n"
"\n"
"<p><b>Discard broken symlinks</b><br>"
"\n"
"K3b will discard all symbolic links that do not point to a file inside the project. That includes all links to absolute paths like '/home/myhome/testfile'.\n"
"\n"
"<p><b>Discard all symlinks</b><br>"
"\n"
"K3b will discard all symbolic links that have been added to the project; meaning that the resulting file system will have no links at all.\n"
"\n"
"<p><b>Follow symlinks</b><br>"
"\n"
"Each symbolic link in the project will be replaced with the contents of the file it is pointing to. Thus, the resulting filesystem will not contain any symbolic links.<br>"
"\n"
"Be aware that in case Rock Ridge extensions are disabled (which is not recommended) symbolic links are always followed because ISO 9660 does not support symbolic links.\n"
"\n"
"<p><b>Caution:</b> Symbolic links require Rock Ridge extensions."
msgstr ""
-#. i18n: ectx: property (whatsThis), widget (QComboBox, m_comboSymlinkHandling)
-#. +> stable
-#: projects/base_k3bdataimagesettings.ui:105
-#, kde-format
-msgid ""
-"<p>K3b can create ISO9660 filesystems that contain symlinks if the Rock Ridge extensions are enabled (they are by default). You can change the way symlinks are handled in a K3b project.\n"
-"\n"
-"<p><b>No Change</b><br>"
-"\n"
-"Symlinks are used as they have been added to the project. \n"
-"\n"
-"<p><b>Discard broken symlinks</b><br>"
-"\n"
-"K3b will discard all symbolic links that do not point to a file inside the project. That includes all links to absolute paths like '/home/myhome/testfile'.\n"
-"\n"
-"<p><b>Discard all symlinks</b><br>"
-"\n"
-"K3b will discard all symbolic links that have been added to the project; meaning that the resulting file system will have no links at all.\n"
-"\n"
-"<p><b>Follow symlinks</b><br>"
-"\n"
-"Each symbolic link in the project will be replaced with the contents of the file it is pointing to. Thus, the resulting filesystem will not contain any symbolic links.<br>"
-"\n"
-"Be aware that in case Rock Ridge extensions are disabled (which is not recommended) symbolic links are always followed because ISO9660 does not support symbolic links.\n"
-"\n"
-"<p><b>Caution:</b> Symbolic links require Rock Ridge extensions."
-msgstr ""
-
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSymlinkHandling)
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:109
#: projects/base_k3bdataimagesettings.ui:164
#, kde-format
msgid "No Change"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSymlinkHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:114
#, kde-format
msgid "Discard broken symlinks"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSymlinkHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:119
#, kde-format
msgid "Discard all symlinks"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSymlinkHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:124
#, kde-format
msgid "Follow symlinks"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_groupWhitespace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:135
#, kde-format
msgid "White space handling"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:147
#, kde-format
msgid "Handling of spaces in filenames"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:160
#, kde-format
msgid ""
"<p><b>No Change</b><br>"
"\n"
"If this option is checked, K3b will leave all spaces in filenames as they are.\n"
"<p><b>Strip</b><br>"
"\n"
"If this option is checked, K3b will remove all spaces from all filenames.<br>"
"\n"
"Example: 'my good file.ext' becomes 'mygoodfile.ext'\n"
"<p><b>Extended Strip</b><br>"
"\n"
"If this option is checked K3b will remove all spaces in all filenames and capitalize all letters following a space.<br>"
"\n"
"Example: 'my good file.ext' becomes 'myGoodFile.ext'\n"
"<p><b>Replace</b><br>"
"\n"
"If this option is checked, K3b will replace all spaces in all filenames with the specified characters.<br>"
"\n"
"Example: 'my good file.ext' becomes 'my_good_file.ext'"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:169
#, kde-format
msgid "Strip"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:174
#, kde-format
msgid "Extended Strip"
msgstr ""
#. i18n: ectx: property (text), item, widget (QComboBox, m_comboSpaceHandling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:179
#: projects/k3bdataurladdingdialog.cpp:396
#: projects/k3bdataurladdingdialog.cpp:628
#, kde-format
msgid "Replace"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, m_editReplace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:196
#, kde-format
msgid "The string to replace spaces with"
msgstr ""
#. i18n: ectx: property (text), widget (KLineEdit, m_editBlankReplace)
#. i18n: ectx: property (text), widget (QLineEdit, m_editReplace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdataimagesettings.ui:199
#: rip/base_k3bcddbpatternwidget.ui:32
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:431
#, kde-format
msgid "_"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, base_K3bDataVolumeDescDialog)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:15
#: projects/k3bdatavolumedescdialog.cpp:34 projects/k3bvcdburndialog.cpp:545
#, kde-format
msgid "Volume Descriptor"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:21
#, kde-format
msgid "Bibliographic file:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel6)
#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:31
#, kde-format
msgid "Appli&cation:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, TextLabel6)
-#. +> stable
-#: projects/base_k3bdatavolumedescwidget.ui:189
-#, kde-format
-msgid "&Application:"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:51
#, kde-format
msgid "Volu&me set size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel3)
#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:84
#, kde-format
msgid "Publ&isher:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, TextLabel3)
-#. +> stable
-#: projects/base_k3bdatavolumedescwidget.ui:94
-#, kde-format
-msgid "P&ublisher:"
-msgstr ""
-
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:97
#, kde-format
msgid "Copyright file:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:121
#: projects/k3bvcdburndialog.cpp:472
#, kde-format
msgid "&Volume name:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel2)
#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:134
#, kde-format
msgid "Vo&lume set name:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, TextLabel2)
-#. +> stable
-#: projects/base_k3bdatavolumedescwidget.ui:41
-#, kde-format
-msgid "V&olume set name:"
-msgstr ""
-
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonFindBiblio)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:156
#, kde-format
msgid "Select a bibliographic file from the project"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:168
#, kde-format
msgid "P&reparer:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonFindAbstract)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:190
#, kde-format
msgid "Select an abstract file from the project"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:202
#, kde-format
msgid "Abstract file:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonFindCopyright)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:228
#, kde-format
msgid "Select a copyright file from the project"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:255
#: projects/k3bvcdburndialog.cpp:475
#, kde-format
msgid "Volume set &number:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, TextLabel5)
#. +> trunk5 stable5
#: projects/base_k3bdatavolumedescdialog.ui:303
#, kde-format
msgid "Sys&tem:"
msgstr ""
-#. i18n: ectx: property (text), widget (QLabel, TextLabel5)
-#. +> stable
-#: projects/base_k3bdatavolumedescwidget.ui:169
-#, kde-format
-msgid "S&ystem:"
-msgstr ""
-
#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:18
#, kde-format
msgid "Playback Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:24
#, kde-format
msgid "MPlayer subtitle fontset:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboSubtitleFontset)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:34
#, kde-format
msgid "Select the font to be used to render subtitles"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:44
#, kde-format
msgid "Unwanted MPlayer options:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkRandomPlay)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:56
#, kde-format
msgid "The files are played in random order"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkRandomPlay)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:59
#, kde-format
msgid "<p>If this option is checked the order in which the files are played is determined randomly every time it is played."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkRandomPlay)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:62
#, kde-format
msgid "Pla&y files randomly"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkNoDma)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:69
#, kde-format
msgid "Do not use DMA for media access"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkNoDma)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:72
#, kde-format
msgid "<p>If this option is checked the resulting eMovix CD/DVD will not use DMA for accessing the drive. This will slow down reading from the CD/DVD but may be necessary on some systems that do not support DMA.</p>"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkNoDma)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:75
#, kde-format
msgid "&Do not use DMA"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, m_editUnwantedMplayerOptions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:84
#, kde-format
msgid "MPlayer options you want to be sure MPlayer will not use"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLineEdit, m_editUnwantedMplayerOptions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:89
#, kde-format
msgid ""
"<p>Here one can specify MPlayer options that should never be used.\n"
"<p>They have to be separated by spaces:\n"
"<pre>opt1 opt2 opt3</pre>"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QLineEdit, m_editAdditionalMplayerOptions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:96
#, kde-format
msgid "Additional MPlayer options"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QLineEdit, m_editAdditionalMplayerOptions)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:101
#, kde-format
msgid ""
"<p>MPlayer options that should be used in any case.\n"
"<p>They have to be separated by spaces:\n"
"<pre>opt1 opt2 opt3</pre>"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:108
#, kde-format
msgid "Additional MPlayer options:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:118
#, kde-format
msgid "Loop playlist:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QSpinBox, m_spinLoop)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:128
#, kde-format
msgid "How many times should the playlist be looped"
msgstr ""
#. i18n: ectx: property (specialValueText), widget (QSpinBox, m_spinLoop)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:131
#, kde-format
msgid "infinity"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, m_spinLoop)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:134
#: projects/k3bvcdtrackdialog.cpp:475
#, kde-format
msgid " time(s)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelAudioBackground)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:144
#, kde-format
msgid "Audio Player Background:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboAudioBackground)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:154
#, kde-format
msgid "Background video to show during audio playback"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KComboBox, m_comboAudioBackground)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:159
#, kde-format
msgid ""
"<p><b>Audio Player Background</b>\n"
"<p>During audio playback normally the screen would be black. However, if a background movie has been selected, eMovix will display it during playback.\n"
"<p>Additional background movies can be installed. However, this is not as simple as a few mouse clicks. The background movies are stored in the emovix shared data folder (mostly <i>/usr/share/emovix</i> or <i>/usr/local/share/emovix</i>) under <em>backgrounds</em>. So to add a background one has to copy the file to that folder."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:169
#, kde-format
msgid "Startup Behavior"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelKeyboardLayout)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:175
#, kde-format
msgid "Keyboard Layout:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:185
#, kde-format
msgid "eMovix boot message language:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboBootMessageLanguage)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:195
#, kde-format
msgid "Select the language of the eMovix help screens"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:202
#, kde-format
msgid "Default boot label:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboDefaultBootLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:212
#, kde-format
msgid "Select the default Linux kernel configuration"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KComboBox, m_comboDefaultBootLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:222
#, kde-format
msgid ""
"<p><b>eMovix Boot Labels</b>\n"
"<p>eMovix provides a variety of different boot configurations which can be selected at boot time via a boot label (comparable to Lilo or Grub). The many different boot configurations mainly influence the Video output.\n"
"<p>The <b>default</b>, <b>movix</b>, or <b>MoviX</b> labels start a general Vesa video driver.\n"
"<p>The <b>TV</b> labels can be used to direct video to the TV output of the graphic board. eMovix provides TVout drivers for different brands of graphic boards.\n"
"<p>The <b>FB</b> labels refer to configurations that start a Frame Buffer driver in different screen resolutions.\n"
"<p>The <b>AA</b> labels make eMovix output the video through the ASCII-Art library which displays the picture in text mode through the usage of simple ASCII characters.\n"
"<p>The <b>hd</b> label makes eMovix boot from the local harddisk instead of the medium. This can be used to prevent accidental starting of an eMovix medium.\n"
"<p>The <b>floppy</b> label makes eMovix boot from the local floppy drive instead of the medium."
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboKeyboardLayout)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:229
#, kde-format
msgid "Select the layout of the keyboard"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (KComboBox, m_comboKeyboardLayout)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:232
#, kde-format
msgid "<p>The keyboard layout selected here will be used for eMovix commands such as controlling the media player."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:248
#, kde-format
msgid "Behavior After Playing"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkEject)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:254
#, kde-format
msgid "Eject the disk after playing has finished"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkEject)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:257
#, kde-format
msgid "<p>If this option is checked the disk will be ejected after MPlayer has finished."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkEject)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:260
#, kde-format
msgid "E&ject disk"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkShutdown)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:267
#, kde-format
msgid "Shutdown after playing has finished"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkShutdown)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:270
#, kde-format
msgid "<p>If this option is checked the PC will be shut down after MPlayer has finished playing."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkShutdown)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:273
#, kde-format
msgid "Sh&utdown"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkReboot)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:280
#, kde-format
msgid "Reboot after playing has finished"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkReboot)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:283
#, kde-format
msgid "<p>If this option is checked the PC will be rebooted after MPlayer has finished playing."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkReboot)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/base_k3bmovixoptionswidget.ui:286
#, kde-format
msgid "Re&boot"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:61 projects/k3bmixedburndialog.cpp:62
#, kde-format
msgid "1 track (%2 minutes)"
msgid_plural "%1 tracks (%2 minutes)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:81
#, kde-format
msgid "Gimmicks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:82
#, kde-format
msgid "Hide first track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:86
#, kde-format
msgid "Audio Ripping"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:93 rip/k3baudiorippingdialog.cpp:179
#, kde-format
msgid "Ignore read errors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:114
#, kde-format
msgid "Hide the first track in the first pregap"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:119
#, kde-format
msgid ""
"<p>If this option is checked K3b will <em>hide</em> the first track."
"<p>The audio CD standard uses pregaps before every track on the CD. By default these last for 2 seconds and are silent. In DAO mode it is possible to have longer pregaps that contain some audio. In this case the first pregap will contain the complete first track."
"<p>You will need to seek back from the beginning of the CD to listen to the first track. Try it, it is quite amusing."
"<p><b>This feature is only available in DAO mode when writing with cdrdao."
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:129 projects/k3baudioburndialog.cpp:130
#, kde-format
msgid "Rip Audio"
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:131
#, kde-format
msgid "Only Rip Audio"
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:132
#, kde-format
msgid "Use the 'Rip Audio' tab to optionally adjust the path of the audio."
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:133
#, kde-format
msgid "Wri&te Rip Audio files to:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:292 projects/k3bmixedburndialog.cpp:287
#, kde-format
msgid ""
"<p><b>External program <em>normalize</em> is not installed.</b>"
"<p>K3b uses <em>normalize</em> (http://normalize.nongnu.org/) to normalize audio tracks. In order to use this functionality, please install it first."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:299 projects/k3baudioburndialog.cpp:318
#: projects/k3bmixedburndialog.cpp:294 projects/k3bmixedburndialog.cpp:313
#, kde-format
msgid "<p>K3b is not able to normalize audio tracks when burning on-the-fly. The external program used for this task only supports normalizing a set of audio files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:303 projects/k3baudioburndialog.cpp:322
#: projects/k3bmixedburndialog.cpp:298 projects/k3bmixedburndialog.cpp:317
#, kde-format
msgid "Disable normalization"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioburndialog.cpp:304 projects/k3baudioburndialog.cpp:323
#: projects/k3bmixedburndialog.cpp:299 projects/k3bmixedburndialog.cpp:318
#, kde-format
msgid "Disable on-the-fly burning"
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudiodatasourceeditwidget.cpp:37
#, kde-format
msgid "Start Offset:"
msgstr ""
-#. +> stable
-#: projects/k3baudiodatasourceeditwidget.cpp:38
-#, kde-format
-msgid "Start Offset"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3baudiodatasourceeditwidget.cpp:38
#, kde-format
msgid "End Offset:"
msgstr ""
-#. +> stable
-#: projects/k3baudiodatasourceeditwidget.cpp:39
-#, kde-format
-msgid "End Offset"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiodatasourceeditwidget.cpp:61
#, kde-format
msgid "Drag the edges of the highlighted area to define the portion of the audio source you want to include in the Audio CD track. You can also use the input windows to fine-tune your selection."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiodatasourceeditwidget.cpp:101
#, kde-format
msgid "Used part of the audio source"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:299 rip/k3baudiotrackmodel.cpp:161
#, kde-format
msgctxt "audio track number"
msgid "No."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:301
#, kde-format
msgid "Artist (CD-Text)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:303
#, kde-format
msgid "Title (CD-Text)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:305
#, kde-format
msgctxt "audio type like mp3 or whatever"
msgid "Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:307
#, kde-format
msgctxt "audio track length"
msgid "Length"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioprojectmodel.cpp:309 projects/k3bvcdtrackdialog.cpp:390
#: rip/k3baudiorippingdialog.cpp:140 rip/videodvd/k3bvideodvdaudiomodel.cpp:261
#, kde-format
msgid "Filename"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:54
#, kde-format
msgid "Please be patient..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:57
#, kde-format
msgid "Adding files to project \"%1\"..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:80
#: projects/k3bdataurladdingdialog.cpp:801
#, kde-format
msgid "Insufficient permissions to read the following files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:84
#: projects/k3bdataurladdingdialog.cpp:805
#, kde-format
msgid "Unable to find the following files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:88
#: projects/k3bdataurladdingdialog.cpp:809
#, kde-format
msgid "No non-local files supported"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:92
#, kde-format
msgid "Unable to handle the following files due to an unsupported format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:93
#, kde-format
msgid "You may manually convert these audio files to wave using another application supporting the audio format and then add the wave files to the K3b project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:99
#: projects/k3bdataurladdingdialog.cpp:135
#, kde-format
msgid "Problems while adding files to the project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackaddingdialog.cpp:153
#, kde-format
msgid "Analysing file '%1'..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackdialog.cpp:47
#, kde-format
msgid "Audio Track Properties"
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:86
#, kde-format
msgid "Playing track %1: %2 - %3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:147 projects/k3baudiotrackplayer.cpp:148
#, kde-format
msgid "Play"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:149 projects/k3baudiotrackplayer.cpp:151
#, kde-format
msgid "Pause"
msgstr ""
-#. +> stable
-#: projects/k3baudiotrackplayer.cpp:129
-#, kde-format
-msgid "Play/Pause"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:152 projects/k3baudiotrackplayer.cpp:154
#, kde-format
msgid "Stop"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:155 projects/k3baudiotrackplayer.cpp:157
#, kde-format
msgid "Next"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotrackplayer.cpp:158 projects/k3baudiotrackplayer.cpp:160
#, kde-format
msgid "Previous"
msgstr ""
-#. +> stable
-#: projects/k3baudiotrackplayer.cpp:148
-#, kde-format
-msgid "Prev"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracksplitdialog.cpp:40
#, kde-format
msgid "Split Audio Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracksplitdialog.cpp:49
#, kde-format
msgid "Please select the position where the track should be split."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracksplitdialog.cpp:54
#, kde-format
msgid "Split track at:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracksplitdialog.cpp:102
#, kde-format
msgid "Split Here"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracksplitdialog.cpp:106
#, kde-format
msgid "Remove part"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracktrmlookupdialog.cpp:45
#: projects/k3bmusicbrainzjob.cpp:124
#, kde-format
msgid "MusicBrainz Query"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudiotracktrmlookupdialog.cpp:124
#, kde-format
msgid "Track %1 was not found in the MusicBrainz database."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:84
#, kde-format
msgid "Add Silence..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:86
#, kde-format
msgid "Merge Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:88
#, kde-format
msgid "Source to Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:90
#, kde-format
msgid "Split Track..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:92
#, kde-format
msgid "Edit Source..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:94
#, kde-format
msgid "Play Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:96 projects/k3baudioviewimpl.cpp:99
#, kde-format
msgid "Musicbrainz Lookup"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:98 projects/k3baudioviewimpl.cpp:101
#, kde-format
msgid "Try to determine meta information over the Internet"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:102 projects/k3bdataviewimpl.cpp:134
#: projects/k3bmovixview.cpp:64 projects/k3bvcdview.cpp:60
#, kde-format
msgid "Properties"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:107
#, kde-format
msgid "Convert Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:200
#, kde-format
msgid "Add Silence"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:204
#, kde-format
msgid "Length of silence:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:301
#, kde-format
msgid "Edit Audio Track Source"
msgstr ""
#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:361
#, kde-format
msgid "Please add an audio track."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:385
#, kde-format
msgid "Please select an audio track."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:449 projects/k3bdataview.cpp:122
#: projects/k3bview.cpp:89
#, kde-format
msgid "Please add files to your project first."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3baudioviewimpl.cpp:450
#, kde-format
msgid "No tracks to convert"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:43
#, kde-format
msgid "Boot Images"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:90
#, kde-format
msgid "Hide Advanced Options"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:94
#, kde-format
msgid "Show Advanced Options"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:101
#, kde-format
msgid "Please Choose Boot Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:109
#, kde-format
msgid ""
"<p>The file you selected is not a floppy image (floppy images are of size 1200 KB, 1440 KB, or 2880 KB). You may still use boot images of other sizes by emulating a harddisk or disabling emulation completely. "
"<p>If you are not familiar with terms like 'harddisk emulation' you most likely want to use a floppy image here. Floppy images can be created by directly extracting them from a real floppy disk:"
"<pre>dd if=/dev/floppy of=/tmp/floppy.img</pre>"
"or by using one of the many boot floppy generators that can be found on <a href=\"http://www.google.com/search?q=linux+boot+floppy&ie=UTF-8&oe=UTF-8\">the Internet</a>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:118
#, kde-format
msgid "No Floppy image selected"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:119
#, kde-format
msgid "Use harddisk emulation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagedialog.cpp:120
#, kde-format
msgid "Use no emulation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagemodel.cpp:81
#, kde-format
msgid "Floppy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagemodel.cpp:82
#, kde-format
msgid "Harddisk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagemodel.cpp:121 rip/k3bvideocdview.cpp:203
#, kde-format
msgid "Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bbootimagemodel.cpp:122
#, kde-format
msgid "Local Path"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataadvancedimagesettingsdialog.cpp:32
#, kde-format
msgid "Custom Data Project Filesystems"
msgstr ""
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:73
-#, kde-format
-msgid "Set special ISO9660 Filesystem preferences."
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:80
-#, kde-format
-msgid "IS09660 Settings"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:97
-#, kde-format
-msgid "Allow untranslated ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:100
-#, kde-format
-msgid "Allow max length ISO9660 filenames (37 characters)"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:103
-#, kde-format
-msgid "Allow full ASCII charset for ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:106
-#, kde-format
-msgid "Allow ~ and # in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:109
-#, kde-format
-msgid "Allow lowercase characters in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:112
-#, kde-format
-msgid "Allow multiple dots in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:115
-#, kde-format
-msgid "Allow 31 character ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:118
-#, kde-format
-msgid "Allow leading period in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:121
-#, kde-format
-msgid "Omit version numbers in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:124
-#, kde-format
-msgid "Omit trailing period in ISO9660 filenames"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:130
-#, kde-format
-msgid "ISO Level"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:133
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:136
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:139
-#, kde-format
-msgid "Level %1"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataadvancedimagesettingsdialog.cpp:289
-#, kde-format
-msgid ""
-"<p>Set the ISO-9660 conformance level.\n"
-"<ul>\n"
-"<li>Level 1: Files may only consist of one section and filenames are restricted to 8.3 characters.</li>"
-"\n"
-"<li>Level 2: Files may only consist of one section.</li>"
-"\n"
-"<li>Level 3: No restrictions.</li>"
-"\n"
-"</ul>"
-"\n"
-"<p>With all ISO-9660 levels, all filenames are restricted to upper case letters, numbers and the underscore (_). The maximum filename length is 31 characters, the directory nesting level is restricted to 8 and the maximum path length is limited to 255 characters. (These restrictions may be violated with the additional ISO-9660 features K3b offers.)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:66
#, kde-format
msgid "Data Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:66 projects/k3bvideodvdburndialog.cpp:47
#, kde-format
msgid "Size: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:77 projects/k3bmixedburndialog.cpp:74
#: projects/k3bmovixburndialog.cpp:63 projects/k3bvideodvdburndialog.cpp:60
#, kde-format
msgid "Filesystem"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:152 projects/k3bmixedburndialog.cpp:92
#: projects/k3bmovixburndialog.cpp:98
#, kde-format
msgid "Datatrack Mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:157
#, kde-format
msgid "Multisession Mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:195 projects/k3bmovixburndialog.cpp:226
#, kde-format
msgid "Most writers do not support writing multisession CDs in DAO mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:258
#, kde-format
msgid "It is not possible to write multisession media in DAO mode. Multisession has been disabled."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataburndialog.cpp:260
#, kde-format
msgid "Multisession Problem"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:40
#, kde-format
msgid "Linux/Unix only"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:41
#, kde-format
msgid "Linux/Unix + Windows"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:42
#, kde-format
msgid "Very large files (UDF)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:43
#, kde-format
msgid "DOS Compatibility"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:44
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:70
#, kde-format
msgid "Custom"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:96
#, kde-format
msgctxt "This is the default volume identifier of a data project created by K3b. The string should not be longer than 16 characters to avoid warnings regarding Joiliet extensions which induce this restriction."
msgid "K3b data project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:150
#, kde-format
msgid ""
"<p><b>File System Presets</b>"
"<p>K3b provides the following file system Presets which allow for a quick selection of the most frequently used settings."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:154
#, kde-format
msgid "The file system is optimized for usage on Linux/Unix systems. This mainly means that it uses the Rock Ridge extensions to provide long filenames, symbolic links, and POSIX compatible file permissions."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:158
#, kde-format
msgid "In addition to the settings for Linux/Unix the file system contains a Joliet tree which allows for long file names on Windows which does not support the Rock Ridge extensions. Be aware that the file name length is restricted to 103 characters."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:162
#, kde-format
msgid "The file system has additional UDF entries attached to it. This raises the maximal file size to 4 GB. Be aware that the UDF support in K3b is limited."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:165
#, kde-format
msgid "The file system is optimized for compatibility with old systems. That means file names are restricted to 8.3 characters and no symbolic links or file permissions are supported."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:220
#, kde-format
msgid "Rock Ridge"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:222
#, kde-format
msgid "Joliet"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:224
#, kde-format
msgid "UDF"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:226
#, kde-format
msgid "Custom (ISO 9660 only)"
msgstr ""
-#. +> stable
-#: projects/k3bdataimagesettingswidget.cpp:222
-#, kde-format
-msgid "Custom (ISO9660 only)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:228
#, kde-format
msgid "Custom (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:245
#, kde-format
msgid ""
"<p>Be aware that it is not recommended to disable the Rock Ridge Extensions. There is no disadvantage in enabling Rock Ridge (except for a very small space overhead) but a lot of advantages."
"<p>Without Rock Ridge Extensions symbolic links are not supported and will always be followed as if the \"Follow Symbolic Links\" option was enabled."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:251
#, kde-format
msgid "Rock Ridge Extensions Disabled"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:257
#, kde-format
msgid ""
"<p>Be aware that without the Joliet extensions Windows systems will not be able to display long filenames. You will only see the ISO 9660 filenames."
"<p>If you do not intend to use the CD/DVD on a Windows system it is safe to disable Joliet."
msgstr ""
-#. +> stable
-#: projects/k3bdataimagesettingswidget.cpp:253
-#, kde-format
-msgid ""
-"<p>Be aware that without the Joliet extensions Windows systems will not be able to display long filenames. You will only see the ISO9660 filenames."
-"<p>If you do not intend to use the CD/DVD on a Windows system it is safe to disable Joliet."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataimagesettingswidget.cpp:262
#, kde-format
msgid "Joliet Extensions Disabled"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:36
#, kde-format
msgid "Select the Multisession Mode for the project."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:37
#, kde-format
msgid ""
"<p><b>Multisession Mode</b>"
"<p><b>Auto</b><br>"
"Let K3b decide which mode to use. The decision will be based on the size of the project (does it fill the whole media) and the state of the inserted media (appendable or not)."
"<p><b>No Multisession</b><br>"
"Create a single-session CD or DVD and close the disk."
"<p><b>Start Multisession</b><br>"
"Start a multisession CD or DVD, not closing the disk to allow further sessions to be appended."
"<p><b>Continue Multisession</b><br>"
"Continue an appendable data CD (as for example created in <em>Start Multisession</em> mode) and add another session without closing the disk to allow further sessions to be appended."
"<p><b>Finish Multisession</b><br>"
"Continue an appendable data CD (as for example created in <em>Start Multisession</em> mode), add another session, and close the disk."
"<p><em>In the case of DVD+RW and DVD-RW restricted overwrite media K3b will not actually create multiple sessions but grow the file system to include the new data.</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:74
#, kde-format
msgid "No Multisession"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:76
#, kde-format
msgid "Start Multisession"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:77
#, kde-format
msgid "Continue Multisession"
msgstr ""
-#. +> stable
-#: projects/k3bdatamultisessioncombobox.cpp:77
-#, kde-format
-msgid "Continue Multisession "
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bdatamultisessioncombobox.cpp:78
#, kde-format
msgid "Finish Multisession"
msgstr ""
-#. +> stable
-#: projects/k3bdatamultisessioncombobox.cpp:78
-#, kde-format
-msgid "Finish Multisession "
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:100
#, kde-format
msgid ""
"<p>K3b found session containing Joliet information for long filenames but no Rock Ridge extensions."
"<p>The filenames in the imported session will be converted to a restricted character set in the new session. This character set is based on the ISO 9660 settings in the K3b project. K3b is not able to display these converted filenames yet."
msgstr ""
-#. +> stable
-#: projects/k3bdatamultisessionimportdialog.cpp:98
-#, kde-format
-msgid ""
-"<p>K3b found session containing Joliet information for long filenames but no Rock Ridge extensions."
-"<p>The filenames in the imported session will be converted to a restricted character set in the new session. This character set is based on the ISO9660 settings in the K3b project. K3b is not able to display these converted filenames yet."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:105
#, kde-format
msgid "Session Import Warning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:165
#, kde-format
msgid "Please insert an appendable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:212
#, kde-format
msgid "1 audio track"
msgid_plural "%1 audio tracks"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:257
#, kde-format
msgid "Session Import"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatamultisessionimportdialog.cpp:260
#, kde-format
msgid "Please select a session to import."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataprojectmodel.cpp:189
#, kde-format
msgctxt "Symlink target shown in status bar"
msgid "Link to %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataprojectmodel.cpp:259
#, kde-format
msgctxt "file name"
msgid "Name"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataprojectmodel.cpp:261
#, kde-format
msgctxt "file type"
msgid "Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataprojectmodel.cpp:263
#, kde-format
msgctxt "file size"
msgid "Size"
msgstr ""
-#. +> stable
-#: projects/k3bdataprojectmodel.cpp:282
-#, kde-format
-msgid "outside of project"
-msgstr ""
-
-#. +> stable
-#: projects/k3bdataprojectmodel.cpp:310
-#, kde-format
-msgctxt "symbolic link target"
-msgid "Link"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:44
#, kde-format
msgid "File Properties"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:88
#, kde-format
msgid "Location:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:90 projects/k3bvcdtrackdialog.cpp:393
#, kde-format
msgid "Size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:92
#, kde-format
msgid "Used blocks:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:101
#, kde-format
msgid "Local name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:104
#, kde-format
msgid "Local location:"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:107
#, kde-format
msgid "Local link target:"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:128
#, kde-format
msgid "Hide on RockRidge"
msgstr ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:129
-#, kde-format
-msgid "Hide on Rockridge"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:129
#, kde-format
msgid "Hide on Joliet"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:141
#, kde-format
msgid "Sort weight:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:160
#, kde-format
msgid "Hide this file in the RockRidge filesystem"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:161
#, kde-format
msgid "Hide this file in the Joliet filesystem"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:162
#, kde-format
msgid "Modify the physical sorting"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:163
#, kde-format
msgid ""
"<p>If this option is checked, the file or folder (and its entire contents) will be hidden on the ISO 9660 and RockRidge filesystem.</p>"
"<p>This is useful, for example, for having different README files for RockRidge and Joliet, which can be managed by hiding README.joliet on RockRidge and README.rr on the Joliet filesystem.</p>"
msgstr ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:164
-#, kde-format
-msgid ""
-"<p>If this option is checked, the file or folder (and its entire contents) will be hidden on the ISO9660 and RockRidge filesystem.</p>"
-"<p>This is useful, for example, for having different README files for RockRidge and Joliet, which can be managed by hiding README.joliet on RockRidge and README.rr on the Joliet filesystem.</p>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:170
#, kde-format
msgid ""
"<p>If this option is checked, the file or folder (and its entire contents) will be hidden on the Joliet filesystem.</p>"
"<p>This is useful, for example, for having different README files for RockRidge and Joliet, which can be managed by hiding README.joliet on RockRidge and README.rr on the Joliet filesystem.</p>"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:177
#, kde-format
msgid ""
"<p>This value modifies the physical sort order of the files in the ISO 9660 filesystem. A higher weighting means that the file will be located closer to the beginning of the image (and the disk)."
"<p>This option is useful in order to optimize the data layout on a medium."
"<p><b>Caution:</b> This does not sort the order of the file names that appear in the ISO 9660 folder. It sorts the order in which the file data is written to the image."
msgstr ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:178
-#, kde-format
-msgid ""
-"<p>This value modifies the physical sort order of the files in the ISO9660 filesystem. A higher weighting means that the file will be located closer to the beginning of the image (and the disk)."
-"<p>This option is useful in order to optimize the data layout on a medium."
-"<p><b>Caution:</b> This does not sort the order of the file names that appear in the ISO9660 folder. It sorts the order in which the file data is written to the image."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:208
#: projects/k3bmovixprojectmodel.cpp:271
#, kde-format
msgid "Link to %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:223
#, kde-format
msgid "Folder"
msgstr ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:298
-#, kde-format
-msgid "1 Folder"
-msgid_plural "%1 Folders"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:232
#, kde-format
msgid "in one file"
msgid_plural "in %1 files"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:223
-#, kde-format
-msgid "in 1 file"
-msgid_plural "in %1 files"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:233
#, kde-format
msgid "and one folder"
msgid_plural "and %1 folders"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:224
-#, kde-format
-msgid "and 1 folder"
-msgid_plural "and %1 folders"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:237
#, kde-format
msgid "Special file"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:301
#, kde-format
msgid "One Item"
msgid_plural "%1 Items"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:290
-#, kde-format
-msgid "1 Item"
-msgid_plural "%1 Items"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:304
#, kde-format
msgid "One File"
msgid_plural "%1 Files"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:306
#, kde-format
msgid "No Files"
msgstr ""
-#. +> stable
-#: projects/k3bdatapropertiesdialog.cpp:293
-#, kde-format
-msgid "1 File"
-msgid_plural "%1 Files"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:309
#, kde-format
msgid "One Folder"
msgid_plural "%1 Folders"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5 stable5
#: projects/k3bdatapropertiesdialog.cpp:311
#, kde-format
msgid "No Folders"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:69
#, kde-format
msgid "Moving files to project \"%1\"..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:100
#, kde-format
msgid "Adding files to project '%1'"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:106
#, kde-format
msgid "Adding files to project '%1'..."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:187
#, kde-format
msgid ""
"<p>The file you are about to add to the project is an ISO 9660 image. As such it can be burned to a medium directly since it already contains a file system.<br>"
"Are you sure you want to add this file to the project?"
msgstr ""
-#. +> stable
-#: projects/k3bdataurladdingdialog.cpp:197
-#, kde-format
-msgid ""
-"<p>The file you are about to add to the project is an ISO9660 image. As such it can be burned to a medium directly since it already contains a file system.<br>"
-"Are you sure you want to add this file to the project?"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:191
#, kde-format
msgid "Adding image file to project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:192
#, kde-format
msgid "Add the file to the project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:193
#, kde-format
msgid "Burn the image directly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:388
#: projects/k3bdataurladdingdialog.cpp:620
#, kde-format
msgid "File already exists"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:389
#: projects/k3bdataurladdingdialog.cpp:621
#, kde-format
msgid "<p>File <em>%1</em> already exists in project folder <em>%2</em>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:398
#: projects/k3bdataurladdingdialog.cpp:630
#, kde-format
msgid "Replace the existing file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:399
#: projects/k3bdataurladdingdialog.cpp:631
#, kde-format
msgid "Replace All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:401
#: projects/k3bdataurladdingdialog.cpp:633
#, kde-format
msgid "Always replace existing files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:404
#: projects/k3bdataurladdingdialog.cpp:636
#, kde-format
msgid "Keep the existing file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:405
#: projects/k3bdataurladdingdialog.cpp:637
#, kde-format
msgid "Ignore All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:407
#: projects/k3bdataurladdingdialog.cpp:639
#, kde-format
msgid "Always keep the existing file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:408
#: projects/k3bdataurladdingdialog.cpp:640 projects/k3bdataviewimpl.cpp:123
#, kde-format
msgid "Rename"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:410
#: projects/k3bdataurladdingdialog.cpp:642
#, kde-format
msgid "Rename the new file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:451
#, kde-format
msgid "Adding link to folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:452
#, kde-format
msgid ""
"<p>'%1' is a symbolic link to folder '%2'."
"<p>If you intend to make K3b follow symbolic links you should consider letting K3b do this now since K3b will not be able to do so afterwards because symbolic links to folders inside a K3b project cannot be resolved."
"<p><b>If you do not intend to enable the option <em>follow symbolic links</em> you may safely ignore this warning and choose to add the link to the project.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:463
#, kde-format
msgid "Follow link now"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:464
#, kde-format
msgid "Always follow links"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:465
#, kde-format
msgid "Add link to project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:466
#, kde-format
msgid "Always add links"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:751
#, kde-format
msgid "Enter New Filename"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:752
#, kde-format
msgid "A file with that name already exists. Please enter a new name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:769
#, kde-format
msgid "Do you also want to add hidden files?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:770
#, kde-format
msgid "Hidden Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:770
#: projects/k3bdataurladdingdialog.cpp:786
#, kde-format
msgid "Do Not Add"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:784
#, kde-format
msgid "Do you also want to add system files (FIFOs, sockets, device files, and broken symlinks)?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:786
#, kde-format
msgid "System Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:813
#, kde-format
msgid "To burn files bigger than %1 please use %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:818
#, kde-format
msgid "Some filenames had to be modified due to limitations in mkisofs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataurladdingdialog.cpp:822
#, kde-format
msgid "The following filenames have an invalid encoding. You may fix this with the convmv tool"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataview.cpp:123 projects/k3bmixedview.cpp:134
#: projects/k3bview.cpp:90
#, kde-format
msgid "No Data to Burn"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:111
#, kde-format
msgid "New Folder..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:129
#, kde-format
msgid "Parent Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:140
#, kde-format
msgid "Open"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:144
#, kde-format
msgid "&Import Session..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:145
#, kde-format
msgid "Import a previously burned session into the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:149
#, kde-format
msgid "&Clear Imported Session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:150
#, kde-format
msgid "Remove the imported items from a previous session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:155
#, kde-format
msgid "&Edit Boot Images..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:156
#, kde-format
msgid "Modify the bootable settings of the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:219 projects/k3bdataviewimpl.cpp:222
#: projects/k3bdataviewimpl.cpp:227 projects/k3bdataviewimpl.cpp:231
#, kde-format
msgid "New Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:220
#, kde-format
msgid "Please insert the name for the new folder:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:228
#, kde-format
msgid "A file with that name already exists. Please insert the name for the new folder:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bdataviewimpl.cpp:384
#, kde-format
msgid "Edit Boot Images"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:189
#, kde-format
msgid "Available: %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:197
#, kde-format
msgid "Capacity exceeded by %1"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:378
#, kde-format
msgid "Set medium size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:410
#, kde-format
msgid "Minutes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:412
#, kde-format
msgid "Megabytes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:415
#, kde-format
msgid "Automatic Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:417 projects/k3bfillstatusdisplay.cpp:419
#: projects/k3bfillstatusdisplay.cpp:421 projects/k3bfillstatusdisplay.cpp:501
#: projects/k3bfillstatusdisplay.cpp:502 projects/k3bfillstatusdisplay.cpp:503
#, kde-format
msgid "%1 MB"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:433
#, kde-format
msgid "Custom..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:435
#, kde-format
msgid "From Medium..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:453
#, kde-format
msgid "User Defaults"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:456
#, kde-format
msgid "Save User Defaults"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:460
#, kde-format
msgid "Why 4.4 instead of 4.7?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:464
#, kde-format
msgid "Show Size In"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:470
#, kde-format
msgid "CD Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:476
#, kde-format
msgid "DVD Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:482
#, kde-format
msgid "Blu-ray Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:513 projects/k3bfillstatusdisplay.cpp:514
#: projects/k3bfillstatusdisplay.cpp:515
#, kde-format
msgid "unused"
msgid_plural "%1 minutes"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:573
#, kde-format
msgid ""
"<p><b>Why does K3b offer 4.4 GB and 8.0 GB instead of 4.7 and 8.5 like it says on the media?</b>"
"<p>A single layer DVD media has a capacity of approximately 4.4 GB which equals 4.4*1024<sup>3</sup> bytes. Media producers just calculate with 1000 instead of 1024 for advertising reasons.<br>"
"This results in 4.4*1024<sup>3</sup>/1000<sup>3</sup> = 4.7 GB."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:586
#, kde-format
msgid "GB"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:588
#, kde-format
msgid "min"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:605
#, kde-format
msgid "Custom Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:606
#, kde-format
msgid "<p>Please specify the size of the medium. Use suffixes <b>GB</b>,<b>MB</b>, and <b>min</b> for <em>gigabytes</em>, <em>megabytes</em>, and <em>minutes</em> respectively."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:664
#, kde-format
msgid "Medium is not empty."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:667
#, kde-format
msgid "No usable medium found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bfillstatusdisplay.cpp:856
#, kde-format
msgid "Right click for media sizes"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:62
#, kde-format
msgid "Mixed Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:98
#, kde-format
msgid "Mixed Mode Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:102
#, kde-format
msgid "Data in second session (CD-Extra)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:103
#, kde-format
msgid ""
"<em>Blue book CD</em><br>"
"K3b will create a multisession CD with 2 sessions. The first session will contain all audio tracks and the second session will contain a mode 2 form 1 data track.<br>"
"This mode is based on the <em>Blue book</em> standard (also known as <em>Extended Audio CD</em>, <em>CD-Extra</em>, or <em>CD Plus</em>) and has the advantage that a hifi audio CD player will only recognize the first session and ignore the second session with the data track.<br>"
"If the CD is intended to be used in a hifi audio CD player this is the recommended mode.<br>"
"Some older CD-ROMs may have problems reading a blue book CD since it is a multisession CD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:119
#, kde-format
msgid "Data in first track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:120
#, kde-format
msgid "K3b will write the data track before all audio tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:123
#, kde-format
msgid "Data in last track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:124
#, kde-format
msgid "K3b will write the data track after all audio tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedburndialog.cpp:127
#, kde-format
msgid ""
"<b>Caution:</b> The last two modes should only be used for CDs that are unlikely to be played on a hifi audio CD player.<br>"
"It could lead to problems with some older hifi audio CD players that try to play the data track."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedview.cpp:56
#, kde-format
msgid "Audio Section"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedview.cpp:57
#, kde-format
msgid "Data Section"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmixedview.cpp:133
#, kde-format
msgid "Please add files and audio titles to your project first."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixburndialog.cpp:55
#, kde-format
msgid "eMovix Project"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bmovixburndialog.cpp:56
#, kde-format
msgid "One file (%2)"
msgid_plural "%1 files (%2)"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/k3bmovixburndialog.cpp:57
-#, kde-format
-msgid "1 file (%2)"
-msgid_plural "%1 files (%2)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixburndialog.cpp:59
#, kde-format
msgid "eMovix"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixburndialog.cpp:103
#, kde-format
msgid "Multisession"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixburndialog.cpp:199
#, kde-format
msgid "Could not find a valid eMovix installation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixoptionswidget.cpp:45 projects/k3bmovixoptionswidget.cpp:57
#, kde-format
msgid "default"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:297
#, kde-format
msgid "%1 (broken)"
msgstr ""
-#. +> stable
-#: projects/k3bmovixprojectmodel.cpp:296
-#, kde-format
-msgid " (broken)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:314
#, kde-format
msgctxt "Movix File Position"
msgid "No."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:316
#, kde-format
msgctxt "Movix File Title"
msgid "Title"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:318
#, kde-format
msgctxt "Movix File Type(ie. MPEG)"
msgid "Type"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:320
#, kde-format
msgctxt "Movix File Size"
msgid "Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:322
#, kde-format
msgctxt "Movix File Path"
msgid "Local Path"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixprojectmodel.cpp:324
#, kde-format
msgctxt "Movix File Link"
msgid "Link"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixview.cpp:70
#, kde-format
msgid "Remove Subtitle File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixview.cpp:73
#, kde-format
msgid "Add Subtitle File..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmovixview.cpp:156
#, kde-format
msgid "K3b currently only supports local files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmusicbrainzjob.cpp:125
#, kde-format
msgid "Found multiple matches for track %1 (%2). Please select one."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmusicbrainztrackloopupjob.cpp:80
#, kde-format
msgid "Generating fingerprint for track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bmusicbrainztrackloopupjob.cpp:119
#, kde-format
msgid "Querying MusicBrainz for track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:66
#, kde-format
msgid "Use the 'Image' tab to optionally adjust the path of the image."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:71
#, kde-format
msgid "Save Settings and close"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:72
#, kde-format
msgid "Saves the settings to the project and closes the dialog."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:75
#, kde-format
msgid "Discard all changes and close"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:76
#, kde-format
msgid "Discards all changes made in the dialog and closes it."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:148
#, kde-format
msgid "Start the image creation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:150
#, kde-format
msgid "Burn"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:151
#, kde-format
msgid "Start the burning process"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:194 rip/k3bvideocdrippingdialog.cpp:150
#, kde-format
msgid "Image folder '%1' does not exist. Do you want K3b to create it?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:197 rip/k3bvideocdrippingdialog.cpp:153
#, kde-format
msgid "Failed to create folder '%1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:257
#, kde-format
msgid "Writing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bprojectburndialog.cpp:300
#, kde-format
msgid "Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:62
#, kde-format
msgid "Video CD (Version 1.1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:65
#, kde-format
msgid "Video CD (Version 2.0)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:68 projects/k3bvcdburndialog.cpp:399
#, kde-format
msgid "Super Video CD"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:397
-#, kde-format
-msgid "Super-VideoCD"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:71
#, kde-format
msgid "High-Quality Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:74 rip/k3bvideocdrippingoptions.h:31
#: rip/k3bvideocdview.cpp:356
#, kde-format
msgid "Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:77
#, kde-format
msgid "1 MPEG (%2)"
msgid_plural "%1 MPEGs (%2)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:103 projects/k3bvcdburndialog.cpp:104
#: projects/k3bvcdburndialog.cpp:105 projects/k3bvcdburndialog.cpp:106
#, kde-format
msgid "Select Video CD type %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:107
#, kde-format
msgid "Automatic video type recognition."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:108
#, kde-format
msgid "Non-compliant compatibility mode for broken devices"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:109
#, kde-format
msgid "Chinese VCD3.0 track interpretation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:110
#, kde-format
msgid "Use 2336 byte sectors for output"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:112
#, kde-format
msgid "Specify ISO volume label for Video CD"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:113
#, kde-format
msgid "Specify album id for Video CD set"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:111
-#, kde-format
-msgid "Specify album id for VideoCD set"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:114
#, kde-format
msgid "Specify album set sequence number ( <= volume-count )"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:115
#, kde-format
msgid "Specify number of volumes in album set"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:116
#, kde-format
msgid "Enable CD-i Application Support for Video CD Type 1.1 & 2.0"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:114
-#, kde-format
-msgid "Enable CD-i Application Support for VideoCD Type 1.1 & 2.0"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:117
#, kde-format
msgid "Configuration parameters (only for VCD 2.0)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:119 projects/k3bvcdtrackdialog.cpp:251
#, kde-format
msgid "Playback control, PBC, is available for Video CD 2.0 and Super Video CD 1.0 disc formats."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:120
#, kde-format
msgid "Add always an empty `/SEGMENT' folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:121
#, kde-format
msgid "This controls whether APS constraints are strict or relaxed. "
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:122
#, kde-format
msgid "This controls whether to update the scan data information contained in the MPEG-2 video streams."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:123
#, kde-format
msgid "This element allows to set viewing restrictions which may be interpreted by the playing device."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:125
#, kde-format
msgid "This option allows customization of Gaps and Margins."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:126
#, kde-format
msgid "Used to set the number of empty sectors added before the lead-out area begins."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:127
#, kde-format
msgid "Used to set the track pre-gap for all tracks in sectors globally."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:128
#, kde-format
msgid "Sets the front margin for sequence items."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:129
#, kde-format
msgid "Sets the rear margin for sequence items."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:133
#, kde-format
msgid ""
"<p>This is the most basic <b>Video CD</b> specification dating back to 1993, which has the following characteristics:"
"<ul>"
"<li>One mode2 mixed form ISO 9660 track containing file pointers to the information areas.</li>"
"<li>Up to 98 multiplex-ed MPEG-1 audio/video streams or CD-DA audio tracks.</li>"
"<li>Up to 500 MPEG sequence entry points used as chapter divisions.</li>"
"</ul>"
"<p>The Video CD specification requires the multiplex-ed MPEG-1 stream to have a CBR of less than 174300 bytes (1394400 bits) per second in order to accommodate single speed CD-ROM drives.<br>"
"The specification allows for the following two resolutions:"
"<ul>"
"<li>352 x 240 @ 29.97 Hz (NTSC SIF).</li>"
"<li>352 x 240 @ 23.976 Hz (FILM SIF).</li>"
"</ul>"
"<p>The CBR MPEG-1, layer II audio stream is fixed at 224 kbps with 1 stereo or 2 mono channels."
"<p><b>It is recommended to keep the video bit-rate under 1151929.1 bps.</b>"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:131
-#, kde-format
-msgid ""
-"<p>This is the most basic <b>Video CD</b> specification dating back to 1993, which has the following characteristics:"
-"<ul>"
-"<li>One mode2 mixed form ISO-9660 track containing file pointers to the information areas.</li>"
-"<li>Up to 98 multiplex-ed MPEG-1 audio/video streams or CD-DA audio tracks.</li>"
-"<li>Up to 500 MPEG sequence entry points used as chapter divisions.</li>"
-"</ul>"
-"<p>The Video CD specification requires the multiplex-ed MPEG-1 stream to have a CBR of less than 174300 bytes (1394400 bits) per second in order to accommodate single speed CD-ROM drives.<br>"
-"The specification allows for the following two resolutions:"
-"<ul>"
-"<li>352 x 240 @ 29.97 Hz (NTSC SIF).</li>"
-"<li>352 x 240 @ 23.976 Hz (FILM SIF).</li>"
-"</ul>"
-"<p>The CBR MPEG-1, layer II audio stream is fixed at 224 kbps with 1 stereo or 2 mono channels."
-"<p><b>It is recommended to keep the video bit-rate under 1151929.1 bps.</b>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:144
#, kde-format
msgid ""
"<p>About two years after the Video CD 1.1 specification came out, an improved <b>Video CD 2.0</b> standard was published in 1995."
"<p>This one added the following items to the features already available in the Video CD 1.1 specification:"
"<ul>"
"<li>Support for MPEG segment play items (<b>\"SPI\"</b>), consisting of still pictures, motion pictures and/or audio (only) streams was added.</li>"
"<li>Note Segment Items::.</li>"
"<li>Support for interactive playback control (<b>\"PBC\"</b>) was added.</li>"
"<li>Support for playing related access by providing a scan point index file was added. (<b>\"/EXT/SCANDATA.DAT\"</b>)</li>"
"<li>Support for closed captions.</li>"
"<li>Support for mixing NTSC and PAL content.</li>"
"</ul>"
"<p>By adding PAL support to the Video CD 1.1 specification, the following resolutions became available:"
"<ul>"
"<li>352 x 240 @ 29.97 Hz (NTSC SIF).</li>"
"<li>352 x 240 @ 23.976 Hz (FILM SIF).</li>"
"<li>352 x 288 @ 25 Hz (PAL SIF).</li>"
"</ul>"
"<p>For segment play items the following audio encodings became available:"
"<ul>"
"<li>Joint stereo, stereo or dual channel audio streams at 128, 192, 224 or 384 kbit/sec bit-rate.</li>"
"<li>Mono audio streams at 64, 96 or 192 kbit/sec bit-rate.</li>"
"</ul>"
"<p>Also the possibility to have audio only streams and still pictures was provided."
"<p><b>The bit-rate of multiplex-ed streams should be kept under 174300 bytes/sec (except for single still picture items) in order to accommodate single speed drives.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:162
#, kde-format
msgid ""
"<p>With the upcoming of the DVD-V media, a new VCD standard had to be published in order to be able to keep up with technology, so the Super Video CD specification was called into life 1999."
"<p>In the midst of 2000 a full subset of this <b>Super Video CD</b> specification was published as <b>IEC-62107</b>."
"<p>As the most notable change over Video CD 2.0 is a switch from MPEG-1 CBR to MPEG-2 VBR encoding for the video stream was performed."
"<p>The following new features--building upon the Video CD 2.0 specification--are:"
"<ul>"
"<li>Use of MPEG-2 encoding instead of MPEG-1 for the video stream.</li>"
"<li>Allowed VBR encoding of MPEG-1 audio stream.</li>"
"<li>Higher resolutions (see below) for video stream resolution.</li>"
"<li>Up to 4 overlay graphics and text (<b>\"OGT\"</b>) sub-channels for user switchable subtitle displaying in addition to the already existing closed caption facility.</li>"
"<li>Command lists for controlling the SVCD virtual machine.</li>"
"</ul>"
"<p>For the <b>Super Video CD</b>, only the following two resolutions are supported for motion video and (low resolution) still pictures:"
"<ul>"
"<li>480 x 480 @ 29.97 Hz (NTSC 2/3 D-2).</li>"
"<li>480 x 576 @ 25 Hz (PAL 2/3 D-2).</li>"
"</ul>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:175
#, kde-format
msgid ""
"<p>This is actually just a minor variation defined in IEC-62107 on the Super Video CD 1.0 format for compatibility with current products in the market."
"<p>It differs from the Super Video CD 1.0 format in the following items:"
"<ul>"
"<li>The system profile tag field in <b>/SVCD/INFO.SVD</b> is set to <b>1</b> instead of <b>0</b>.</li>"
"<li>The system identification field value in <b>/SVCD/INFO.SVD</b> is set to <b>HQ-VCD</b> instead of <b>SUPERVCD</b>.</li>"
"<li><b>/EXT/SCANDATA.DAT</b> is mandatory instead of being optional.</li>"
"<li><b>/SVCD/SEARCH.DAT</b> is optional instead of being mandatory.</li>"
"</ul>"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:182
#, kde-format
msgid ""
"<p>If Autodetect is:</p>"
"<ul>"
"<li>ON then K3b will set the correct Video CD type.</li>"
"<li>OFF then the correct Video CD type needs to be set by the user.</li>"
"</ul>"
"<p>If you are not sure about the correct Video CD type, it is best to turn Autodetect ON.</p>"
"<p>If you want to force the Video CD type, you must turn Autodetect OFF. This is useful for some standalone DVD players without SVCD support.</p>"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:180
-#, kde-format
-msgid ""
-"<p>If Autodetect is:</p>"
-"<ul>"
-"<li>ON then K3b will set the correct VideoCD type.</li>"
-"<li>OFF then the correct VideoCD type needs to be set by the user.</li>"
-"</ul>"
-"<p>If you are not sure about the correct VideoCD type, it is best to turn Autodetect ON.</p>"
-"<p>If you want to force the VideoCD type, you must turn Autodetect OFF. This is useful for some standalone DVD players without SVCD support.</p>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:188
#, kde-format
msgid ""
"<ul>"
"<li>Rename <b>\"/MPEG2\"</b> folder on SVCDs to (non-compliant) \"/MPEGAV\".</li>"
"<li>Enables the use of the (deprecated) signature <b>\"ENTRYSVD\"</b> instead of <b>\"ENTRYVCD\"</b> for the file <b>\"/SVCD/ENTRY.SVD\"</b>.</li>"
"</ul>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:190
#, kde-format
msgid ""
"<ul>"
"<li>Enables the use of the (deprecated) Chinese <b>\"/SVCD/TRACKS.SVD\"</b> format which differs from the format defined in the <b>IEC-62107</b> specification.</li>"
"</ul>"
"<p><b>The differences are most exposed on SVCDs containing more than one video track.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:193
#, kde-format
msgid ""
"<p>though most devices will have problems with such an out-of-specification media."
"<p><b>You may want use this option for images longer than 80 minutes</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:196
#, kde-format
msgid ""
"<p>To allow the play of Video-CDs on a CD-i player, the Video-CD standard requires that a CD-i application program must be present."
"<p>This program is designed to:"
"<ul>"
"<li>provide full play back control as defined in the PSD of the standard</li>"
"<li>be extremely simple to use and easy-to-learn for the end-user</li>"
"</ul>"
"<p>The program runs on CD-i players equipped with the CDRTOS 1.1(.1) operating system and a Digital Video extension cartridge."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:202
#, kde-format
msgid ""
"<p>Configuration parameters only available for Video CD 2.0"
"<p>The engine works perfectly well when used as-is."
"<p>You have the option to configure the VCD application."
"<p>You can adapt the color and/or the shape of the cursor and lots more."
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:200
-#, kde-format
-msgid ""
-"<p>Configuration parameters only available for VideoCD 2.0"
-"<p>The engine works perfectly well when used as-is."
-"<p>You have the option to configure the VCD application."
-"<p>You can adapt the color and/or the shape of the cursor and lots more."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:208 projects/k3bvcdtrackdialog.cpp:262
#, kde-format
msgid ""
"<p>Playback control, PBC, is available for Video CD 2.0 and Super Video CD 1.0 disc formats."
"<p>PBC allows control of the playback of play items and the possibility of interaction with the user through the remote control or some other input device available."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:211
#, kde-format
msgid ""
"<p>Here you can specify that the folder <b>SEGMENT</b> should always be present."
"<p>Some DVD players need the folder to give a faultless rendition."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:214
#, kde-format
msgid ""
"<p>An Access Point Sector, APS, is an MPEG video sector on the VCD/SVCD which is suitable to be jumped to directly."
"<p>APS are required for entry points and scantables. APS have to fulfil the requirement to precede every I-frame by a GOP header which shall be preceded by a sequence header in its turn."
"<p>The start codes of these 3 items are required to be contained all in the same MPEG pack/sector, thus forming a so-called access point sector."
"<p>This requirement can be relaxed by enabling the relaxed aps option, i.e. every sector containing an I-frame will be regarded as an APS."
"<p><b>Warning:</b> The sequence header is needed for a playing device to figure out display parameters, such as display resolution and frame rate, relaxing the aps requirement may lead to non-working entry points."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:220
#, kde-format
msgid ""
"<p>According to the specification, it is mandatory for Super Video CDs to encode scan information data into user data blocks in the picture layer of all intra coded picture."
"<p>It can be used by playing devices for implementing fast forward & fast reverse scanning."
"<p>The already existing scan information data can be updated by enabling the update scan offsets option."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:224
#, kde-format
msgid ""
"<p>Viewing Restriction may be interpreted by the playing device."
"<p>The allowed range goes from 0 to 3."
"<ul>"
"<li>0 = unrestricted, free to view for all</li>"
"<li>3 = restricted, content not suitable for ages under 18</li>"
"</ul>"
"<p>Actually, the exact meaning is not defined and is player dependant."
"<p><b>Most players ignore that value.<b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:231
#, kde-format
msgid "<p>This option allows customization of Gaps and Margins."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:232
#, kde-format
msgid ""
"<p>This option allows to set the number of empty sectors added before the lead-out area begins, i.e. the number of post-gap sectors."
"<p>The ECMA-130 specification requires the last data track before the lead-out to carry a post-gap of at least 150 sectors, which is used as default for this parameter."
"<p>Some operating systems may encounter I/O errors due to read-ahead issues when reading the last MPEG track if this parameter is set too low."
"<p>Allowed value content: [0..300]. Default: 150."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:237
#, kde-format
msgid ""
"<p>Used to set the track pre-gap for all tracks in sectors globally."
"<p>The specification requires the pre-gaps to be at least 150 sectors long."
"<p>Allowed value content: [0..300]. Default: 150."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:241
#, kde-format
msgid ""
"Margins are used to compensate for inaccurate sector-addressing issues on CD-ROM media. Interestingly, they have been abandoned for Super Video CDs."
"<p>For Video CD 1.0/1.1/2.0 this margin should be at least 15 sectors long."
"<p>Allowed value content: [0..150]. Default: 30 for Video CD 1.0/1.1/2.0, otherwise (i.e. Super Video CD 1.0 and HQ-VCD 1.0) 0."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:245
#, kde-format
msgid ""
"<p>Margins are used to compensate for inaccurate sector-addressing issues on CD-ROM media. Interestingly, they have been abandoned for Super Video CDs."
"<p>For Video CD 1.0/1.1/2.0 this margin should be at least 15 sectors long."
"<p>Allowed value content: [0..150]. Default: 45 for Video CD 1.0/1.1/2.0, otherwise 0."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:260
#, kde-format
msgid "Generic"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:262
#, kde-format
msgid "Playback Control (PBC)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:263
#, kde-format
msgid "SEGMENT Folder must always be present"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:264
#, kde-format
msgid "Relaxed aps"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:265
#, kde-format
msgid "Update scan offsets"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:274
#, kde-format
msgid "Gaps"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:279
#, kde-format
msgid "Customize gaps and margins"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:281
#, kde-format
msgid "Leadout pre gap (0..300):"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:286
#, kde-format
msgid "Track pre gap (0..300):"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:291
#, kde-format
msgid "Track front margin (0..150):"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:300
#, kde-format
msgid "Track rear margin (0..150):"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:373
#, kde-format
msgid "Restriction category (0..3):"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:397
#, kde-format
msgid "Video CD 1.1"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:395
-#, kde-format
-msgid "VideoCD 1.1"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:398
#, kde-format
msgid "Video CD 2.0"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:396
-#, kde-format
-msgid "VideoCD 2.0"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:400
#, kde-format
msgid "HQ Video CD"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:398
-#, kde-format
-msgid "HQ-VideoCD"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:418
#, kde-format
msgid "Autodetect Video CD type"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:416
-#, kde-format
-msgid "Autodetect VideoCD type"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:419
#, kde-format
msgid "Enable broken SVCD mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:423
#, kde-format
msgid "Enable %1 track interpretation"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:427
#, kde-format
msgid "Use 2336 byte sectors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:428
#, kde-format
msgid "Enable CD-i support"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:437
#, kde-format
msgid "Video CD on CD-i"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:435
-#, kde-format
-msgid "VideoCD on CD-i"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:458
#, kde-format
msgid "System:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:459
#, kde-format
msgid "Application:"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:468
#, kde-format
msgid "ISO application identifier for Video CD"
msgstr ""
-#. +> stable
-#: projects/k3bvcdburndialog.cpp:466
-#, kde-format
-msgid "ISO application id for VideoCD"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:473
#, kde-format
msgid "Volume &set name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:474
#, kde-format
msgid "Volume set s&ize:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdburndialog.cpp:476
#, kde-format
msgid "&Publisher:"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:233
#, kde-format
msgctxt "Video CD Track Number"
msgid "No."
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:234
-#, kde-format
-msgctxt "VideoCD Track Number"
-msgid "No."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:235
#, kde-format
msgctxt "Video CD Track Title"
msgid "Title"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:236
-#, kde-format
-msgctxt "VideoCD Track Title"
-msgid "Title"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:237
#, kde-format
msgctxt "Video CD Track Type (ie. MPEG1)"
msgid "Type"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:238
-#, kde-format
-msgctxt "VideoCD Track Type (ie. MPEG1)"
-msgid "Type"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:239
#, kde-format
msgctxt "Video CD Track Resolution"
msgid "Resolution"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:240
-#, kde-format
-msgctxt "VideoCD Track Resolution"
-msgid "Resolution"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:242
#, kde-format
msgctxt "Video CD Track High Resolution"
msgid "High Resolution"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:243
-#, kde-format
-msgctxt "VideoCD Track High Resolution"
-msgid "High Resolution"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:244
#, kde-format
msgctxt "Video CD Track Framerate"
msgid "Framerate"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:245
-#, kde-format
-msgctxt "VideoCD Track Framerate"
-msgid "Framerate"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:246
#, kde-format
msgctxt "Video CD Track Muxrate"
msgid "Muxrate"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:247
-#, kde-format
-msgctxt "VideoCD Track Muxrate"
-msgid "Muxrate"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:248
#, kde-format
msgctxt "Video CD Track Duration"
msgid "Duration"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:249
-#, kde-format
-msgctxt "VideoCD Track Duration"
-msgid "Duration"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:250
#, kde-format
msgctxt "Video CD Track File Size"
msgid "File Size"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:251
-#, kde-format
-msgctxt "VideoCD Track File Size"
-msgid "File Size"
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bvcdprojectmodel.cpp:252
#, kde-format
msgctxt "Video CD Track Filename"
msgid "Filename"
msgstr ""
-#. +> stable
-#: projects/k3bvcdprojectmodel.cpp:253
-#, kde-format
-msgctxt "VideoCD Track Filename"
-msgid "Filename"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:148
#, kde-format
msgid "Video Track Properties"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:164 projects/k3bvcdtrackdialog.cpp:406
#, kde-format
msgid "%1 bit/s"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:245
#, kde-format
msgid "May also look like | << on the remote control. "
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:246
#, kde-format
msgid "May also look like >> | on the remote control."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:247
#, kde-format
msgid "This key may be mapped to the STOP key."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:248
#, kde-format
msgid "This key is usually mapped to the > or PLAY key."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:249
#, kde-format
msgid "Target to be jumped to on time-out of <wait>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:250
#, kde-format
msgid "Delay reactivity of keys."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:252
#, kde-format
msgid "Activate the use of numeric keys."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:253
#, kde-format
msgid "Overwrite default numeric keys."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:254
#, kde-format
msgid "Numeric keys."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:255
#, kde-format
msgid "Times to repeat the playback of 'play track'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:256
#, kde-format
msgid "Time in seconds to wait after playback of 'play track'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:258
#, kde-format
msgid ""
"<p>Target to be jumped to on time-out of <wait>."
"<p>If omitted (and <wait> is not set to an infinite time) one of the targets is selected at random."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:260
#, kde-format
msgid ""
"<p>When reactivity is set to delayed, it is recommended that the length of the referenced 'play track' is not more than 5 seconds."
"<p>The recommended setting for a play item consisting of one still picture and no audio is to loop once and have a delayed reactivity."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:264
#, kde-format
msgid "These are actually pseudo keys, representing the numeric keys 0, 1, ..., 9."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:265
#, kde-format
msgid "<p>If numeric keys enabled, you can overwrite the default settings."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:266
#, kde-format
msgid ""
"<p>Times to repeat the playback of 'play track'."
"<p>The reactivity attribute controls whether the playback of 'play track' is finished, thus delayed, before executing user triggered action or an immediate jump is performed."
"<p>After the specified number of repetitions have completed, the <wait> time begins to count down, unless set to an infinite wait time."
"<p>If this element is omitted, a default of `1' is used, i.e. the 'play track' will be displayed once."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:270
#, kde-format
msgid "Time in seconds to wait after playback of 'play track' before triggering the <timeout> action (unless the user triggers some action before time ran up)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:311
#, kde-format
msgid "Event Disabled"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:382
#, kde-format
msgid "File Info"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:394
#, kde-format
msgid "Length:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:395
#, kde-format
msgid "Muxrate:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:454
#, kde-format
msgid "Enable playback control (for the whole CD)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:455
#, kde-format
msgid "Use numeric keys"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:457
#, kde-format
msgid "Reactivity delayed to the end of playing track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:466 projects/k3bvcdtrackkeysmodel.cpp:150
#, kde-format
msgid "Playing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:471
#, kde-format
msgid "Playing track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:476
#, kde-format
msgid "forever"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:479
#, kde-format
msgid "then wait"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:484
#, kde-format
msgid " seconds"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:485
#, kde-format
msgid "infinite"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:487
#, kde-format
msgid "after timeout playing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:502
#, kde-format
msgid "Key Pressed Interaction"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:504
#, kde-format
msgid "Previous:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:505
#, kde-format
msgid "Next:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:506
#, kde-format
msgid "Return:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:507
#, kde-format
msgid "Default:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:528
#, kde-format
msgid "Playback Control"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:546
#, kde-format
msgid "Overwrite default assignment"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:564
#, kde-format
msgid "Numeric Keys"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:598 projects/k3bvcdtrackdialog.cpp:639
#, kde-format
msgid "Rate:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:599
#, kde-format
msgid "Sampling frequency:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:600
#, kde-format
msgid "Mode:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:601
#, kde-format
msgid "Copyright:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:640
#, kde-format
msgid "Chroma format:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:641
#, kde-format
msgid "Video format:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:642
#, kde-format
msgid "Resolution:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:643
#, kde-format
msgid "High resolution:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackdialog.cpp:645
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:312
#, kde-format
msgid "Video"
msgstr ""
-#. +> stable
-#: projects/k3bvcdtrackdialog.cpp:297 projects/k3bvcdtrackdialog.cpp:706
-#, kde-format
-msgid "VideoCD END"
-msgstr ""
-
-#. +> stable
-#: projects/k3bvcdtrackdialog.cpp:718
-#, kde-format
-msgid "ItSelf"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackkeysmodel.cpp:149
#, kde-format
msgid "Key"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdtrackkeysmodel.cpp:172
#, kde-format
msgid "Video CD END"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackkeysmodel.cpp:174
#, kde-format
msgid "Segment-%1 - %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvcdtrackkeysmodel.cpp:176
#, kde-format
msgid "Sequence-%1 - %2"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bvcdview.cpp:99
#, kde-format
msgid "Could not find VcdImager executable. To create Video CDs you have to install VcdImager >= 0.7.12. You can find this on your distribution’s software repository or download it from http://www.vcdimager.org"
msgstr ""
-#. +> stable
-#: projects/k3bvcdview.cpp:85
-#, kde-format
-msgid "Could not find VcdImager executable. To create VideoCD's you must install VcdImager >= 0.7.12. You can find this on your distribution disks or download it from http://www.vcdimager.org"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvideodvdburndialog.cpp:47
#, kde-format
msgid "Video DVD Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvideodvdview.cpp:59
#, kde-format
msgid "Be aware that you need to provide the complete Video DVD filestructure. K3b does not support video transcoding and preparation of video object files yet. That means you need to already have the VTS_X_YY.VOB and VTS_X_YY.IFO files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvideodvdview.cpp:63
#, kde-format
msgid "K3b Video DVD Restrictions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bview.cpp:52
#, kde-format
msgid "&Burn"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bview.cpp:54
#, kde-format
msgid "Open the burn dialog for the current project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bview.cpp:55
#, kde-format
msgid "&Properties"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bview.cpp:57
#, kde-format
msgid "Open the properties dialog"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bvolumenamewidget.cpp:57
#, kde-format
msgid "Volume Name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/kostore/KoStore.cpp:210
#, kde-format
msgid "The directory mode is not supported for remote locations."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/kostore/KoStore.cpp:211
#, kde-format
msgid "KOffice Storage"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:18
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:312
#, kde-format
msgid "Filetype"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_buttonConfigurePlugin)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:34
#, kde-format
msgid "Configure Plugin"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkCreatePlaylist)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:53
#, kde-format
msgid "Create playlist for the ripped files"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkCreatePlaylist)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:58
#, kde-format
msgid ""
"<p>If this option is checked K3b will create a playlist of the ripped files\n"
"which can be used with programs like Amarok or JuK.\n"
"<p>You may use the special strings to give the playlist a unique filename."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkCreatePlaylist)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:61
#, kde-format
msgid "Create m&3u playlist"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkPlaylistRelative)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:89
#, kde-format
msgid "Use relative paths instead of absolute"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkPlaylistRelative)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:95
#, kde-format
msgid ""
"<p>If this option is checked, the entries in the playlist will be relative to its location.\n"
"<p>Example: If your playlist is located in <em>/home/myself/music</em> and\n"
"your audio files are in <em>/home/myself/music/cool</em>; then the entries in the\n"
"playlist will look something like: <em>cool/track1.ogg</em>."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkPlaylistRelative)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:98
#, kde-format
msgid "&Use relative paths"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkSingleFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:107
#, kde-format
msgid "Rip all tracks to a single file"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkSingleFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:114
#, kde-format
msgid ""
"<p>If this option is checked K3b will create only one\n"
"audio file no matter how many tracks are ripped. This\n"
"file will contain all tracks one after the other.\n"
"<p>This might be useful to rip a live album or a radio play.\n"
"<p><b>Caution:</b> The file will have the name made from playlist pattern."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkSingleFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:117
#, kde-format
msgid "Create si&ngle file"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkWriteCueFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:145
#, kde-format
msgid "Write a cuefile"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkWriteCueFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:148
#, kde-format
msgid "<p>If this option is checked K3b will create a CDRWIN cue file which allows to easily write a copy of the audio CD on other systems."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkWriteCueFile)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:151
#, kde-format
msgid "Write &cue file"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1)
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:182
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:133
#, kde-format
msgid "Target Folder"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:188
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:139
#, kde-format
msgid "Free space in directory:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelFreeSpace)
#. i18n: ectx: property (text), widget (QLabel, m_labelNeededSpace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:201
#: rip/base_k3baudiorippingoptionwidget.ui:224
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:152
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:175
#, kde-format
msgid "-"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3baudiorippingoptionwidget.ui:214
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:165
#, kde-format
msgid "Space needed:"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, base_K3bCddbPatternWidget)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:14
#, kde-format
msgid "Ripping Pattern"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBlankReplace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:22
#, kde-format
msgid "Replace all blan&ks with:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:41
#, kde-format
msgid "Playlist pattern:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:64
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:372
#, kde-format
msgid "Ripped files pattern:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (KComboBox, m_comboFilenamePattern)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:80
#, kde-format
msgid "Insert your custom pattern here"
msgstr ""
#. i18n: ectx: property (text), widget (KUrlLabel, m_specialStringsLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:108
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:403
#, kde-format
msgid "See special strings"
msgstr ""
#. i18n: ectx: property (text), widget (KUrlLabel, m_conditionalInclusionLabel)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/base_k3bcddbpatternwidget.ui:118
#, kde-format
msgid "About conditional inclusion"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:22
#, kde-format
msgid "Blues"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:22
#, kde-format
msgid "Classical"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:22
#, kde-format
msgctxt "music genre"
msgid "Country"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:23
#, kde-format
msgid "Folk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:23
#, kde-format
msgid "Jazz"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:24
#, kde-format
msgid "New Age"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:24
#, kde-format
msgid "Reggae"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:24
#, kde-format
msgid "Rock"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/categories.cpp:24
#, kde-format
msgid "Soundtrack"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:151
#, kde-format
msgid "Searching for Artist information..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:185 rip/k3baudioprojectconvertingdialog.cpp:104
#: rip/k3baudiorippingdialog.cpp:122 rip/k3bvideocdview.cpp:358
#, kde-format
msgid "1 track (%2)"
msgid_plural "%1 tracks (%2)"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:186
-#, kde-format
-msgid "Found Cd-Text (%1 - %2). Do you want to use it instead of CDDB (%3 - %4)?"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:207
#, kde-format
msgid "Audio CD"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:224
#, kde-format
msgid "Edit Track Info..."
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:257
-#, kde-format
-msgid "Edit Track CDDB Info"
-msgstr ""
-
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:225
#, kde-format
msgid "Edit current track information"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:230
#, kde-format
msgid "Edit Album Info..."
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:259
-#, kde-format
-msgid "Edit Album CDDB Info"
-msgstr ""
-
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:231
#, kde-format
msgid "Edit album information"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:236 rip/k3baudiorippingdialog.cpp:198
#: rip/k3bvideocdrippingdialog.cpp:114 rip/k3bvideocdview.cpp:382
#: rip/videodvd/k3bvideodvdrippingview.cpp:350
#, kde-format
msgid "Start Ripping"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:237
#, kde-format
msgid "Start audio ripping process"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:242
#, kde-format
msgid "Query CD Database"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:243
#, kde-format
msgid "Look for information on CDDB"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:248
#, kde-format
msgid "Read CD-Text"
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:191
-#, kde-format
-msgid "Found Cd-Text"
-msgstr ""
-
-#. +> stable
-#: rip/k3baudiocdview.cpp:192
-#, kde-format
-msgid "Use CD-Text"
-msgstr ""
-
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:249
#, kde-format
msgid "Read CD-Text information"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:254
#, kde-format
msgid "Load CD Info"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:255
#, kde-format
msgid "Load track and album information"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:262
#, kde-format
msgid "Save CD Info Locally"
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:265
-#, kde-format
-msgid "Save CDDB Entry Locally"
-msgstr ""
-
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:263
#, kde-format
msgid "Save track and album information to the local CDDB cache"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:268
#, kde-format
msgid "Show Data Part"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:269
#, kde-format
msgid "Mounts the data part of CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:306 rip/k3bvideocdview.cpp:374
#: rip/videodvd/k3bvideodvdrippingview.cpp:198
#, kde-format
msgid "Check Track"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:306 rip/videodvd/k3bvideodvdrippingview.cpp:198
#, kde-format
msgid "Check Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:308 rip/k3bvideocdview.cpp:378
#: rip/videodvd/k3bvideodvdrippingview.cpp:200
#, kde-format
msgid "Uncheck Track"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:308 rip/videodvd/k3bvideodvdrippingview.cpp:200
#, kde-format
msgid "Uncheck Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:326 rip/k3bvideocdview.cpp:451
#, kde-format
msgid "Please select the tracks to rip."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:327 rip/k3bvideocdview.cpp:451
#, kde-format
msgid "No Tracks Selected"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:347
#, kde-format
msgid "Multiple Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:349
#, kde-format
msgid "CDDB Track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:361 rip/k3baudiocdview.cpp:431
#, kde-format
msgid "Title:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:363 rip/k3baudiocdview.cpp:432
#, kde-format
msgid "Artist:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:364 rip/k3baudiocdview.cpp:433
#, kde-format
msgid "Extra info:"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:393
#, kde-format
msgid "Album CDDB"
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:193
-#, kde-format
-msgid "Use CDDB"
-msgstr ""
-
-#. +> stable
-#: rip/k3baudiocdview.cpp:366
-#, kde-format
-msgid "Album Cddb"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:434
#, kde-format
msgid "Genre:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:435
#, kde-format
msgid "Year:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiocdview.cpp:437
#, kde-format
msgid "Category:"
msgstr ""
-#. +> stable
-#: rip/k3baudiocdview.cpp:467
-#, kde-format
-msgid "Saved entry in category %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioconvertingoptionwidget.cpp:174
#, kde-format
msgid "Wave"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:103
#, kde-format
msgid "Audio Project Conversion"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:124
#, kde-format
msgid "Filename (relative to base folder)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:126
#: rip/k3baudiorippingdialog.cpp:142 rip/videodvd/k3bvideodvdaudiomodel.cpp:260
#, kde-format
msgid "File Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:149
#: rip/k3baudiorippingdialog.cpp:167
#, kde-format
msgid "File Naming"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:176
#: rip/k3baudiorippingdialog.cpp:245
#, kde-format
msgid "Please check the naming pattern. All filenames need to be unique."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:193
#: rip/k3baudiorippingdialog.cpp:262
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:517
#, kde-format
msgid "Do you want to overwrite these files?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingdialog.cpp:195
#: rip/k3baudiorippingdialog.cpp:264 rip/k3bvideocdrippingdialog.cpp:171
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:519
#, kde-format
msgid "Files Exist"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:56
#: rip/k3baudioprojectconvertingjob.cpp:65
#, kde-format
msgid "Converting Audio Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:58
#, kde-format
msgid "Converting Audio Tracks From '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:66
#, kde-format
msgid "Starting audio conversion."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:93
#, kde-format
msgid "Converting track %1 (%2 - %3)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:98
#, kde-format
msgid "Converting track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioprojectconvertingjob.cpp:104
#, kde-format
msgid "Successfully converted track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:98
#, kde-format
msgid "Error while initializing audio ripping."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:140
#, kde-format
msgid "Unrecoverable error while ripping track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:194
#, kde-format
msgid "Ripping Audio Tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:196
#, kde-format
msgid "Ripping Audio Tracks From '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:226
#, kde-format
msgid "Extracting Digital Audio"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:233
#, kde-format
msgid "Could not load libcdparanoia."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:244
#, kde-format
msgid "Reading CD table of contents."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:248
#, kde-format
msgid "Could not open device %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:261
#, kde-format
msgid "Searching index 0 for all tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:265
#, kde-format
msgid "Starting digital audio extraction (ripping)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:296
#, kde-format
msgid "Ripping track %1 (%2 - %3)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:301
#, kde-format
msgid "Ripping track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudioripjob.cpp:307
#, kde-format
msgid "Successfully ripped track %1 to %2."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:121
#, kde-format
msgid "CD Ripping"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:180
#, kde-format
msgid "Do not read pregaps"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:198
#, kde-format
msgid "Starts copying the selected tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:207
#, kde-format
msgid "Maximal number of read retries"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:208
#, kde-format
msgid "<p>This specifies the maximum number of retries to read a sector of audio data from the cd. After that K3b will either skip the sector if the <em>Ignore Read Errors</em> option is enabled or stop the process."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:212
#, kde-format
msgid "Do not read the pregaps at the end of every track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:213
#, kde-format
msgid ""
"<p>If this option is checked K3b will not rip the audio data in the pregaps. Most audio tracks contain an empty pregap which does not belong to the track itself.</p>"
"<p>Although the default behavior of nearly all ripping software is to include the pregaps for most CDs, it makes more sense to ignore them. In any case, when creating a K3b audio project, the pregaps will be regenerated.</p>"
msgstr ""
-#. +> stable
-#: rip/k3baudiorippingdialog.cpp:266
-#, kde-format
-msgid "Overwrite"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:366
#, kde-format
msgid "Cue-file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:404
#, kde-format
msgid "Track%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiorippingdialog.cpp:425 rip/k3bcddbpatternwidget.cpp:58
#, kde-format
msgid "Playlist"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiotrackmodel.cpp:163
#, kde-format
msgid "Artist"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3baudiotrackmodel.cpp:165
#, kde-format
msgctxt "audio track title"
msgid "Title"
msgstr ""
#. +> trunk5 stable5
#: rip/k3baudiotrackmodel.cpp:213
#, kde-format
msgid "Data Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:52
#, kde-format
msgctxt "Please do NOT modify/translate the quotes, they are part of the pattern!"
msgid "%A - %T/%n - !a='%A'{%a - }%t"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:53
#, kde-format
msgid "%{albumartist} - %{albumtitle}/%{number} - %{artist} - %{title}"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:54
#, kde-format
msgid "%{genre}/%{albumartist} - %{albumtitle}/Track%{number}"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:55
#, kde-format
msgid "music/ripped-tracks/%a - %t"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:57
#, kde-format
msgid "%{albumartist} - %{albumtitle}"
msgstr ""
#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:59
#, kde-format
msgid "playlists/%{albumartist}/%{albumtitle}"
msgstr ""
-#. +> stable
-#: rip/k3bcddbpatternwidget.cpp:60
-#, kde-format
-msgid "playlists/%{albumartist}/%{albumtitle }"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:126
#, kde-format
msgid ""
"<p><b>Pattern special strings:</b>"
"<p>The following strings will be replaced with their respective meaning in every track name.<br>"
"<em>Hint:</em> %A differs from %a only on soundtracks or compilations."
"<p>"
"<table border=\"0\">"
"<tr>"
"<td></td>"
"<td><em>Meaning</em></td>"
"<td><em>Alternatives</em></td>"
"</tr>"
"<tr>"
"<td>%a</td>"
"<td>artist of the track</td>"
"<td>%{a} or %{artist}</td>"
"</tr>"
"<tr>"
"<td>%t</td>"
"<td>title of the track</td>"
"<td>%{t} or %{title}</td>"
"</tr>"
"<tr>"
"<td>%n</td>"
"<td>track number</td>"
"<td>%{n} or %{number}</td>"
"</tr>"
"<tr>"
"<td>%y</td>"
"<td>year of the CD</td>"
"<td>%{y} or %{year}</td>"
"</tr>"
"<tr>"
"<td>%c</td>"
"<td>extended track information</td>"
"<td>%{c} or %{comment}</td>"
"</tr>"
"<tr>"
"<td>%g</td>"
"<td>genre of the CD</td>"
"<td>%{g} or %{genre}</td>"
"</tr>"
"<tr>"
"<td>%A</td>"
"<td>album artist</td>"
"<td>%{A} or %{albumartist}</td>"
"</tr>"
"<tr>"
"<td>%T</td>"
"<td>album title</td>"
"<td>%{T} or %{albumtitle}</td>"
"</tr>"
"<tr>"
"<td>%C</td>"
"<td>extended CD information</td>"
"<td>%{C} or %{albumcomment}</td>"
"</tr>"
"<tr>"
"<td>%d</td>"
"<td>current date</td>"
"<td>%{d} or %{date}</td>"
"</tr>"
"<tr>"
"<td>%e</td>"
"<td>file extension (if left out, it is added automatically)</td>"
"<td>%{e} or %{ext}</td>"
"</tr>"
"</table>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bcddbpatternwidget.cpp:152
#, kde-format
msgctxt "Please do NOT modify/translate the quotes, they are part of the pattern!"
msgid ""
"<p><b>Conditional inclusion:</b>"
"<p>These patterns make it possible to selectively include texts, depending on the value of CDDB entries. You can choose only to include or exclude texts if one of the entries is empty, or if it has a specific value. Examples:"
"<ul>"
"<li>@T{TEXT} includes TEXT if the album title is specified"
"<li>!T{TEXT} includes TEXT if the album title is not specified"
"<li>@C='Soundtrack'{TEXT} includes TEXT if the CD's extended information is named Soundtrack"
"<li>!C='Soundtrack'{TEXT} includes TEXT if the CD's extended information is anything else but Soundtrack"
"<li>It is also possible to include special strings in texts and conditions, e.g. !a='%A'{%a} only includes the title's artist information if it does not differ from the album artist.</ul>"
"<p>Conditional includes make use of the same characters as the special strings, which means that the X in @X{...} can be one character out of [atnycgATCd]."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:184
#, kde-format
msgid "1 track (encoding to %2)"
msgid_plural "%1 tracks (encoding to %2)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:189
#, kde-format
msgid "1 track"
msgid_plural "%1 tracks"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:269
#, kde-format
msgid "Removed partial file '%1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:334 rip/k3bmassaudioencodingjob.cpp:459
#, kde-format
msgid "Unable to open '%1' for writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:373
#, kde-format
msgid "Error while encoding track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:409
#, kde-format
msgid "Writing playlist to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bmassaudioencodingjob.cpp:503
#, kde-format
msgid "Writing cue file to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bpatternparser.cpp:137
#, kde-format
msgid "Track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:59
#, kde-format
msgid "Job canceled by user."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:88
#, kde-format
msgid "Check files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:98
#, kde-format
msgid "Could not find %1 executable."
msgstr ""
#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:99
#, kde-format
msgid "To rip Video CDs you have to install VcdImager Version %1."
msgstr ""
-#. +> stable
-#: rip/k3bvideocdrip.cpp:102
-#, kde-format
-msgid "To rip VideoCD's you must install VcdImager Version %1."
-msgstr ""
-
#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:100
#, kde-format
msgid "You can find this on your distribution’s software repository or download it from http://www.vcdimager.org"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:108
#, kde-format
msgid "%1 executable too old: need version %2 or greater."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:109
#, kde-format
msgid "You can find this on your distribution disks or download it from http://www.vcdimager.org"
msgstr ""
#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:116
#, kde-format
msgid "Using %1 %2 – Copyright © %3"
msgstr ""
-#. +> stable
-#: rip/k3bvideocdrip.cpp:119
-#, kde-format
-msgid "Using %1 %2 - Copyright (C) %3"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:167
#, kde-format
msgid "Extracting"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:168
#, kde-format
msgid "Start extracting."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:169
#, kde-format
msgid "Extract files from %1 to %2."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:174
#, kde-format
msgid "Could not start %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:264
#, kde-format
msgid "Files successfully extracted."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:267
#, kde-format
msgid "%1 returned an unknown error (code %2)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:268
#, kde-format
msgid "Please send me an email with the last output..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:274
#, kde-format
msgid "%1 did not exit cleanly."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:288
#, kde-format
msgid "%1 encountered non-form2 sector"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:289
#, kde-format
msgid "leaving loop"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:297
#, kde-format
msgid "detected extended VCD2.0 PBC files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:324 rip/k3bvideocdrip.cpp:342
#, kde-format
msgid "Extracting %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrip.cpp:335
#, kde-format
msgid "Extracting %1 to %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:45
#, kde-format
msgid "Video CD Ripping"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:69
#, kde-format
msgid "Destination Folder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:74
#, kde-format
msgid "Rip files to:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:81
#, kde-format
msgid "Free space in folder:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:87
#, kde-format
msgid "Necessary storage size:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:99
#, kde-format
msgid "Ignore /EXT/PSD_X.VCD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:100
#, kde-format
msgid "Use 2336 byte sector mode for image file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:104
#, kde-format
msgid "Extract XML structure"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:114
#, kde-format
msgid "Starts extracting the selected VideoCd tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:125
#, kde-format
msgid "Free space in destination folder: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:127
#, kde-format
msgid "Necessary space for extracted files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:129
#, kde-format
msgid "Ignore extended PSD"
msgstr ""
#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:130
#, kde-format
msgid "<p>Ignore extended PSD (located in the ISO 9660 filesystem under `/EXT/PSD_X.VCD') and use the <em>standard</em> PSD.</p>"
msgstr ""
-#. +> stable
-#: rip/k3bvideocdrippingdialog.cpp:134
-#, kde-format
-msgid "<p>Ignore extended PSD (located in the ISO-9660 filesystem under `/EXT/PSD_X.VCD') and use the <em>standard</em> PSD.</p>"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:132
#, kde-format
msgid "Assume a 2336-byte sector mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:133
#, kde-format
msgid ""
"<p>This option only makes sense if you are reading from a BIN CD disk image. This indicates to `vcdxrip' to assume a 2336-byte sector mode for image file.</p>"
"<b>Note: This option is slated to disappear.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:136
#, kde-format
msgid "Create XML description file."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:137
#, kde-format
msgid ""
"<p>This option creates an XML description file with all video CD information.</p>"
"<p>This file will always contain all of the information.</p>"
"<p>Example: If you only extract sequences, the description file will also hold the information for files and segments.</p>"
"<p>The filename is the same as the video CD name, with a .xml extension. The default is VIDEOCD.xml.</p>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdrippingdialog.cpp:169
#, kde-format
msgid "Continue although the folder is not empty?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:200
#, kde-format
msgid "Item Name"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:201
#, kde-format
msgid "Extracted Name"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:261 rip/k3bvideocdview.cpp:432
#, kde-format
msgid "Video CD MPEG tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:262
#, kde-format
msgid "Video CD DATA track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:278
#, kde-format
msgid "Sequence-%1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:283 rip/k3bvideocdview.cpp:326
#: rip/k3bvideocdview.cpp:438
#, kde-format
msgid "Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:284 rip/k3bvideocdview.cpp:444
#, kde-format
msgid "Segments"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:366
#, kde-format
msgid "Check All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:370
#, kde-format
msgid "Uncheck All"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:386
#, kde-format
msgid "View Files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/k3bvideocdview.cpp:387
#, kde-format
msgid "View plain data files"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:21
#, kde-format
msgid "Please select the audio streams you want to include in every ripped title"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:45
#, kde-format
msgid "Setti&ngs"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox6)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:51
#, kde-format
msgid "Video Quality"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:59
#, kde-format
msgid "Video Size:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:90
#, kde-format
msgid "Video Bitrate:"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox4)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:191
#, kde-format
msgid "Audio Quality"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAudioVBR)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:204
#, kde-format
msgid "Variable &Bitrate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelAudioBitrate)
#. i18n: ectx: property (text), widget (QLabel, textLabel1_3)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:213
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:258
#, kde-format
msgid "Audio Bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_labelNoAudioSettings)
#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:239
#, kde-format
msgid "<p>No Audio Quality settings available for <em>AC3 pass-through</em>. The audio stream from the Video DVD is used without any changes.</p>"
msgstr ""
-#. i18n: ectx: property (text), widget (K3ActiveLabel, m_labelNoAudioSettings)
-#. +> stable
-#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:257
-#, kde-format
-msgid "<p>No Audio Quality settings available for <em>AC3 pass-through</em>. The audio stream from the Video DVD is used without any changes."
-msgstr ""
-
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:320
#, kde-format
msgid "Video Codec:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (K3b::IntMapComboBox, m_comboVideoCodec)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:330
#, kde-format
msgid "Select the Video codec used to encode the DVD titles"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:341
#, kde-format
msgid "Audio Codec:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (K3b::IntMapComboBox, m_comboAudioCodec)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:351
#, kde-format
msgid "Select the Audio codec used to encode the DVD titles"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, TabPage)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:364
#, kde-format
msgid "File Namin&g"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkBlankReplace)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:415
#, kde-format
msgid "Replace all &blanks with:"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkTwoPassEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:463
#, kde-format
msgid "Enable 2-pass encoding"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkTwoPassEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:468
#, kde-format
msgid ""
"<p>If this option is checked K3b encodes the video titles in two passes. The first pass is used to gather information about the video in order to improve the distribution of bits in the second pass. The resulting video will have a higher quality using a variable bitrate.\n"
"<p>If this option is not checked K3b will create video files with a constant bitrate and a lower quality.\n"
"<p>2-pass encoding results in a doubled encoding time."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkTwoPassEncoding)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:471
#, kde-format
msgid "&2-pass encoding"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QCheckBox, m_checkTwoPassEncoding)
#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:474
#, kde-format
msgid "Alt+2"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkAutoClipping)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:484
#, kde-format
msgid "Automatically detect the black borders of the video"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkAutoClipping)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:489
#, kde-format
msgid ""
"<p>Most Video DVDs are encoded in a letterboxed format. <em>Letterboxed</em> refers to black bars used at the top and bottom (and sometimes at the sides) of the video to force it into one of the aspect ratios supported by the Video DVD standard.\n"
"<p>If this option is checked K3b will automatically detect and remove these black bars from the resulting video.\n"
"<p>Although this method is very reliable there may be problems if the source material is exceptionally short or dark."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAutoClipping)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:492
#, kde-format
msgid "Automatic &Video Clipping"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QCheckBox, m_checkAudioResampling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:502
#, kde-format
msgid "Change the sample rate of the audio stream to 44.1 KHz"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkAudioResampling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:506
#, kde-format
msgid ""
"<p>Video DVD audio streams normally are encoded with a sampling rate of 48000 Hz. Audio CDs on the other hand are encoded with a sampling rate of 44100 Hz.\n"
"<p>If this option is checked K3b will change the sampling rate of the audio stream to 44100 Hz."
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkAudioResampling)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:509
#, kde-format
msgid "Resample Audio to &44.1 KHz"
msgstr ""
#. i18n: ectx: property (shortcut), widget (QCheckBox, m_checkAudioResampling)
#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:512
#, kde-format
msgid "Alt+4"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_checkLowPriority)
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/base_k3bvideodvdrippingwidget.ui:522
#, kde-format
msgid "Low s&cheduling priority for the video transcoding process"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:156
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:222
#, kde-format
msgid "Title %1 (%2)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:177
#, kde-format
msgid "%1 %2Ch (%3%4)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:181
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:53
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:77
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:102
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:127
#, kde-format
msgid "unknown language"
msgstr ""
#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:188
#, kde-format
msgid "%1 (not supported)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:258
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:85
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:308
#, kde-format
msgid "Title"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdaudiomodel.cpp:259
#, kde-format
msgid "Video Size"
msgstr ""
-#. +> stable
-#: rip/videodvd/k3bvideodvdrippingdialog.cpp:241
-#, kde-format
-msgid "not supported"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:279
#, kde-format, no-c-format
msgctxt "Ch is short for Channels"
msgid "%1Ch"
msgid_plural "%1Ch"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:330
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:360
#, kde-format
msgid "Video DVD Ripping"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:361
#, kde-format
msgid "1 title from %2"
msgid_plural "%1 titles from %2"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:499
#, kde-format
msgid "<p>When using the <em>AC3 pass-through</em> audio codec all selected audio streams need to be in AC3 format. Please select another audio codec or choose AC3 audio streams for all ripped titles."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingdialog.cpp:502
#, kde-format
msgid "AC3 Pass-through"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:110
#, kde-format
msgid "Ripping Video DVD Titles"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:116
#, kde-format
msgid "Transcoding 1 title to %2/%3"
msgid_plural "Transcoding %1 titles to %2/%3"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:145
#, kde-format
msgid "Successfully ripped title %1 to '%2'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:150
#, kde-format
msgid "Failed to rip title %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:180
#, kde-format
msgid "Determined clipping values for title %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:181
#, kde-format
msgid "Top: %1, Bottom: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:182
#, kde-format
msgid "Left: %1, Right: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:189
#, kde-format
msgid "Insane clipping values. No clipping will be done at all."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingjob.cpp:199
#, kde-format
msgid "Failed to determine clipping values for title %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:87
#, kde-format
msgid "Show files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:88
#, kde-format
msgid "Shows plain Video DVD vob files from the DVD (including decryption) for further processing with another application"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:173
#, kde-format
msgid "Please select the titles to rip."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:174
#, kde-format
msgid "No Titles Selected"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:250
#, kde-format
msgid "K3b was unable to unmount device '%1' containing medium '%2'. Video DVD ripping will not work if the device is mounted. Please unmount manually."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:255
#, kde-format
msgid "Unmounting failed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:265
#, kde-format
msgid ""
"<p>Unable to read Video DVD contents: Found encrypted Video DVD."
"<p>Install <i>libdvdcss</i> to get Video DVD decryption support."
msgstr ""
#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:276
#, kde-format
msgid "%1 (Video DVD)"
msgstr ""
-#. +> stable
-#: rip/videodvd/k3bvideodvdrippingview.cpp:218
-#, kde-format
-msgid "Video DVD"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:277
#, kde-format
msgid "%1 title"
msgid_plural "%1 titles"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:285
#, kde-format
msgid "K3b uses transcode to rip Video DVDs. Please make sure it is installed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:299
#, kde-format
msgid ""
"<p>K3b uses transcode to rip Video DVDs. Your installation of transcode lacks support for any of the codecs supported by K3b."
"<p>Please make sure it is installed properly."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:312
#, kde-format
msgid "Unable to read Video DVD contents."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:351
#, kde-format
msgid "Open the Video DVD ripping dialog"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingview.cpp:353
#, kde-format
msgid ""
"<p>Rips single titles from a video DVD into a compressed format such as XviD. Menu structures are completely ignored."
"<p>If you intend to copy the plain Video DVD vob files from the DVD (including decryption) for further processing with another application, please use \"Show files\" button."
"<p>If you intend to make a copy of the entire Video DVD including all menus and extras it is recommended to use the K3b Copy tool."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:67
#, kde-format
msgid "Keep original dimensions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:68
#, kde-format
msgid "640x? (automatic height)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:69
#, kde-format
msgid "320x? (automatic height)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:187
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:188
#, kde-format
msgid "auto"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:287
#, kde-format
msgid ""
"<p><b>Pattern special strings:</b>"
"<p>The following strings will be replaced with their respective meaning in every track name.<br>"
"<p>"
"<table border=\"0\">"
"<tr>"
"<td></td>"
"<td><em>Meaning</em></td>"
"<td><em>Alternatives</em></td>"
"</tr>"
"<tr>"
"<td>%t</td>"
"<td>title number</td>"
"<td>%{t} or %{title_number}</td>"
"</tr>"
"<tr>"
"<td>%i</td>"
"<td>volume id (mostly the name of the Video DVD)</td>"
"<td>%{i} or %{volume_id}</td>"
"</tr>"
"<tr>"
"<td>%b</td>"
"<td>beautified volume id</td>"
"<td>%{b} or %{beautified_volume_id}</td>"
"</tr>"
"<tr>"
"<td>%l</td>"
"<td>two chars language code</td>"
"<td>%{l} or %{lang_code}</td>"
"</tr>"
"<tr>"
"<td>%n</td>"
"<td>language name</td>"
"<td>%{n} or %{lang_name}</td>"
"</tr>"
"<tr>"
"<td>%a</td>"
"<td>audio format (on the Video DVD)</td>"
"<td>%{a} or %{audio_format}</td>"
"</tr>"
"<tr>"
"<td>%c</td>"
"<td>number of audio channels (on the Video DVD)</td>"
"<td>%{c} or %{channels}</td>"
"</tr>"
"<tr>"
"<td>%v</td>"
"<td>size of the original video</td>"
"<td>%{v} or %{orig_video_size}</td>"
"</tr>"
"<tr>"
"<td>%s</td>"
"<td>size of the resulting video (<em>Caution: auto-clipping values are not taken into account.</em>)</td>"
"<td>%{s} or %{video_size}</td>"
"</tr>"
"<tr>"
"<td>%r</td>"
"<td>aspect ratio of the original video</td>"
"<td>%{r} or %{aspect_ratio}</td>"
"</tr>"
"<tr>"
"<td>%d</td>"
"<td>current date</td>"
"<td>%{d} or %{date}</td>"
"</tr>"
"</table>"
"<p><em>Hint: K3b also accepts slight variations of the long special strings. One can, for example, leave out the underscores.</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:340
#, kde-format
msgid "Video Picture Size"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:342
#, kde-format
msgid ""
"<p>Please choose the width and height of the resulting video. If one value is set to <em>Auto</em> K3b will choose this value depending on the aspect ratio of the video picture.<br>"
"Be aware that setting both the width and the height to fixed values will result in no aspect ratio correction being performed."
msgstr ""
#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:357
#, kde-format
msgid "Width:"
msgstr ""
-#. +> stable
-#: rip/videodvd/k3bvideodvdrippingwidget.cpp:365
-#, kde-format
-msgid "Width"
-msgstr ""
-
#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdrippingwidget.cpp:359
#, kde-format
msgid "Height:"
msgstr ""
-#. +> stable
-#: rip/videodvd/k3bvideodvdrippingwidget.cpp:367
-#, kde-format
-msgid "Height"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:49
#, kde-format
msgid "%1 %2Ch (%3)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:60
#, kde-format
msgid "No audio streams"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:68
#, kde-format
msgid "Audio Streams"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:73
#, kde-format
msgid "%1 %2Ch (%3<em>%4</em>)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:99
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:124
#, kde-format
msgid "RLE"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:100
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:125
#, kde-format
msgid "Extended"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:109
#, kde-format
msgid "No Subpicture streams"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:117
#, kde-format
msgid "Subpicture Streams"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:228
#, kde-format
msgid "MPEG1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:228
#, kde-format
msgid "MPEG2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:258
#, kde-format
msgid "%1 chapter"
msgid_plural "%1 chapters"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:268
#, kde-format
msgid "letterboxed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:270
#, kde-format
msgid "anamorph"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: rip/videodvd/k3bvideodvdtitlemodel.cpp:316
#, kde-format
msgid "Subpicture"
msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:169 k3baudioplayer.cpp:551
-#, kde-format
-msgid "no file"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:232
-#, kde-format
-msgid "Clear List"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:352
-#, kde-format
-msgid "No running aRtsd found"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:359
-#, kde-format
-msgid "Unknown file format"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:593
-#, kde-format
-msgid "playing"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:596
-#, kde-format
-msgid "paused"
-msgstr ""
-
-#. +> stable
-#: k3baudioplayer.cpp:599
-#, kde-format
-msgid "stopped"
-msgstr ""
-
-#. +> stable
-#: k3bjobprogressosd.cpp:198
-#, kde-format
-msgid "Hide OSD"
-msgstr ""
-
-#. +> stable
-#: k3bpassivepopup.cpp:126 projects/k3bprojectburndialog.cpp:74
-#, kde-format
-msgid "Close"
-msgstr ""
-
-#. +> stable
-#: k3bpassivepopup.cpp:133
-#, kde-format
-msgid "Keep Open"
-msgstr ""
-
-#. i18n: ectx: property (caption), widget (QWidget)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:9
-#, kde-format
-msgid "CDDB Options"
-msgstr ""
-
-#. i18n: ectx: attribute (title), widget (QWidget)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:38
-#, kde-format
-msgid "Local"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:49
-#, kde-format
-msgid "Use local CDDB directory"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:60
-#, kde-format
-msgid "Save entries in local directory (the first directory in the list)"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:94
-#, kde-format
-msgid "Directory:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (K3ListView)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:100
-#, kde-format
-msgid "Directory"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:127
-#, kde-format
-msgid "Move directory down"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:141
-#, kde-format
-msgid "Add directory"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:163
-#, kde-format
-msgid "Remove directory"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:177
-#, kde-format
-msgid "Move directory up"
-msgstr ""
-
-#. i18n: ectx: attribute (title), widget (QWidget)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:206
-#, kde-format
-msgid "Remote"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:243
-#, kde-format
-msgid "Server:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (K3ListView)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:265
-#, kde-format
-msgid "Server"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (K3ListView)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:276
-#, kde-format
-msgid "Port"
-msgstr ""
-
-#. i18n: ectx: property (prefix), widget (KIntNumInput)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:320
-#, kde-format
-msgid "Port "
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:334
-#, kde-format
-msgid "Add server"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:348
-#, kde-format
-msgid "Remove server"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:362
-#, kde-format
-msgid "Move server up"
-msgstr ""
-
-#. i18n: ectx: property (toolTip), widget (QToolButton)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:376
-#, kde-format
-msgid "Move server down"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:403
-#, kde-format
-msgid "Enable remote CDDB queries"
-msgstr ""
-
-#. i18n: ectx: property (title), widget (QGroupBox)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:432
-#, kde-format
-msgid "CGI Path"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (KLineEdit)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:452
-#, kde-format
-msgid "~/cddb/cddb.cgi"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:463
-#, kde-format
-msgid "Path:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox)
-#. +> stable
-#: option/base_k3bcddboptiontab.ui:471
-#, kde-format
-msgid "Manual CGI path"
-msgstr ""
-
-#. +> stable
-#: option/k3bdeviceoptiontab.cpp:45
-#, kde-format
-msgid "K3b tries to detect all your devices properly. If K3b is unable to detect your drive, you need to modify their permissions to give K3b write access to all devices."
-msgstr ""
-
-#. +> stable
-#: projects/k3baudioview.cpp:136
-#, kde-format
-msgid "No audio decoder plugins found. You will not be able to add any files to the audio project."
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:2
-#, kde-format
-msgid ""
-"<p>...that you do not need to erase a CDRW before rewriting it manually\n"
-"since K3b can do that automatically before writing.</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:9
-#, kde-format
-msgid ""
-"<p>...that you do not need to bother with any settings if you do not know\n"
-"what they mean. K3b is able to choose the settings best suited for you.</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:16
-#, kde-format
-msgid ""
-"<p>...that K3b has two types of settings. On the one hand K3b has settings like most\n"
-"KDE applications have accessible through the configuration dialog via the settings menu;\n"
-"on the other hand every K3b action dialog has three buttons to load and save defaults\n"
-"for that action. This way one may, for example, set the defaults for CD Copy: these defaults\n"
-"will then be loaded every time the CD Copy dialog is opened. The button <em>K3b defaults</em>\n"
-"will restore the <em>factory settings</em> in case you do not know if the settings you chose\n"
-"are appropriate.</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:28
-#, kde-format
-msgid ""
-"<p>...that you do not need to bother changing the settings marked as <em>advanced</em> if you \n"
-"do not know what they mean. K3b's defaults are suitable for most daily use.</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:35
-#, kde-format
-msgid ""
-"<p>Just left-click one of your devices in the device and file tree and see what happens. K3b opens a specific\n"
-"window based on the media's contents. For an audio CD for example you will be given a list of the tracks with\n"
-"the possibility to rip these tracks to any format supported by K3b (like mp3 or Ogg-Vorbis).</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: @info:tipoftheday
-#. +> stable
-#: tips:43
-#, kde-format
-msgid ""
-"<p>...that K3b lets you choose media instead of devices for burning. So if you want to burn to a certain\n"
-"medium simply insert it and wait for K3b to detect it. It will then appear as your burning medium.</p>"
-"\n"
-msgstr ""
-
-#. i18n: ectx: property (whatsThis), widget (QCheckBox, m_checkUseBurningGroup)
-#. +> stable
-#: base_k3bsetup.ui:31
-#, kde-format
-msgid ""
-"<p>If this option is checked, only the users in the specified group will be able to burn CDs and DVDs, since only they will have access to the devices and the CD recording programs used by K3b.</p>"
-"\n"
-"<p>Otherwise all users on the system have access to the devices and to all K3b functionality."
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QCheckBox, m_checkUseBurningGroup)
-#. +> stable
-#: base_k3bsetup.ui:34
-#, kde-format
-msgid "Use burning group:"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (KLineEdit, m_editBurningGroup)
-#. +> stable
-#: base_k3bsetup.ui:44
-#, kde-format
-msgid "burning"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, textLabel2)
-#. +> stable
-#: base_k3bsetup.ui:78
-#, kde-format
-msgid "Users allowed to burn (separated by space):"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
-#. +> stable
-#: base_k3bsetup.ui:110
-#, kde-format
-msgid "Check the devices whose permissions you want to be changed"
-msgstr ""
-
-#. i18n: ectx: property (title), widget (QGroupBox, groupBox2)
-#. +> stable
-#: base_k3bsetup.ui:133
-#, kde-format
-msgid "External Programs"
-msgstr ""
-
-#. i18n: ectx: attribute (title), widget (QWidget, tab)
-#. +> stable
-#: base_k3bsetup.ui:143
-#, kde-format
-msgid "Found Programs"
-msgstr ""
-
-#. i18n: ectx: property (text), widget (QLabel, textLabel1)
-#. +> stable
-#: base_k3bsetup.ui:149
-#, kde-format
-msgid "Check the programs whose permissions you want to be changed"
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:77
-#, kde-format
-msgid "K3bSetup"
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:79
-#, kde-format
-msgid "(C) 2003-2007 Sebastian Trueg"
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:80
-#, kde-format
-msgid "Sebastian Trueg"
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:88
-#, kde-format
-msgid ""
-"<p>This simple setup assistant is able to set the permissions needed by K3b in order to burn CDs and DVDs. "
-"<p>It does not take things like devfs or resmgr into account. In most cases this is not a problem but on some systems the permissions may be altered the next time you login or restart your computer. In those cases it is best to consult the distribution documentation."
-"<p><b>Caution:</b> Although K3b::Setup should not be able to mess up your system no guarantee can be given."
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:145
-#, kde-format
-msgid ""
-"<h2>K3b::Setup</h2>"
-"<p>This simple setup assistant is able to set the permissions needed by K3b in order to burn CDs and DVDs."
-"<p>It does not take into account devfs or resmgr, or similar. In most cases this is not a problem, but on some systems the permissions may be altered the next time you login or restart your computer. In these cases it is best to consult the distribution's documentation."
-"<p>The important task that K3b::Setup performs is grant write access to the CD and DVD devices."
-"<p><b>Caution:</b> Although K3b::Setup should not be able to damage your system, no guarantee can be given."
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:188
-#, kde-format
-msgid "There is no group \"%1\"."
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:228
-#, kde-format
-msgid "Cannot run worker."
-msgstr ""
-
-#. +> stable
-#: k3bsetup.cpp:238
-#, kde-format
-msgid "Following devices and programs could not be updated:"
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3b.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3b.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3b.pot (revision 1509808)
@@ -1,5426 +1,5081 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-11-15 12:07+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5 stable5
#: core/k3bcore.cpp:252
#, kde-format
msgid "Inhibiting sleep for disc writing"
msgstr ""
#. +> trunk5 stable5
#: core/k3bcore.cpp:268
#, kde-format
msgid "Disable inhibition for disc writing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: core/k3bglobals.cpp:368
#, kde-format
msgid "Auto"
msgstr ""
#. +> trunk5 stable5
#: core/k3bkjobbridge.cpp:105
#, kde-format
msgid "Source"
msgstr ""
#. +> trunk5 stable5
#: core/k3bkjobbridge.cpp:106
#, kde-format
msgid "Target"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:114
#, kde-format
msgid "Writing Audio Cue File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:212
#, kde-format
msgid "Analysing the audio file failed. Corrupt file?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:280
#, kde-format
msgid "Analysing the audio file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:281
#, kde-format
msgid "Analysing %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:288
#, kde-format
msgid "Unable to handle '%1' due to an unsupported format."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiocuefilewritingjob.cpp:293
#, kde-format
msgid "No valid audio cue file: '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiosessionreadingjob.cpp:142
#, kde-format
msgid "Could not load libcdparanoia."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiosessionreadingjob.cpp:150 jobs/k3bdatatrackreader.cpp:148
#: jobs/k3bdatatrackreader.cpp:182
#, kde-format
msgid "Could not open device %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiosessionreadingjob.cpp:156
#, kde-format
msgid "Error while initializing audio ripping."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiosessionreadingjob.cpp:209 jobs/k3bdatatrackreader.cpp:239
#: jobs/k3bdvdcopyjob.cpp:367
#, kde-format
msgid "Unable to open '%1' for writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3baudiosessionreadingjob.cpp:243
#, kde-format
msgid "Unrecoverable error while ripping track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bbinimagewritingjob.cpp:60
#, kde-format
msgid "Write Binary Image"
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bbinimagewritingjob.cpp:188
#, kde-format
msgid "One copy successfully created"
msgid_plural "%1 copies successfully created"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: jobs/k3bbinimagewritingjob.cpp:188
-#, kde-format
-msgid "%1 copy successfully created"
-msgid_plural "%1 copies successfully created"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bbinimagewritingjob.cpp:204 jobs/k3bcdcopyjob.cpp:1180
#: jobs/k3bcdcopyjob.cpp:1182 jobs/k3bcdcopyjob.cpp:1185
#: jobs/k3bcdcopyjob.cpp:1187
#, kde-format
msgid "Writing track %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bbinimagewritingjob.cpp:210
#, kde-format
msgid "Writing cue/bin Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bbinimagewritingjob.cpp:212 jobs/k3biso9660imagewritingjob.cpp:345
#, kde-format
msgid " - %1 Copy"
msgid_plural " - %1 Copies"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:74 jobs/k3bblankingjob.cpp:162
#, kde-format
msgid "Erasing CD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:75
#, kde-format
msgid "When erasing a CD-RW no progress information is available."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:115
#, kde-format
msgid ""
"Please insert a rewritable CD medium into drive"
"<p><b>%1 %2 (%3)</b>."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:152
#, kde-format
msgid "Blanking error."
msgstr ""
-#. +> stable
-#: jobs/k3bblankingjob.cpp:152
-#, kde-format
-msgid "Blanking error "
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:153
#, kde-format
msgid "Sorry, no error handling yet."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bblankingjob.cpp:169 jobs/k3bdvdformattingjob.cpp:107
#, kde-format
msgid "Quick Format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:162 jobs/k3bdvdcopyjob.cpp:122
#, kde-format
msgid "Checking Source Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:165 jobs/k3bdvdcopyjob.cpp:132
#, kde-format
msgid "Waiting for source medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:175 jobs/k3bdvdcopyjob.cpp:144
#, kde-format
msgid "Checking source medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:203
#, kde-format
msgid "K3b does not copy CDs containing multiple data tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:207
#, kde-format
msgid "Copying Multisession Data CD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:209
#, kde-format
msgid "Copying Data CD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:215
#, kde-format
msgid "K3b can only copy CD-Extra mixed mode CDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:219
#, kde-format
msgid "Copying Enhanced Audio CD (CD-Extra)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:224
#, kde-format
msgid "Copying Audio CD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:229
#, kde-format
msgid "The source disk is empty."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:271
#, kde-format
msgid "K3b needs cdrecord 2.01a12 or newer to copy Mode2 data tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:283
#, kde-format
msgid "You will only be able to copy the first session in raw writing mode. Continue anyway?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:285
#, kde-format
msgid "Multisession CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:290
#, kde-format
msgid "Only copying first session."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:319 jobs/k3bdvdcopyjob.cpp:351
#, kde-format
msgid "Unable to determine free space in temporary folder '%1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:325 jobs/k3bdvdcopyjob.cpp:358
#, kde-format
msgid "Not enough space left in temporary folder."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:334 jobs/k3bdvdcopyjob.cpp:375
#, kde-format
msgid "Unmounting source medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:363
#, kde-format
msgid "Unable to read Table of contents"
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:371
#, kde-format
msgid "Searching CD-Text"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:371
-#, kde-format
-msgid "Searching CD-TEXT"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:385
#, kde-format
msgid "Found CD-Text (%1 - %2)."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:385
-#, kde-format
-msgid "Found CD-TEXT (%1 - %2)."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:390
#, kde-format
msgid "Found corrupted CD-Text. Ignoring it."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:390
-#, kde-format
-msgid "Found corrupted CD-TEXT. Ignoring it."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:395
#, kde-format
msgid "No CD-Text found."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:395
-#, kde-format
-msgid "No CD-TEXT found."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:406
#, kde-format
msgid "Querying CDDB"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:406
-#, kde-format
-msgid "Querying Cddb"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:427
#, kde-format
msgid "Found CDDB entry (%1 - %2)."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:427
-#, kde-format
-msgid "Found Cddb entry (%1 - %2)."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:450
#, kde-format
msgid "No CDDB entry found."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:450
-#, kde-format
-msgid "No Cddb entry found."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:453
#, kde-format
msgid "CDDB error (%1)."
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:453
-#, kde-format
-msgid "Cddb error (%1)."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:469
#, kde-format
msgid "Found CD-Text (%1 - %2) and CDDB (%3 - %4) entries. Which one should be used to generate the CD-Text on the new CD?"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:469
-#, kde-format
-msgid "Found CD-TEXT (%1 - %2) and Cddb (%3 - %4) entries. Which one should be used to generate the CD-TEXT on the new CD?"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:475
#, kde-format
msgid "CD-Text"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:475
-#, kde-format
-msgid "CD-TEXT"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:476
#, kde-format
msgid "Use CD-Text data"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:476
-#, kde-format
-msgid "Use CD-TEXT data"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:477
#, kde-format
msgid "Use CDDB entry"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:477
-#, kde-format
-msgid "Use Cddb entry"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:483 projects/k3bcdrdaowriter.cpp:526
#: projects/k3bcdrecordwriter.cpp:421 projects/k3bcdrskinwriter.cpp:432
#: projects/k3bgrowisofswriter.cpp:341
#, kde-format
msgid "Preparing write process..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:542 jobs/k3bcdcopyjob.cpp:588
#: jobs/k3bdvdcopyjob.cpp:330
#, kde-format
msgid "Specified an unusable temporary path. Using default."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:553
#, kde-format
msgid "Unable to create temporary folder '%1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:560
#, kde-format
msgid "Using temporary folder %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:583 jobs/k3bdvdcopyjob.cpp:325
#, kde-format
msgid "Do you want to overwrite %1?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:584 jobs/k3bdvdcopyjob.cpp:326
#, kde-format
msgid "File Exists"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:593 jobs/k3bdvdcopyjob.cpp:335
#, kde-format
msgid "Writing image file to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:609
#, kde-format
msgid "Reading Session %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:611
#, kde-format
msgid "Reading Source Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:614 jobs/k3bcdcopyjob.cpp:1202
#, kde-format
msgid "Reading track %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:707
#, kde-format
msgid "Simulating Session %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:709
#, kde-format
msgid "Writing Copy %1 (Session %2)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:711
#, kde-format
msgid "Writing Copy (Session %1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:715 projects/audiocd/k3baudiojob.cpp:651
#: projects/datacd/k3bdatajob.cpp:438 projects/k3bcdrdaowriter.cpp:568
#: projects/k3bcdrdaowriter.cpp:586 projects/k3bcdrecordwriter.cpp:449
#: projects/k3bcdrskinwriter.cpp:460 projects/k3bgrowisofswriter.cpp:366
#: projects/mixedcd/k3bmixedjob.cpp:1012
#, kde-format
msgid "Simulating"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:717 projects/audiocd/k3baudiojob.cpp:653
#: projects/datacd/k3bdatajob.cpp:440 projects/mixedcd/k3bmixedjob.cpp:1014
#, kde-format
msgid "Writing Copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:719
#, kde-format
msgid "Writing Copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:723 jobs/k3bdvdbooktypejob.cpp:113
#: projects/audiocd/k3baudiojob.cpp:658 projects/mixedcd/k3bmixedjob.cpp:1021
#, kde-format
msgid "Waiting for media"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:862 jobs/k3bmetawriter.cpp:480
#: projects/audiocd/k3baudiojob.cpp:302
#, kde-format
msgid "It is not possible to write CD-Text in TAO mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:981
#, kde-format
msgid "Successfully read session %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:983
#, kde-format
msgid "Successfully read source disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:998
#, kde-format
msgid "K3b was unable to eject the source disk. Please do so manually."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1015
#, kde-format
msgid "Error while reading session %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1043 jobs/k3bverificationjob.cpp:108
#: projects/mixedcd/k3bmixedjob.cpp:529
#, kde-format
msgid "Need to reload medium to return to proper state."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1044
#, kde-format
msgid "Reloading the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1062 projects/audiocd/k3baudiojob.cpp:420
#: projects/datacd/k3bdatajob.cpp:531 projects/mixedcd/k3bmixedjob.cpp:543
#: projects/videocd/k3bvcdjob.cpp:503
#, kde-format
msgid "K3b was unable to eject the written disk. Please do so manually."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1100 jobs/k3bverificationjob.cpp:268
#: projects/k3bcdrecordwriter.cpp:736 projects/k3bcdrskinwriter.cpp:748
#: projects/mixedcd/k3bmixedjob.cpp:564
#, kde-format
msgid "Please reload the medium and press 'OK'"
msgstr ""
-#. +> stable
-#: jobs/k3bcdcopyjob.cpp:1101 jobs/k3bverificationjob.cpp:269
-#: projects/k3bcdrecordwriter.cpp:750 projects/mixedcd/k3bmixedjob.cpp:564
-#, kde-format
-msgid "Please reload the medium and press 'ok'"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1101 jobs/k3bverificationjob.cpp:269
#, kde-format
msgid "Failed to reload the medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1115 projects/audiocd/k3baudiojob.cpp:696
#, kde-format
msgid "Removing temporary files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1121 jobs/k3bclonejob.cpp:346
#, kde-format
msgid "Removing image files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1210
#, kde-format
msgid "Creating CD Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1214
#, kde-format
msgid "Simulating CD Copy On-The-Fly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1216
#, kde-format
msgid "Simulating CD Copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1220
#, kde-format
msgid "Copying CD On-The-Fly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1222
#, kde-format
msgid "Copying CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdcopyjob.cpp:1229 jobs/k3bdvdcopyjob.cpp:962
#, kde-format
msgid "Creating 1 copy"
msgid_plural "Creating %1 copies"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdda2wavreader.cpp:96 jobs/k3bclonejob.cpp:88
#: jobs/k3bdvdbooktypejob.cpp:287 jobs/k3bdvdformattingjob.cpp:463
#: jobs/k3breadcdreader.cpp:106 projects/datacd/k3bmsinfofetcher.cpp:56
#: projects/datacd/k3bmsinfofetcher.cpp:92 projects/k3bcdrdaowriter.cpp:447
#: projects/k3bcdrecordwriter.cpp:201 projects/k3bcdrskinwriter.cpp:201
#: projects/k3bgrowisofswriter.cpp:143 projects/videocd/k3bvcdjob.cpp:201
#, kde-format
msgid "Could not find %1 executable."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdda2wavreader.cpp:135 jobs/k3bdvdbooktypejob.cpp:335
#: jobs/k3bdvdformattingjob.cpp:504
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:181
#: jobs/k3bvideodvdtitletranscodingjob.cpp:383
#: projects/datacd/k3bisoimager.cpp:307 projects/datacd/k3bisoimager.cpp:449
#: projects/k3bcdrdaowriter.cpp:555 projects/k3bcdrecordwriter.cpp:441
#: projects/k3bcdrskinwriter.cpp:452 projects/k3bgrowisofswriter.cpp:361
#: projects/videocd/k3bvcdjob.cpp:255
#, kde-format
msgid "Could not start %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdda2wavreader.cpp:240 jobs/k3bdvdbooktypejob.cpp:192
#: jobs/k3bdvdformattingjob.cpp:271
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:278
#: jobs/k3bvideodvdtitletranscodingjob.cpp:479
#: projects/audiocd/k3baudionormalizejob.cpp:186
#: projects/datacd/k3bisoimager.cpp:171 projects/k3bcdrdaowriter.cpp:766
#: projects/k3bcdrecordwriter.cpp:897 projects/k3bcdrskinwriter.cpp:909
#: projects/videocd/k3bvcdjob.cpp:355
#, kde-format
msgid "%1 returned an unknown error (code %2)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bcdda2wavreader.cpp:246 jobs/k3bdvdbooktypejob.cpp:200
#: jobs/k3bdvdformattingjob.cpp:279
#: projects/audiocd/k3baudionormalizejob.cpp:198
#: projects/videocd/k3bvcdjob.cpp:363
#, kde-format
msgid "%1 did not exit cleanly."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:94
#, kde-format
msgid "Cdrecord version %1 does not have cloning support."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:102
#, kde-format
msgid "No device set."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:111
#, kde-format
msgid "CD writer %1 (%2) does not support cloning."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:144
#, kde-format
msgid "Reading clone image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:225 projects/datacd/k3bdatajob.cpp:469
#: projects/videocd/k3bvcdjob.cpp:463
#, kde-format
msgid "Writing Track %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:242
#, kde-format
msgid "Successfully written clone copy %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:290
#, kde-format
msgid "Successfully read disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:302
#, kde-format
msgid "Failed to read disk completely in clone mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:309
#, kde-format
msgid "Error while reading disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:335
#, kde-format
msgid "Simulating clone copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:337
#, kde-format
msgid "Writing clone copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:358
#, kde-format
msgid "Creating Clone Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:361
#, kde-format
msgid "Simulating Clone Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:363
#, kde-format
msgid "Burning Clone Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:366
#, kde-format
msgid "Simulating CD Cloning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:368
#, kde-format
msgid "Cloning CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bclonejob.cpp:374
#, kde-format
msgid "Creating 1 clone copy"
msgid_plural "Creating %1 clone copies"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:177
#, kde-format
msgid "Unable to open libdvdcss."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:186
#, kde-format
msgid "Retrieving all CSS keys. This might take a while."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:189
#, kde-format
msgid "Failed to retrieve all CSS keys."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:190
#, kde-format
msgid "Video DVD decryption failed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:214
#, kde-format
msgid "No support for reading formless Mode2 sectors."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:216
#, kde-format
msgid "Unsupported sector type."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:223
#, kde-format
msgid "Reading with sector size %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:274 jobs/k3bdatatrackreader.cpp:449
#, kde-format
msgid "Error while reading sector %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:356
#, kde-format
msgid "Ignored %1 erroneous sector."
msgid_plural "Ignored a total of %1 erroneous sectors."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:425
#, kde-format
msgid "Problem while reading. Retrying from sector %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdatatrackreader.cpp:441
#, kde-format
msgid "Ignoring read error in sector %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:84
#, kde-format
msgid "Changing DVD Booktype"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:102 jobs/k3bdvdformattingjob.cpp:122
#, kde-format
msgid "No device set"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:118
#, kde-format
msgid ""
"Please insert an empty DVD+R or a DVD+RW medium into drive"
"<p><b>%1 %2 (%3)</b>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:128 jobs/k3bdvdbooktypejob.cpp:129
#: jobs/k3bdvdformattingjob.cpp:153 jobs/k3bdvdformattingjob.cpp:154
#: jobs/k3bverificationjob.cpp:235
#, kde-format
msgid "Checking medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:188
#, kde-format
msgid "Booktype successfully changed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:194 jobs/k3bdvdformattingjob.cpp:273
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:281
#: jobs/k3bvideodvdtitletranscodingjob.cpp:482
#: projects/audiocd/k3baudionormalizejob.cpp:188
#: projects/datacd/k3bisoimager.cpp:173 projects/videocd/k3bvcdjob.cpp:357
#, kde-format
msgid "Please send me an email with the last output."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:217
#, kde-format
msgid "Ejecting DVD..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:234
#, kde-format
msgid "Unable to eject media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:257
#, kde-format
msgid "Cannot change booktype on non-empty DVD+R media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:265
#, kde-format
msgid "No DVD+R(W) media found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:270 jobs/k3bdvdformattingjob.cpp:321
#, kde-format
msgid "Unable to determine media state."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdbooktypejob.cpp:340
#, kde-format
msgid "Changing Booktype"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:127
#, kde-format
msgid "K3b does not support writing on-the-fly with growisofs %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:129
#, kde-format
msgid "Disabling on-the-fly writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:164
#, kde-format
msgid "No source medium found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:190
#, kde-format
msgid "Found encrypted DVD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:206
#, kde-format
msgid "Cannot copy encrypted DVDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:242
#, kde-format
msgid "The writer does not support writing Double Layer DVDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:249
#, kde-format
msgid "This growisofs version does not support writing Double Layer DVDs."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:266
#, kde-format
msgid "K3b does not support copying multi-session DVD or Blu-ray disks."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:289
#, kde-format
msgid "K3b relies on the size saved in the ISO 9660 header."
msgstr ""
-#. +> stable
-#: jobs/k3bdvdcopyjob.cpp:289
-#, kde-format
-msgid "K3b relies on the size saved in the ISO9660 header."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:290
#, kde-format
msgid "This might result in a corrupt copy if the source was mastered with buggy software."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:297 jobs/k3bverificationjob.cpp:132
#: jobs/k3bverificationjob.cpp:362
#, kde-format
msgid "Unable to determine the ISO 9660 filesystem size."
msgstr ""
-#. +> stable
-#: jobs/k3bdvdcopyjob.cpp:297 jobs/k3bverificationjob.cpp:133
-#: jobs/k3bverificationjob.cpp:363
-#, kde-format
-msgid "Unable to determine the ISO9660 filesystem size."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:306
#, kde-format
msgid "K3b does not support copying DVD-RAM."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:312
#, kde-format
msgid "Unsupported media type."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:336
#, kde-format
msgid "Reading source medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:380
#, kde-format
msgid "Creating image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:386
#, kde-format
msgid "Simulating copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:388 jobs/k3bdvdcopyjob.cpp:603
#: jobs/k3bdvdcopyjob.cpp:693 jobs/k3bdvdcopyjob.cpp:753
#, kde-format
msgid "Writing copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:390 jobs/k3bdvdcopyjob.cpp:605
#, kde-format
msgid "Writing copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:580
#, kde-format
msgid "Successfully read source medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:592
#, kde-format
msgid "K3b was unable to eject the source medium. Please do so manually."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:653
#, kde-format
msgid "Successfully written copy %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:676
#, kde-format
msgid "Verifying copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:678
#, kde-format
msgid "Verifying copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:688 jobs/k3biso9660imagewritingjob.cpp:154
#, kde-format
msgid "K3b was unable to eject the written medium. Please do so manually."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:797
#, kde-format
msgid "Unsupported media type: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:823 jobs/k3bdvdcopyjob.cpp:916
#: projects/datacd/k3bdatajob.cpp:827 projects/datacd/k3bdatajob.cpp:948
#, kde-format
msgid "%1 media do not support write simulation. Do you really want to continue? The disc will actually be written to."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:826 jobs/k3bdvdcopyjob.cpp:919
#: projects/datacd/k3bdatajob.cpp:830 projects/datacd/k3bdatajob.cpp:951
#, kde-format
msgid "No Simulation with %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:832
#, kde-format
msgid "Writing DVD copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:836
#, kde-format
msgid "Writing mode ignored when writing DVD+R(W) media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:838 jobs/k3bdvdcopyjob.cpp:928
#: jobs/k3bmetawriter.cpp:939 jobs/k3bmetawriter.cpp:948
#: projects/datacd/k3bdatajob.cpp:852 projects/datacd/k3bdatajob.cpp:974
#, kde-format
msgid "Writing %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:846 jobs/k3bmetawriter.cpp:517
#: projects/datacd/k3bdatajob.cpp:860
#, kde-format
msgid "Your writer (%1 %2) does not support simulation with DVD-R(W) media. Do you really want to continue? The media will actually be written to."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:851 jobs/k3bmetawriter.cpp:522
#: projects/datacd/k3bdatajob.cpp:865
#, kde-format
msgid "No Simulation with DVD-R(W)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:872 jobs/k3bmetawriter.cpp:935
#: projects/datacd/k3bdatajob.cpp:879
#, kde-format
msgid "Writing DVD-RW in restricted overwrite mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:880
#, kde-format
msgid "Writing DVD-RW in DAO mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:884
#, kde-format
msgid "Writing DVD-RW in incremental mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:893 jobs/k3bmetawriter.cpp:454
#: jobs/k3bmetawriter.cpp:503 projects/datacd/k3bdatajob.cpp:920
#, kde-format
msgid "Restricted Overwrite is not possible with DVD-R media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:898 jobs/k3bmetawriter.cpp:941
#: projects/datacd/k3bdatajob.cpp:896 projects/datacd/k3bdatajob.cpp:913
#, kde-format
msgid "Writing %1 in DAO mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:902 jobs/k3bmetawriter.cpp:943
#: projects/datacd/k3bdatajob.cpp:922
#, kde-format
msgid "Writing %1 in incremental mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:925
#, kde-format
msgid "Writing BD copy"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:941 projects/datacd/k3bdatajob.cpp:1030
#, kde-format
msgid "Removed image file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:949
#, kde-format
msgid "Creating Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:953
#, kde-format
msgid "Copying DVD or BD On-The-Fly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdcopyjob.cpp:955
#, kde-format
msgid "Copying DVD or BD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:100
#, kde-format
msgid "Formatting disc"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:130 projects/k3bcdrdaowriter.cpp:538
#: projects/k3bcdrecordwriter.cpp:425 projects/k3bcdrskinwriter.cpp:436
#: projects/k3bgrowisofswriter.cpp:345
#, kde-format
msgid "Unmounting medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:143
#, kde-format
msgid ""
"Please insert a rewritable DVD or Blu-ray medium into drive"
"<p><b>%1 %2 (%3)</b>."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:261
#, kde-format
msgid "Formatting successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:264
#, kde-format
msgid "Do not be concerned with the progress stopping before 100%."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:265
#, kde-format
msgid "The formatting will continue in the background during writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:290
#, kde-format
msgid "Ejecting medium..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:302 projects/k3babstractwriter.cpp:84
#, kde-format
msgid "Unable to eject medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:342
#, kde-format
msgid "Found %1 medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:346
#, kde-format
msgid "No rewritable DVD or BD medium found. Unable to format."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:371 jobs/k3bdvdformattingjob.cpp:421
#, kde-format
msgid "No need to format %1 media more than once."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:373 jobs/k3bdvdformattingjob.cpp:423
#, kde-format
msgid "It may simply be overwritten."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:376 jobs/k3bdvdformattingjob.cpp:415
#: jobs/k3bdvdformattingjob.cpp:426
#, kde-format
msgid "Forcing formatting anyway."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:377
#, kde-format
msgid "It is not recommended to force formatting of %1 media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:379
#, kde-format
msgid "After 10-20 reformats the media might become unusable."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:388
#, kde-format
msgid "Formatting %1 medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:399
#, kde-format
msgid "Formatted in %1 mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:413
#, kde-format
msgid "Media is already empty."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:440
#, kde-format
msgid "Formatting DVD-RW in %1 mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:447
#, kde-format
msgid "Unable to determine the current formatting state of the DVD-RW medium."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:470
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:106
#: jobs/k3bvideodvdtitletranscodingjob.cpp:142
#: projects/audiocd/k3baudionormalizejob.cpp:62
#: projects/datacd/k3bmkisofshandler.cpp:62 projects/k3bcdrdaowriter.cpp:455
#: projects/k3bcdrecordwriter.cpp:403 projects/k3bcdrskinwriter.cpp:414
#: projects/k3bgrowisofswriter.cpp:157 projects/videocd/k3bvcdjob.cpp:219
#, kde-format
msgid "Using %1 %2 – Copyright © %3"
msgstr ""
-#. +> stable
-#: jobs/k3bdvdformattingjob.cpp:471
-#: jobs/k3bvideodvdtitledetectclippingjob.cpp:106
-#: jobs/k3bvideodvdtitletranscodingjob.cpp:143
-#: projects/audiocd/k3baudionormalizejob.cpp:62
-#: projects/datacd/k3bmkisofshandler.cpp:62 projects/k3bcdrdaowriter.cpp:458
-#: projects/k3bcdrecordwriter.cpp:417 projects/k3bgrowisofswriter.cpp:170
-#: projects/videocd/k3bvcdjob.cpp:222
-#, kde-format
-msgid "Using %1 %2 - Copyright (C) %3"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bdvdformattingjob.cpp:509
#, kde-format
msgid "Formatting"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:89 projects/audiocd/k3baudiojob.cpp:155
#: projects/datacd/k3bdatajob.cpp:148 projects/mixedcd/k3bmixedjob.cpp:222
#, kde-format
msgid "Preparing data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:92
#, kde-format
msgid "Could not find image %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:138 projects/datacd/k3bdatajob.cpp:522
#, kde-format
msgid "Verifying written data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:140
#, kde-format
msgid "Verifying written copy %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:213
#, kde-format
msgid "Writing image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:215
#, kde-format
msgid "Writing copy %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:234
#, kde-format
msgid "Waiting for medium"
msgstr ""
#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:341
#, kde-format
msgid "Simulating ISO 9660 Image"
msgstr ""
-#. +> stable
-#: jobs/k3biso9660imagewritingjob.cpp:342
-#, kde-format
-msgid "Simulating ISO9660 Image"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3biso9660imagewritingjob.cpp:343
#, kde-format
msgid "Burning ISO 9660 Image"
msgstr ""
-#. +> stable
-#: jobs/k3biso9660imagewritingjob.cpp:344
-#, kde-format
-msgid "Burning ISO9660 Image"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:309 projects/datacd/k3bdatajob.cpp:781
#: projects/datacd/k3bdatajob.cpp:804
#, kde-format
msgid "Cannot write %1 media using %2. Falling back to default application."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:315
#, kde-format
msgid "DVD and Blu-ray tracks can only be written in MODE1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:340
#, kde-format
msgid "Missing Blu-ray support in cdrecord and growisofs. Please update the system."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:436 projects/audiocd/k3baudiojob.cpp:252
#, kde-format
msgid "Track lengths below 4 seconds violate the Red Book standard."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:468 projects/audiocd/k3baudiojob.cpp:290
#: projects/mixedcd/k3bmixedjob.cpp:1234
#, kde-format
msgid "On-the-fly writing with cdrecord < 2.01a13 not supported."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:475 projects/audiocd/k3baudiojob.cpp:297
#: projects/mixedcd/k3bmixedjob.cpp:1240
#, kde-format
msgid "Cdrecord %1 does not support CD-Text writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:487 projects/datacd/k3bdatajob.cpp:903
#, kde-format
msgid "Your writer (%1 %2) does not support Incremental Streaming with %3 media. Multisession will not be possible. Continue anyway?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:492 projects/datacd/k3bdatajob.cpp:908
#, kde-format
msgid "No Incremental Streaming"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:508
#, kde-format
msgid "DVD+R(W) media do not support write simulation. Do you really want to continue? The media will actually be written to."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:511
#, kde-format
msgid "No Simulation with DVD+R(W)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:537 projects/datacd/k3bdatajob.cpp:1060
#, kde-format
msgid "Most writers do not support writing multisession CDs in DAO mode."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:790
#, kde-format
msgid "No version of cdrskin can do this yet."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:895
#, kde-format
msgid "Writing CD in Session At Once mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:897
#, kde-format
msgid "Writing CD in Track At Once mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:899
#, kde-format
msgid "Writing CD in Raw mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:902
#, kde-format
msgid "Appending session to CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:909
#, kde-format
msgid "Writing rewritable CD in Session At Once mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:911
#, kde-format
msgid "Writing rewritable CD in Track At Once mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:913
#, kde-format
msgid "Writing rewritable CD in Raw mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:916
#, kde-format
msgid "Appending session to rewritable CD."
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:923
#, kde-format
msgid "Growing ISO 9660 filesystem on DVD+RW."
msgstr ""
-#. +> stable
-#: jobs/k3bmetawriter.cpp:846
-#, kde-format
-msgid "Growing ISO9660 filesystem on DVD+RW."
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:925 projects/datacd/k3bdatajob.cpp:882
#, kde-format
msgid "Growing ISO 9660 filesystem on DVD-RW in restricted overwrite mode."
msgstr ""
-#. +> stable
-#: jobs/k3bmetawriter.cpp:848 projects/datacd/k3bdatajob.cpp:884
-#, kde-format
-msgid "Growing ISO9660 filesystem on DVD-RW in restricted overwrite mode."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:927
#, kde-format
msgid "Appending session to DVD+R."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:929
#, kde-format
msgid "Appending session to Double Layer DVD+R."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:931
#, kde-format
msgid "Appending session to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bmetawriter.cpp:937
#, kde-format
msgid "Writing Double Layer DVD+R."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:123
#, kde-format
msgid "Using readcd %1 instead of default version for clone support."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:130
#, kde-format
msgid "Could not find readcd executable with cloning support."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:163 jobs/k3breadcdreader.cpp:164
#, kde-format
msgid "Writing image to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:206
#, kde-format
msgid "Could not start readcd."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:262
#, kde-format
msgid "Cannot read source disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:274
#, kde-format
msgid "Retrying from sector %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:289
#, kde-format
msgid "Uncorrected error in sector %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:292
#, kde-format
msgid "Corrected error in sector %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:312
#, kde-format
msgid "%1 returned error: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3breadcdreader.cpp:317
#, kde-format
msgid "Readcd exited abnormally."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:229 jobs/k3bverificationjob.cpp:285
#: jobs/k3bverificationjob.cpp:308
#, kde-format
msgid "Internal Error: Verification job improperly initialized (%1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:230
#, kde-format
msgid "no tracks added"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:286 jobs/k3bverificationjob.cpp:309
#, kde-format
msgid "specified track number '%1' not found on medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:330
#, kde-format
msgid "Verifying track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:398
#, kde-format
msgid "Written data in track %1 differs from original."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bverificationjob.cpp:402
#, kde-format
msgid "Written data verified."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:90
#: jobs/k3bvideodvdtitletranscodingjob.cpp:126
#, kde-format
msgid "%1 executable could not be found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:96
#: jobs/k3bvideodvdtitletranscodingjob.cpp:132
#, kde-format
msgid "%1 version %2 is too old."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:111
#, kde-format
msgid "Analysing Title %1 of Video DVD %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:185
#, kde-format
msgid "Analysing Chapter %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitledetectclippingjob.cpp:262
#, kde-format
msgid "Ignoring clipping values of last chapter due to its short playback time."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:158
#, kde-format
msgid "Unable to create folder '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:164
#, kde-format
msgid "Invalid filename: '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:176
#, kde-format
msgid "Transcoding title %1 from Video DVD %2"
msgstr ""
#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:201
#, kde-format
msgid "Invalid video codec set: %1"
msgstr ""
-#. +> stable
-#: jobs/k3bvideodvdtitletranscodingjob.cpp:202
-#, kde-format
-msgid "Invalid Video codec set: %1"
-msgstr ""
-
#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:224
#, kde-format
msgid "Invalid audio codec set: %1"
msgstr ""
-#. +> stable
-#: jobs/k3bvideodvdtitletranscodingjob.cpp:225
-#, kde-format
-msgid "Invalid Audio codec set: %1"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:365
#, kde-format
msgid "Resizing picture of title %1 to %2x%3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:388
#, kde-format
msgid "Single-pass Encoding"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:390
#, kde-format
msgid "Two-pass Encoding: First Pass"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:392
#, kde-format
msgid "Two-pass Encoding: Second Pass"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:416
#, kde-format
msgid "Removing incomplete video file '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:490
#, kde-format
msgid "Execution of %1 failed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:491
#, kde-format
msgid "Please consult the debugging output for details."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:522
#, kde-format
msgid "AC3 (Stereo)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:524
#, kde-format
msgid "AC3 (Pass-through)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:526
#, kde-format
msgid "MPEG1 Layer III"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:537
#, kde-format
msgid "MPEG4 (FFMPEG)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:539
#, kde-format
msgid "XviD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:550
#, kde-format
msgid "FFmpeg is an open-source project trying to support most video and audio codecs used these days. Its subproject libavcodec forms the basis for multimedia players such as xine or mplayer."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:554
#, kde-format
msgid "FFmpeg contains an implementation of the MPEG-4 video encoding standard which produces high quality results."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:557
#, kde-format
msgid "XviD is a free and open source MPEG-4 video codec. XviD was created by a group of volunteer programmers after the OpenDivX source was closed in July 2001."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:560
#, kde-format
msgid "XviD features MPEG-4 Advanced Profile settings such as b-frames, global and quarter pixel motion compensation, lumi masking, trellis quantization, and H.263, MPEG and custom quantization matrices."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:564
#, kde-format
msgid "XviD is a primary competitor of DivX (XviD being DivX spelled backwards). While DivX is closed source and may only run on Windows, Mac OS and Linux, XviD is open source and can potentially run on any platform."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:568
#, kde-format
msgid "(Description taken from the Wikipedia article)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:578
#, kde-format
msgid "AC3, better known as Dolby Digital is standardized as ATSC A/52. It contains up to 6 total channels of sound."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:583
#, kde-format
msgid "With this setting K3b will create a two-channel stereo Dolby Digital audio stream."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:587
#, kde-format
msgid "With this setting K3b will use the Dolby Digital audio stream from the source DVD without changing it."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:589
#, kde-format
msgid "Use this setting to preserve 5.1 channel sound from the DVD."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:591
#, kde-format
msgid "MPEG1 Layer III is better known as MP3 and is the most used lossy audio format."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: jobs/k3bvideodvdtitletranscodingjob.cpp:592
#, kde-format
msgid "With this setting K3b will create a two-channel stereo MPEG1 Layer III audio stream."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugin/k3baudiodecoder.cpp:640
#, kde-format
msgctxt "plugin type"
msgid "Audio Decoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugin/k3baudioencoder.cpp:53
#, kde-format
msgctxt "plugin type"
msgid "Audio Encoder"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugin/k3baudioencoder.cpp:162
#, kde-format
msgid "An unknown error occurred."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugin/k3bpluginmanager.cpp:206
#, kde-format
msgid "No settings available for plugin %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: plugin/k3bprojectplugin.cpp:27
#, kde-format
msgctxt "plugin type"
msgid "Project plugin"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiocdtrackreader.cpp:67
#, kde-format
msgid "Please insert Audio CD %1%2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiocdtracksource.cpp:210
#, kde-format
msgid "CD Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiocdtracksource.cpp:216
#, kde-format
msgid "Track %1 from Audio CD %2"
msgstr ""
#. +> trunk5 stable5
#: projects/audiocd/k3baudioimager.cpp:94
#, kde-format
msgid "Unable to read track %1."
msgstr ""
-#. +> stable
-#: projects/audiocd/k3baudioimager.cpp:93
-#, kde-format
-msgid "Unable to seek in track %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudioimager.cpp:110 projects/datacd/k3bdatajob.cpp:217
#: projects/mixedcd/k3bmixedjob.cpp:1098
#, kde-format
msgid "Could not open %1 for writing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudioimager.cpp:148
#, kde-format
msgid "Error while decoding track %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:174
#: projects/datacd/k3bdatapreparationjob.cpp:183
#: projects/mixedcd/k3bmixedjob.cpp:188
#, kde-format
msgid "The following files could not be found. Do you want to remove them from the project and continue without adding them to the image?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:177
#: projects/datacd/k3bdatapreparationjob.cpp:147
#: projects/datacd/k3bdatapreparationjob.cpp:171
#: projects/datacd/k3bdatapreparationjob.cpp:186
#: projects/datacd/k3bdatapreparationjob.cpp:208
#: projects/mixedcd/k3bmixedjob.cpp:191
#, kde-format
msgid "Warning"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:178
#: projects/datacd/k3bdatapreparationjob.cpp:187
#: projects/mixedcd/k3bmixedjob.cpp:192
#, kde-format
msgid "Remove missing files and continue"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:179
#: projects/datacd/k3bdatapreparationjob.cpp:173
#: projects/datacd/k3bdatapreparationjob.cpp:188
#: projects/datacd/k3bdatapreparationjob.cpp:210
#: projects/mixedcd/k3bmixedjob.cpp:193
#, kde-format
msgid "Cancel and go back"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:197 projects/mixedcd/k3bmixedjob.cpp:211
#, kde-format
msgid "Please add files to your project first."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:203
#, kde-format
msgid "Unable to write on-the-fly with these audio sources."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:312 projects/mixedcd/k3bmixedjob.cpp:246
#, kde-format
msgid "Determining maximum writing speed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:347
#, kde-format
msgid "Creating image files in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:348 projects/videocd/k3bvcdjob.cpp:189
#, kde-format
msgid "Creating image files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:360 projects/mixedcd/k3bmixedjob.cpp:330
#, kde-format
msgid "Unable to determine maximum speed for some reason. Ignoring."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:388 projects/mixedcd/k3bmixedjob.cpp:379
#, kde-format
msgid "Writing canceled."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:450 projects/mixedcd/k3bmixedjob.cpp:578
#, kde-format
msgid "Error while decoding audio tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:458
#, kde-format
msgid "Successfully decoded all tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:482 projects/mixedcd/k3bmixedjob.cpp:618
#, kde-format
msgid "Decoding audio track %1 of %2%3"
msgstr ""
#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:500
#, kde-format
msgid "I/O Error. Most likely no space left on harddisk."
msgstr ""
-#. +> stable
-#: projects/audiocd/k3baudiojob.cpp:501
-#, kde-format
-msgid "IO Error. Most likely no space left on harddisk."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:549 projects/mixedcd/k3bmixedjob.cpp:638
#: projects/mixedcd/k3bmixedjob.cpp:679
#, kde-format
msgid "I/O Error"
msgstr ""
-#. +> stable
-#: projects/audiocd/k3baudiojob.cpp:550 projects/mixedcd/k3bmixedjob.cpp:638
-#: projects/mixedcd/k3bmixedjob.cpp:679
-#, kde-format
-msgid "IO Error"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:590 projects/mixedcd/k3bmixedjob.cpp:880
#, kde-format
msgid "Writing track %1 of %2%3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:655 projects/datacd/k3bdatajob.cpp:442
#: projects/k3bcdrdaowriter.cpp:574 projects/k3bcdrecordwriter.cpp:457
#: projects/k3bcdrskinwriter.cpp:468 projects/k3bgrowisofswriter.cpp:371
#, kde-format
msgid "Writing"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:730 projects/mixedcd/k3bmixedjob.cpp:1275
#, kde-format
msgid "Normalizing volume levels"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:847
#, kde-format
msgid "Writing Audio CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:857
#, kde-format
msgctxt "%2 is of form XX:YY:ZZ, no pluralization needed"
msgid "1 track (%2 minutes)"
msgid_plural "%1 tracks (%2 minutes)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiojob.cpp:861 projects/mixedcd/k3bmixedjob.cpp:1361
#: projects/videocd/k3bvcdjob.cpp:577 projects/videodvd/k3bvideodvdjob.cpp:67
#, kde-format
msgid " - %1 copy"
msgid_plural " - %1 copies"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:56
#, kde-format
msgid "Could not find normalize executable."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:84
#, kde-format
msgid "Could not start normalize."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:124
#, kde-format
msgid "Track %1 is already normalized."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:130
#, kde-format
msgid "Adjusting volume level for track %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:138
#, kde-format
msgid "Computing level for track %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:181
#, kde-format
msgid "Successfully normalized all tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudionormalizejob.cpp:189
#, kde-format
msgid "Error while normalizing tracks."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3baudiozerodata.cpp:53
#, kde-format
msgid "Silence"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/audiocd/k3brawaudiodatasource.cpp:72
#, kde-format
msgid "Raw Audio CD Image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bbootitem.cpp:31
#, kde-format
msgid "El Torito Boot image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1205 projects/videocd/k3bvcddoc.cpp:415
#, kde-format
msgid "Could not find the following files:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1206 projects/videocd/k3bvcddoc.cpp:416
#, kde-format
msgid "Not Found"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1211
#, kde-format
msgid "No permission to read the following files:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1212
#, kde-format
msgid "No Read Permission"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1369 projects/datacd/k3bdatadoc.cpp:1382
#, kde-format
msgid "From previous session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1493
#, kde-format
msgid "El Torito boot catalog file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatadoc.cpp:1494
#, kde-format
msgid "Boot catalog"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:224
#, kde-format
msgid "Creating image file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:225
#, kde-format
msgid "Track 1 of 1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:226
#, kde-format
msgid "Creating image file in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:384
#, kde-format
msgid "Image successfully created in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:391 tools/k3bmd5job.cpp:102
#, kde-format
msgid "Could not open file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:404
#, kde-format
msgid "Error while creating ISO image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:706
#, kde-format
msgid "Internal Error: No medium type fits. This project cannot be burned."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:710
#, kde-format
msgid "Waiting for a medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:727
#, kde-format
msgid "Writing %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:744
#, kde-format
msgid "Unable to determine the last track's datamode. Using default."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:838 projects/datacd/k3bdatajob.cpp:959
#, kde-format
msgid "Writing mode ignored when writing %1 media."
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:850 projects/datacd/k3bdatajob.cpp:972
#, kde-format
msgid "Growing ISO 9660 filesystem on %1."
msgstr ""
-#. +> stable
-#: projects/datacd/k3bdatajob.cpp:852 projects/datacd/k3bdatajob.cpp:973
-#, kde-format
-msgid "Growing ISO9660 filesystem on %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:984
#, kde-format
msgid "Creating Data Image File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:988
#, kde-format
msgid "Writing Data Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:994
#, kde-format
msgid "Writing Multisession Project"
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:1008
#, kde-format
msgid "ISO 9660 Filesystem (Size: %2) – One copy"
msgid_plural "ISO 9660 Filesystem (Size: %2) – %1 copies"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/datacd/k3bdatajob.cpp:1009
-#, kde-format
-msgid "ISO9660 Filesystem (Size: %2) - %1 copy"
-msgid_plural "ISO9660 Filesystem (Size: %2) - %1 copies"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/datacd/k3bdatajob.cpp:1013
#, kde-format
msgid "ISO 9660 Filesystem (Size: %1)"
msgstr ""
-#. +> stable
-#: projects/datacd/k3bdatajob.cpp:1014
-#, kde-format
-msgid "ISO9660 Filesystem (Size: %1)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatamultisessionparameterjob.cpp:89
#, kde-format
msgid "Searching for old session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatamultisessionparameterjob.cpp:227
#, kde-format
msgid "No medium inserted or an empty medium in %1. Cannot continue multisession disk."
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bdatamultisessionparameterjob.cpp:254
#: projects/datacd/k3bmsinfofetcher.cpp:152
#, kde-format
msgid "Could not open ISO 9660 filesystem in %1."
msgstr ""
-#. +> stable
-#: projects/datacd/k3bdatamultisessionparameterjob.cpp:252
-#: projects/datacd/k3bmsinfofetcher.cpp:152
-#, kde-format
-msgid "Could not open Iso9660 filesystem in %1."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/datacd/k3bdatamultisessionparameterjob.cpp:286
#: projects/k3bgrowisofswriter.cpp:206
#, kde-format
msgid "Medium is not of multi-session type and does not contain ISO 9660. Cannot emulate multi-session on it."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:101
#, kde-format
msgid "<em>%1</em> renamed to <em>%2</em>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:141
#, kde-format
msgid "Some filenames need to be shortened due to the %1 char restriction of the Joliet extensions. If the Joliet extensions are disabled filenames do not have to be shortened but long filenames will not be available on Windows systems."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:148
#, kde-format
msgid "Shorten Filenames"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:149
#, kde-format
msgid "Disable Joliet extensions"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:166
#, kde-format
msgid "The Joliet extensions (which are needed for long filenames on Windows systems) restrict the length of the volume descriptor (the name of the filesystem) to %1 characters. The selected descriptor '%2' is longer than that. Do you want it to be cut or do you want to go back and change it manually?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:172
#, kde-format
msgid "Cut volume descriptor in the Joliet tree"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:204
#, kde-format
msgid "K3b is not able to follow symbolic links to folders after they have been added to the project. Do you want to continue without writing the symbolic links to the image?"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bdatapreparationjob.cpp:209
#, kde-format
msgid "Discard symbolic links to folders"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:162
#, kde-format
msgid "Due to a bug in mkisofs <= 1.15a40, K3b is unable to handle filenames that contain more than one backslash:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:181 projects/k3bcdrdaowriter.cpp:777
#: projects/k3bcdrecordwriter.cpp:917 projects/k3bcdrskinwriter.cpp:929
#, kde-format
msgid "%1 crashed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:372
#, kde-format
msgid "Could not determine size of resulting image file."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:525
#, kde-format
msgid "No volume id specified. Using default."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:618
#, kde-format
msgid "Found files bigger than 4 GB. K3b needs at least %1 to continue."
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:628
#, kde-format
msgid "Found files bigger than 2 GB. These files will be fully accessible."
msgstr ""
-#. +> stable
-#: projects/datacd/k3bisoimager.cpp:626
-#, kde-format
-msgid "Found files bigger than 2 GB. These files will only be fully accessible if mounted with UDF."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:634
#, kde-format
msgid "Enabling UDF extension."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:679
#, kde-format
msgid "Setting iso level to 3 to support files bigger than 4 GB."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:768
#, kde-format
msgid "Could not follow link %1 to non-existing file %2. Skipping..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:772
#, kde-format
msgid "Ignoring link %1 to folder %2. K3b is unable to follow links to folders."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:780
#, kde-format
msgid "Could not find file %1. Skipping..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:784
#, kde-format
msgid "Could not read file %1. Skipping..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:837
#, kde-format
msgid "Failed to backup boot image file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:997 projects/datacd/k3bisoimager.cpp:1007
#: projects/datacd/k3bisoimager.cpp:1014 projects/datacd/k3bisoimager.cpp:1020
#, kde-format
msgid "Could not write temporary file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisoimager.cpp:1001
#, kde-format
msgid "No files to be written."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bisooptions.cpp:77
#, kde-format
msgctxt "This is the default volume identifier of a data project created by K3b. The string should not be longer than 16 characters to avoid warnings regarding Joiliet extensions which induce this restriction."
msgid "K3b data project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:73
#, kde-format
msgid "Mkisofs executable not found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:87
#, kde-format
msgid "Read error from file '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:92
#, kde-format
msgid "Used version of mkisofs does not have large file support."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:93
#, kde-format
msgid "Files bigger than 2 GB cannot be handled."
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:97
#, kde-format
msgid "No such file or directory '%1'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:111
#, kde-format
msgid "Encountered an incorrectly encoded filename '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:113
#, kde-format
msgid "This may be caused by a system update which changed the local character set."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:114
#, kde-format
msgid "You may use convmv (http://j3e.de/linux/convmv/) to fix the filename encoding."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:118
#, kde-format
msgid "The boot image has an invalid size."
msgstr ""
#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:122
#, kde-format
msgid "The boot image contains multiple partitions."
msgstr ""
-#. +> stable
-#: projects/datacd/k3bmkisofshandler.cpp:117
-#, kde-format
-msgid "The boot image contains multiple partitions.."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmkisofshandler.cpp:123
#, kde-format
msgid "A hard-disk boot image has to contain a single partition."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmsinfofetcher.cpp:52
#, kde-format
msgid "Searching previous session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmsinfofetcher.cpp:164
#, kde-format
msgid "Could not determine next writable address."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmsinfofetcher.cpp:180
#, kde-format
msgid "Could not start %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmsinfofetcher.cpp:210
#, kde-format
msgid "Could not retrieve multisession information from disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/datacd/k3bmsinfofetcher.cpp:211
#, kde-format
msgid "The disk is either empty or not appendable."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3babstractwriter.cpp:53
#, kde-format
msgid "Unlocking drive..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3babstractwriter.cpp:67
#, kde-format
msgid "Could not unlock drive."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3babstractwriter.cpp:70
#, kde-format
msgid "Ejecting Medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:266
#, kde-format
msgid "Cdrdao %1 does not support disabling burnfree."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:271 projects/k3bcdrecordwriter.cpp:306
#: projects/k3bcdrskinwriter.cpp:313
#, kde-format
msgid "'Force unsafe operations' enabled."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:290
#, kde-format
msgid "Cdrdao %1 does not support overburning."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:493
#, kde-format
msgid "Could not backup tocfile."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:523
#, kde-format
msgid "Preparing read process..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:529
#, kde-format
msgid "Preparing copy process..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:532
#, kde-format
msgid "Preparing blanking process..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:566
#, kde-format, no-c-format
msgid "Starting DAO simulation at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:573
#, kde-format, no-c-format
msgid "Starting DAO writing at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:578
#, kde-format
msgid "Starting reading..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:579
#, kde-format
msgid "Reading"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:585
#, kde-format, no-c-format
msgid "Starting simulation copy at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:591
#, kde-format, no-c-format
msgid "Starting copy at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:592
#, kde-format
msgid "Copying"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:596
#, kde-format
msgid "Starting blanking..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:597
#, kde-format
msgid "Blanking"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:709
#, kde-format
msgid "Due to a bug in cdrdao the toc/cue file %1 has been deleted. K3b was unable to restore it from the backup %2."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:738 projects/k3bcdrecordwriter.cpp:794
#: projects/k3bcdrskinwriter.cpp:806 projects/k3bgrowisofswriter.cpp:524
#, kde-format
msgid "Simulation successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:743
#, kde-format
msgid "Reading successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:746 projects/k3bcdrecordwriter.cpp:796
#: projects/k3bcdrskinwriter.cpp:808 projects/k3bgrowisofswriter.cpp:526
#, kde-format
msgid "Writing successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:749
#, kde-format
msgid "Copying successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:752
#, kde-format
msgid "Blanking successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:758 projects/k3bcdrecordwriter.cpp:800
#: projects/k3bcdrskinwriter.cpp:812 projects/k3bgrowisofswriter.cpp:519
#, kde-format
msgid "Average overall write speed: %1 KB/s (%2x)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:768
#, kde-format
msgid "Please include the debugging output in your problem report."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:794 projects/k3bcdrecordwriter.cpp:674
#: projects/k3bcdrskinwriter.cpp:686
#, kde-format, no-c-format
msgid "Medium or burner does not support writing at %1x speed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:796
#, kde-format, no-c-format
msgid "Switching down burn speed to %1x"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:826
#, kde-format
msgid "Executing Power calibration"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:830
#, kde-format
msgid "Power calibration successful"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:831
#, kde-format
msgid "Preparing burn process..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:835
#, kde-format
msgid "Flushing cache"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:839
#, kde-format
msgid "Writing CD-Text lead-in..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:843
#, kde-format
msgid "Turning BURN-Proof on"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:851
#, kde-format
msgid "Found ISRC code"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:855
#, kde-format
msgid "Found pregap: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:868
#, kde-format
msgid "No cdrdao driver found."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:869
#, kde-format
msgid "Please select one manually in the device settings."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:870
#, kde-format
msgid "For most current drives this would be 'generic-mmc'."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:879
#, kde-format
msgid "Device not ready, waiting."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:883
#, kde-format
msgid "Cue sheet not accepted."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:888 projects/k3bcdrecordwriter.cpp:618
#: projects/k3bcdrskinwriter.cpp:630
#, kde-format
msgid "No valid %1 option: %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:893 projects/k3bcdrecordwriter.cpp:821
#: projects/k3bcdrskinwriter.cpp:833 projects/k3bgrowisofshandler.cpp:233
#: projects/mixedcd/k3bmixedjob.cpp:1040
#, kde-format
msgid "Data does not fit on disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:895 projects/k3bcdrecordwriter.cpp:823
#: projects/k3bcdrskinwriter.cpp:835
#, kde-format
msgid "Enable overburning in the advanced K3b settings to burn anyway."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:980
#, kde-format
msgid "Writing leadin"
msgstr ""
-#. +> stable
-#: projects/k3bcdrdaowriter.cpp:970
-#, kde-format
-msgid "Writing leadin "
-msgstr ""
-
#. +> trunk5 stable5
#: projects/k3bcdrdaowriter.cpp:986
#, kde-format
msgid "Writing leadout"
msgstr ""
-#. +> stable
-#: projects/k3bcdrdaowriter.cpp:976
-#, kde-format
-msgid "Writing leadout "
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:237
#, kde-format
msgid "Cdrecord version %1 does not support Blu-ray writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:261 projects/k3bcdrskinwriter.cpp:278
#, kde-format
msgid "Writer does not support disk at once (DAO) recording"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:272 projects/k3bcdrskinwriter.cpp:287
#, kde-format
msgid "Writer does not support raw writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:281
#, kde-format
msgid "Cdrecord does not support writing %1 media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:301 projects/k3bcdrskinwriter.cpp:308
#, kde-format
msgid "Writer does not support buffer underrun free recording (Burnfree)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:337 projects/k3bcdrskinwriter.cpp:348
#, kde-format
msgid "Failed to write temporary file '%1'"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:357
#, kde-format
msgid "Cdrecord %1 does not support overburning."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:452 projects/k3bcdrskinwriter.cpp:463
#, kde-format, no-c-format
msgid "Starting simulation at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:454 projects/k3bcdrskinwriter.cpp:465
#, kde-format
msgid "Starting %1 simulation at %2x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:460 projects/k3bcdrskinwriter.cpp:471
#, kde-format, no-c-format
msgid "Starting writing at %1x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:462 projects/k3bcdrskinwriter.cpp:473
#, kde-format
msgid "Starting %1 writing at %2x speed..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:556 projects/k3bcdrskinwriter.cpp:567
#: projects/k3bgrowisofswriter.cpp:437
#, kde-format
msgid "Writing data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:585 projects/k3bcdrskinwriter.cpp:597
#, kde-format
msgid "DAO (Disk At Once) recording not supported with this writer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:586 projects/k3bcdrskinwriter.cpp:598
#, kde-format
msgid "Please choose TAO (Track At Once) and try again"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:589 projects/k3bcdrskinwriter.cpp:601
#, kde-format
msgid "RAW recording not supported with this writer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:592 projects/k3bcdrskinwriter.cpp:604
#, kde-format
msgid "Input/output error. Not necessarily serious."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:601 projects/k3bcdrskinwriter.cpp:613
#, kde-format
msgid "Reloading of medium required"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:610 projects/k3bcdrskinwriter.cpp:622
#: projects/k3bgrowisofshandler.cpp:99 projects/mixedcd/k3bmixedjob.cpp:1037
#, kde-format
msgid "Trying to write more than the official disk capacity"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:645 projects/k3bcdrskinwriter.cpp:657
#, kde-format
msgid "Only session 1 will be cloned."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:648 projects/k3bcdrskinwriter.cpp:660
#, kde-format
msgid "Unable to fixate the disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:678 projects/k3bcdrskinwriter.cpp:690
#, kde-format, no-c-format
msgid "Switching burn speed up to %1x"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:681 projects/k3bcdrskinwriter.cpp:693
#, kde-format, no-c-format
msgid "Switching burn speed down to %1x"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:693 projects/k3bcdrskinwriter.cpp:705
#, kde-format
msgid "Starting disc write"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:709 projects/k3bcdrskinwriter.cpp:721
#: projects/k3bgrowisofshandler.cpp:142
#, kde-format
msgid "Closing Session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:713 projects/k3bcdrskinwriter.cpp:725
#, kde-format
msgid "Writing Leadin"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:716 projects/k3bcdrskinwriter.cpp:728
#, kde-format
msgid "Writing Leadout"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:719 projects/k3bcdrskinwriter.cpp:731
#, kde-format
msgid "Writing pregap"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:722 projects/k3bcdrskinwriter.cpp:734
#, kde-format
msgid "Performing Optimum Power Calibration"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:725 projects/k3bcdrskinwriter.cpp:737
#, kde-format
msgid "Sending CUE sheet"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:728 projects/k3bcdrskinwriter.cpp:740
#, kde-format
msgid "Enabled Burnfree"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:731 projects/k3bcdrskinwriter.cpp:743
#, kde-format
msgid "Disabled Burnfree"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:737 projects/k3bcdrskinwriter.cpp:749
#: projects/mixedcd/k3bmixedjob.cpp:565
#, kde-format
msgid "Unable to close the tray"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:747 projects/k3bcdrskinwriter.cpp:759
#, kde-format
msgid "Burnfree was used once."
msgid_plural "Burnfree was used %1 times."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:753 projects/k3bcdrskinwriter.cpp:765
#, kde-format
msgid "Buffer was low once."
msgid_plural "Buffer was low %1 times."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:792 projects/k3bcdrskinwriter.cpp:804
#, kde-format
msgid "Erasing successfully completed"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:819 projects/k3bcdrskinwriter.cpp:831
#: projects/k3bgrowisofshandler.cpp:231
#, kde-format
msgid "Data did not fit on disk."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:830 projects/k3bcdrskinwriter.cpp:842
#, kde-format
msgid "%1 could not reserve shared memory segment of requested size."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:831 projects/k3bcdrskinwriter.cpp:843
#, kde-format
msgid "Probably you chose a too large buffer size."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:834 projects/k3bcdrskinwriter.cpp:846
#, kde-format
msgid "OPC failed. Probably the writer does not like the medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:837 projects/k3bcdrskinwriter.cpp:849
#, kde-format
msgid "Unable to set write speed to %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:838 projects/k3bcdrskinwriter.cpp:850
#, kde-format
msgid "Probably this is lower than your writer's lowest writing speed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:841 projects/k3bcdrskinwriter.cpp:853
#, kde-format
msgid "Unable to send CUE sheet."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:843 projects/k3bcdrecordwriter.cpp:882
#: projects/k3bcdrecordwriter.cpp:902 projects/k3bcdrskinwriter.cpp:855
#: projects/k3bcdrskinwriter.cpp:894 projects/k3bcdrskinwriter.cpp:914
#, kde-format
msgid "Sometimes using TAO writing mode solves this issue."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:846 projects/k3bcdrskinwriter.cpp:858
#, kde-format
msgid "Unable to open new session."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:847 projects/k3bcdrskinwriter.cpp:859
#, kde-format
msgid "Probably a problem with the medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:850 projects/k3bcdrskinwriter.cpp:862
#, kde-format
msgid "The disk might still be readable."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:852 projects/k3bcdrskinwriter.cpp:864
#, kde-format
msgid "Try DAO writing mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:855 projects/k3bcdrskinwriter.cpp:867
#, kde-format
msgid "%1 has no permission to open the device."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:856 projects/k3bcdrskinwriter.cpp:868
#, kde-format
msgid "Modify device settings in K3b to solve this problem."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:859 projects/k3bcdrskinwriter.cpp:871
#, kde-format
msgid "Probably a buffer underrun occurred."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:861 projects/k3bcdrskinwriter.cpp:873
#, kde-format
msgid "Please enable Burnfree or choose a lower burning speed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:863 projects/k3bcdrskinwriter.cpp:875
#, kde-format
msgid "Please choose a lower burning speed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:866 projects/k3bcdrskinwriter.cpp:878
#, kde-format
msgid "Found a high-speed medium not suitable for the writer being used."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:867 projects/k3bcdrecordwriter.cpp:871
#: projects/k3bcdrskinwriter.cpp:879 projects/k3bcdrskinwriter.cpp:883
#, kde-format
msgid "Use the 'force unsafe operations' option to ignore this."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:870 projects/k3bcdrskinwriter.cpp:882
#, kde-format
msgid "Found a low-speed medium not suitable for the writer being used."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:874 projects/k3bcdrskinwriter.cpp:886
#, kde-format
msgid "Most likely the burning failed due to low-quality media."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:877 projects/k3bcdrskinwriter.cpp:889
#, kde-format
msgid "Another application is blocking the device (most likely automounting)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:880 projects/k3bcdrskinwriter.cpp:892
#, kde-format
msgid "A write error occurred."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:885 projects/k3bcdrskinwriter.cpp:897
#, kde-format
msgid "Some drives do not support all erase types."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:886 projects/k3bcdrskinwriter.cpp:898
#, kde-format
msgid "Try again using 'Complete' erasing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:893
#, kde-format
msgid "Since kernel version 2.6.8 cdrecord cannot use SCSI transport when running suid root anymore."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:894 projects/k3bcdrskinwriter.cpp:906
#, kde-format
msgid "You may use K3b::Setup to solve this problem or remove the suid bit manually."
msgstr ""
-#. +> stable
-#: projects/k3bcdrecordwriter.cpp:871
-#, kde-format
-msgid "You may use K3bsetup to solve this problem."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:905
#, kde-format
msgid "If you are running an unpatched cdrecord version..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:906 projects/k3bcdrskinwriter.cpp:918
#, kde-format
msgid "...and this error also occurs with high quality media..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:907 projects/k3bcdrskinwriter.cpp:919
#, kde-format
msgid "...and the K3b FAQ does not help you..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bcdrecordwriter.cpp:908 projects/k3bcdrskinwriter.cpp:920
#, kde-format
msgid "...please include the debugging output in your problem report."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrskinwriter.cpp:247
#, kde-format
msgid "Cdrskin version %1 does not support Blu-ray writing."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrskinwriter.cpp:293
#, kde-format
msgid "Cdrskin does not support writing %1 media."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrskinwriter.cpp:368
#, kde-format
msgid "Cdrskin %1 does not support overburning."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrskinwriter.cpp:905
#, kde-format
msgid "Since kernel version 2.6.8 cdrskin cannot use SCSI transport when running suid root anymore."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bcdrskinwriter.cpp:917
#, kde-format
msgid "If you are running an unpatched cdrskin version..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:81
#, kde-format
msgid "OPC failed. Please try writing speed 1x."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:86
#, kde-format
msgid "Please try again with writing mode DAO."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:122
#, kde-format
msgid "Flushing Cache"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:123
#, kde-format
msgid "Flushing the cache may take some time."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:132
#, kde-format
msgid "Closing Track"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:135
#, kde-format
msgid "Closing Disk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:138
#, kde-format
msgid "Updating RMA"
msgstr ""
#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:139
#, kde-format
msgid "Updating RMA..."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:143
#, kde-format
msgid "Closing Session..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:146
#, kde-format
msgid "Writing Lead-out"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:147
#, kde-format
msgid "Writing the lead-out may take some time."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:150
#, kde-format
msgid "Removing reference to lead-out."
msgstr ""
#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:153
#, kde-format
msgid "Modifying ISO 9660 volume descriptor"
msgstr ""
-#. +> stable
-#: projects/k3bgrowisofshandler.cpp:158
-#, kde-format
-msgid "Modifying ISO9660 volume descriptor"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:160
#, kde-format
msgid "Writing mode Incremental Streaming not available"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:161
#, kde-format
msgid "Engaging DAO"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:173
#, kde-format
msgid "Writing speed: %1 KB/s (%2x)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:224
#, kde-format
msgid "K3b detected a problem with the medium."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:225
#, kde-format
msgid "Please try another brand of media, preferably one explicitly recommended by your writer's vendor."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:226
#, kde-format
msgid "Report the problem if it persists anyway."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:237
#, kde-format
msgid "Unable to set writing speed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:238
#, kde-format
msgid "Please try again with the 'ignore speed' setting."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:242
#, kde-format
msgid "Optimum Power Calibration failed."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:243
#, kde-format
msgid "Try adding '-use-the-force-luke=noopc' to the growisofs user parameters in the K3b settings."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:248
#, kde-format
msgid "Unable to allocate software buffer."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:249
#, kde-format
msgid "This error is caused by the low memorylocked resource limit."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:250
#, kde-format
msgid "It can be solved by issuing the command 'ulimit -l unlimited'..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:251
#, kde-format
msgid "...or by lowering the used software buffer size in the advanced K3b settings."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:255
#, kde-format
msgid "Write error"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:271
#, kde-format
msgid "Fatal error at startup: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:279
#, kde-format
msgid "Warning at exit: (1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:280
#, kde-format
msgid "Most likely mkisofs failed in some way."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofshandler.cpp:283
#, kde-format
msgid "Fatal error during recording: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofswriter.cpp:148
#, kde-format
msgid "Growisofs version %1 is too old. K3b needs at least version 5.10."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofswriter.cpp:162
#, kde-format
msgid "Growisofs version %1 does not feature a software buffer which may result in an unstable burn process."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofswriter.cpp:221
#, kde-format
msgid "Could not open file %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofswriter.cpp:367
#, kde-format
msgid "Starting simulation..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/k3bgrowisofswriter.cpp:372
#, kde-format
msgid "Starting disc write..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:277
#, kde-format
msgid "Creating audio image files in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:290 projects/mixedcd/k3bmixedjob.cpp:504
#, kde-format
msgid "Creating audio image files"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:478
#, kde-format
msgid "Error while creating ISO image."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:493
#, kde-format
msgid "ISO image successfully created."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:594
#, kde-format
msgid "Audio images successfully created."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:887
#, kde-format
msgid "Writing track %1 of %2 (%3)"
msgstr ""
#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:890
#, kde-format
msgid "ISO 9660 data"
msgstr ""
-#. +> stable
-#: projects/mixedcd/k3bmixedjob.cpp:891
-#, kde-format
-msgid "ISO9660 data"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:996
#, kde-format
msgid "Simulating second session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:998
#, kde-format
msgid "Writing second session of copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1000
#, kde-format
msgid "Writing second session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1004
#, kde-format
msgid "Simulating first session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1006
#, kde-format
msgid "Writing first session of copy %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1008
#, kde-format
msgid "Writing first session"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1086
#, kde-format
msgid "Creating ISO image file"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1087 projects/mixedcd/k3bmixedjob.cpp:1088
#, kde-format
msgid "Creating ISO image in %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1128
#, kde-format
msgid "Removing buffer files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1133
#, kde-format
msgid "Could not delete file %1."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1243
#, kde-format
msgid "It is not possible to write CD-Text in TAO mode. Try DAO or RAW."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1340
#, kde-format
msgid "Writing Enhanced Audio CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1345
#, kde-format
msgid "Writing Mixed Mode CD"
msgstr ""
#. +> trunk5 stable5
#: projects/mixedcd/k3bmixedjob.cpp:1355
#, kde-format
msgctxt "%2 is of form XX:YY:ZZ, no pluralization needed"
msgid "1 track (%2 minutes audio data, %3 ISO 9660 data)"
msgid_plural "%1 tracks (%2 minutes audio data, %3 ISO 9660 data)"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/mixedcd/k3bmixedjob.cpp:1356
-#, kde-format
-msgctxt "%2 is of form XX:YY:ZZ, no pluralization needed"
-msgid "1 track (%2 minutes audio data, %3 ISO9660 data)"
-msgid_plural "%1 tracks (%2 minutes audio data, %3 ISO9660 data)"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdoc.cpp:89
#, kde-format
msgid "Enter New Filename"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdoc.cpp:90
#, kde-format
msgid "A file with that name already exists. Please enter a new name:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdoc.cpp:182
#, kde-format
msgid "Could not rename subtitle file. File with requested name %1 already exists."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdocpreparer.cpp:133
#, kde-format
msgid "Could not find a valid eMovix installation."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdocpreparer.cpp:207
#: projects/movixcd/k3bmovixprogram.cpp:188
#: projects/movixcd/k3bmovixprogram.cpp:220
#: projects/movixcd/k3bmovixprogram.cpp:255
#: projects/movixcd/k3bmovixprogram.cpp:267
#: projects/movixcd/k3bmovixprogram.cpp:276
#: projects/movixcd/k3bmovixprogram.cpp:285
#: projects/movixcd/k3bmovixprogram.cpp:292
#: projects/movixcd/k3bmovixprogram.cpp:326
#: projects/movixcd/k3bmovixprogram.cpp:328
#: projects/movixcd/k3bmovixprogram.cpp:330
#: projects/movixcd/k3bmovixprogram.cpp:332
#, kde-format
msgid "default"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixdocpreparer.cpp:318
#: projects/movixcd/k3bmovixprogram.cpp:200
#: projects/movixcd/k3bmovixprogram.cpp:244
#, kde-format
msgid "none"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixjob.cpp:115
#, kde-format
msgid "Writing eMovix Project"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/movixcd/k3bmovixjob.cpp:117
#, kde-format
msgid "Writing eMovix Project (%1)"
msgstr ""
#. +> trunk5 stable5
#: projects/movixcd/k3bmovixjob.cpp:123
#, kde-format
msgid "One file (%2) and about 8 MB eMovix data"
msgid_plural "%1 files (%2) and about 8 MB eMovix data"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: projects/movixcd/k3bmovixjob.cpp:124
-#, kde-format
-msgid "1 file (%2) and about 8 MB eMovix data"
-msgid_plural "%1 files (%2) and about 8 MB eMovix data"
-msgstr[0] ""
-msgstr[1] ""
-
#. +> trunk5 stable5
#: projects/movixcd/k3bmovixjob.cpp:127
#, kde-format
msgid " – One copy"
msgid_plural " – %1 copies"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:210 projects/videocd/k3bvcddoc.cpp:220
#, kde-format
msgid "K3b will create a %1 image from the given MPEG files, but these files must already be in %1 format. K3b does not yet resample MPEG files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:213
#, kde-format
msgid "VCD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:214 projects/videocd/k3bvcddoc.cpp:227
#: projects/videocd/k3bvcddoc.cpp:256
#, kde-format
msgid "Information"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:223
#, kde-format
msgid "SVCD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:225
#, kde-format
msgid "Note: Forcing MPEG2 as VCD is not supported by some standalone DVD players."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:228
#, kde-format
msgid "Force VCD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:229
#, kde-format
msgid "Do not force VCD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:242
#, kde-format
msgid ""
"You cannot mix MPEG1 and MPEG2 video files.\n"
"Please start a new Project for this filetype.\n"
"Resample not implemented in K3b yet."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:243
#, kde-format
msgid "Wrong File Type for This Project"
msgstr ""
#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:254
#, kde-format
msgid ""
"PBC (Playback control) enabled.\n"
"Video players cannot reach Segments (MPEG Still Pictures) without Playback control."
msgstr ""
-#. +> stable
-#: projects/videocd/k3bvcddoc.cpp:255
-#, kde-format
-msgid ""
-"PBC (Playback control) enabled.\n"
-"Videoplayers can not reach Segments (Mpeg Still Pictures) without Playback control ."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:286
#, kde-format
msgid "Only MPEG1 and MPEG2 video files are supported.\n"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcddoc.cpp:287
#, kde-format
msgid "Wrong File Format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:121 projects/videocd/k3bvcdjob.cpp:475
#, kde-format
msgid "Removing Binary file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:131 projects/videocd/k3bvcdjob.cpp:485
#, kde-format
msgid "Removing Cue file %1"
msgstr ""
#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:181
#, kde-format
msgid "Could not write correct XML file."
msgstr ""
-#. +> stable
-#: projects/videocd/k3bvcdjob.cpp:184
-#, kde-format
-msgid "Could not write correct XML-file."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:197
#, kde-format
msgid "Creating Cue/Bin files..."
msgstr ""
-#. +> stable
-#: projects/videocd/k3bvcdjob.cpp:200
-#, kde-format
-msgid "Creating Cue/Bin files ..."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:202
#, kde-format
msgid "To create Video CDs you have to install VcdImager version %1."
msgstr ""
-#. +> stable
-#: projects/videocd/k3bvcdjob.cpp:205
-#, kde-format
-msgid "To create VideoCDs you must install VcdImager Version %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:203 projects/videocd/k3bvcdjob.cpp:212
#, kde-format
msgid "You can find this on your distribution disks or download it from http://www.vcdimager.org"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:211
#, kde-format
msgid "%1 executable too old: need version %2 or greater."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:293
#, kde-format
msgid "Scanning video file %1 of %2 (%3)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:329
#, kde-format
msgid "Creating Image for track %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:351
#, kde-format
msgid "Cue/Bin files successfully created."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:394
#, kde-format
msgid "Writing Copy %1 of %2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:520
#, kde-format
msgid "One or more BCD fields out of range for %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:523
#, kde-format
msgid "From now on, scan information data errors will not be reported anymore"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:524
#, kde-format
msgid "Consider enabling the 'update scan offsets' option, if it is not enabled already."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:531
#, kde-format
msgid "APS' pts seems out of order (actual pts %1, last seen pts %2)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:532
#, kde-format
msgid "Ignoring this aps"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:540
#, kde-format
msgid "Bad packet at packet #%1 (stream byte offset %2)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:547
#, kde-format
msgid "The remaining byte of the stream will be ignored."
msgid_plural "The remaining %1 bytes of the stream will be ignored."
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:549
#, kde-format
msgid "An unknown number of remaining stream bytes will be ignored."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:558
#, kde-format
msgid "Writing Video CD (Version 1.1)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:560
#, kde-format
msgid "Writing Video CD (Version 2.0)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:562
#, kde-format
msgid "Writing Super Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:564
#, kde-format
msgid "Writing High-Quality Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:566
#, kde-format
msgid "Writing Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdjob.cpp:573
#, kde-format
msgid "1 MPEG (%2)"
msgid_plural "%1 MPEGs (%2)"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:177 projects/videocd/k3bvcdtrack.cpp:187
#: projects/videocd/k3bvcdtrack.cpp:200 projects/videocd/k3bvcdtrack.cpp:213
#: projects/videocd/k3bvcdtrack.cpp:248 projects/videocd/k3bvcdtrack.cpp:276
#: projects/videocd/k3bvcdtrack.cpp:289 projects/videocd/k3bvcdtrack.cpp:302
#: projects/videocd/k3bvcdtrack.cpp:315 projects/videocd/k3bvcdtrack.cpp:327
#: projects/videocd/k3bvcdtrack.cpp:344 projects/videocd/k3bvcdtrack.cpp:366
#: projects/videocd/k3bvcdtrack.cpp:429
#, kde-format
msgid "n/a"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:208 projects/videocd/k3bvcdtrack.cpp:297
#, kde-format
msgid "1 bit/s"
msgid_plural "%1 bits/s"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:225
#, kde-format
msgid "Component"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:241 videodvd/k3bvideodvd.cpp:318
#: videodvd/k3bvideodvd.cpp:350
#, kde-format
msgid "Unspecified"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:310
#, kde-format
msgid "%1 Hz"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:337 projects/videocd/k3bvcdtrack.cpp:339
#, kde-format
msgid "original"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:337 projects/videocd/k3bvcdtrack.cpp:339
#, kde-format
msgid "duplicate"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:353
#, kde-format
msgid "Motion Picture"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:355
#, kde-format
msgid "Still Picture"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:362
#, kde-format
msgid "Layer %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:396
#, kde-format
msgid "unknown"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:397
#, kde-format
msgid "invalid"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:403
#, kde-format
msgid "stereo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:404
#, kde-format
msgid "joint stereo"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:405 projects/videocd/k3bvcdtrack.cpp:410
#, kde-format
msgid "dual channel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:406
#, kde-format
msgid "single channel"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/k3bvcdtrack.cpp:411
#, kde-format
msgid "surround sound"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/mpeginfo/k3bmpeginfo.cpp:66
#, kde-format
msgid "File %1 is empty."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/mpeginfo/k3bmpeginfo.cpp:100
#, kde-format
msgid "This looks like an elementary video stream but a multiplexed program stream was required."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/mpeginfo/k3bmpeginfo.cpp:105
#, kde-format
msgid "This looks like an elementary audio stream but a multiplexed program stream was required."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videocd/mpeginfo/k3bmpeginfo.cpp:110
#, kde-format
msgid "This looks like a RIFF header but a plain multiplexed program stream was required."
msgstr ""
#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:106
#, kde-kuit-format
msgid "Unable to create Invalid temporary folder <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:118
#, kde-kuit-format
msgid "Unable to create temporary folder <filename>%1</filename>."
msgstr ""
#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:125
#, kde-kuit-format
msgid "Found invalid entry in the VIDEO_TS folder <filename>%1</filename>."
msgstr ""
-#. +> stable
-#: projects/videodvd/k3bvideodvdimager.cpp:124
-#, kde-format
-msgid "Found invalid entry in the VIDEO_TS folder (%1)."
-msgstr ""
-
#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:133
#, kde-kuit-format
msgid "Unable to link temporary file in folder <filename>%1</filename>."
msgstr ""
-#. +> stable
-#: projects/videodvd/k3bvideodvdimager.cpp:131
-#, kde-format
-msgid "Unable to link temporary file in folder %1."
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:207
#, kde-format
msgid "The project does not contain all necessary Video DVD files."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdimager.cpp:208
#, kde-format
msgid "The resulting DVD will most likely not be playable on a Hifi DVD player."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdjob.cpp:52
#, kde-format
msgid "Creating Video DVD Image File"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdjob.cpp:55
#, kde-format
msgid "Writing Video DVD"
msgstr ""
#. +> trunk5 stable5
#: projects/videodvd/k3bvideodvdjob.cpp:65
#, kde-format
msgid "ISO 9660/Udf Filesystem (Size: %1)"
msgstr ""
-#. +> stable
-#: projects/videodvd/k3bvideodvdjob.cpp:67
-#, kde-format
-msgid "ISO9660/Udf Filesystem (Size: %1)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bcddb.cpp:44
#, kde-format
msgid "Multiple CDDB Entries Found"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bcddb.cpp:46
#, kde-format
msgid "K3b found multiple or inexact CDDB entries. Please select one."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bdevicemodel.cpp:141
#, kde-format
msgid "Analyzing medium..."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bdeviceselectiondialog.cpp:44
#, kde-format
msgid "Device Selection"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bdeviceselectiondialog.cpp:48
#, kde-format
msgid "Please select a device:"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmd5job.cpp:95
#, kde-format
msgid "Could not find file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmd5job.cpp:240
#, kde-format
msgid "Error while reading from file %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmediacache.cpp:136 tools/k3bmediacache.cpp:377
#, kde-format
msgid "CDDB Lookup"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:321
#, kde-format
msgid "Audio CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:324
#, kde-format
msgid "Mixed CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:328
#, kde-format
msgid "Video DVD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:331
#, kde-format
msgid "Video CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:334
#, kde-format
msgid "Appendable Data %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:337
#, kde-format
msgid "Complete Data %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:341
#, kde-format
msgid "Empty"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:354
#, kde-format
msgid "No medium information"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:358
#, kde-format
msgid "No medium present"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:362
#, kde-format
msgid "Empty %1 medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:403
#, kde-format
msgid "Appendable %1 medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:406
#, kde-format
msgid "Complete %1 medium"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:423
#, kde-format
msgid "%2 in %1 track"
msgid_plural "%2 in %1 tracks"
msgstr[0] ""
msgstr[1] ""
-#. +> stable
-#: tools/k3bmedium.cpp:424
-#, kde-format
-msgid "%1 in 1 track"
-msgid_plural "%1 in %2 tracks"
-msgstr[0] ""
-msgstr[1] ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:427
#, kde-format
msgid " and %1 session"
msgid_plural " and %1 sessions"
msgstr[0] ""
msgstr[1] ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:432
#, kde-format
msgid "Free space: %1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:436
#, kde-format
msgid "Capacity: %1"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:604
#, kde-format
msgctxt "To be shown when a DVD or Blu-ray is required but another type of medium is inserted."
msgid "DVD or Blu-ray"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:606
#, kde-format
msgctxt "To be shown when a Blu-ray is required but another type of medium is inserted."
msgid "Blu-ray"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:608
#, kde-format
msgctxt "To be shown when a CD is required but another type of medium is inserted."
msgid "CD"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:610
#, kde-format
msgctxt "To be shown when a DVD is required but another type of medium is inserted."
msgid "DVD"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:612
#, kde-format
msgctxt "To be shown when a DVD-DL is required but another type of medium is inserted."
msgid "DVD-DL"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:616
#, kde-format
msgid "rewritable medium"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:619
#, kde-format
msgctxt "%1 is type of medium (e.g. DVD)"
msgid "rewritable %1"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:624
#, kde-format
msgctxt "To be shown when a specific type of medium is required but another type of medium is inserted."
msgid "suitable medium"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:626
#, kde-format
msgid "Medium in %1 is not a %2."
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:631
#, kde-format
msgctxt "To be shown when an empty medium is required"
msgid "empty"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:633
#, kde-format
msgctxt "To be shown when an empty or appendable medium is required"
msgid "empty or appendable"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:635
#, kde-format
msgctxt "To be shown when an non-empty medium is required"
msgid "non-empty"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:637
#, kde-format
msgctxt "To be shown when the state of the inserted medium is not suitable."
msgid "suitable"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:639
#, kde-format
msgid "Medium in %1 is not %2."
msgstr ""
#. +> trunk5 stable5
#: tools/k3bmedium.cpp:642
#, kde-format
msgid "Capacity of the medium in %1 is smaller than required."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:691
#, kde-format
msgid ""
"Please insert an empty medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:693
#, kde-format
msgid "Please insert an empty medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:698
#, kde-format
msgid ""
"Please insert an empty DVD or Blu-ray medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:700
#, kde-format
msgid "Please insert an empty DVD or Blu-ray medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:704
#, kde-format
msgid ""
"Please insert an empty Blu-ray medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:706
#, kde-format
msgid "Please insert an empty Blu-ray medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:710
#, kde-format
msgid ""
"Please insert an empty CD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:712
#, kde-format
msgid "Please insert an empty CD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:716
#, kde-format
msgid ""
"Please insert an empty DVD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:718
#, kde-format
msgid "Please insert an empty DVD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:722
#, kde-format
msgid ""
"Please insert an empty DVD-DL medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:724
#, kde-format
msgid "Please insert an empty DVD-DL medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:728
#, kde-format
msgid ""
"Please insert an empty medium of size %1 or larger into drive"
"<p><b>%2</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:731
#, kde-format
msgid "Please insert an empty medium of size %1 or larger"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:737
#, kde-format
msgid ""
"Please insert an empty or appendable medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:739
#, kde-format
msgid "Please insert an empty or appendable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:743
#, kde-format
msgid ""
"Please insert an empty or appendable DVD or Blu-ray medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:745
#, kde-format
msgid "Please insert an empty or appendable DVD or Blu-ray medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:749
#, kde-format
msgid ""
"Please insert an empty or appendable Blu-ray medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:751
#, kde-format
msgid "Please insert an empty or appendable Blu-ray medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:755
#, kde-format
msgid ""
"Please insert an empty or appendable CD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:757
#, kde-format
msgid "Please insert an empty or appendable CD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:761
#, kde-format
msgid ""
"Please insert an empty or appendable DVD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:763
#, kde-format
msgid "Please insert an empty or appendable DVD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:767
#, kde-format
msgid ""
"Please insert an empty or appendable DVD-DL medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:769
#, kde-format
msgid "Please insert an empty or appendable DVD-DL medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:775
#, kde-format
msgid ""
"Please insert a non-empty medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:777
#, kde-format
msgid "Please insert a non-empty medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:781
#, kde-format
msgid ""
"Please insert a non-empty rewritable medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:783
#, kde-format
msgid "Please insert a non-empty rewritable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:789
#, kde-format
msgid ""
"Please insert a rewritable medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:791
#, kde-format
msgid "Please insert a rewritable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:797 tools/k3bmedium.cpp:843
#, kde-format
msgid ""
"Please insert a suitable medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:799 tools/k3bmedium.cpp:845
#, kde-format
msgid "Please insert a suitable medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:812
#, kde-format
msgid ""
"Please insert a Video CD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:814
#, kde-format
msgid "Please insert a Video CD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:818
#, kde-format
msgid ""
"Please insert a Video DVD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:820
#, kde-format
msgid "Please insert a Video DVD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:824
#, kde-format
msgid ""
"Please insert a Mixed Mode CD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:826
#, kde-format
msgid "Please insert a Mixed Mode CD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:830
#, kde-format
msgid ""
"Please insert an Audio CD medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:832
#, kde-format
msgid "Please insert an Audio CD medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:836
#, kde-format
msgid ""
"Please insert a Data medium into drive"
"<p><b>%1</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bmedium.cpp:838
#, kde-format
msgid "Please insert a Data medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:27
#, kde-format
msgid "Simulate"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:28
#, kde-format
msgid ""
"<p>If this option is checked K3b will perform all writing steps with the laser turned off."
"<p>This is useful, for example, to test a higher writing speed or whether your system is able to write on-the-fly."
"<p><b>Caution:</b> DVD+R(W) does not support simulated writing."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:33
#, kde-format
msgid "Only simulate the writing process"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:39
#, kde-format
msgid "Disk at once"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:40
#, kde-format
msgid ""
"<p>If this option is checked, K3b will write the CD in 'disk at once' mode as compared to 'track at once' (TAO)."
"<p>It is always recommended to use DAO where possible."
"<p><b>Caution:</b> Track pregaps with a length other than 2 seconds are only supported in DAO mode."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:45
#, kde-format
msgid "Write in disk at once mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:51
#, kde-format
msgid "Use Burnfree"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:52
#, kde-format
msgid "Enable Burnfree (or Just Link) to avoid buffer underruns"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:53
#, kde-format
msgid ""
"<p>If this option is checked, K3b enables <em>Burnfree</em> (or <em>Just Link</em>). This is a feature of the CD writer which avoids buffer underruns."
"<p>Without <em>burnfree</em>, if the writer cannot get any more data a buffer underrun would occur, since the writer needs a constant stream of data to write the CD."
"<p>With <em>burnfree</em> the writer can <em>mark</em> the current position of the laser and get back to it when the buffer is filled again; but, since this means having little data gaps on the CD, <b>it is highly recommended to always choose an appropriate writing speed to prevent the usage of burnfree, especially for audio CDs</b> (in the worst case one would hear the gap)."
"<p><em>Burnfree</em> was formerly known as <em>Burnproof</em>, but has since been renamed when it became part of the MMC standard."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:72
#, kde-format
msgid "Only create image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:73
#, kde-format
msgid ""
"<p>If this option is checked, K3b will only create an image and not do any actual writing."
"<p>The image can later be written to a CD/DVD with most current writing programs (including K3b of course)."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:77
#, kde-format
msgid "Only create an image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:83
#, kde-format
msgid "Create image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:84
#, kde-format
msgid ""
"<p>If this option is checked, K3b will create an image before writing the files to the CD/DVD. Otherwise the data will be written <em>on-the-fly</em>, i.e. no intermediate image will be created."
"<p><b>Caution:</b> Although writing on-the-fly should work on most systems, make sure the data is sent to the writer fast enough."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:89 tools/k3bstdguiitems.cpp:111
#, kde-format
msgid "<p>It is recommended to try a simulation first."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:90
#, kde-format
msgid "Cache the data to be written on the harddisk"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:96
#, kde-format
msgid "Remove image"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:97
#, kde-format
msgid ""
"<p>If this option is checked, K3b will remove any created images after the writing has finished."
"<p>Uncheck this if you want to keep the images."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:100
#, kde-format
msgid "Remove images from disk when finished"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:106
#, kde-format
msgid "On the fly"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:107
#, kde-format
msgid ""
"<p>If this option is checked, K3b will not create an image first but write the files directly to the CD/DVD."
"<p><b>Caution:</b> Although this should work on most systems, make sure the data is sent to the writer fast enough."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:112
#, kde-format
msgid "Write files directly to CD/DVD without creating an image"
msgstr ""
#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:118
#, kde-format
msgid "Write CD-Text"
msgstr ""
-#. +> stable
-#: tools/k3bstdguiitems.cpp:119
-#, kde-format
-msgid "Write CD-TEXT"
-msgstr ""
-
#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:119
#, kde-format
msgid "Create CD-Text entries"
msgstr ""
-#. +> stable
-#: tools/k3bstdguiitems.cpp:120
-#, kde-format
-msgid "Create CD-TEXT entries"
-msgstr ""
-
#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:120
#, kde-format
msgid ""
"<p>If this option is checked K3b uses some otherwise-unused space on the audio CD to store additional information, such as the artist's name, or the CD title."
"<p>CD-Text is an extension to the audio CD standard introduced by Sony."
"<p>CD-Text will only be usable on CD players that support this extension (mostly car CD players)."
"<p>Since a CD-Text-enhanced CD will work in any CD player it is never a bad idea to enable this (if you specify CD-Text data.)"
msgstr ""
-#. +> stable
-#: tools/k3bstdguiitems.cpp:121
-#, kde-format
-msgid ""
-"<p>If this option is checked K3b uses some otherwise-unused space on the audio CD to store additional information, such as the artist's name, or the CD title."
-"<p>CD-TEXT is an extension to the audio CD standard introduced by Sony."
-"<p>CD-TEXT will only be usable on CD players that support this extension (mostly car CD players)."
-"<p>Since a CD-TEXT-enhanced CD will work in any CD player it is never a bad idea to enable this (if you specify CD-TEXT data.)"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:139
#, kde-format
msgid "Set the paranoia level for reading audio CDs"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:140
#, kde-format
msgid ""
"<p>Sets the correction mode for digital audio extraction."
"<ul>"
"<li>0: No checking, data is copied directly from the drive. "
"<li>1: Perform overlapped reading to avoid jitter.</li>"
"<li>2: Like 1 but with additional checks of the read audio data.</li>"
"<li>3: Like 2 but with additional scratch detection and repair.</li>"
"</ul>"
"<p><b>The extraction speed reduces from 0 to 3.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:152
#, kde-format
msgid "Start multisession CD"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:153
#, kde-format
msgid "Do not close the disk to allow additional sessions to be added later"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:154
#, kde-format
msgid ""
"<p>If this option is checked K3b will not close the CD, and will write a temporary table of contents.</p>"
"<p>This allows further sessions to be appended to the CD later.</p>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:163
#, kde-format
msgid "Normalize volume levels"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:164
#, kde-format
msgid "Adjust the volume levels of all tracks"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:165
#, kde-format
msgid ""
"<p>If this option is checked K3b will adjust the volume of all tracks to a standard level. This is useful for things like creating mixes, where different recording levels on different albums can cause the volume to vary greatly from song to song."
"<p><b>Be aware that K3b currently does not support normalizing when writing on the fly.</b>"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:177
#, kde-format
msgid "Verify written data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:178
#, kde-format
msgid "Compare original with written data"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:179
#, kde-format
msgid "<p>If this option is checked, then after successfully writing the disk K3b will compare the original source data with the written data to verify that the disk has been written correctly."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:189
#, kde-format
msgid "Ignore read errors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:190
#, kde-format
msgid "Skip unreadable audio sectors"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: tools/k3bstdguiitems.cpp:191
#, kde-format
msgid ""
"<p>If this option is checked and K3b is not able to read an audio sector from the source CD it will be replaced with zeros on the resulting copy."
"<p>Since audio CD Player are able to interpolate small errors in the data it is no problem to let K3b skip unreadable sectors."
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:299
#, kde-format
msgid "AC3"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:301
#, kde-format
msgid "MPEG1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:303
#, kde-format
msgid "MPEG2 Extended"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:305
#, kde-format
msgid "LPCM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:307
#, kde-format
msgid "DTS"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:309
#, kde-format
msgid "unknown audio format"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:320
#, kde-format
msgid "Normal"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:322
#, kde-format
msgid "For the visually impaired"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:324
#, kde-format
msgid "Director's comments 1"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:326
#, kde-format
msgid "Director's comments 2"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:328
#, kde-format
msgid "unknown audio code extension"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:337
#, kde-format
msgid "RLE"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:339
#, kde-format
msgid "Extended"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:341
#, kde-format
msgid "unknown coding mode"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:352
#, kde-format
msgid "Caption with normal size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:354
#, kde-format
msgid "Caption with bigger size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:356
#, kde-format
msgid "Caption for children"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:358
#, kde-format
msgid "Closed caption with normal size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:360
#, kde-format
msgid "Closed caption with bigger size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:362
#, kde-format
msgid "Closed caption for children"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:364
#, kde-format
msgid "Forced caption"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:366
#, kde-format
msgid "Director's comments with normal size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:368
#, kde-format
msgid "Director's comments with bigger size characters"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:370
#, kde-format
msgid "Director's comments for children"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: videodvd/k3bvideodvd.cpp:372
#, kde-format
msgid "unknown code extension"
msgstr ""
-
-#. +> stable
-#: tools/k3bprogressdialog.cpp:85
-#, kde-format
-msgid "Disk successfully erased. Please reload the disk."
-msgstr ""
-
-#. +> stable
-#: tools/k3bprogressdialog.cpp:87
-#, kde-format
-msgid "K3b was unable to erase the disk."
-msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3bdevice.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3bdevice.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdemultimedia/libk3bdevice.pot (revision 1509808)
@@ -1,339 +1,327 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-03-23 09:20+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:28 k3bdeviceglobals.cpp:151
#, kde-format
msgid "CD-R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:30 k3bdeviceglobals.cpp:153
#, kde-format
msgid "CD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:32 k3bdeviceglobals.cpp:149
#, kde-format
msgid "CD-ROM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:34 k3bdeviceglobals.cpp:118
#, kde-format
msgid "DVD-ROM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:36 k3bdeviceglobals.cpp:132
#, kde-format
msgid "DVD-RAM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:38 k3bdeviceglobals.cpp:121
#, kde-format
msgid "DVD-R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:40 k3bdeviceglobals.cpp:135
#, kde-format
msgid "DVD-RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:42
#, kde-format
msgid "DVD-R DL"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:44 k3bdeviceglobals.cpp:155
#, kde-format
msgid "HD DVD-ROM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:46 k3bdeviceglobals.cpp:157
#, kde-format
msgid "HD DVD-R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:48 k3bdeviceglobals.cpp:159
#, kde-format
msgid "HD DVD-RAM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:50 k3bdeviceglobals.cpp:161
#, kde-format
msgid "BD-ROM"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:52 k3bdeviceglobals.cpp:164
#, kde-format
msgid "BD-R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:54 k3bdeviceglobals.cpp:172
#, kde-format
msgid "BD-RE"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:56 k3bdeviceglobals.cpp:143
#, kde-format
msgid "DVD+R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:58 k3bdeviceglobals.cpp:141
#, kde-format
msgid "DVD+RW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:60
#, kde-format
msgid "DVD+R DL"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:63 k3bdeviceglobals.cpp:175 k3bdeviceglobals.cpp:197
#, kde-format
msgid "Error"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:73
#, kde-format
msgid "SAO"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:75
#, kde-format
msgid "TAO"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:77
#, kde-format
msgid "RAW"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:79
#, kde-format
msgid "SAO/R96P"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:81
#, kde-format
msgid "SAO/R96R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:83
#, kde-format
msgid "RAW/R16"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:85
#, kde-format
msgid "RAW/R96P"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:87
#, kde-format
msgid "RAW/R96R"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:89
#, kde-format
msgid "Incremental Sequential"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:91
#, kde-format
msgid "Restricted Overwrite"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:93
#, kde-format
msgid "Layer Jump"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:96
#, kde-format
msgid "Random Recording"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:98
#, kde-format
msgid "Sequential Recording"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:100
#, kde-format
msgid "Sequential Recording + POW"
msgstr ""
#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:103
#, kde-format
msgctxt "no writing mode"
msgid "None"
msgstr ""
-#. +> stable
-#: k3bdeviceglobals.cpp:104
-#, kde-format
-msgid "None"
-msgstr ""
-
#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:112
#, kde-format
msgctxt "unknown medium type"
msgid "Unknown"
msgstr ""
-#. +> stable
-#: k3bdeviceglobals.cpp:113 k3bdeviceglobals.cpp:185
-#, kde-format
-msgid "Unknown"
-msgstr ""
-
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:116
#, kde-format
msgid "No media"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:123
#, kde-format
msgid "DVD-R Sequential"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:126
#, kde-format
msgid "DVD-R Dual Layer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:128
#, kde-format
msgid "DVD-R Dual Layer Sequential"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:130
#, kde-format
msgid "DVD-R Dual Layer Jump"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:137
#, kde-format
msgid "DVD-RW Restricted Overwrite"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:139
#, kde-format
msgid "DVD-RW Sequential"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:145
#, kde-format
msgid "DVD+RW Dual Layer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:147
#, kde-format
msgid "DVD+R Dual Layer"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:166
#, kde-format
msgid "BD-R Sequential (SRM)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:168
#, kde-format
msgid "BD-R Sequential Pseudo Overwrite (SRM+POW)"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:170
#, kde-format
msgid "BD-R Random (RRM)"
msgstr ""
#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:184
#, kde-format
msgctxt "unknown medium state"
msgid "Unknown"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:188
#, kde-format
msgid "no medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:190
#, kde-format
msgid "complete medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:192
#, kde-format
msgid "incomplete medium"
msgstr ""
-#. +> trunk5 stable5 stable
+#. +> trunk5 stable5
#: k3bdeviceglobals.cpp:194
#, kde-format
msgid "empty medium"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/kdereview/ring-kde.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/kdereview/ring-kde.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/kdereview/ring-kde.pot (revision 1509808)
@@ -1,3209 +1,3234 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2017-12-30 09:51+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#. +> trunk5
#, kde-format
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#. +> trunk5
#, kde-format
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
#. i18n: ectx: Menu (Actions)
#. +> trunk5
#: data/ring-kdeui.rc:5
#, kde-format
msgid "Actions"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, m_pViewCa)
#. i18n: ectx: property (text), widget (QToolButton, m_pViewCert)
#. i18n: ectx: Menu (View)
#. +> trunk5
#: data/ring-kdeui.rc:21 src/conf/accountpages/security.ui:392
#: src/conf/accountpages/security.ui:406
#, kde-format
msgid "View"
msgstr ""
#. i18n: ectx: Menu (Settings)
#. +> trunk5
#: data/ring-kdeui.rc:31
#, kde-format
msgid "Settings"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:45
#, kde-format
msgid "List all current calls"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:53
#, kde-format
msgid "Get current call details"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:81
#, kde-format
msgid "You currently have <numid>%1</numid> call"
msgid_plural "You currently have <numid>%1</numid> calls"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/accessibility.cpp:83
#, kde-format
msgid "Call from %1, number %2"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:87
#, kde-format
msgid "You currently have no call"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:109
#, kde-format
msgid "The current call is %1"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:111
#, kde-format
msgid ",Your peer is %1"
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:113
#, kde-format
msgid ", the peer phone number is %1 "
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:115
#, kde-format
msgid ", the phone number is %1 "
msgstr ""
#. +> trunk5
#: src/accessibility.cpp:119
#, kde-format
msgid " and you have been talking since %1 seconds"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:85
#, kde-format
msgid "Accept"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:86
#, kde-format
msgid "Hold"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:87
#, kde-format
msgid "Transfer"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:88
#, kde-format
msgid "Record"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:89 src/notification.cpp:91
#, kde-format
msgid "Hang up"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:107
#, kde-format
msgctxt "Mute the current audio capture device"
msgid "Mute"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:108
#, kde-format
msgctxt "Mute the current audio playback device"
msgid "Mute Playback"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:111
#, kde-format
msgid "Rotate left"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:112
#, kde-format
msgid "Rotate right"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:113 src/actioncollection.cpp:114
#, kde-format
msgid "Flip"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:115
#, kde-format
msgid "Mute"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:116
#, kde-format
msgid "Preview"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:117
#, kde-format
msgid "Keep aspect ratio"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:118
#, kde-format
msgid "Fullscreen"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:163
#, kde-format
msgid "Configure Ring-KDE"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:170
#, kde-format
msgid "Display dialpad"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:171
#, kde-format
msgid "Display volume controls"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:172
#, kde-format
msgid "Display account selector"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:173
#, kde-format
msgid "Raise Ring-KDE window"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:174
#, kde-format
msgid "Search history"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:175
#, kde-format
msgid "Search call"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:176
#, kde-format
msgid "Search contact"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:177
#, kde-format
msgid "Search bookmark"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:178
#, kde-format
msgid "Show the phone directory"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:180
#, kde-format
msgid "New account wizard"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:181
#, kde-format
msgid "Show the menu"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:182
#, kde-format
msgid "New contact"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:183
#, kde-format
msgid "Paste"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:184
#, kde-format
msgid "Display Person"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:185
#, kde-format
msgid "Display history"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:186
#, kde-format
msgid "Display bookmark"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:187
#, kde-format
msgid "Display timeline"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:188
#, kde-format
msgid "Display call manager"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:189
#, kde-format
msgid "Configure Toolbars"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:190
#, kde-format
msgid "Add new contact"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:191
#, kde-format
msgid "Configure Shortcut"
msgstr ""
#. +> trunk5
#: src/actioncollection.cpp:192
#, kde-format
msgid "Configure Notifications"
msgstr ""
#. +> trunk5
#: src/callview/qml/callbackground.qml:32
#, kde-format
msgid "[No video]"
msgstr ""
#. +> trunk5
#: src/callview/qml/devicesetting.qml:34
#, kde-format
msgid "Device"
msgstr ""
#. +> trunk5
#: src/callview/qml/devicesetting.qml:44
#, kde-format
msgid "Channel"
msgstr ""
#. +> trunk5
#: src/callview/qml/devicesetting.qml:54
#, kde-format
msgid "Resolution"
msgstr ""
#. +> trunk5
#: src/callview/qml/devicesetting.qml:64
#, kde-format
msgid "Frame rate"
msgstr ""
#. +> trunk5
#: src/callview/qml/screensharing.qml:31
#, kde-format
msgid "Screen"
msgstr ""
#. +> trunk5
#: src/callview/qml/screensharing.qml:41
#, kde-format
msgid "X offset"
msgstr ""
#. +> trunk5
#: src/callview/qml/screensharing.qml:52
#, kde-format
msgid "Y offset"
msgstr ""
#. +> trunk5
#: src/callview/qml/screensharing.qml:63
#, kde-format
msgid "Width"
msgstr ""
#. +> trunk5
#: src/callview/qml/screensharing.qml:74
#, kde-format
msgid "Height"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:61
#, kde-format
msgid "Place a call to a given number"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:62
#, kde-format
msgid "Send a text to &lt;number&gt;, use --message to set the content, then hangup"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:63
#, kde-format
msgid "Used in combination with --send-text"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:64
#, kde-format
msgid "Start in the system tray"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:65
#, kde-format
msgid "Start with the phone interface"
msgstr ""
#. +> trunk5
#: src/cmd.cpp:66
#, kde-format
msgid "Start with the timeline interface"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, button_accountAdd)
#. +> trunk5
#: src/conf/accountdlg.ui:75
#, kde-format
msgid "Add a new account"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QToolButton, button_accountAdd)
#. +> trunk5
#: src/conf/accountdlg.ui:78
#, kde-format
msgid "This button enables you to initialize a new account. You will then be able to edit it using the form on the right."
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, button_accountAdd)
#. +> trunk5
#: src/conf/accountdlg.ui:81
#, kde-format
msgctxt "Add new account"
msgid "Add"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (CategorizedTree, m_pAccountList)
#. +> trunk5
#: src/conf/accountdlg.ui:120
#, kde-format
msgid "By default, when you place a call, Ring will use the first account in this list which is \"registered\". Change the order of the accounts using the \"Up\" and \"Down\" arrows. Enable/disable them by checking/unchecking them on the left of the item. Add or remove some with \"Plus\" and \"Sub\" buttons. Edit the selected account with the form on the right."
msgstr ""
#. i18n: ectx: property (toolTip), widget (LeftToolButton, m_pMoveUp)
#. +> trunk5
#: src/conf/accountdlg.ui:160
#, kde-format
msgid "Get this account up"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (LeftToolButton, m_pMoveUp)
#. i18n: ectx: property (whatsThis), widget (CenterToolButton, m_pMoveDown)
#. +> trunk5
#: src/conf/accountdlg.ui:163 src/conf/accountdlg.ui:184
#, kde-format
msgid "By default, when you place a call, Ring will use the first account in this list which is \"registered\". Change the order of the accounts using the \"Up\" and \"Down\" arrows."
msgstr ""
#. i18n: ectx: property (text), widget (LeftToolButton, m_pMoveUp)
#. +> trunk5
#: src/conf/accountdlg.ui:166
#, kde-format
msgctxt "Move account up"
msgid "Up"
msgstr ""
#. i18n: ectx: property (toolTip), widget (CenterToolButton, m_pMoveDown)
#. +> trunk5
#: src/conf/accountdlg.ui:181
#, kde-format
msgid "Get this account down"
msgstr ""
#. i18n: ectx: property (text), widget (CenterToolButton, m_pMoveDown)
#. +> trunk5
#: src/conf/accountdlg.ui:187
#, kde-format
msgctxt "Move account down"
msgid "Down"
msgstr ""
#. i18n: ectx: property (toolTip), widget (RightToolButton, m_pRemove)
#. +> trunk5
#: src/conf/accountdlg.ui:208
#, kde-format
msgid "Remove the selected account"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (RightToolButton, m_pRemove)
#. +> trunk5
#: src/conf/accountdlg.ui:211
#, kde-format
msgid "This button will remove the selected account in the list below. Be sure you really don't need it anymore. If you think you might use it again later, just uncheck it."
msgstr ""
#. i18n: ectx: property (text), widget (RightToolButton, m_pRemove)
#. +> trunk5
#: src/conf/accountdlg.ui:217
#, kde-format
msgctxt "Remove selected account"
msgid "Remove"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_8)
#. +> trunk5
#: src/conf/accountpages/account.cpp:94 src/conf/accountpages/tabs.ui:101
#: src/model/extendedprotocolmodel.cpp:48
#, kde-format
msgid "Profile"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, alsaRingtoneDeviceL)
#. i18n: ectx: property (title), widget (QGroupBox, lrcfg_ringtoneEnabled)
#. +> trunk5
#: src/conf/accountpages/account.cpp:98 src/conf/accountpages/ringtone.ui:27
#: src/conf/dlgaudiobase.ui:130
#, kde-format
msgid "Ringtone"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. +> trunk5
#: src/conf/accountpages/account.cpp:99 src/conf/accountpages/tabs.ui:81
#, kde-format
msgid "Security"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_7)
#. +> trunk5
#: src/conf/accountpages/account.cpp:100 src/conf/accountpages/tabs.ui:71
#, kde-format
msgid "Credentials"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. +> trunk5
#: src/conf/accountpages/account.cpp:101 src/conf/accountpages/tabs.ui:61
#, kde-format
msgid "Codecs"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_9)
#. +> trunk5
#: src/conf/accountpages/account.cpp:102 src/conf/accountpages/tabs.ui:51
#, kde-format
msgid "Devices"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5
#: src/conf/accountpages/account.cpp:103 src/conf/accountpages/tabs.ui:41
#, kde-format
msgid "Network"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5
#: src/conf/accountpages/account.cpp:104 src/conf/accountpages/tabs.ui:31
-#: src/timeline/qml/contactinfo.qml:199
+#: src/timeline/qml/contactinfo.qml:194
#, kde-format
msgid "Advanced"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5
#: src/conf/accountpages/account.cpp:105 src/conf/accountpages/tabs.ui:21
#, kde-format
msgid "Basic"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
-#: src/conf/accountpages/advanced.ui:17 src/wizard/qml/CreateRing.qml:437
+#: src/conf/accountpages/advanced.ui:17 src/wizard/qml/CreateRing.qml:425
#, kde-format
msgid "Registration"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_regExpire)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:25
#, kde-format
msgid "Re&gistration expire"
msgstr ""
#. i18n: ectx: property (suffix), widget (QSpinBox, lrcfg_registrationExpire)
#. i18n: ectx: property (suffix), widget (QSpinBox, lrcfg_tlsNegotiationTimeoutSec)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:35 src/conf/accountpages/security.ui:446
#, kde-format
msgid " seconds"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_hasCustomUserAgent)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:45
#, kde-format
msgid "Use custom user agent"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_allowIncomingFromUnknown)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:61
#, kde-format
msgid "Allow calls from unknown peers"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_allowIncomingFromHistory)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:71
#, kde-format
msgid "Allow calls if that person has been contacted in the past"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_allowIncomingFromContact)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:81
#, kde-format
msgid "Allow calls from your contacts"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:91
#, kde-format
msgid "Negotiation"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_hasProxy)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:100
#, kde-format
msgid "Use a proxy"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_proxy)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:110
#, kde-format
msgid "SIP proxy server (if none, leave blank)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_sipStunEnabled)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:117
#, kde-format
msgid "Enable STUN"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_sipStunServer)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:127
#, kde-format
msgid "Choose STUN server (example: stunserver.org)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_turnEnabled)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:134
#, kde-format
msgid "TURN server"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_turnServer)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:144
#, kde-format
msgid "Choose TURN server (example: turnserver.org)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_upnpEnabled)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:151
#, kde-format
msgid "Enable UPnP"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:164
#, kde-format
msgid "Feature"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_presenceEnabled)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:173
#, kde-format
msgid "Enable presence support"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_isVideoEnabled)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:180
#, kde-format
msgid "Enable video when supported"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_hasActiveCallLimit)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:187
#, kde-format
msgid "Limit the number of concurrent incoming calls"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_pDTMF_GB)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:220
#, kde-format
msgid "DTMF"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, auto_2)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:226
#, kde-format
msgid "Over R&TP"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lrcfg_dTMFType)
#. +> trunk5
#: src/conf/accountpages/advanced.ui:233
#, kde-format
msgid "Over SIP"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label1_alias)
#. +> trunk5
#: src/conf/accountpages/basic.ui:19
#, kde-format
msgid "Alias*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_alias)
#. +> trunk5
#: src/conf/accountpages/basic.ui:41
#, kde-format
msgid "Anything, used only to select the account"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label2_protocol)
#. +> trunk5
#: src/conf/accountpages/basic.ui:48
#, kde-format
msgid "Protocol"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/conf/accountpages/basic.ui:78
#, kde-format
msgid "&Display Name*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_displayName)
#. +> trunk5
#: src/conf/accountpages/basic.ui:88
#, kde-format
msgid "The name as seen by the peer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lrcfg_registeredNameBuddy2)
#. +> trunk5
#: src/conf/accountpages/basic.ui:95
#, kde-format
msgid "Re&gistered Name*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_registeredName)
#. +> trunk5
#: src/conf/accountpages/basic.ui:107
#, kde-format
msgid "The name seen by your peers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, lrcfg_registeredNameBuddy)
#. +> trunk5
#: src/conf/accountpages/basic.ui:114
#, kde-format
msgid "A"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label3_server)
#. +> trunk5
#: src/conf/accountpages/basic.ui:123
#, kde-format
msgctxt "SIP server"
msgid "Server*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_hostname)
#. +> trunk5
#: src/conf/accountpages/basic.ui:139
#, kde-format
msgid "Example: sip.sring.cx or 192.168.0.2"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label4_user)
#. +> trunk5
#: src/conf/accountpages/basic.ui:149
#, kde-format
msgctxt "Account username"
msgid "&Username*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, edit_credential_auth_2)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_username)
#. +> trunk5
#: src/conf/accountpages/basic.ui:159 src/conf/accountpages/credentials.ui:149
#, kde-format
msgid "Usually your extension number"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label5_password)
#. +> trunk5
#: src/conf/accountpages/basic.ui:166
#, kde-format
msgctxt "Account password"
msgid "Password*"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, edit_credential_password_2)
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_password)
#. +> trunk5
#: src/conf/accountpages/basic.ui:179 src/conf/accountpages/credentials.ui:165
#, kde-format
msgid "SIP password, ask your network administrator"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_hasCustomBootstrap)
#. +> trunk5
#: src/conf/accountpages/basic.ui:188
#, kde-format
msgid "Use custom bootstrap nodes"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_autoAnswer)
#. +> trunk5
#: src/conf/accountpages/basic.ui:202
#, kde-format
msgid "Auto answer"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label7_state)
#. +> trunk5
#: src/conf/accountpages/basic.ui:209
#, kde-format
msgid "Status"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, m_pDisplayLog)
#. +> trunk5
#: src/conf/accountpages/basic.ui:237
#, kde-format
msgid "Availability log"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, button_audiocodecUp)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:22
#, kde-format
msgid "Increase codec priority"
msgstr ""
#. i18n: ectx: property (whatsThis), widget (QToolButton, button_audiocodecUp)
#. i18n: ectx: property (whatsThis), widget (QToolButton, button_audiocodecDown)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:25 src/conf/accountpages/codecs.ui:44
#, kde-format
msgid "By default, when you place a call, sflphone will use the first account in this list which is \"registered\". Change the order of the accounts using the \"Up\" and \"Down\" arrows."
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, button_audiocodecUp)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:28
#, kde-format
msgctxt "Move audio codec up"
msgid "Up"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, button_audiocodecDown)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:41
#, kde-format
msgid "Decrease codec priority"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, button_audiocodecDown)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:47
#, kde-format
msgctxt "Move audio codec down"
msgid "Down"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_bitrate)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:62
#, kde-format
msgid "Bitrate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_frequency)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:69
#, kde-format
msgid "Sample rate:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/conf/accountpages/codecs.ui:76
#, kde-format
msgid "Move the codecs up and down to alter the priority. Ring recommend Opus for audio and H264 for video. In case of problems, PCMA is the most widely supported audio codec and H263 the most supported video codec."
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pInfoL)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:42
#, kde-format
msgid "This tab help manage accounts with multiple credentials. If you have multiple accounts. Do not use this feature, just create multiple accounts in Ring-KDE. Nor use this dialog if you only have one set of credentials. In that case, the \"Basic\" tab will provide everything you need."
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, button_add_credential)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:79
#, kde-format
msgctxt "Add new credential"
msgid "Add"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, button_remove_credential)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:90
#, kde-format
msgctxt "Remove selected credential"
msgid "Remove"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, group_credential)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:109
-#: src/timeline/qml/contactinfo.qml:220
+#: src/timeline/qml/contactinfo.qml:219
#, kde-format
msgid "Details"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_credential_realm_2)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:115
#, kde-format
msgid "Realm"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, labe_credential_auth_2)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:122
#, kde-format
msgid "Auth. name"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_credential_password_2)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:129
#, kde-format
msgid "Password"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, edit_credential_realm_2)
#. +> trunk5
#: src/conf/accountpages/credentials.ui:139
#, kde-format
msgid "Usually *"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: src/conf/accountpages/network.ui:17
#, kde-format
msgid "Network Interface"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_ni_local_address)
#. +> trunk5
#: src/conf/accountpages/network.ui:23
#, kde-format
msgid "Local address"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_ni_local_port)
#. +> trunk5
#: src/conf/accountpages/network.ui:40
#, kde-format
msgid "Local port"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_pPublishedGB)
#. i18n: ectx: property (text), widget (QLabel, label_published_address)
#. +> trunk5
#: src/conf/accountpages/network.ui:57 src/conf/accountpages/network.ui:80
#, kde-format
msgid "Published address"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, lrcfg_publishedSameAsLocal)
#. +> trunk5
#: src/conf/accountpages/network.ui:63
#, kde-format
msgid "Same as &local parameters"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, auto_2)
#. +> trunk5
#: src/conf/accountpages/network.ui:73
#, kde-format
msgid "Set p&ublished address and port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_pa_published_port)
#. +> trunk5
#: src/conf/accountpages/network.ui:87
#, kde-format
msgid "Published port"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_publishedAddress)
#. +> trunk5
#: src/conf/accountpages/network.ui:107
#, kde-format
msgid "IP address or hostname"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_pPortGroup)
#. +> trunk5
#: src/conf/accountpages/network.ui:130
#, kde-format
msgid "RTP configuration"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMinAudioPortL)
#. +> trunk5
#: src/conf/accountpages/network.ui:156
#, kde-format
msgid "Minimum audio port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMinVideoPortL)
#. +> trunk5
#: src/conf/accountpages/network.ui:184
#, kde-format
msgid "Minimum video port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMaxAudioPortL)
#. +> trunk5
#: src/conf/accountpages/network.ui:191
#, kde-format
msgid "Maximum audio port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMaxVideoPortL)
#. +> trunk5
#: src/conf/accountpages/network.ui:198
#, kde-format
msgid "Maximum video port"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/conf/accountpages/network.ui:205
#, kde-format
msgid "Note that this is only used as a fallback when ICE negotiation failed (autodetected)."
msgstr ""
#. +> trunk5
#: src/conf/accountpages/ringtone.cpp:29
#, kde-format
msgid "Select a new ringtone"
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, m_pPlay)
#. +> trunk5
#: src/conf/accountpages/ringtone.ui:65
#, kde-format
msgid "Play"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lrcfg_srtpEnabled)
#. +> trunk5
#: src/conf/accountpages/security.ui:74
#, kde-format
msgid "Encr&ypt media streams (SRTP)"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_srtpRtpFallback)
#. +> trunk5
#: src/conf/accountpages/security.ui:93
#, kde-format
msgid "Fallback on RTP on SDES failure"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, lrcfg_tlsEnabled)
#. +> trunk5
#: src/conf/accountpages/security.ui:109
#, kde-format
msgid "Encrypt negotiation (&TLS)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_authority)
#. +> trunk5
#: src/conf/accountpages/security.ui:121
#, kde-format
msgid "Authority certificate list"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMoveCertL_2)
#. +> trunk5
#: src/conf/accountpages/security.ui:182
#, kde-format
msgid "Your certificates access are too permissive. Certificates should only be readable by the owner."
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_pFixCertPB)
#. +> trunk5
#: src/conf/accountpages/security.ui:196
#, kde-format
msgid "Fix the permissions"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_pCancelFix)
#. i18n: ectx: property (text), widget (QPushButton, m_pCancelMove)
#. +> trunk5
#: src/conf/accountpages/security.ui:207 src/conf/accountpages/security.ui:302
#, kde-format
msgid "No thanks"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, m_pMoveCertL)
#. +> trunk5
#: src/conf/accountpages/security.ui:277
#, kde-format
msgid "A good security practice is to move the certificates to a common directory. SELinux recommend ~/.cert for this. Do you wish to move the certificate there?"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_pMoveCertPB)
#. +> trunk5
#: src/conf/accountpages/security.ui:291
#, kde-format
msgid "Move to ~/.cert"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_timeout)
#. +> trunk5
#: src/conf/accountpages/security.ui:318
#, kde-format
msgid "Negotiation timeout"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_tlsVerifyServer)
#. +> trunk5
#: src/conf/accountpages/security.ui:325
#, kde-format
msgid "Verify incoming certificates (server side)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_endpoint)
#. +> trunk5
#: src/conf/accountpages/security.ui:332
#, kde-format
msgid "Public endpoint certificate"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_tlsPassword)
#. +> trunk5
#: src/conf/accountpages/security.ui:368
#, kde-format
msgid "Only necessary if the key have a password"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_private_key)
#. +> trunk5
#: src/conf/accountpages/security.ui:375
#, kde-format
msgid "Private key"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (QLineEdit, lrcfg_tlsServerName)
#. +> trunk5
#: src/conf/accountpages/security.ui:382
#, kde-format
msgid "Usually the SIP server hostname"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_pViewCa)
#. +> trunk5
#: src/conf/accountpages/security.ui:389
#, kde-format
msgid "View the certificate authority"
msgstr ""
#. i18n: ectx: property (toolTip), widget (QToolButton, m_pViewCert)
#. +> trunk5
#: src/conf/accountpages/security.ui:403
#, kde-format
msgid "View the certificate"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_private_key_password)
#. +> trunk5
#: src/conf/accountpages/security.ui:417
#, kde-format
msgid "Private key password"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_tlsRequireClientCertificate)
#. +> trunk5
#: src/conf/accountpages/security.ui:427
#, kde-format
msgid "Require a certificate for incoming TLS connections"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_outgoing)
#. +> trunk5
#: src/conf/accountpages/security.ui:459
#, kde-format
msgid "Outgoing TLS server name"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, lrcfg_tlsVerifyClient)
#. +> trunk5
#: src/conf/accountpages/security.ui:466
#, kde-format
msgid "Verify answer certificates (client side)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_tls_method)
#. +> trunk5
#: src/conf/accountpages/security.ui:492
#, kde-format
msgid "TLS protocol method"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_pDefaultCiphers)
#. +> trunk5
#: src/conf/accountpages/security.ui:499
#, kde-format
msgid "Use default ciphers"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. +> trunk5
#: src/conf/accountpages/security.ui:513
#, kde-format
msgid "Allowed certificates"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#. +> trunk5
#: src/conf/accountpages/security.ui:523
#, kde-format
msgid "Banned certificates"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#. +> trunk5
#: src/conf/accountpages/security.ui:533
#, kde-format
msgid "Known certificates"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_6)
#. +> trunk5
#: src/conf/accountpages/tabs.ui:91
#, kde-format
msgid "Ringtones"
msgstr ""
#. i18n: ectx: attribute (title), widget (QWidget, tab_10)
#. +> trunk5
#: src/conf/accountpages/tabs.ui:111
#, kde-format
msgid "Wizard"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:116
#, kde-format
msgid "Accounts"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:126
#, kde-format
msgctxt "User interterface settings"
msgid "Display"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:135
#, kde-format
msgid "Audio"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:144
#, kde-format
msgid "Personal data"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:153
#, kde-format
msgid "Accessibility"
msgstr ""
#. +> trunk5
#: src/conf/configurationdialog.cpp:163
#, kde-format
msgctxt "Video conversation"
msgid "Video"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DlgAccessibility)
#. +> trunk5
#: src/conf/dlgaccessibility.ui:14
#, kde-format
msgid "Accessibility settings"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_pT2SBG)
#. +> trunk5
#: src/conf/dlgaccessibility.ui:23
#, kde-format
msgid "Text to Speech"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_enableVoiceFeedback)
#. i18n: ectx: label, entry (enableVoiceFeedback), group (main)
#. i18n: ectx: label, entry (displayContactDock), group (main)
#. i18n: ectx: label, entry (displayHistoryDock), group (main)
#. i18n: ectx: label, entry (displayBookmarkDock), group (main)
#. +> trunk5
#: src/conf/dlgaccessibility.ui:29 src/klib/ring-kde.kcfg:189
#: src/klib/ring-kde.kcfg:230 src/klib/ring-kde.kcfg:234
#: src/klib/ring-kde.kcfg:238
#, kde-format
msgid "Enable audio feedback from common actions"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_enableReadLabel)
#. i18n: ectx: label, entry (enableReadLabel), group (main)
#. +> trunk5
#: src/conf/dlgaccessibility.ui:36 src/klib/ring-kde.kcfg:193
#, kde-format
msgid "Automatically read label when an overlay is being displayed"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_enableReadDetails)
#. i18n: ectx: label, entry (enableReadDetails), group (main)
#. +> trunk5
#: src/conf/dlgaccessibility.ui:43 src/klib/ring-kde.kcfg:197
#, kde-format
msgid "Automatically read the call details when it is selected"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:117 src/conf/dlgaccount.cpp:137
#, kde-format
msgid "Are you sure you want to remove %1?"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:120
#, kde-format
msgid "Remove profile"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:140
#, kde-format
msgid "Remove account"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:175
#, kde-format
msgid "Import accounts"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:179
#, kde-format
msgid "Enter the password"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:193
#, kde-format
msgid "New account%1"
msgstr ""
#. +> trunk5
#: src/conf/dlgaccount.cpp:194
#, kde-format
msgid "New account"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_displayAllCollections)
#. +> trunk5
#: src/conf/dlgaddressbookbase.ui:68
#, kde-format
msgid "Display all"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_interface)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:32
#, kde-format
msgid "Sound manager"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_alsa)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:64
#, kde-format
msgid "ALSA Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label1_alsaPugin)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:79
#, kde-format
msgid "ALSA plugin"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label2_in)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:96
#, kde-format
msgid "Input"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label3_out)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:113
#, kde-format
msgid "Output"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_pulseAudio)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:153
#, kde-format
msgid "PulseAudio Settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_pulseAudioVolumeAlter)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:162
#, kde-format
msgid "Mute other applications during a call"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:176
#, kde-format
msgid "Audio settings"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_pSuppressNoise)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:182
#, kde-format
msgid "Enable noise reduction"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_enableRoomTone)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:189
#, kde-format
msgid "Enable dial tone"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_pCPlayDTMFCk)
#. +> trunk5
#: src/conf/dlgaudiobase.ui:196
#, kde-format
msgid "Mute DTMF"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox1_recordGeneral)
#. +> trunk5
#: src/conf/dlgaudiorecording.ui:23
#, kde-format
msgid "Recording"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (KUrlRequester, KUrlRequester_destinationFolder)
#. +> trunk5
#: src/conf/dlgaudiorecording.ui:35
#, kde-format
msgid "Destination folder"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_pAlwaysRecordCK)
#. +> trunk5
#: src/conf/dlgaudiorecording.ui:42
#, kde-format
msgid "Always record calls"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:26
#, kde-format
msgid "Display Main Window"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_displayOnStart)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:35
#, kde-format
msgid "On start"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_displayOnCalls)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:45
#, kde-format
msgid "On incoming calls"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_autoStart)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:52
#, kde-format
msgid "On boot (auto start)"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:72
#, kde-format
msgid "Visible contacts Details"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_hideUnreachable)
#. i18n: ectx: label, entry (hideUnreachable), group (main)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:78 src/klib/ring-kde.kcfg:157
#, kde-format
msgid "Hide unreachable contacts"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_hidePersonWithoutPhone)
#. +> trunk5
#: src/conf/dlgdisplaybase.ui:85
#, kde-format
msgid "Hide contacts without phone numbers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/conf/dlgfallbackperson.ui:17
#, kde-format
msgid ""
"<html><head/><body>"
"<p>Akonadi 2, the version compatible with the KDE frameworks 5 is not released yet. Therefore, at this point, Ring-KDE cannot be integrated with KAddressBook.</p>"
"<p>However, it is possible to integrate the <span style=\" font-weight:600;\">KDE4</span> version KAddressbook with Ring-KDE. To do this:</p>"
"<p>(1) Open <span style=\" font-weight:600;\">KAddressBook </span>and File-&gt;New-&gt;Add Address Book</p>"
"<p>(2) Select \"vCard directory\"</p>"
"<p>(3) Select the \"/home/<span style=\" font-style:italic;\">your_user_name</span>/.local/share/ring-kde/vCard\" folder</p>"
"<p>(4) Press OK</p>"
"<p>It will now be possible to access and edit your contacts from KAddressBook</p>"
"</body></html>"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, m_pHistoryGB)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:38
#, kde-format
msgid "Ca&ll History"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, toolButton_historyClear)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:49
#, kde-format
msgid "Clear History"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, m_pKeepHistory)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:93
#, kde-format
msgid "Keep history forever"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:103
#, kde-format
msgid "Automatically remove calls after"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:148
#, kde-format
msgid "days"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:158
#, kde-format
msgid "Display"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_mergeSameDayPeer)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:164
#, kde-format
msgid "Merge calls with the same day and peer"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_displayHistoryStatus)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:171
#, kde-format
msgid "Display incoming, outgoing and missed for history items"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_highlightMissedOutgoingCalls)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:178
#, kde-format
msgid "Highlight missed outgoing calls"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_highlightMissedIncomingCalls)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:185
#, kde-format
msgid "Highlight missed incoming calls"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: src/conf/dlggeneralbase.ui:192
#, kde-format
msgid "Those settings only take effect after restarting Ring-KDE"
msgstr ""
#. i18n: ectx: property (text), widget (LeftToolButton, m_pDown)
#. +> trunk5
#: src/conf/dlgpresence.ui:51
#, kde-format
msgid "Move Down"
msgstr ""
#. i18n: ectx: property (text), widget (CenterToolButton, m_pUp)
#. +> trunk5
#: src/conf/dlgpresence.ui:64
#, kde-format
msgid "Move Up"
msgstr ""
#. i18n: ectx: property (text), widget (CenterToolButton, m_pAdd)
#. +> trunk5
-#: src/conf/dlgpresence.ui:77 src/timeline/qml/phonenumbers.qml:142
+#: src/conf/dlgpresence.ui:77
#, kde-format
msgid "Add"
msgstr ""
#. i18n: ectx: property (text), widget (RightToolButton, m_pRemove)
#. +> trunk5
#: src/conf/dlgpresence.ui:90
#, kde-format
msgid "Remove"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_trackBookmarkPresence)
#. +> trunk5
#: src/conf/dlgpresence.ui:102
#, kde-format
msgid "Track bookmarked number presence"
msgstr ""
#. +> trunk5
#: src/conf/dlgvideo.cpp:46 src/conf/dlgvideo.cpp:85
#, kde-format
msgid "Stop preview"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, m_pPreviewPB)
#. +> trunk5
#: src/conf/dlgvideo.cpp:88 src/conf/dlgvideobase.ui:36
#, kde-format
msgid "Start preview"
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QWidget, DlgVideoBase)
#. +> trunk5
#: src/conf/dlgvideobase.ui:14
#, kde-format
msgid "Video settings"
msgstr ""
#. +> trunk5
#: src/conf/qml/devices.qml:127
#, kde-format
msgid "Enter your account password to confirm:"
msgstr ""
#. +> trunk5
#: src/conf/qml/devices.qml:134
#, kde-format
msgid "Enter your Ring account password"
msgstr ""
#. +> trunk5
#: src/conf/qml/devices.qml:193
#, kde-format
msgid "Enter a name for this device"
msgstr ""
#. +> trunk5
#: src/conf/qml/devices.qml:234
#, kde-format
msgid "Revokation in progress"
msgstr ""
#. +> trunk5
#: src/conf/qml/devices.qml:317
#, kde-format
msgid "Link another device to the account"
msgstr ""
#. +> trunk5
#: src/configurator/audiorecordingconfigurator.cpp:40
#: src/configurator/bookmarkconfigurator.cpp:37
#: src/configurator/peerprofileconfigurator.cpp:53
#, kde-format
msgid "Peer profile configurator"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, pushButton)
#. +> trunk5
#: src/configurator/bookmark.ui:17
#, kde-format
msgid "Clear"
msgstr ""
#. +> trunk5
#: src/configurator/fallbackpersonconfigurator.cpp:35
#, kde-format
msgid "Fallback person configurator"
msgstr ""
#. +> trunk5
#: src/configurator/localhistoryconfigurator.cpp:39
#, kde-format
msgid "Local history configurator"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/configurator/peerprofile.ui:17
#, kde-format
msgid "This entry holds all the contact information sent to you by your peers during calls or contact requests. If a contact already exists for a person, the options below will help merge entries."
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#. +> trunk5
#: src/configurator/peerprofile.ui:27
#, kde-format
msgid "Mode"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_pNewContact)
#. +> trunk5
#: src/configurator/peerprofile.ui:33
#, kde-format
msgid "Create a new contact"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_pIgnore)
#. +> trunk5
#: src/configurator/peerprofile.ui:40
#, kde-format
msgid "Ignore the new contact informations"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_pAddMissing)
#. +> trunk5
#: src/configurator/peerprofile.ui:47
#, kde-format
msgid "Onl&y add the missing information fields"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_pAlwaysAsk)
#. +> trunk5
#: src/configurator/peerprofile.ui:54
#, kde-format
msgid "Always as&k"
msgstr ""
#. i18n: ectx: property (text), widget (QRadioButton, m_pCustom)
#. +> trunk5
#: src/configurator/peerprofile.ui:61
#, kde-format
msgid "Overwrite some fields"
msgstr ""
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. +> trunk5
#: src/configurator/peerprofile.ui:74
#, kde-format
msgid "Contact fields to overwrite"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_formattedName)
#. +> trunk5
#: src/configurator/peerprofile.ui:80
#, kde-format
msgid "Formatted name"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_nickname)
#. +> trunk5
#: src/configurator/peerprofile.ui:87
#, kde-format
msgid "Nickname"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_primaryName)
#. +> trunk5
#: src/configurator/peerprofile.ui:94
#, kde-format
msgid "Primary name"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_lastName)
#. +> trunk5
#: src/configurator/peerprofile.ui:101
#, kde-format
msgid "Last name"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_email)
#. +> trunk5
#: src/configurator/peerprofile.ui:108
#, kde-format
msgid "eMail"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_org)
#. +> trunk5
#: src/configurator/peerprofile.ui:115
#, kde-format
msgid "Organization"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_addresses)
#. +> trunk5
-#: src/configurator/peerprofile.ui:122 src/timeline/qml/contactinfo.qml:228
+#: src/configurator/peerprofile.ui:122 src/timeline/qml/contactinfo.qml:225
#, kde-format
msgid "Addresses"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_phoneNumbers)
#. +> trunk5
-#: src/configurator/peerprofile.ui:129 src/timeline/qml/contactinfo.qml:225
+#: src/configurator/peerprofile.ui:129 src/timeline/qml/contactinfo.qml:222
#, kde-format
msgid "Phone numbers"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/configurator/recording.ui:36
#, kde-format
msgid "Length:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, delete_2)
#. +> trunk5
-#: src/configurator/recording.ui:65 src/timeline/qml/phonenumbers.qml:57
+#: src/configurator/recording.ui:65 src/timeline/qml/phonenumbers.qml:155
#, kde-format
msgid "Delete"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. +> trunk5
#: src/configurator/recording.ui:77
#, kde-format
msgid "Last updated:"
msgstr ""
#. i18n: ectx: property (placeholderText), widget (FilterLineEdit, lineEdit)
#. +> trunk5
#: src/configurator/recording.ui:91
#, kde-format
msgid "Search"
msgstr ""
#. +> trunk5
-#: src/contactview/qml/contactlist.qml:60 src/timeline/qml/peerstimeline.qml:91
+#: src/contactview/qml/contactlist.qml:60
+#: src/timeline/qml/peerstimeline.qml:102
#, kde-format
msgid "Find someone"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:68
#, kde-format
msgid "This contact has no known phone number or GNU Ring account"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:75
#, kde-format
msgid "Sending text messages can only happen during an audio call in SIP accounts"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:77
#, kde-format
msgid "This account doesn't support all media"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:79
#, kde-format
msgid "Video isn't available because it's disabled for this account"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:81
#, kde-format
msgid "There is no account capable of reaching this person"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:83
#, kde-format
msgid "All video codecs are disabled, video call isn't possible"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:85
#, kde-format
msgid "All account capable of reaching this person are currently unavailable"
msgstr ""
#. +> trunk5
#: src/contactview/qml/mediaavailability.qml:87
#, kde-format
msgid "Ring-KDE is experiencing a network issue, please try later"
msgstr ""
#. +> trunk5
-#: src/dialview/qml/addcall.qml:89
+#: src/contactview/qml/vcardform.qml:94
+#, kde-format
+msgid "Formatted name:"
+msgstr ""
+
+#. +> trunk5
+#: src/contactview/qml/vcardform.qml:106
+#, kde-format
+msgid "Primary name:"
+msgstr ""
+
+#. +> trunk5
+#: src/contactview/qml/vcardform.qml:118
+#, kde-format
+msgid "Last name:"
+msgstr ""
+
+#. +> trunk5
+#: src/contactview/qml/vcardform.qml:130
+#, kde-format
+msgid "Email:"
+msgstr ""
+
+#. +> trunk5
+#: src/contactview/qml/vcardform.qml:143
+#, kde-format
+msgid "Organization:"
+msgstr ""
+
+#. +> trunk5
+#: src/contactview/qml/vcardform.qml:160
+#, kde-format
+msgid "Add a field"
+msgstr ""
+
+#. +> trunk5
+#: src/desktopview/qml/desktopwindow.qml:74
+#, kde-format
+msgid "Hide"
+msgstr ""
+
+#. +> trunk5
+#: src/dialview/qml/addcall.qml:27
#, kde-format
msgid "Create a call"
msgstr ""
#. +> trunk5
#: src/dialview/qml/mergecall.qml:60
#, kde-format
msgid "Merge all calls"
msgstr ""
#. +> trunk5
#: src/dialview/qml/mergecall.qml:120
#, kde-format
msgid "Detach all calls"
msgstr ""
#. +> trunk5
#: src/dialview/qml/missedcall.qml:46
#, kde-format
msgid ""
"<center><b>Missed call</b></center>"
" <br />"
"from: "
msgstr ""
#. +> trunk5
#: src/errormessage.cpp:22
#, kde-format
msgid ""
"An unknown error occurred. Ring KDE will now exit. If the problem persist, please report a bug.\n"
"\n"
"It is known that this message can be caused by trying to open Ring KDE while the Ring daemon is exiting. If so, waiting 15 seconds and trying again will solve the issue."
msgstr ""
#. +> trunk5
#: src/errormessage.cpp:27
#, kde-format
msgid ""
"The Ring daemon (dring) is not available. Please be sure it is installed correctly or launch it manually. \n"
"\n"
"Check in your distribution repository if the Ring daemon (sometime called \"ring-daemon\") is available.\n"
"Help for building Ring daemon from source are present at https://projects.savoirfairelinux.com/projects/sflphone/wiki/How_to_build"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:165 src/eventmanager.cpp:185
#, kde-format
msgid "Remove the call from the conference, the call will be put on hold"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:170 src/eventmanager.cpp:190
#, kde-format
msgid "Call %1 using %2"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:176 src/eventmanager.cpp:180 src/eventmanager.cpp:196
#: src/eventmanager.cpp:200
#, kde-format
msgid "Call %1"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:471
#, kde-format
msgid "Missed"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:473
#, kde-format
msgid "Cancelled"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:476
#, kde-format
msgid "Call ended"
msgstr ""
#. +> trunk5
#: src/eventmanager.cpp:542
#, kde-format
msgid "%1 is not unregistered"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:138
#, kde-format
msgid "Online"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:139
#, kde-format
msgid "I am available"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:144
#, kde-format
msgid "Away"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:145
#, kde-format
msgid "I am away"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:149
#, kde-format
msgid "Busy"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:150
#, kde-format
msgid "I am busy"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:154
#, kde-format
msgid "DND"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:155
#, kde-format
msgid "Please do not disturb me"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:267
#, kde-format
msgid "Are you sure you want to permanently delete %1?"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:268
#, kde-format
msgid "Delete contact"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:278
#, kde-format
msgid "Are you sure you wish to remove this call?"
msgstr ""
#. +> trunk5
#: src/implementation.cpp:278
#, kde-format
msgid "Delete call"
msgstr ""
#. +> trunk5
#: src/klib/akonadibackend.cpp:271
#, kde-format
msgid "Contact"
msgstr ""
#. i18n: ectx: label, entry (enableWizard), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:12
#, kde-format
msgid "Show the first run wizard"
msgstr ""
#. i18n: ectx: label, entry (enableHistory), group (main)
#. i18n: ectx: label, entry (requireLegacyHistoryImport), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:16 src/klib/ring-kde.kcfg:19
#, kde-format
msgid "Defines whether Ring-KDE should keep a history of calls."
msgstr ""
#. i18n: ectx: label, entry (historyMax), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:23
#, kde-format
msgid "Defines the number of days the history has to be kept."
msgstr ""
#. i18n: ectx: label, entry (displayHistoryStatus), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:29
#, kde-format
msgid "Display incoming, outgoing or missed"
msgstr ""
#. i18n: ectx: label, entry (showSplash), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:36
#, kde-format
msgid "Display the splashscreen."
msgstr ""
#. i18n: ectx: label, entry (notifOnCalls), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:40
#, kde-format
msgid "Defines whether user should be notified when receiving a call."
msgstr ""
#. i18n: ectx: label, entry (notifOnMessages), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:44
#, kde-format
msgid "Defines whether user should be notified when receiving a message."
msgstr ""
#. i18n: ectx: label, entry (displayOnStart), group (main)
#. i18n: ectx: label, entry (autoStart), group (main)
#. i18n: ectx: label, entry (autoStartOverride), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:48 src/klib/ring-kde.kcfg:52
#: src/klib/ring-kde.kcfg:56
#, kde-format
msgid "Defines whether the main window should be displayed on start."
msgstr ""
#. i18n: ectx: label, entry (displayOnCalls), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:60
#, kde-format
msgid "Defines whether the main window should be displayed when receiving a message."
msgstr ""
#. i18n: ectx: label, entry (displayOnNewCalls), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:64
#, kde-format
msgid "Defines whether the main window should be displayed when a call is created"
msgstr ""
#. i18n: ectx: label, entry (displayDialpad), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:68
#, kde-format
msgid "Defines whether the dialpad is being shown by default"
msgstr ""
#. i18n: ectx: label, entry (displayAccountBox), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:72
#, kde-format
msgid "Defines whether the statusbar account combobox is being shown by default"
msgstr ""
#. i18n: ectx: label, entry (displayMessageBox), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:76
#, kde-format
msgid "Defines whether the text message box is visible"
msgstr ""
#. i18n: ectx: label, entry (displayVolume), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:80
#, kde-format
msgid "Defines whether the volume widgets are visible by default"
msgstr ""
#. i18n: ectx: label, entry (displayMenu), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:84
#, kde-format
msgid "Defines whether the main menu is visible by default, it can be restored with \"Ctrl+m\""
msgstr ""
#. i18n: ectx: label, entry (displayPopularAsBookmark), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:88
#, kde-format
msgid "Defines whether or not to display the 10 most popular phone number as bookmark automagically"
msgstr ""
#. i18n: ectx: label, entry (historySortMode), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:91
#, kde-format
msgid "Define sorting order for history list"
msgstr ""
#. i18n: ectx: label, entry (contactSortMode), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:94
#, kde-format
msgid "Define sorting order for contact list"
msgstr ""
#. i18n: ectx: label, entry (displayPersonCallHistory), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:97
#, kde-format
msgid "Defines if the individual contact history list is visible"
msgstr ""
#. i18n: ectx: label, entry (autoCompletionHeight), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:101
#, kde-format
msgid "The auto completion popup height"
msgstr ""
#. i18n: ectx: label, entry (keepVideoAspectRatio), group (main)
#. i18n: ectx: label, entry (displayVideoPreview), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:107 src/klib/ring-kde.kcfg:111
#, kde-format
msgid "Enforce video aspect ratio or allow stretching"
msgstr ""
#. i18n: ectx: label, entry (autoHideDiapadForVideo), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:115
#, kde-format
msgid "Save main window space by hiding the dialpad when the video is docked"
msgstr ""
#. i18n: ectx: label, entry (recentStreamedFiles), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:119
#, kde-format
msgid "Files recently streamed"
msgstr ""
#. i18n: ectx: label, entry (enableRoomTone), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:126
#, kde-format
msgid "Enable or disables the \"buzzzzz\" sound"
msgstr ""
#. i18n: ectx: label, entry (displayAllCollections), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:133
#, kde-format
msgid "Display non manageable collections"
msgstr ""
#. i18n: ectx: label, entry (disabledCollectionList), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:138
#, kde-format
msgid "List of disabled address book collections"
msgstr ""
#. i18n: ectx: label, entry (phoneTypeList), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:142
#, kde-format
msgid "Defines whether the search in KDE Address Book is enabled"
msgstr ""
#. i18n: ectx: label, entry (hidePersonWithoutPhone), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:147
#, kde-format
msgid "Defines whether to display the organisation of the contact list item"
msgstr ""
#. i18n: ectx: label, entry (defaultPeerProfileMode), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:152
#, kde-format
msgid "Defines how peer profiles are merged with existing contacts"
msgstr ""
#. i18n: ectx: tooltip, entry (hideUnreachable), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:158
#, kde-format
msgid "Hide a contact if there is no enabled accounts that can reach him/her"
msgstr ""
#. i18n: ectx: label, entry (defaultAccountId), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:163
#, kde-format
msgid "Default account used for contact lookup if only partial (only extension) contacts info is available"
msgstr ""
#. i18n: ectx: label, entry (bookmarkList), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:184
#, kde-format
msgid "List of bookmarked clients"
msgstr ""
#. i18n: ectx: label, entry (enableAutoCompletion), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:203
#, kde-format
msgid "Enable auto completion widget"
msgstr ""
#. i18n: ectx: label, entry (autoCompleteMergeNumbers), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:207
#, kde-format
msgid "If there is multiple instance of the same number, merge them and use the default account"
msgstr ""
#. i18n: ectx: label, entry (autoCompleteUseAccount), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:211
#, kde-format
msgid "Call numbers back with their original account instead of the default one"
msgstr ""
#. i18n: ectx: label, entry (trackBookmarkPresence), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:217
#, kde-format
msgid "Track bookmarked contacts presence"
msgstr ""
#. i18n: ectx: label, entry (presenceStatusList), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:222
#, kde-format
msgid "List of presence status"
msgstr ""
#. i18n: ectx: label, entry (presenceAutoTrackedCollections), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:225
#, kde-format
msgid "List of item collections automatically tracked"
msgstr ""
#. i18n: ectx: label, entry (displayRecentDock), group (main)
#. i18n: ectx: label, entry (displayDialDock), group (main)
#. +> trunk5
#: src/klib/ring-kde.kcfg:242 src/klib/ring-kde.kcfg:246
#, kde-format
msgid "Display the recently used contacts"
msgstr ""
#. +> trunk5
#: src/main.cpp:50
#, kde-format
msgid "ring-kde"
msgstr ""
#. +> trunk5
#: src/main.cpp:52
#, kde-format
msgid "RING, a secured and distributed communication software"
msgstr ""
#. +> trunk5
#: src/main.cpp:54
#, kde-format
msgid ""
"(C) 2004-2015 Savoir-faire Linux\n"
"2016-2017 Emmanuel Lepage Vallee"
msgstr ""
#. +> trunk5
#: src/main.cpp:62
#, kde-format
msgid "Emmanuel Lepage-Vallée"
msgstr ""
#. +> trunk5
#: src/main.cpp:63
#, kde-format
msgid "Alexandre Lision"
msgstr ""
#. +> trunk5
#: src/main.cpp:64
#, kde-format
msgid "Based on the SFLphone teamworks"
msgstr ""
#. +> trunk5
#: src/model/extendedprotocolmodel.cpp:50
#, kde-format
msgid "Import"
msgstr ""
#. +> trunk5
#: src/notification.cpp:81
#, kde-format
msgid "New incoming call"
msgstr ""
#. +> trunk5
#: src/notification.cpp:83
#, kde-format
msgid ""
"New call from <b>%1</b>\n"
"<i>(%2)</i>"
msgstr ""
#. +> trunk5
#: src/notification.cpp:90
#, kde-format
msgid "Answer"
msgstr ""
#. +> trunk5
#: src/notification.cpp:141
#, kde-format
msgid "Message from %1"
msgstr ""
#. +> trunk5
#: src/notification.cpp:182
#, kde-format
msgid "Add %1 to contacts?"
msgstr ""
#. +> trunk5
#: src/notification.cpp:184
#, kde-format
msgid "Do you wish to add %1 to your addressbook?"
msgstr ""
#. +> trunk5
#: src/notification.cpp:188
#, kde-format
msgid "Yes"
msgstr ""
#. +> trunk5
#: src/notification.cpp:189
#, kde-format
msgid "No"
msgstr ""
#. +> trunk5
#: src/notification.cpp:190
#, kde-format
msgid "Do not ask again"
msgstr ""
#. +> trunk5
#: src/photoselector/photoselector.cpp:73
#, kde-format
msgid "Open Image"
msgstr ""
#. +> trunk5
#: src/photoselector/photoselector.cpp:75
#, kde-format
msgid "Image Files (*.png *.jpg *.gif)"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:247
#, kde-format
msgid "Home"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:248
#, kde-format
msgid "Work"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:249
#, kde-format
msgid "Msg"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:250
#, kde-format
msgid "Pref"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:251
#, kde-format
msgid "Voice"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:252
#, kde-format
msgid "Fax"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:253
#, kde-format
msgid "Cell"
msgstr ""
#. +> trunk5
-#: src/ringapplication.cpp:254 src/timeline/qml/contactheader.qml:251
+#: src/ringapplication.cpp:254 src/timeline/qml/mediabuttons.qml:120
#, kde-format
msgid "Video"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:255
#, kde-format
msgid "Bbs"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:256
#, kde-format
msgid "Modem"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:257
#, kde-format
msgid "Car"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:258
#, kde-format
msgid "Isdn"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:259
#, kde-format
msgid "Pcs"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:260
#, kde-format
msgid "Pager"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:261
#, kde-format
msgid "Preferred"
msgstr ""
#. +> trunk5
#: src/ringapplication.cpp:305
#, kde-format
msgid "System root certificates"
msgstr ""
#. +> trunk5
#: src/timeline/qml/chatbox.qml:175
#, kde-format
msgid "Write a message and press enter..."
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactheader.qml:112
+#: src/timeline/qml/contactheader.qml:116
#, kde-format
msgid ""
"Add\n"
"Photo"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactheader.qml:204 src/timeline/qml/phonenumbers.qml:62
+#: src/timeline/qml/contactinfo.qml:83
#, kde-format
-msgid "Call"
-msgstr ""
-
-#. +> trunk5
-#: src/timeline/qml/contactheader.qml:297
-#, kde-format
-msgid "Screen sharing"
+msgid "Never"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactheader.qml:333
+#: src/timeline/qml/contactinfo.qml:86
#, kde-format
-msgid "Chat"
+msgid "<b>Last contacted on:</b> "
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:89
+#: src/timeline/qml/contactinfo.qml:90
#, kde-format
-msgid "Never"
+msgid "<b>Called:</b> "
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:92
+#: src/timeline/qml/contactinfo.qml:95
#, kde-format
-msgid "<b>Last contacted on:</b> "
+msgid "<b>Texted:</b> "
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:96
+#: src/timeline/qml/contactinfo.qml:229
#, kde-format
-msgid "<b>Called:</b> "
+msgid "Statistics"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:101
+#: src/timeline/qml/mediabuttons.qml:73 src/timeline/qml/phonenumbers.qml:169
#, kde-format
-msgid "<b>Texted:</b> "
+msgid "Call"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:232
+#: src/timeline/qml/mediabuttons.qml:166
#, kde-format
-msgid "Statistics"
+msgid "Screen sharing"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:265
+#: src/timeline/qml/mediabuttons.qml:202
#, kde-format
-msgid "Formatted name:"
+msgid "Chat"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:276
+#: src/timeline/qml/peerstimeline.qml:158
#, kde-format
-msgid "Primary name:"
+msgid "To begin using Ring-KDE, enter an username in the box above and press enter or add new contacts"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:287
+#: src/timeline/qml/phonenumbers.qml:68
#, kde-format
-msgid "Last name:"
+msgid "Save"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:298
+#: src/timeline/qml/phonenumbers.qml:91
#, kde-format
-msgid "Email:"
+msgid "Cancel"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/contactinfo.qml:309
+#: src/timeline/qml/phonenumbers.qml:116
#, kde-format
-msgid "Organization:"
+msgid "Add a phone number or GNU Ring identity"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/peerstimeline.qml:147
+#: src/timeline/qml/phonenumbers.qml:162
#, kde-format
-msgid "To begin using Ring-KDE, enter an username in the box above and press enter or add new contacts"
+msgid "Edit"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/phonenumbers.qml:68
+#: src/timeline/qml/phonenumbers.qml:175
#, kde-format
msgid "Video call"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/phonenumbers.qml:74
+#: src/timeline/qml/phonenumbers.qml:181
#, kde-format
msgid "Share screen"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/phonenumbers.qml:107
+#: src/timeline/qml/phonenumbers.qml:233
#, kde-format
msgid "Never used"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/phonenumbers.qml:108
+#: src/timeline/qml/phonenumbers.qml:234
#, kde-format
msgid "Used "
msgstr ""
#. +> trunk5
-#: src/timeline/qml/phonenumbers.qml:108
+#: src/timeline/qml/phonenumbers.qml:234
#, kde-format
msgid " time (Last used on: "
msgstr ""
#. +> trunk5
-#: src/timeline/qml/viewcontact.qml:164
+#: src/timeline/qml/viewcontact.qml:137
#, kde-format
msgid "Information"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/viewcontact.qml:167
+#: src/timeline/qml/viewcontact.qml:140
#, kde-format
msgid "Audio/Video"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/viewcontact.qml:170
+#: src/timeline/qml/viewcontact.qml:143
#, kde-format
msgid "Chat/Timeline"
msgstr ""
#. +> trunk5
-#: src/timeline/qml/viewcontact.qml:173
+#: src/timeline/qml/viewcontact.qml:146
#, kde-format
msgid "Calls/Recordings"
msgstr ""
#. +> trunk5
#: src/widgets/fileselector.cpp:35
#, kde-format
msgid "Open File"
msgstr ""
#. +> trunk5
#: src/widgets/kphonenumberselector.cpp:47
#, kde-format
msgid "Select phone number"
msgstr ""
#. +> trunk5
#: src/widgets/kphonenumberselector.cpp:47
#, kde-format
msgid "This contact has many phone numbers, please select the one you wish to call"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "None"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "Weak"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "Medium"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "Acceptable"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "Strong"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:65
#, kde-format
msgid "Complete"
msgstr ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:275
#, kde-format
msgid "%1 tip"
msgid_plural "%1 tips"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:276
#, kde-format
msgid "%1 warning"
msgid_plural "%1 warnings"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:277
#, kde-format
msgid "%1 issue"
msgid_plural "%1 issues"
msgstr[0] ""
msgstr[1] ""
#. +> trunk5
#: src/widgets/securityprogress.cpp:278
#, kde-format
msgid "%1 error"
msgid_plural "%1 errors"
msgstr[0] ""
msgstr[1] ""
#. i18n: ectx: property (text), widget (QLabel, confirmPasswordLabel)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:17
#, kde-format
msgid "&Confirm password:"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, passwordLabel)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:37
#, kde-format
msgid "&Password:"
msgstr ""
#. i18n: ectx: property (text), widget (QCheckBox, signUpCheckBox)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:50
#, kde-format
msgid "Register public username (experimental)"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, usernameLabel)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:76
#, kde-format
msgid "Choose your username:"
msgstr ""
#. i18n: ectx: property (text), widget (QPushButton, createAccountButton)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:86
#, kde-format
msgid "Create an account"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, titleLabel)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:122
#, kde-format
msgid "Create your account"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, searchingStateLabel)
#. +> trunk5
#: src/widgets/ui/accountcreator.ui:167
#, kde-format
msgid "Searching..."
msgstr ""
#. i18n: ectx: property (windowTitle), widget (QDialog, DirectoryView)
#. +> trunk5
#: src/widgets/ui/directoryview.ui:14
#, kde-format
msgid "Dialog"
msgstr ""
#. i18n: ectx: property (text), widget (QLabel, label)
#. +> trunk5
#: src/widgets/ui/directoryview.ui:53
#, kde-format
msgid "This dialog is an overview of Ring-KDE phonebook. Some elements may exist multiple times if they are associated with multiple accounts or contacts. The elements present in this table come from the history, contacts and other sources."
msgstr ""
#. i18n: ectx: property (text), widget (QToolButton, m_pOpenFile)
#. +> trunk5
#: src/widgets/ui/fileselect.ui:24
#, kde-format
msgid "..."
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ButtonBar.qml:43
+#: src/wizard/qml/ButtonBar.qml:48
#, kde-format
msgid "Back"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ButtonBar.qml:61
+#: src/wizard/qml/ButtonBar.qml:66
#, kde-format
msgid "Please fill the required fields"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ButtonBar.qml:71
+#: src/wizard/qml/ButtonBar.qml:76
#, kde-format
msgid "Next"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ButtonBar.qml:78
+#: src/wizard/qml/ButtonBar.qml:83
#, kde-format
msgid "Skip"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ButtonBar.qml:120
+#: src/wizard/qml/ButtonBar.qml:125
#, kde-format
msgid "Please wait"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:77
+#: src/wizard/qml/CreateRing.qml:81
#, kde-format
msgid "Register public username (experimental)*"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:90
+#: src/wizard/qml/CreateRing.qml:94
#, kde-format
msgid "Enter an username"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:160 src/wizard/qml/CreateRing.qml:383
+#: src/wizard/qml/CreateRing.qml:153
#, kde-format
msgid "Please enter an username"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:180
+#: src/wizard/qml/CreateRing.qml:170
#, kde-format
msgid "Enter an archive password"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:203
+#: src/wizard/qml/CreateRing.qml:186
#, kde-format
msgid "Repeat the new password"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:221
+#: src/wizard/qml/CreateRing.qml:201
#, kde-format
msgid "Passwords don't match"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:256
+#: src/wizard/qml/CreateRing.qml:236
#, kde-format
msgid "(*) registered usernames can be reached by their username-string instead of their generated ring-id number only."
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:284
+#: src/wizard/qml/CreateRing.qml:266
#, kde-format
msgid "Creating account"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:311 src/wizard/qml/ImportRing.qml:157
+#: src/wizard/qml/CreateRing.qml:293 src/wizard/qml/ImportRing.qml:160
#, kde-format
msgid "Timeout"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:379
+#: src/wizard/qml/CreateRing.qml:361
#, kde-format
msgid "The username is available"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:388
+#: src/wizard/qml/CreateRing.qml:365
#, kde-format
-msgid "The username is not available"
+msgid "Please enter an username (3 character minimum)"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:411
+#: src/wizard/qml/CreateRing.qml:370
#, kde-format
-msgid "Success"
+msgid "The registered name lookup failed, ignoring"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:416
+#: src/wizard/qml/CreateRing.qml:374
#, kde-format
-msgid "Password mismatch"
-msgstr ""
-
-#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:419
-#, kde-format
-msgid "Invalid name"
-msgstr ""
-
-#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:422
-#, kde-format
-msgid "Already taken"
+msgid "The username is not available"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:425
+#: src/wizard/qml/CreateRing.qml:397
#, kde-format
-msgid "Network error"
+msgid "Success"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/CreateRing.qml:442
+#: src/wizard/qml/CreateRing.qml:402
#, kde-format
-msgid "Can't register"
+msgid "Password mismatch"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/frontpage.qml:26
+#: src/wizard/qml/CreateRing.qml:405
#, kde-format
-msgid "Hello World"
+msgid "Invalid name"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/frontpage.qml:38
+#: src/wizard/qml/CreateRing.qml:408
#, kde-format
-msgid "Second page"
+msgid "Already taken"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/frontpage.qml:48
+#: src/wizard/qml/CreateRing.qml:411
#, kde-format
-msgid "First"
+msgid "Network error"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/frontpage.qml:51
+#: src/wizard/qml/CreateRing.qml:430
#, kde-format
-msgid "Second"
+msgid "Can't register"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ImportRing.qml:60
+#: src/wizard/qml/ImportRing.qml:63
#, kde-format
msgid "Link this device"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ImportRing.qml:79
+#: src/wizard/qml/ImportRing.qml:82
#, kde-format
msgid "Enter your main Ring account password"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ImportRing.qml:95
+#: src/wizard/qml/ImportRing.qml:98
#, kde-format
msgid "Enter the PIN number from another configured Ring account. Use the \"Export account on Ring\" feature to obtain a PIN."
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ImportRing.qml:130
+#: src/wizard/qml/ImportRing.qml:133
#, kde-format
msgid "Importing account"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/ImportRing.qml:181
+#: src/wizard/qml/ImportRing.qml:184
#, kde-format
msgid "Importing failed"
msgstr ""
#. +> trunk5
#: src/wizard/qml/Page1Form.ui.qml:47
#, kde-format
msgid "Welcome to Ring-KDE. Before you can contact your friend, you have to have an account. Don't worry, creating one is easy and doesn't require sharing any personal information. If you are in an office or your phone service provider offers a SIP account, you can also configure Ring-KDE to take your \"real\" phone calls."
msgstr ""
#. +> trunk5
#: src/wizard/qml/Page1Form.ui.qml:57
#, kde-format
msgid "Create a new GNU Ring account"
msgstr ""
#. +> trunk5
#: src/wizard/qml/Page1Form.ui.qml:64
#, kde-format
msgid "Import an existing account"
msgstr ""
#. +> trunk5
#: src/wizard/qml/Page1Form.ui.qml:71
#, kde-format
msgid "Use an anonymous account"
msgstr ""
#. +> trunk5
-#: src/wizard/qml/Page1Form.ui.qml:79 src/wizard/qml/wizard.qml:218
+#: src/wizard/qml/Page1Form.ui.qml:79 src/wizard/qml/wizard.qml:217
#, kde-format
msgid "Import a SIP account"
msgstr ""
#. +> trunk5
#: src/wizard/qml/Page1Form.ui.qml:87
#, kde-format
msgid "Use on local network"
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:103
#, kde-format
msgid "Ring-KDE allows you to communicate privately with your friends. It uses peer to peer technologies popularised by BitTorrent to create a decentralized network of users. There is no central server and all communications are end-to-end encrypted."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:120
#, kde-format
msgid "Ring-KDE stores all data locally using standard formats such as JSON, vCard, MIME, PCM/WAV, INI and X-509. No data is ever uploaded to external servers."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:137
#, kde-format
msgid "Ring-KDE supports your office phone account. Answers, transfer and record your phone calls directly from KDE."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:154
#, kde-format
msgid "Ring is based on open standards and it can interoperate with other SIP compliant systems."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:171
#, kde-format
msgid "Ring offers an user friendly DBus API to automate all aspects of the application."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:188
#, kde-format
msgid "Ring-KDE can call real phone numbers. Cheap credits are available from thousand of providers worldwide. Use your favorite search engine to locate a local SIP phone provider."
msgstr ""
#. +> trunk5
#: src/wizard/qml/StartingPageForm.ui.qml:198
#, kde-format
msgid "Press anywhere to begin"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.desktop.pot (revision 1509808)
@@ -1,144 +1,144 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-31 09:13+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#: examples/apps/coisceim/coisceimpart.desktop:2
msgctxt "Name"
msgid "CoisceimPart"
msgstr ""
#. +> trunk5 stable5
#: examples/apps/coisceim/kontact-plugin/coisceim_plugin.desktop:19
msgctxt "Comment"
msgid "Coisceim Plugin"
msgstr ""
#. +> trunk5 stable5
#: examples/apps/coisceim/kontact-plugin/coisceim_plugin.desktop:51
msgctxt "Name"
msgid "Trips"
msgstr ""
#. +> trunk5 stable5
#: examples/apps/mailreader/org.kde.akonadimailreader.desktop:2
msgctxt "Name"
msgid "akonadimailreader"
msgstr ""
#. +> trunk5 stable5
#: examples/apps/mailreader/org.kde.akonadimailreader.desktop:35
msgctxt "GenericName"
msgid "A simple Akonadi-based Mail Application"
msgstr ""
#. +> trunk5 stable5
#: examples/messageviewergrantleetheme/themes/example/header.desktop:2
msgctxt "Name"
msgid "Example"
msgstr ""
#. +> trunk5 stable5
#: examples/messageviewergrantleetheme/themes/example/header.desktop:34
msgctxt "Description"
msgid "Example theme for header."
msgstr ""
#. +> trunk5 stable5
#: examples/messageviewergrantleetheme/themes/example_fancy/header.desktop:2
msgctxt "Name"
msgid "Example fancy"
msgstr ""
#. +> trunk5 stable5
#: examples/messageviewergrantleetheme/themes/example_fancy/header.desktop:33
msgctxt "Description"
msgid "Create fancy theme with grantlee."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertshorturl/shorturlengineplugin/googleshorturlengineplugin/pimcommon_googleshorturlengineplugin.desktop:5
msgctxt "Name"
msgid "Google"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/datenums/datenums.desktop:3
msgctxt "Name"
msgid "Date Numbers Plugin for Calendars"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/datenums/datenums.desktop:37
msgctxt "Comment"
msgid "For each day this plugin shows its daynumber of the year at the top of the agenda view. For example, February 1 is day 32 of the year."
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/hebrew/hebrew.desktop:3
msgctxt "Name"
msgid "Jewish Calendar Plugin"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/hebrew/hebrew.desktop:37
msgctxt "Comment"
msgid "Shows all dates in KOrganizer also in the Jewish calendar system."
msgstr ""
#. +> trunk5
#: korganizer/plugins/lunarphases/lunarphases.desktop:3
msgctxt "Name"
msgid "Lunar Phases Plugin for Calendars"
msgstr ""
#. +> trunk5
-#: korganizer/plugins/lunarphases/lunarphases.desktop:4
+#: korganizer/plugins/lunarphases/lunarphases.desktop:10
msgctxt "Comment"
msgid "This plugin shows the day's lunar phase (New, First, Last, Full)"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/picoftheday/picoftheday.desktop:3
msgctxt "Name"
msgid "Wikipedia Picture Of the Day Plugin for Calendars"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/picoftheday/picoftheday.desktop:38
msgctxt "Comment"
msgid "This plugin provides the Wikipedia Picture of the Day"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/thisdayinhistory/thisdayinhistory.desktop:3
msgctxt "Name"
msgid "Wikipedia 'This Day in History' Plugin"
msgstr ""
#. +> trunk5 stable5
#: korganizer/plugins/thisdayinhistory/thisdayinhistory.desktop:37
msgctxt "Comment"
msgid "This plugin provides links to Wikipedia's 'This Day in History' pages"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/externalscriptplugin/examples/externalscriptexample.desktop:2
msgctxt "Name"
msgid "Search Subject on Web"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/externalscriptplugin/examples/externalscriptexample.desktop:34
msgctxt "Description"
msgid "Search subject on web"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.json.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.json.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/pim/kdepim-addons.json.pot (revision 1509808)
@@ -1,649 +1,649 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: json files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-02-01 08:39+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5 stable5
#: akonadi-import-wizard/evolutionv1/evolutionv1importer.json
msgctxt "Name"
msgid "Evolution1 Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/evolutionv2/evolutionv2importer.json
msgctxt "Name"
msgid "Evolution2 Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/geary/gearyimporter.json
msgctxt "Name"
msgid "Geary Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/mailapp/mailappimporter.json
msgctxt "Name"
msgid "MailApp Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/nylas-mail/nylasmailimporter.json
msgctxt "Name"
msgid "Nylas Mail Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/oe/oeimporter.json
msgctxt "Name"
msgid "OE Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/opera/operaimporter.json
msgctxt "Name"
msgid "Opera Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/pmail/pmailimporter.json
msgctxt "Name"
msgid "PMail Importer"
msgstr ""
#. +> trunk5 stable5
#: akonadi-import-wizard/thebat/thebatimporter.json
msgctxt "Name"
msgid "TheBat Importer"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/contacteditor/addresslocationeditorplugin.json
msgctxt "Name"
msgid "RegexpEditorLineEdit"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/csv/kaddressbook_importexportcsvplugin.json
msgctxt "Name"
msgid "Import/Export CSV"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/csv/kaddressbook_importexportcsvplugin.json
msgctxt "Description"
msgid "This plugin allows you to import/export CSV."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/gmx/kaddressbook_importexportgmxplugin.json
msgctxt "Name"
msgid "Import Export GMX"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/gmx/kaddressbook_importexportgmxplugin.json
msgctxt "Description"
msgid "This plugin allows you to import/export GMX."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/ldap/kaddressbook_importexportldapplugin.json
msgctxt "Name"
msgid "Import/Export LDAP Contacts"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/ldap/kaddressbook_importexportldapplugin.json
msgctxt "Description"
msgid "This plugin allows you to import/export LDAP contacts."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/ldif/kaddressbook_importexportldifplugin.json
msgctxt "Name"
msgid "Import/Export LDIF"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/ldif/kaddressbook_importexportldifplugin.json
msgctxt "Description"
msgid "This plugin allows you to import/export LDIF."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/vcards/kaddressbook_importexportvcardplugin.json
msgctxt "Name"
msgid "Import/Export vCard"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/importexportplugins/vcards/kaddressbook_importexportvcardplugin.json
msgctxt "Description"
msgid "This plugin allows you to import/export vCards."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/checkgravatar/kaddressbook_checkgravatarplugin.json
msgctxt "Name"
msgid "Check Gravatar"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/checkgravatar/kaddressbook_checkgravatarplugin.json
msgctxt "Description"
msgid "This plugin allows you to check the Gravatar images."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/mergecontacts/kaddressbook_mergecontactsplugin.json
msgctxt "Name"
msgid "Merge Contacts"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/mergecontacts/kaddressbook_mergecontactsplugin.json
msgctxt "Description"
msgid "This plugin allows you to merge contacts."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/searchduplicates/kaddressbook_searchduplicatesplugin.json
msgctxt "Name"
msgid "Search Duplicate Contacts"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/searchduplicates/kaddressbook_searchduplicatesplugin.json
msgctxt "Description"
msgid "This plugin allows you to search duplicate contacts."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/sendmail/kaddressbook_sendmailplugin.json
msgctxt "Name"
msgid "Send Mail"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/sendmail/kaddressbook_sendmailplugin.json
msgctxt "Description"
msgid "This plugin allows you to send email directly to selected contacts."
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/sendvcards/kaddressbook_sendvcardsplugin.json
msgctxt "Name"
msgid "Send vCards"
msgstr ""
#. +> trunk5 stable5
#: kaddressbook/plugins/sendvcards/kaddressbook_sendvcardsplugin.json
msgctxt "Description"
msgid "This plugin allows you to send vCard from selected contacts."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorinitplugins/externalcomposer/kmail_externalcomposereditorplugin.json
msgctxt "Name"
msgid "Open external composer"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorinitplugins/externalcomposer/kmail_externalcomposereditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to use an external composer."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/autocorrection/kmail_autocorrectioneditorplugin.json
msgctxt "Name"
msgid "Autocorrection"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/autocorrection/kmail_autocorrectioneditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to autocorrect all text in composer or selected text."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/changecase/kmail_changecaseeditorplugin.json
msgctxt "Name"
msgid "Change Case"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/changecase/kmail_changecaseeditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to change the case of the selected text."
msgstr ""
#. +> trunk5
#: kmail/editorplugins/insertemail/kmail_insertemaileditorplugin.json
msgctxt "Name"
msgid "Insert Email"
msgstr ""
#. +> trunk5
#: kmail/editorplugins/insertemail/kmail_insertemaileditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to select email and insert it in composer."
msgstr ""
#. +> trunk5
#: kmail/editorplugins/insertshorturl/kmail_insertshorturleditorplugin.json
msgctxt "Name"
msgid "Insert Short URL"
msgstr ""
#. +> trunk5
#: kmail/editorplugins/insertshorturl/kmail_insertshorturleditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to generate a shorter URL."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertshorturl/shorturlengineplugin/isgdshorturlengineplugin/pimcommon_isgdshorturlengineplugin.json
msgctxt "Name"
msgid "Is.gd"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertshorturl/shorturlengineplugin/tinyurlengineplugin/pimcommon_tinyurlengineplugin.json
msgctxt "Name"
msgid "TinyUrl"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertshorturl/shorturlengineplugin/triopabshorturlengineplugin/pimcommon_triopabshorturlengineplugin.json
msgctxt "Name"
msgid "to.ly"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertshorturl/shorturlengineplugin/ur1cashorturlengineplugin/pimcommon_ur1cashorturlengineplugin.json
msgctxt "Name"
msgid "Ur1Ca"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertspecialcharacter/kmail_insertspecialcharactereditorplugin.json
msgctxt "Name"
msgid "Insert Special Character"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/insertspecialcharacter/kmail_insertspecialcharactereditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to insert special character in composer."
msgstr ""
#. +> trunk5
#: kmail/editorplugins/inserttemplatecommand/kmail_inserttemplatecommandeditorplugin.json
msgctxt "Name"
msgid "Insert Template Command"
msgstr ""
#. +> trunk5
#: kmail/editorplugins/inserttemplatecommand/kmail_inserttemplatecommandeditorplugin.json
msgctxt "Description"
-msgid "This plugin allows you to insert a templace command in composer."
+msgid "This plugin allows you to insert a template command in composer."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/nonbreakingspace/kmail_nonbreakingspaceeditorplugin.json
msgctxt "Name"
msgid "Insert Non Breaking Space"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/nonbreakingspace/kmail_nonbreakingspaceeditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to add non breaking space. It's useful in french language."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/zoomtext/kmail_zoomtexteditorplugin.json
msgctxt "Name"
msgid "Zoom Text"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorplugins/zoomtext/kmail_zoomtexteditorplugin.json
msgctxt "Description"
msgid "This plugin allows you to change zoom factor in composer."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/automaticaddcontacts/kmail_automaticaddcontactsplugin.json
msgctxt "Name"
msgid "Automatic Add Contacts"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/automaticaddcontacts/kmail_automaticaddcontactsplugin.json
msgctxt "Description"
msgid "This plugin allows you to add automatically email address to addressbook."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/checkbeforesend/kmail_checkbeforesendplugin.json
msgctxt "Name"
msgid "Check Before Send"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/checkbeforesend/kmail_checkbeforesendplugin.json
msgctxt "Description"
msgid "This plugin allows you to check message settings before sending."
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/confirm-address/kmail_confirmaddressplugin.json
msgctxt "Name"
msgid "Confirm Address"
msgstr ""
#. +> trunk5 stable5
#: kmail/editorsendcheckplugins/confirm-address/kmail_confirmaddressplugin.json
msgctxt "Description"
msgid "This plugin allows you to check mail before to send it"
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/antispamplugin/kmail_antispamplugin.json
msgctxt "Name"
msgid "Antispam"
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/antispamplugin/kmail_antispamplugin.json
msgctxt "Description"
msgid "This plugin allows you to configure Anti Spam in KMail."
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/antivirusplugin/kmail_antivirusplugin.json
msgctxt "Name"
msgid "Antivirus"
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/antivirusplugin/kmail_antivirusplugin.json
msgctxt "Description"
msgid "This plugin allows you to configure Anti Virus in KMail."
msgstr ""
#. +> trunk5
#: kmail/plugins/expertplugin/kmail_expertplugin.json
msgctxt "Name"
msgid "Expert Plugin"
msgstr ""
#. +> trunk5
#: kmail/plugins/expertplugin/kmail_expertplugin.json
msgctxt "Description"
msgid "This plugin activates some expert actions."
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/logactivitiesplugin/kmail_logactivitiesplugin.json
msgctxt "Name"
msgid "Log Activities"
msgstr ""
#. +> trunk5 stable5
#: kmail/plugins/logactivitiesplugin/kmail_logactivitiesplugin.json
msgctxt "Description"
msgid "This plugin allows you to log KMail activities."
msgstr ""
#. +> trunk5 stable5
#: kmailtransport/sendmail/sendmailtransport.json
msgctxt "Name"
msgid "SendMail Mail Transport"
msgstr ""
#. +> trunk5 stable5
#: plugins/customtoolsplugins/translatorplugin/pimcommon_translatorplugin.json
#: plugins/messageviewerplugins/common/translatorplugin/messageviewer_translatorplugin.json
msgctxt "Name"
msgid "Translator"
msgstr ""
#. +> trunk5 stable5
#: plugins/customtoolsplugins/translatorplugin/pimcommon_translatorplugin.json
msgctxt "Description"
msgid "This plugin allows you to translate text."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/allheaderstyleplugin/messageviewer_allheaderstyleplugin.json
msgctxt "Name"
msgid "All Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/allheaderstyleplugin/messageviewer_allheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin shows you all mail header."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/briefheaderstyleplugin/messageviewer_briefheaderstyleplugin.json
msgctxt "Name"
msgid "Brief Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/briefheaderstyleplugin/messageviewer_briefheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin reduces mail header to strict minimum."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/enterpriseheaderstyleplugin/messageviewer_enterpriseheaderstyleplugin.json.cmake
msgctxt "Name"
msgid "Enterprise Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/enterpriseheaderstyleplugin/messageviewer_enterpriseheaderstyleplugin.json.cmake
msgctxt "Description"
msgid "This plugin defines a mail header style for enterprise."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/fancyheaderstyleplugin/messageviewer_fancyheaderstyleplugin.json
msgctxt "Name"
msgid "Fancy Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/fancyheaderstyleplugin/messageviewer_fancyheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin provides you a fancy mail header style."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/grantleeheaderstyleplugin/messageviewer_grantleeheaderstyleplugin.json
msgctxt "Name"
msgid "Grantlee Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/grantleeheaderstyleplugin/messageviewer_grantleeheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin allows you to use a Grantlee-based mail header style."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/longheaderstyleplugin/messageviewer_longheaderstyleplugin.json
msgctxt "Name"
msgid "Long Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/longheaderstyleplugin/messageviewer_longheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin allows you to show all headers from mail."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/standardsheaderstyleplugin/messageviewer_standardsheaderstyleplugin.json
msgctxt "Name"
msgid "Standards Header Style"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerheaderplugins/standardsheaderstyleplugin/messageviewer_standardsheaderstyleplugin.json
msgctxt "Description"
msgid "This plugin defines the standard mail header style."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/common/expandurlplugin/messageviewer_expandurlplugin.json
msgctxt "Name"
msgid "Expand URL"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/common/expandurlplugin/messageviewer_expandurlplugin.json
msgctxt "Description"
msgid "This plugin expands URL."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/common/translatorplugin/messageviewer_translatorplugin.json
msgctxt "Description"
msgid "This plugin allows you to translate selected text."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createeventplugin/messageviewer_createeventplugin.json
msgctxt "Name"
msgid "Create Event"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createeventplugin/messageviewer_createeventplugin.json
msgctxt "Description"
msgid "This plugin allows you to create an event from a message."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createnoteplugin/messageviewer_createnoteplugin.json
msgctxt "Name"
msgid "Create Note"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createnoteplugin/messageviewer_createnoteplugin.json
msgctxt "Description"
msgid "This plugin allows you to create a note from a message."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createtodoplugin/messageviewer_createtodoplugin.json
msgctxt "Name"
msgid "Create Todo"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/createtodoplugin/messageviewer_createtodoplugin.json
msgctxt "Description"
msgid "This plugin allows you to create a todo from a message."
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/externalscriptplugin/messageviewer_externalscriptplugin.json
msgctxt "Name"
msgid "External Script"
msgstr ""
#. +> trunk5 stable5
#: plugins/messageviewerplugins/externalscriptplugin/messageviewer_externalscriptplugin.json
msgctxt "Description"
msgid "This plugin allows you to use an external script against the message viewer."
msgstr ""
#. +> trunk5
#: plugins/plasma/pimeventsplugin/pimeventsplugin.json
msgctxt "Authors Name"
msgid "Daniel Vrátil"
msgstr ""
#. +> trunk5
#: plugins/plasma/pimeventsplugin/pimeventsplugin.json
msgctxt "Name"
msgid "PIM Events Plugin"
msgstr ""
#. +> trunk5
#: plugins/plasma/pimeventsplugin/pimeventsplugin.json
msgctxt "Description"
msgid "Calendar plugin for displaying events from KDE PIM calendars"
msgstr ""
#. +> trunk5 stable5
#: plugins/templateparser/templateparseremailaddressrequesterakonadi.json
msgctxt "Name"
msgid "Email Address Requester for Templateparser"
msgstr ""
#. +> trunk5 stable5
#: plugins/webengineurlinterceptor/adblock/messageviewer_adblockurlinterceptor.json
msgctxt "Name"
msgid "Adblock"
msgstr ""
#. +> trunk5 stable5
#: plugins/webengineurlinterceptor/adblock/messageviewer_adblockurlinterceptor.json
msgctxt "Description"
msgid "This plugin allows you to block advertising."
msgstr ""
#. +> trunk5 stable5
#: plugins/webengineurlinterceptor/donottrack/messageviewer_donottrackurlinterceptor.json
msgctxt "Name"
msgid "Do Not Track"
msgstr ""
#. +> trunk5 stable5
#: plugins/webengineurlinterceptor/donottrack/messageviewer_donottrackurlinterceptor.json
msgctxt "Description"
msgid "This plugin adds support for \"do not track\"."
msgstr ""
#. +> stable5
#: examples/kmail/editorplugins/rot13/kmail_rot13editorplugin.json
msgctxt "Name"
msgid "ROT13"
msgstr ""
#. +> stable5
#: examples/kmail/editorplugins/rot13/kmail_rot13editorplugin.json
msgctxt "Description"
msgid "ROT13 (rotate by 13 places) is a simple letter substitution cipher that replaces a letter with the letter 13 letters after it in the alphabet"
msgstr ""
#. +> stable5
#: plugins/customtoolsplugins/shorturlplugin/pimcommon_shorturlplugin.json
msgctxt "Name"
msgid "Shorturl"
msgstr ""
#. +> stable5
#: plugins/customtoolsplugins/shorturlplugin/pimcommon_shorturlplugin.json
msgctxt "Description"
msgid "This plugin allows you to expand URL."
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/pim/libkgapi_qt.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/pim/libkgapi_qt.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/pim/libkgapi_qt.pot (revision 1509808)
@@ -1,467 +1,473 @@
msgid ""
msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"POT-Creation-Date: 2018-01-30 09:17+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
#. +> trunk5 stable5
#: src/blogger/blogfetchjob.cpp:103
msgctxt "KGAPI2::Blogger::BlogFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/commentapprovejob.cpp:103
msgctxt "KGAPI2::Blogger::CommentApproveJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/commentdeletecontentjob.cpp:91
msgctxt "KGAPI2::Blogger::CommentDeleteContentJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/commentfetchjob.cpp:200
msgctxt "KGAPI2::Blogger::CommentFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/pagecreatejob.cpp:78
msgctxt "KGAPI2::Blogger::PageCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/pagefetchjob.cpp:135
msgctxt "KGAPI2::Blogger::PageFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/pagemodifyjob.cpp:78
msgctxt "KGAPI2::Blogger::PageModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/postcreatejob.cpp:87
msgctxt "KGAPI2::Blogger::PostCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/postfetchjob.cpp:224
msgctxt "KGAPI2::Blogger::PostFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/postmodifyjob.cpp:77
msgctxt "KGAPI2::Blogger::PostModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/postpublishjob.cpp:142
msgctxt "KGAPI2::Blogger::PostPublishJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/blogger/postsearchjob.cpp:119
msgctxt "KGAPI2::Blogger::PostSearchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/calendar.cpp:94
msgctxt "QObject|"
msgid "Google Calendar"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/calendarcreatejob.cpp:98
msgctxt "KGAPI2::CalendarCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/calendarfetchjob.cpp:120
msgctxt "KGAPI2::CalendarFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/calendarmodifyjob.cpp:97
msgctxt "KGAPI2::CalendarModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/eventcreatejob.cpp:100
msgctxt "KGAPI2::EventCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/eventfetchjob.cpp:217
msgctxt "KGAPI2::EventFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/eventmodifyjob.cpp:99
msgctxt "KGAPI2::EventModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/eventmovejob.cpp:152
msgctxt "KGAPI2::EventMoveJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/freebusyqueryjob.cpp:125
msgctxt "KGAPI2::FreeBusyQueryJob|"
msgid "FreeBusy information is not available"
msgstr ""
#. +> trunk5 stable5
#: src/calendar/freebusyqueryjob.cpp:138
msgctxt "KGAPI2::FreeBusyQueryJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/contacts/contactcreatejob.cpp:152
msgctxt "KGAPI2::ContactCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/contacts/contactmodifyjob.cpp:157
msgctxt "KGAPI2::ContactModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/contacts/contactsgroupcreatejob.cpp:108
msgctxt "KGAPI2::ContactsGroupCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/contacts/contactsgroupfetchjob.cpp:117
msgctxt "KGAPI2::ContactsGroupFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/contacts/contactsgroupmodifyjob.cpp:110
msgctxt "KGAPI2::ContactsGroupModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/core/accountinfo/accountinfofetchjob.cpp:76
msgctxt "KGAPI2::AccountInfoFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
-#: src/core/authjob.cpp:183
+#: src/core/authjob.cpp:179
msgctxt "KGAPI2::AuthJob|"
msgid "Failed to parse newly fetched tokens"
msgstr ""
#. +> trunk5 stable5
-#: src/core/authjob.cpp:230
+#: src/core/authjob.cpp:226
msgctxt "KGAPI2::AuthJob|"
msgid "Account name is empty"
msgstr ""
+#. +> trunk5
+#: src/core/authjob.cpp:248
+msgctxt "KGAPI2::AuthJob|"
+msgid "Authentication canceled"
+msgstr ""
+
#. +> trunk5 stable5
#: src/core/job.cpp:132
msgctxt "KGAPI2::Job|"
msgid "Bad request."
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:139
msgctxt "KGAPI2::Job|"
msgid "Invalid authentication."
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:148
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Requested resource is forbidden.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:158
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Requested resource does not exist.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:174
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Conflict. Remote resource is newer than local.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:184
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Requested resource does not exist anymore.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:194
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Internal server error. Try again later.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:212
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Maximum quota exceeded. Try again later.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/job.cpp:234
#, qt-format
msgctxt "KGAPI2::Job|"
msgid ""
"Unknown error.\n"
"\n"
"Google replied '%1'"
msgstr ""
#. +> trunk5 stable5
#: src/core/private/newtokensfetchjob.cpp:131
msgctxt "KGAPI2::NewTokensFetchJob|"
msgid "Failed to parse server response."
msgstr ""
#. +> trunk5 stable5
#: src/core/ui/authwidget.cpp:90
msgctxt "KGAPI2::AuthWidget|"
msgid "Invalid account"
msgstr ""
#. +> trunk5 stable5
#: src/core/ui/authwidget.cpp:94
msgctxt "KGAPI2::AuthWidget|"
msgid "No scopes to authenticate for"
msgstr ""
#. +> trunk5
#: src/core/ui/authwidget.cpp:106
msgctxt "KGAPI2::AuthWidget|"
msgid "Could not start oauth http server"
msgstr ""
#. +> trunk5 stable5
#: src/core/ui/authwidget_p.cpp:130
msgctxt "KGAPI2::AuthWidgetPrivate|"
msgid "Authorizing token. This should take just a moment..."
msgstr ""
#. +> trunk5
-#: src/core/ui/authwidget_p.cpp:254
+#: src/core/ui/authwidget_p.cpp:267
#, qt-format
msgctxt "KGAPI2::AuthWidgetPrivate|"
msgid "Error receiving response: %1"
msgstr ""
#. +> trunk5
-#: src/core/ui/authwidget_p.cpp:274
+#: src/core/ui/authwidget_p.cpp:287
msgctxt "KGAPI2::AuthWidgetPrivate|"
msgid "Token response invalid"
msgstr ""
#. +> trunk5
-#: src/core/ui/authwidget_p.cpp:289
+#: src/core/ui/authwidget_p.cpp:302
msgctxt "KGAPI2::AuthWidgetPrivate|"
msgid "Could not extract token from HTTP answer"
msgstr ""
#. +> trunk5 stable5
#: src/drive/aboutfetchjob.cpp:140
msgctxt "KGAPI2::Drive::AboutFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/appfetchjob.cpp:90
msgctxt "KGAPI2::Drive::AppFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/changefetchjob.cpp:193
msgctxt "KGAPI2::Drive::ChangeFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/childreferencecreatejob.cpp:138
msgctxt "KGAPI2::Drive::ChildReferenceCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/childreferencefetchjob.cpp:117
msgctxt "KGAPI2::Drive::ChildReferenceFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/fileabstractmodifyjob.cpp:129
msgctxt "KGAPI2::Drive::FileAbstractModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/fileabstractuploadjob.cpp:325
msgctxt "KGAPI2::Drive::FileAbstractUploadJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/filecopyjob.cpp:153
msgctxt "KGAPI2::Drive::FileCopyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/filefetchjob.cpp:351
msgctxt "KGAPI2::Drive::FileFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/parentreferencecreatejob.cpp:138
msgctxt "KGAPI2::Drive::ParentReferenceCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/parentreferencefetchjob.cpp:96
msgctxt "KGAPI2::Drive::ParentReferenceFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/permissioncreatejob.cpp:115
msgctxt "KGAPI2::Drive::PermissionCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/permissionfetchjob.cpp:118
msgctxt "KGAPI2::Drive::PermissionFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/permissionmodifyjob.cpp:114
msgctxt "KGAPI2::Drive::PermissionModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/revisionfetchjob.cpp:95
msgctxt "KGAPI2::Drive::RevisionFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/drive/revisionmodifyjob.cpp:112
msgctxt "KGAPI2::Drive::RevisionModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/latitude/locationcreatejob.cpp:99
msgctxt "KGAPI2::LocationCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/latitude/locationfetchhistoryjob.cpp:152
msgctxt "KGAPI2::LocationFetchHistoryJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/latitude/locationfetchjob.cpp:108
msgctxt "KGAPI2::LocationFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/taskcreatejob.cpp:120
msgctxt "KGAPI2::TaskCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/taskfetchjob.cpp:251
msgctxt "KGAPI2::TaskFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/tasklistcreatejob.cpp:97
msgctxt "KGAPI2::TaskListCreateJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/tasklistfetchjob.cpp:97
msgctxt "KGAPI2::TaskListFetchJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/tasklistmodifyjob.cpp:99
msgctxt "KGAPI2::TaskListModifyJob|"
msgid "Invalid response content type"
msgstr ""
#. +> trunk5 stable5
#: src/tasks/taskmodifyjob.cpp:100
msgctxt "KGAPI2::TaskModifyJob|"
msgid "Invalid response content type"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/pim/messageviewer_semantic_plugin.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/pim/messageviewer_semantic_plugin.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/pim/messageviewer_semantic_plugin.pot (revision 1509808)
@@ -1,188 +1,188 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-28 10:09+0100\n"
+"POT-Creation-Date: 2018-02-02 13:43+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5
#: calendarhandler.cpp:95
#, kde-format
msgid "Flight %1 from %2 to %3"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:111
#, kde-format
msgid "Boarding for flight %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:113
#, kde-format
msgid "Boarding for flight %1 at gate %2"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:121
#, kde-format
msgid "Boarding time: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:124
#, kde-format
msgid "Departure gate: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:128
#, kde-format
msgid "Boarding group: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:132 calendarhandler.cpp:174 html.cpp:4 html.cpp:24
-#: templates/flightreservation.html:39 templates/trainreservation.html:40
+#: templates/flightreservation.html:48 templates/trainreservation.html:40
#, kde-format
msgid "Seat: %1"
msgstr ""
#. +> trunk5 stable5
#: calendarhandler.cpp:136 calendarhandler.cpp:182
#, kde-format
msgid "Booking reference: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:150
#, kde-format
msgid "Train %1 from %2 to %3"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:164
#, kde-format
msgid "Departure platform: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:170 html.cpp:2 templates/trainreservation.html:36
#, kde-format
msgid "Coach: %1"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:178
#, kde-format
msgid "Arrival platform: %1"
msgstr ""
#. +> trunk5 stable5
#: calendarhandler.cpp:195
#, kde-format
msgid "Hotel reservation: %1"
msgstr ""
#. +> trunk5 stable5
#: calendarhandler.cpp:198
#, kde-format
msgid "%1, %2 %3, %4"
msgstr ""
#. +> trunk5
#: calendarhandler.cpp:211
#, kde-format
msgid ""
"Check-in: %1\n"
"Check-out: %2\n"
"Booking reference: %3"
msgstr ""
#. +> trunk5
-#: html.cpp:6 html.cpp:12 html.cpp:28 templates/flightreservation.html:50
+#: html.cpp:6 html.cpp:12 html.cpp:28 templates/flightreservation.html:59
#: templates/lodgingreservation.html:7 templates/trainreservation.html:46
msgid "View"
msgstr ""
#. +> trunk5
-#: html.cpp:8 html.cpp:14 html.cpp:30 templates/flightreservation.html:55
+#: html.cpp:8 html.cpp:14 html.cpp:30 templates/flightreservation.html:64
#: templates/lodgingreservation.html:12 templates/trainreservation.html:51
msgid "Modify"
msgstr ""
#. +> trunk5
-#: html.cpp:10 html.cpp:16 html.cpp:32 templates/flightreservation.html:60
+#: html.cpp:10 html.cpp:16 html.cpp:32 templates/flightreservation.html:69
#: templates/lodgingreservation.html:17 templates/trainreservation.html:56
msgid "Cancel"
msgstr ""
#. +> trunk5
-#: html.cpp:18 templates/flightreservation.html:27
+#: html.cpp:18 templates/flightreservation.html:36
#, kde-format
msgid "Gate: %1"
msgstr ""
#. +> trunk5
-#: html.cpp:20 templates/flightreservation.html:31
+#: html.cpp:20 templates/flightreservation.html:40
#, kde-format
msgid "Boarding: %1"
msgstr ""
#. +> trunk5
-#: html.cpp:22 templates/flightreservation.html:35
+#: html.cpp:22 templates/flightreservation.html:44
#, kde-format
msgid "Group: %1"
msgstr ""
#. +> trunk5
-#: html.cpp:26 templates/flightreservation.html:45
+#: html.cpp:26 templates/flightreservation.html:54
msgid "Download"
msgstr ""
#. +> trunk5 stable5
#: html.cpp:34 templates/semantic.html:3
msgid "Add reservation to calendar."
msgstr ""
#. +> trunk5
#: semanticurlhandler.cpp:73 semanticurlhandler.cpp:93
#, kde-format
msgid "Show '%1' On Map"
msgstr ""
#. +> trunk5 stable5
#: semanticurlhandler.cpp:126
#, kde-format
msgid "Show Calendar"
msgstr ""
#. +> trunk5 stable5
#: semanticurlhandler.cpp:132
#, kde-format
msgid "Add To Calendar"
msgstr ""
#. +> trunk5 stable5
#: semanticurlhandler.cpp:184
#, kde-format
msgid "Add reservation to your calendar."
msgstr ""
#. +> stable5
#: semanticurlhandler.cpp:188
#, kde-format
msgid "Flight %1 %2 from %3 to %4"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-ruby.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-ruby.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-ruby.desktop.pot (revision 1509808)
@@ -1,36 +1,36 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-10 08:53+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5
#: app_templates/rubygem/rubygem.kdevtemplate:3
msgctxt "Name"
msgid "RubyGem"
msgstr ""
#. +> trunk5
-#: app_templates/rubygem/rubygem.kdevtemplate:23
+#: app_templates/rubygem/rubygem.kdevtemplate:24
msgctxt "Comment"
msgid "Generate a simple RubyGem"
msgstr ""
#. +> trunk5
#: app_templates/simple_ruby_app/simple_ruby_app.kdevtemplate:3
msgctxt "Name"
msgid "Simple Ruby Application"
msgstr ""
#. +> trunk5
-#: app_templates/simple_ruby_app/simple_ruby_app.kdevtemplate:22
+#: app_templates/simple_ruby_app/simple_ruby_app.kdevtemplate:23
msgctxt "Comment"
msgid "Generate a simple Ruby application"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-rust.desktop.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-rust.desktop.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/playground-devtools/kdev-rust.desktop.pot (revision 1509808)
@@ -1,36 +1,36 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: desktop files\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-19 09:24+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk5
#: app_templates/rust_binary/rust_binary.kdevtemplate:3
msgctxt "Name"
msgid "Rust application"
msgstr ""
#. +> trunk5
-#: app_templates/rust_binary/rust_binary.kdevtemplate:17
+#: app_templates/rust_binary/rust_binary.kdevtemplate:18
msgctxt "Comment"
msgid "Simple Rust binary application"
msgstr ""
#. +> trunk5
#: app_templates/rust_library/rust_library.kdevtemplate:3
msgctxt "Name"
msgid "Rust library"
msgstr ""
#. +> trunk5
-#: app_templates/rust_library/rust_library.kdevtemplate:16
+#: app_templates/rust_library/rust_library.kdevtemplate:17
msgctxt "Comment"
msgid "Simple Rust library"
msgstr ""
Index: trunk/l10n-support/templates/summit/messages/www/www_www.pot
===================================================================
--- trunk/l10n-support/templates/summit/messages/www/www_www.pot (revision 1509807)
+++ trunk/l10n-support/templates/summit/messages/www/www_www.pot (revision 1509808)
@@ -1,36028 +1,36060 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2018-01-31 09:16+0100\n"
+"POT-Creation-Date: 2018-02-02 13:46+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. +> trunk
#: announcements/4.10/applications.php:6 announcements/4.10/index.php:45
#: announcements/4.10/plasma.php:88 announcements/4.10/platform.php:75
msgid "KDE Applications Improve Usability, Performance and Take You to Mars"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:28
msgid "Less intrusive Notifications in Kate"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:30
msgid "Kate—KDE's Advanced Text Editor—received improvements in many areas. Thanks to an intensive <a href='http://ev.kde.org'>KDE e.V.</a>-sponsored <a href='http://dot.kde.org/2012/11/24/katekdevelop-october-sprint-whats-new-kate'>coding sprint in October</a>, Kate got an improved notification system, an optional 'minimap' as scrollbar, a new Project Management plugin, predefined color schemes, improvements to the scripting interface and much more. A great bugfixing effort reduced the number of open bug reports from 850 to 60. Outside of the coding sprint, work was done to create a new Quick Open functionality and other enhancements. All these improvements also benefit applications using Kate Part for text editing, including the lightweight KWrite text editor and KDevelop, the complete KDE Integrated Development Environment (IDE)."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:32
msgid "Kate's new passive notifications are less disruptive to your workflow"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:34
msgid "Konsole Enhancements"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:36
msgid "Konsole brings back print-screen and send signals functionality formerly present in KDE 3, as well as options to change line spacing and the requirement of CTRL key when drag'n'dropping text, new support for xterm's 1006 mouse extension and the ability to clear the command line before using bookmarks for some commands."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:38
msgid "New functions have entered Konsole"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:40
msgid "Tiled Rendering Improves Okular Performance"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:42
msgid ""
"Okular, KDE's universal document viewer, gains improvements.The newest features include a technique called <a href='http://tsdgeos.blogspot.com/2012/11/okular-tiled-rendering-merged-to-master.html'>tiled rendering</a> which allows Okular to zoom in further and faster while reducing memory consumption compared to previous versions. The embedded video feature has been improved. Editing and creating annotations in Okular has become more user-friendly with the introduction of high precision QTabletEvents. Now a tablet behaves exactly like a mouse except when creating an annotation. With this task, the high precision position of the QTabletEvent is used, so free-hand annotations are smoother. A new feature allows easy history navigation, which can now be accessed by forward and back mouse buttons. Okular Active, the touch-friendly version of the powerful document reader is now part of KDE's core applications.\n"
"It is Plasma Active's new Ebook Reader and has been optimized for reading documents on a touch device.\n"
"Okular Active supports a wide range of Ebook file formats."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:46
msgid "Tiled rendering in Okular: faster zooming using less memory"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:48
msgid "Gwenview Gets Activity Support"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:50
msgid "Gwenview, KDE's image viewer, features improved thumbnail handling and generation as well as Activity support. It supports color correction of JPG and PNG files, working with KWin to adjust to the color profiles of different monitors, allowing for consistent color representation of photos and graphics. The Gwenview image importer now works recursively, showing all images available for display below, as well as within, a specified folder. For more details, see <a href='http://agateau.com/2012/12/04/changes-in-gwenview-for-kde-sc-4.10'>the blog of Gwenview's maintainer, Aurélien Gateau</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:52
msgid "Gwenview, KDE's versatile image viewer"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:54
msgid "Kopete, KDE's chat application, gained a real &quot;Do Not Disturb&quot; mode which disables visual and sound notifications entirely."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:56
msgid "Kontact Improves Performance"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:58
msgid "KDE's PIM applications have gotten many bugfixes and improvements. Substantial work with the search backend has vastly improved email indexing and retrieval, delivering more responsive applications with lower resource usage."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:60
msgid "Kontact Groupware Client"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:62
msgid ""
"KMail has a new ability to automatically resize images attached to emails, configurable in KMail's settings. KMail also introduces Text Autocorrection, including word replacement and capitalize the first letter of a sentence. The settings and word lists are shared with Calligra Words and are configurable. HTML composer support has been expanded: tables can be inserted, with control over rows and columns as well as the ability to merge cells. Defined sizes for images are now also supported, as is the ability to insert html code directly . The 'plain text' companion to HTML emails was also improved, with HTML tags convertible to plain text equivalents. Other improvements to KMail include: opening recent files in the composer, adding new Contacts directly from KMail and attaching vcards to emails.<br />"
"\n"
"The import wizard gained support for importing settings from Opera, settings and data from Claws Mail and Balsa, and tags from Thunderbird and Claws Mail."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:65
msgid "Kontact Mail Client"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:67
msgid "Major Improvements in Gaming Apps"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:69
msgid "KDE Games and Educational applications have seen widespread changes. KDE Games benefited from major improvements to basic libraries, resulting in smoother gameplay. A new and improved KTouch typing tutor debuts and Marble continues to improve, securing its place as the premier world viewing and mapping tool in the Free Software world."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:72
msgid "A new game is included with this release. <a href='http://games.kde.org/game.php?game=picmi'>Picmi</a> is a single player logic-based puzzle game. The object of the game is to color cells according to numbers given at the side of the board in order to complete a hidden pattern or picture. Picmi includes two game modes—random puzzles are generated according to the selected difficulty settings or the included preset puzzles."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:74
msgid "Picmi, a new game in KDE Applications 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:75
msgid "Printing Sudoku Puzzles"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:79
msgid "Other KDE Games and educational applications have been improved, including the ability to print puzzles from KSudoku so they can be used away from the computer. KGoldrunner was rewritten based on the new KDEGames libraries; gameplay and UI are the same, but the game is prettier and smoother. KJumpingCube now allows adjusting the speed of moves and animates multi-stage moves to make them easier to understand. The UI has been improved and you can now choose which one you'd like to play against: Kepler or Newton. Smaller boards offer simplified playing styles. KAlgebra has some improvements to the interface and Pairs gained a theme editor."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:81
msgid "Print puzzles from KSudoku for your offline use"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:83
msgid "For the Rocs Graph Theory IDE, developers overhauled the user interface and configuration dialog to make it easier to use. They also introduced support for TGF, DOT/Graphvis (import/export) and TikZ/PGF (export only) files."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:86
msgid "To Moon and Mars: New Space Orbiter visualization for Marble in KDE 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:88
msgid "The <a href='http://marble.kde.org/'>Marble Virtual Globe</a> makes further strides into the area of Space Science. René Küttner, a student from <a href='http://tu-dresden.de/en'>TU Dresden</a> (Dresden University of Technology), worked on Marble as part of the <a href='http://sophia.estec.esa.int/socis2012/'>ESA SoCiS 2012 program</a>. The Summer of Code in Space was carried out for the second time by the <a href='http://www.esa.int/ESA'>European Space Agency</a> and again Marble was chosen as a mentoring organization."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:90
msgid "Marble Desktop Globe"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:93
msgid "René developed a visualization of space orbiters around other planets inside the Marble Virtual Globe. As a result, Marble can display the positions and orbit tracks of space missions such as <a href='http://www.esa.int/Our_Activities/Space_Science/Mars_Express'>Mars Express</a>, <a href='http://www.esa.int/Our_Activities/Space_Science/Venus_Express'>Venus Express</a> and <a href='http://www.esa.int/Our_Activities/Space_Science/SMART-1'>SMART-1</a>. The visualization also includes the positions of the two Mars moons Phobos and Deimos. He also enhanced Marble's display of Earth satellite tracks. A <a href='http://www.youtube.com/watch?v=K_VA0XtvjYk'>video</a> presents some of the features that have been added during this program. Thank you to <a href='http://www.esa.int/ESA'>ESA</a> and the <a href='http://sophia.estec.esa.int/socis2012/?q=sponsors'>SoCiS Sponsors</a> for funding this project."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:95
msgid "Marble on Mars"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:96
msgid "The <a href='http://marble.kde.org/changelog.php#v15'>Marble visual changelog</a> has more information on this project and other Marble news."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:98
msgid "Enjoy Practicing Touch-Typing"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:100
msgid "Ktouch, KDE's touch typing tutor has been rewritten. It now features a clean, elegant and vibrant user interface to make learning and practicing touch typing as enjoyable as it can be. <a href='http://blog.sebasgo.net/blog/2012/11/28/november-update-for-ktouch/'>The new user interface</a> reduces complexity, and guides the user with color cues and inobtrusive animations. Many new features help improve the overall training experience—a new course editor has built-in quality checks, the user can review progress and identify weaknesses, the overall appearance is attractive and scaled to screen size, hinting and obvious problem solving tips are displayed prominently."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:102
msgid "KTouch Touch Typing Tutor"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:104
#: announcements/4.11/applications.php:70
#: announcements/4.12/applications.php:92
#: announcements/4.13/applications.php:130
msgid "Installing KDE Applications"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:109 announcements/4.10/plasma.php:86
#: announcements/4.10/platform.php:69 announcements/4.11/applications.php:75
#: announcements/4.11/plasma.php:73 announcements/4.11/platform.php:56
msgid "Also Announced Today:"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:110 announcements/4.10/index.php:27
#: announcements/4.10/index.php:40 announcements/4.10/platform.php:70
msgid "The KDE Plasma Workspaces 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:110 announcements/4.10/index.php:40
#: announcements/4.10/plasma.php:6 announcements/4.10/platform.php:70
msgid "Plasma Workspaces 4.10 Improve Mobile Device Support and Receive Visual Refinement"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:112 announcements/4.10/platform.php:72
msgid "Several components of Plasma Workspaces have been ported to Qt Quick/QML framework. Stability and usability have been improved. A new print manager and Color Management support have been introduced."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:115 announcements/4.10/index.php:51
#: announcements/4.10/plasma.php:94
msgid "The KDE Development Platform 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:115 announcements/4.10/index.php:51
#: announcements/4.10/plasma.php:94 announcements/4.10/platform.php:6
msgid "KDE Platform 4.10 Opens Up More APIs to Qt Quick"
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:117 announcements/4.10/index.php:52
#: announcements/4.10/plasma.php:96
msgid "This release makes it easier to contribute to KDE with a Plasma SDK (Software Development Kit), the ability to write Plasma widgets and widget collections in the Qt Markup Language (QML), changes in the libKDEGames library, and new scripting capabilities in window manager KWin."
msgstr ""
#. +> trunk
#: announcements/4.10/applications.php:124 announcements/4.10/plasma.php:103
#: announcements/4.10/platform.php:84 announcements/4.11/applications.php:90
#: announcements/4.11/plasma.php:89 announcements/4.11/platform.php:71
#: announcements/4.12/applications.php:101
#: announcements/4.13/applications.php:139 announcements/4.14/index.php:162
#: announcements/announce-4.10.1.php:70 announcements/announce-4.10.2.php:70
#: announcements/announce-4.10.3.php:70 announcements/announce-4.10.4.php:70
#: announcements/announce-4.10.5.php:70
#: announcements/announce-4.11-beta1.php:91
#: announcements/announce-4.11-beta2.php:91
#: announcements/announce-4.11-rc1.php:91
#: announcements/announce-4.11-rc2.php:93 announcements/announce-4.11.1.php:72
#: announcements/announce-4.11.2.php:72 announcements/announce-4.11.3.php:72
#: announcements/announce-4.11.4.php:72 announcements/announce-4.11.5.php:72
#: announcements/announce-4.12-beta1.php:71
#: announcements/announce-4.12-beta2.php:71
#: announcements/announce-4.12-beta3.php:71
#: announcements/announce-4.12-rc.php:71 announcements/announce-4.12.1.php:69
#: announcements/announce-4.12.2.php:69 announcements/announce-4.12.3.php:69
#: announcements/announce-4.12.4.php:70 announcements/announce-4.12.5.php:70
#: announcements/announce-4.13-beta1.php:67
#: announcements/announce-4.13-beta2.php:67
#: announcements/announce-4.13-beta3.php:67
#: announcements/announce-4.13-rc.php:67 announcements/announce-4.13.1.php:70
#: announcements/announce-4.13.2.php:72 announcements/announce-4.13.3.php:72
#: announcements/announce-4.14-beta1.php:63
#: announcements/announce-4.14-beta2.php:63
#: announcements/announce-4.14-beta3.php:63
#: announcements/announce-4.14-rc.php:63 announcements/announce-4.14.1.php:72
#: announcements/announce-4.14.2.php:72 announcements/announce-4.14.3.php:72
#: announcements/announce-applications-14.12-beta1.php:57
#: announcements/announce-applications-14.12-beta2.php:57
#: announcements/announce-applications-14.12-beta3.php:57
#: announcements/announce-applications-14.12-rc.php:57
#: announcements/announce-applications-14.12.0.php:94
#: announcements/announce-applications-14.12.1.php:72
#: announcements/announce-applications-14.12.2.php:72
#: announcements/announce-applications-14.12.3.php:72
#: announcements/announce-applications-15.04-beta1.php:57
#: announcements/announce-applications-15.04-beta2.php:57
#: announcements/announce-applications-15.04-beta3.php:57
#: announcements/announce-applications-15.04-rc.php:57
#: announcements/announce-applications-15.04.0.php:91
#: announcements/announce-applications-15.04.1.php:72
#: announcements/announce-applications-15.04.2.php:72
#: announcements/announce-applications-15.04.3.php:72
#: announcements/announce-applications-15.08-beta.php:57
#: announcements/announce-applications-15.08-rc.php:57
#: announcements/announce-applications-15.08.0.php:117
#: announcements/announce-applications-15.08.1.php:72
#: announcements/announce-applications-15.08.2.php:72
#: announcements/announce-applications-15.08.3.php:72
#: announcements/announce-applications-15.12-beta.php:57
#: announcements/announce-applications-15.12-rc.php:57
#: announcements/announce-applications-15.12.0.php:169
#: announcements/announce-applications-15.12.1.php:72
#: announcements/announce-applications-15.12.2.php:72
#: announcements/announce-applications-15.12.3.php:72
#: announcements/announce-applications-16.04-beta.php:61
#: announcements/announce-applications-16.04-rc.php:57
#: announcements/announce-applications-16.04.0.php:166
#: announcements/announce-applications-16.04.1.php:72
#: announcements/announce-applications-16.04.2.php:72
#: announcements/announce-applications-16.04.3.php:72
#: announcements/announce-applications-16.08-beta.php:61
#: announcements/announce-applications-16.08-rc.php:61
#: announcements/announce-applications-16.08.0.php:128
#: announcements/announce-applications-16.08.1.php:72
#: announcements/announce-applications-16.08.2.php:72
#: announcements/announce-applications-16.08.3.php:72
#: announcements/announce-applications-16.12-beta.php:61
#: announcements/announce-applications-16.12-rc.php:61
#: announcements/announce-applications-16.12.0.php:169
#: announcements/announce-applications-16.12.1.php:76
#: announcements/announce-applications-16.12.2.php:72
#: announcements/announce-applications-16.12.3.php:72
#: announcements/announce-applications-17.04-beta.php:61
#: announcements/announce-applications-17.04-rc.php:61
#: announcements/announce-applications-17.04.0.php:162
#: announcements/announce-applications-17.04.1.php:72
#: announcements/announce-applications-17.04.2.php:72
#: announcements/announce-applications-17.04.3.php:72
#: announcements/announce-applications-17.08-beta.php:61
#: announcements/announce-applications-17.08-rc.php:61
#: announcements/announce-applications-17.08.0.php:136
#: announcements/announce-applications-17.08.1.php:72
#: announcements/announce-applications-17.08.2.php:80
#: announcements/announce-applications-17.08.3.php:80
#: announcements/announce-applications-17.12-beta.php:61
#: announcements/announce-applications-17.12-rc.php:61
#: announcements/announce-applications-17.12.0.php:139
#: announcements/announce-applications-17.12.1.php:76
#: announcements/announce-frameworks5-alpha.php:60
#: announcements/announce-frameworks5-alpha2.php:60
#: announcements/announce-frameworks5-beta1.php:71
#: announcements/announce-frameworks5-beta3.php:61
#: announcements/announce-plasma-2014.6-alpha1.php:53
#: announcements/announce-plasma-next-beta1.php:188
#: announcements/kde-frameworks-5.0.php:125
#: announcements/kde-frameworks-5.1.php:98
#: announcements/kde-frameworks-5.10.0.php:227
#: announcements/kde-frameworks-5.11.0.php:297
#: announcements/kde-frameworks-5.12.0.php:278
#: announcements/kde-frameworks-5.13.0.php:371
#: announcements/kde-frameworks-5.14.0.php:331
#: announcements/kde-frameworks-5.15.0.php:411
#: announcements/kde-frameworks-5.16.0.php:459
#: announcements/kde-frameworks-5.17.0.php:256
#: announcements/kde-frameworks-5.18.0.php:287
#: announcements/kde-frameworks-5.19.0.php:342
#: announcements/kde-frameworks-5.2.0.php:186
#: announcements/kde-frameworks-5.20.0.php:360
#: announcements/kde-frameworks-5.21.0.php:380
#: announcements/kde-frameworks-5.22.0.php:308
#: announcements/kde-frameworks-5.23.0.php:362
#: announcements/kde-frameworks-5.24.0.php:393
#: announcements/kde-frameworks-5.25.0.php:384
#: announcements/kde-frameworks-5.26.0.php:359
#: announcements/kde-frameworks-5.27.0.php:346
#: announcements/kde-frameworks-5.28.0.php:382
#: announcements/kde-frameworks-5.29.0.php:357
#: announcements/kde-frameworks-5.3.0.php:232
#: announcements/kde-frameworks-5.30.0.php:357
#: announcements/kde-frameworks-5.31.0.php:298
#: announcements/kde-frameworks-5.32.0.php:294
#: announcements/kde-frameworks-5.33.0.php:271
#: announcements/kde-frameworks-5.34.0.php:306
#: announcements/kde-frameworks-5.35.0.php:284
#: announcements/kde-frameworks-5.36.0.php:276
#: announcements/kde-frameworks-5.37.0.php:364
#: announcements/kde-frameworks-5.38.0.php:333
#: announcements/kde-frameworks-5.39.0.php:344
#: announcements/kde-frameworks-5.4.0.php:214
#: announcements/kde-frameworks-5.40.0.php:314
#: announcements/kde-frameworks-5.41.0.php:396
#: announcements/kde-frameworks-5.42.0.php:434
#: announcements/kde-frameworks-5.5.0.php:253
#: announcements/kde-frameworks-5.6.0.php:248
#: announcements/kde-frameworks-5.7.0.php:348
#: announcements/kde-frameworks-5.8.0.php:228
#: announcements/kde-frameworks-5.9.0.php:249
#: announcements/kde-purism-librem5.php:166 announcements/kirigami-1.1.php:98
#: announcements/plasma-5.0-rc.php:82 announcements/plasma-5.0.1.php:105
#: announcements/plasma-5.0.2.php:105 announcements/plasma-5.0.95.php:148
#: announcements/plasma-5.1.1.php:125 announcements/plasma-5.1.2.php:108
#: announcements/plasma-5.1.95.php:172 announcements/plasma-5.1/index.php:174
#: announcements/plasma-5.10.0.php:321 announcements/plasma-5.10.1.php:197
#: announcements/plasma-5.10.2.php:197 announcements/plasma-5.10.3.php:205
#: announcements/plasma-5.10.4.php:198 announcements/plasma-5.10.5.php:194
#: announcements/plasma-5.10.95.php:284 announcements/plasma-5.11.0.php:290
#: announcements/plasma-5.11.1.php:196 announcements/plasma-5.11.2.php:197
#: announcements/plasma-5.11.3.php:196 announcements/plasma-5.11.4.php:197
#: announcements/plasma-5.11.5.php:195 announcements/plasma-5.11.95.php:458
-#: announcements/plasma-5.2.0.php:199 announcements/plasma-5.2.1.php:123
-#: announcements/plasma-5.2.2.php:121 announcements/plasma-5.2.95.php:247
-#: announcements/plasma-5.3.0.php:271 announcements/plasma-5.3.1.php:125
-#: announcements/plasma-5.3.2.php:124 announcements/plasma-5.3.95.php:245
-#: announcements/plasma-5.4.0.php:265 announcements/plasma-5.4.1.php:126
-#: announcements/plasma-5.4.2.php:125 announcements/plasma-5.4.3.php:126
-#: announcements/plasma-5.4.95.php:233 announcements/plasma-5.5.0.php:254
-#: announcements/plasma-5.5.1.php:129 announcements/plasma-5.5.2.php:129
-#: announcements/plasma-5.5.3.php:125 announcements/plasma-5.5.4.php:122
-#: announcements/plasma-5.5.5.php:125 announcements/plasma-5.5.95.php:251
-#: announcements/plasma-5.6.0.php:277 announcements/plasma-5.6.1.php:131
-#: announcements/plasma-5.6.2.php:131 announcements/plasma-5.6.3.php:131
-#: announcements/plasma-5.6.4.php:131 announcements/plasma-5.6.5.php:130
-#: announcements/plasma-5.6.95.php:194 announcements/plasma-5.7.0.php:189
-#: announcements/plasma-5.7.1.php:132 announcements/plasma-5.7.2.php:130
-#: announcements/plasma-5.7.3.php:131 announcements/plasma-5.7.4.php:131
-#: announcements/plasma-5.7.5.php:131 announcements/plasma-5.7.95.php:263
-#: announcements/plasma-5.8.0.php:261 announcements/plasma-5.8.1.php:132
-#: announcements/plasma-5.8.2.php:130 announcements/plasma-5.8.3.php:131
-#: announcements/plasma-5.8.4.php:135 announcements/plasma-5.8.5.php:131
-#: announcements/plasma-5.8.6.php:186 announcements/plasma-5.8.7.php:188
-#: announcements/plasma-5.8.8.php:197 announcements/plasma-5.8.95.php:240
-#: announcements/plasma-5.9.0.php:236 announcements/plasma-5.9.1.php:132
-#: announcements/plasma-5.9.2.php:190 announcements/plasma-5.9.3.php:186
-#: announcements/plasma-5.9.4.php:187 announcements/plasma-5.9.5.php:189
-#: announcements/plasma-5.9.95.php:322 announcements/plasma-test.php:190
+#: announcements/plasma-5.12.0.php:192 announcements/plasma-5.2.0.php:199
+#: announcements/plasma-5.2.1.php:123 announcements/plasma-5.2.2.php:121
+#: announcements/plasma-5.2.95.php:247 announcements/plasma-5.3.0.php:271
+#: announcements/plasma-5.3.1.php:125 announcements/plasma-5.3.2.php:124
+#: announcements/plasma-5.3.95.php:245 announcements/plasma-5.4.0.php:265
+#: announcements/plasma-5.4.1.php:126 announcements/plasma-5.4.2.php:125
+#: announcements/plasma-5.4.3.php:126 announcements/plasma-5.4.95.php:233
+#: announcements/plasma-5.5.0.php:254 announcements/plasma-5.5.1.php:129
+#: announcements/plasma-5.5.2.php:129 announcements/plasma-5.5.3.php:125
+#: announcements/plasma-5.5.4.php:122 announcements/plasma-5.5.5.php:125
+#: announcements/plasma-5.5.95.php:251 announcements/plasma-5.6.0.php:277
+#: announcements/plasma-5.6.1.php:131 announcements/plasma-5.6.2.php:131
+#: announcements/plasma-5.6.3.php:131 announcements/plasma-5.6.4.php:131
+#: announcements/plasma-5.6.5.php:130 announcements/plasma-5.6.95.php:194
+#: announcements/plasma-5.7.0.php:189 announcements/plasma-5.7.1.php:132
+#: announcements/plasma-5.7.2.php:130 announcements/plasma-5.7.3.php:131
+#: announcements/plasma-5.7.4.php:131 announcements/plasma-5.7.5.php:131
+#: announcements/plasma-5.7.95.php:263 announcements/plasma-5.8.0.php:261
+#: announcements/plasma-5.8.1.php:132 announcements/plasma-5.8.2.php:130
+#: announcements/plasma-5.8.3.php:131 announcements/plasma-5.8.4.php:135
+#: announcements/plasma-5.8.5.php:131 announcements/plasma-5.8.6.php:186
+#: announcements/plasma-5.8.7.php:188 announcements/plasma-5.8.8.php:197
+#: announcements/plasma-5.8.95.php:240 announcements/plasma-5.9.0.php:236
+#: announcements/plasma-5.9.1.php:132 announcements/plasma-5.9.2.php:190
+#: announcements/plasma-5.9.3.php:186 announcements/plasma-5.9.4.php:187
+#: announcements/plasma-5.9.5.php:189 announcements/plasma-5.9.95.php:322
+#: announcements/plasma-test.php:190
#: announcements/plasma5.0-beta2/index.php:165
#: announcements/plasma5.0/index.php:198
msgid "Press Contacts"
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:3 announcements/4.11/boilerplate.inc:3
#: announcements/4.12/boilerplate.inc:3 announcements/4.13/boilerplate.inc:3
msgid "KDE software, including all its libraries and its applications, is available for free under Open Source licenses. KDE software runs on various hardware configurations and CPU architectures such as ARM and x86, operating systems and works with any kind of window manager or desktop environment. Besides Linux and other UNIX based operating systems you can find Microsoft Windows versions of most KDE applications on the <a href='http://windows.kde.org'>KDE software on Windows</a> site and Apple Mac OS X versions on the <a href='http://mac.kde.org/'>KDE software on Mac site</a>. Experimental builds of KDE applications for various mobile platforms like MeeGo, MS Windows Mobile and Symbian can be found on the web but are currently unsupported. <a href='http://plasma-active.org'>Plasma Active</a> is a user experience for a wider spectrum of devices, such as tablet computers and other mobile hardware."
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:5 announcements/4.11/boilerplate.inc:5
#: announcements/4.12/boilerplate.inc:5 announcements/4.13/boilerplate.inc:5
msgid ""
"KDE software can be obtained in source and various binary formats from <a\n"
"href='http://download.kde.org/stable/%1'>http://download.kde.org</a> and can\n"
"also be obtained on <a href='http://www.kde.org/download/cdrom.php'>CD-ROM</a>\n"
"or with any of the <a href='http://www.kde.org/download/distributions.php'>major\n"
"GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:12 announcements/4.11/boilerplate.inc:12
#: announcements/4.12/boilerplate.inc:12 announcements/4.13/boilerplate.inc:12
#: announcements/4.14/index.php:141 announcements/announce-4.10.1.php:42
#: announcements/announce-4.10.2.php:42 announcements/announce-4.10.3.php:42
#: announcements/announce-4.10.4.php:42 announcements/announce-4.10.5.php:42
#: announcements/announce-4.11-beta1.php:63
#: announcements/announce-4.11-beta2.php:63
#: announcements/announce-4.11-rc1.php:63
#: announcements/announce-4.11-rc2.php:65 announcements/announce-4.11.1.php:44
#: announcements/announce-4.11.2.php:44 announcements/announce-4.11.3.php:44
#: announcements/announce-4.11.4.php:44 announcements/announce-4.11.5.php:44
#: announcements/announce-4.12-beta1.php:43
#: announcements/announce-4.12-beta2.php:43
#: announcements/announce-4.12-beta3.php:43
#: announcements/announce-4.12-rc.php:43 announcements/announce-4.12.1.php:41
#: announcements/announce-4.12.2.php:41 announcements/announce-4.12.3.php:41
#: announcements/announce-4.12.4.php:42 announcements/announce-4.12.5.php:42
#: announcements/announce-4.13-beta1.php:39
#: announcements/announce-4.13-beta2.php:39
#: announcements/announce-4.13-beta3.php:39
#: announcements/announce-4.13-rc.php:39 announcements/announce-4.13.1.php:49
#: announcements/announce-4.13.2.php:51 announcements/announce-4.13.3.php:51
#: announcements/announce-4.14-beta1.php:35
#: announcements/announce-4.14-beta2.php:35
#: announcements/announce-4.14-beta3.php:35
#: announcements/announce-4.14-rc.php:35 announcements/announce-4.14.1.php:51
#: announcements/announce-4.14.2.php:51 announcements/announce-4.14.3.php:51
#: announcements/announce-applications-14.12-beta1.php:29
#: announcements/announce-applications-14.12-beta2.php:29
#: announcements/announce-applications-14.12-beta3.php:29
#: announcements/announce-applications-14.12-rc.php:29
#: announcements/announce-applications-14.12.0.php:66
#: announcements/announce-applications-14.12.1.php:44
#: announcements/announce-applications-14.12.2.php:44
#: announcements/announce-applications-14.12.3.php:44
#: announcements/announce-applications-15.04-beta1.php:29
#: announcements/announce-applications-15.04-beta2.php:29
#: announcements/announce-applications-15.04-beta3.php:29
#: announcements/announce-applications-15.04-rc.php:29
#: announcements/announce-applications-15.04.0.php:63
#: announcements/announce-applications-15.04.1.php:44
#: announcements/announce-applications-15.04.2.php:44
#: announcements/announce-applications-15.04.3.php:44
#: announcements/announce-applications-15.08-beta.php:29
#: announcements/announce-applications-15.08-rc.php:29
#: announcements/announce-applications-15.08.0.php:89
#: announcements/announce-applications-15.08.1.php:44
#: announcements/announce-applications-15.08.2.php:44
#: announcements/announce-applications-15.08.3.php:44
#: announcements/announce-applications-15.12-beta.php:29
#: announcements/announce-applications-15.12-rc.php:29
#: announcements/announce-applications-15.12.0.php:141
#: announcements/announce-applications-15.12.1.php:44
#: announcements/announce-applications-15.12.2.php:44
#: announcements/announce-applications-15.12.3.php:44
#: announcements/announce-applications-16.04-beta.php:33
#: announcements/announce-applications-16.04-rc.php:29
#: announcements/announce-applications-16.04.0.php:138
#: announcements/announce-applications-16.04.1.php:44
#: announcements/announce-applications-16.04.2.php:44
#: announcements/announce-applications-16.04.3.php:44
#: announcements/announce-applications-16.08-beta.php:33
#: announcements/announce-applications-16.08-rc.php:33
#: announcements/announce-applications-16.08.0.php:100
#: announcements/announce-applications-16.08.1.php:44
#: announcements/announce-applications-16.08.2.php:44
#: announcements/announce-applications-16.08.3.php:44
#: announcements/announce-applications-16.12-beta.php:33
#: announcements/announce-applications-16.12-rc.php:33
#: announcements/announce-applications-16.12.0.php:141
#: announcements/announce-applications-16.12.1.php:48
#: announcements/announce-applications-16.12.2.php:44
#: announcements/announce-applications-16.12.3.php:44
#: announcements/announce-applications-17.04-beta.php:33
#: announcements/announce-applications-17.04-rc.php:33
#: announcements/announce-applications-17.04.0.php:134
#: announcements/announce-applications-17.04.1.php:44
#: announcements/announce-applications-17.04.2.php:44
#: announcements/announce-applications-17.04.3.php:44
#: announcements/announce-applications-17.08-beta.php:33
#: announcements/announce-applications-17.08-rc.php:33
#: announcements/announce-applications-17.08.0.php:108
#: announcements/announce-applications-17.08.1.php:44
#: announcements/announce-applications-17.08.2.php:52
#: announcements/announce-applications-17.08.3.php:52
#: announcements/announce-applications-17.12-beta.php:33
#: announcements/announce-applications-17.12-rc.php:33
#: announcements/announce-applications-17.12.0.php:111
#: announcements/announce-applications-17.12.1.php:48
#: announcements/announce-frameworks5-alpha.php:37
#: announcements/announce-frameworks5-alpha2.php:37
#: announcements/announce-frameworks5-beta1.php:48
#: announcements/announce-frameworks5-beta3.php:38
#: announcements/announce-plasma-2014.6-alpha1.php:27
msgid "Packages"
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:13 announcements/4.11/boilerplate.inc:13
#: announcements/4.12/boilerplate.inc:13 announcements/4.13/boilerplate.inc:13
msgid ""
"Some Linux/UNIX OS vendors have kindly provided binary packages of %1\n"
"for some versions of their distribution, and in other cases community volunteers\n"
"have done so."
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:16 announcements/4.11/boilerplate.inc:16
#: announcements/4.12/boilerplate.inc:16 announcements/4.13/boilerplate.inc:16
#: announcements/4.14/index.php:146 announcements/announce-4.10.1.php:47
#: announcements/announce-4.10.2.php:47 announcements/announce-4.10.3.php:47
#: announcements/announce-4.10.4.php:47 announcements/announce-4.10.5.php:47
#: announcements/announce-4.11-beta1.php:68
#: announcements/announce-4.11-beta2.php:68
#: announcements/announce-4.11-rc1.php:68
#: announcements/announce-4.11-rc2.php:70 announcements/announce-4.11.1.php:49
#: announcements/announce-4.11.2.php:49 announcements/announce-4.11.3.php:49
#: announcements/announce-4.11.4.php:49 announcements/announce-4.11.5.php:49
#: announcements/announce-4.12-beta1.php:48
#: announcements/announce-4.12-beta2.php:48
#: announcements/announce-4.12-beta3.php:48
#: announcements/announce-4.12-rc.php:48 announcements/announce-4.12.1.php:46
#: announcements/announce-4.12.2.php:46 announcements/announce-4.12.3.php:46
#: announcements/announce-4.12.4.php:47 announcements/announce-4.12.5.php:47
#: announcements/announce-4.13-beta1.php:44
#: announcements/announce-4.13-beta2.php:44
#: announcements/announce-4.13-beta3.php:44
#: announcements/announce-4.13-rc.php:44 announcements/announce-4.13.1.php:54
#: announcements/announce-4.13.2.php:56 announcements/announce-4.13.3.php:56
#: announcements/announce-4.14-beta1.php:40
#: announcements/announce-4.14-beta2.php:40
#: announcements/announce-4.14-beta3.php:40
#: announcements/announce-4.14-rc.php:40 announcements/announce-4.14.1.php:56
#: announcements/announce-4.14.2.php:56 announcements/announce-4.14.3.php:56
#: announcements/announce-applications-14.12-beta1.php:34
#: announcements/announce-applications-14.12-beta2.php:34
#: announcements/announce-applications-14.12-beta3.php:34
#: announcements/announce-applications-14.12-rc.php:34
#: announcements/announce-applications-14.12.0.php:71
#: announcements/announce-applications-14.12.1.php:49
#: announcements/announce-applications-14.12.2.php:49
#: announcements/announce-applications-14.12.3.php:49
#: announcements/announce-applications-15.04-beta1.php:34
#: announcements/announce-applications-15.04-beta2.php:34
#: announcements/announce-applications-15.04-beta3.php:34
#: announcements/announce-applications-15.04-rc.php:34
#: announcements/announce-applications-15.04.0.php:68
#: announcements/announce-applications-15.04.1.php:49
#: announcements/announce-applications-15.04.2.php:49
#: announcements/announce-applications-15.04.3.php:49
#: announcements/announce-applications-15.08-beta.php:34
#: announcements/announce-applications-15.08-rc.php:34
#: announcements/announce-applications-15.08.0.php:94
#: announcements/announce-applications-15.08.1.php:49
#: announcements/announce-applications-15.08.2.php:49
#: announcements/announce-applications-15.08.3.php:49
#: announcements/announce-applications-15.12-beta.php:34
#: announcements/announce-applications-15.12-rc.php:34
#: announcements/announce-applications-15.12.0.php:146
#: announcements/announce-applications-15.12.1.php:49
#: announcements/announce-applications-15.12.2.php:49
#: announcements/announce-applications-15.12.3.php:49
#: announcements/announce-applications-16.04-beta.php:38
#: announcements/announce-applications-16.04-rc.php:34
#: announcements/announce-applications-16.04.0.php:143
#: announcements/announce-applications-16.04.1.php:49
#: announcements/announce-applications-16.04.2.php:49
#: announcements/announce-applications-16.04.3.php:49
#: announcements/announce-applications-16.08-beta.php:38
#: announcements/announce-applications-16.08-rc.php:38
#: announcements/announce-applications-16.08.0.php:105
#: announcements/announce-applications-16.08.1.php:49
#: announcements/announce-applications-16.08.2.php:49
#: announcements/announce-applications-16.08.3.php:49
#: announcements/announce-applications-16.12-beta.php:38
#: announcements/announce-applications-16.12-rc.php:38
#: announcements/announce-applications-16.12.0.php:146
#: announcements/announce-applications-16.12.1.php:53
#: announcements/announce-applications-16.12.2.php:49
#: announcements/announce-applications-16.12.3.php:49
#: announcements/announce-applications-17.04-beta.php:38
#: announcements/announce-applications-17.04-rc.php:38
#: announcements/announce-applications-17.04.0.php:139
#: announcements/announce-applications-17.04.1.php:49
#: announcements/announce-applications-17.04.2.php:49
#: announcements/announce-applications-17.04.3.php:49
#: announcements/announce-applications-17.08-beta.php:38
#: announcements/announce-applications-17.08-rc.php:38
#: announcements/announce-applications-17.08.0.php:113
#: announcements/announce-applications-17.08.1.php:49
#: announcements/announce-applications-17.08.2.php:57
#: announcements/announce-applications-17.08.3.php:57
#: announcements/announce-applications-17.12-beta.php:38
#: announcements/announce-applications-17.12-rc.php:38
#: announcements/announce-applications-17.12.0.php:116
#: announcements/announce-applications-17.12.1.php:53
msgid "Package Locations"
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:17 announcements/4.11/boilerplate.inc:17
#: announcements/4.12/boilerplate.inc:17 announcements/4.13/boilerplate.inc:17
msgid ""
"For a current list of available binary packages of which the KDE's Release Team has\n"
"been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_%1'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:22 announcements/4.11/boilerplate.inc:22
#: announcements/4.12/boilerplate.inc:22 announcements/4.13/boilerplate.inc:22
msgid ""
"The complete source code for %1 may be <a href='/info/%1.php'>freely downloaded</a>.\n"
"Instructions on compiling and installing KDE software %1\n"
" are available from the <a href='/info/%1.php#binary'>%1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:28 announcements/4.11/boilerplate.inc:28
#: announcements/4.12/boilerplate.inc:28 announcements/4.13/boilerplate.inc:28
msgid "System Requirements"
msgstr ""
#. +> trunk
#: announcements/4.10/boilerplate.inc:31 announcements/4.11/boilerplate.inc:31
#: announcements/4.12/boilerplate.inc:31 announcements/4.13/boilerplate.inc:31
msgid ""
"In order to get the most out of these releases, we recommend to use a recent version of Qt, such as 4.8.4. This is necessary in order to assure a stable and performant experience, as some improvements made to KDE software have actually been done in the underlying Qt framework.<br />"
"\n"
"In order to make full use of the capabilities of KDE's software, we also recommend to use the latest graphics drivers for your system, as this can improve the user experience substantially, both in optional functionality, and in overall performance and stability."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:6
msgid "KDE Software Compilation 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:31
msgid "The KDE Community proudly announces the latest releases of Plasma Workspaces, Applications and Development Platform. With the 4.10 release, the premier collection of Free Software for home and professional use makes incremental improvements to a large number of applications, and offers the latest technologies."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:41
msgid "Several components of Plasma Workspaces have been ported to the Qt Quick/QML framework. Stability and usability have been improved. A new print manager and Color Management support have been introduced."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:45 announcements/4.10/plasma.php:88
#: announcements/4.10/platform.php:75
msgid "The KDE Applications 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:46 announcements/4.10/plasma.php:90
#: announcements/4.10/platform.php:77
msgid "KDE Applications gained feature enhancements to Kate, KMail and Konsole. KDE-Edu applications saw a complete overhaul of KTouch and many other changes. KDE Games introduced the new Picmi game and improvements throughout."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:55
msgid "The KDE Quality team <a href='http://www.sharpley.org.uk/blog/kde-testing'>organized a testing program</a> for this release, assisting developers by identifying legitimate bugs and carefully testing the applications. Thanks to their work, KDE innovation and quality go hand in hand. If you are interested in the Quality Team and their work, check out <a href='http://community.kde.org/Get_Involved/Quality'>The Quality Team wikipage</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:57 announcements/4.11/index.php:63
#: announcements/4.12/index.php:52 announcements/4.13/index.php:74
#: announcements/plasma2tp/index.php:50
msgid "Spread the Word and See What's Happening: Tag as &quot;KDE&quot;"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:59
msgid "KDE encourages people to spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, twitter, identi.ca. Upload screenshots to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with &quot;KDE&quot;. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the 4.10 releases of KDE software."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:61 announcements/4.11/index.php:67
#: announcements/4.12/index.php:56
msgid "Release Parties"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:63
msgid "As usual, KDE community members organize release parties all around the world. Several have already been scheduled and more will come later. Find <a href='http://community.kde.org/Promo/Events/Release_Parties/4.10'>a list of parties here</a>. Anyone is welcome to join! There will be a combination of interesting company and inspiring conversations as well as food and drinks. It's a great chance to learn more about what is going on in KDE, get involved, or just meet other users and contributors."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:66 announcements/4.11/index.php:72
#: announcements/4.12/index.php:61
msgid "We encourage people to organize their own parties. They're fun to host and open for everyone! Check out <a href='http://community.kde.org/Promo/Events/Release_Parties'>tips on how to organize a party</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:109 announcements/4.11/index.php:115
#: announcements/4.12/index.php:101 announcements/4.13/index.php:122
msgid "About these release announcements"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:111
msgid "These release announcements were prepared by Devaja Shah, Jos Poortvliet, Carl Symons, Sebastian Kügler and other members of the KDE Promotion Team and the wider KDE community. They cover highlights of the many changes made to KDE software over the past six months."
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:114 announcements/4.11/index.php:120
#: announcements/4.12/index.php:106 announcements/4.13/index.php:60
#: announcements/4.14/index.php:125 announcements/frameworks5TP/index.php:121
#: announcements/plasma2tp/index.php:94
msgid "Support KDE"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:118 announcements/4.11/index.php:124
#: announcements/4.12/index.php:110 announcements/4.13/index.php:64
#: announcements/4.14/index.php:128 announcements/frameworks5TP/index.php:125
#: announcements/plasma2tp/index.php:98
msgid "Join the Game"
msgstr ""
#. +> trunk
#: announcements/4.10/index.php:119 announcements/4.11/index.php:125
#: announcements/4.12/index.php:111 announcements/frameworks5TP/index.php:126
#: announcements/plasma2tp/index.php:99
msgid ""
"KDE e.V.'s new <a\n"
"href='http://jointhegame.kde.org/'>Supporting Member program</a> is\n"
"now open. For &euro;25 a quarter you can ensure the international\n"
"community of KDE continues to grow making world class Free\n"
"Software."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:29
msgid "Plasma Workspaces have been refined considerably. Work continues on updating widgets with new ones built with <a href='http://doc.qt.digia.com/qt/qtquick.html'>Qt Quick</a>. This effort brings improvements in consistency, layout behavior, stability, ease of use and performance. It is also now easier to build widgets, entirely new Plasma Workspace layouts and other custom enhancements. A new <a href='http://doc.qt.digia.com/qt/qdeclarativeintroduction.html'>QML</a>-based screen locker makes Workspaces more secure. The wallpaper engine was also updated to QML, so it is easier to write animated wallpapers. (QML is part of the <a href='http://doc.qt.digia.com/qt/qtquick.html'>Qt Quick application framework</a>.)"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:31
msgid "KDE Plasma Workspaces 4.10"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:33
msgid "In addition to improvements related to Qt Quick and QML, the task widget received some usability updates, with a <a href='http://aseigo.blogspot.com/2012/11/help-test-task-grouping-experiments.html'>smoother look for groups of windows</a>. There also have been improvements to the notifications system, particularly in the area of power management. There is now improved support for high resolution displays and <a href='http://www.notmart.org/index.php/Graphics/Time_to_refresh_some_air'>a new Air theme</a> reducing visual clutter and giving Plasma Workspaces a cleaner appearance."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:35
msgid "Task grouping received visual improvements"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:37 announcements/4.11/plasma.php:47
msgid "KWin Window Manager and Compositor"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:39
msgid "With KWin's Get Hot New Stuff (GHNS) integration, additional effects and scripts are available in the KWin configuration dialog and can also be found at <a href='http://kde-look.org/index.php?xcontentmode=90'>kde-look.org</a>, including <a href='http://kde-look.org/index.php?xcontentmode=91'>behavior modifying scripts</a>. Custom window switchers can also be retrieved in the KWin configuration dialog and <a href='http://kde-look.org/index.php?xcontentmode=92'>that section of kde-look.org</a>. There's a nifty new effect that animates the maximize window state change."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:41
msgid "Kwin add-ons can now be installed easily from online sources"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:43
msgid "KWin now detects some virtual machines and enables OpenGL compositing if possible. In addition, the proprietary AMD driver now has OpenGL 2 support."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:46
msgid "Tiling support in KWin <a href='https://bugs.kde.org/show_bug.cgi?id=303090'>has been removed</a> as it had stability issues, lacked multi-screen support and conflicted with other parts in KWin. In short, KWin developers concluded that the necessary functionality would be more suitable for a plugin using the Javascript API. In that way, users would get more control, and development and maintenance would be easier. Third party developers would be able to customize, improve and experiment. A plugin-based version might be available in the next release; help is requested as none of the current KWin developers are working on tiling support."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:48
msgid "Animated Plasma wallpapers can now be created using QML"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:50
msgid "Several applications now support color correction so that they can be adjusted according to the color profiles of different monitors and printers. The KolorServer KDED module supports per-output color correction, per-window is coming in a later release. Color management support in Kwin is designed to relieve the Compositor of this task. This allows the user to disable color management, and makes code maintenance easier. Multi-monitor setups are also supported. These color management features were given a big boost with a <a href='http://skeletdev.wordpress.com/2012/08/20/gsoc-color-correction-in-kwin-final-report/'>Google Summer of Code project</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:53
msgid "The new KDE <a href='http://gnumdk.blogspot.com/2012/11/appmenu-support-in-kde-410.html'>appmenu</a> enables a common menu for multiple applications running simultaneously. It has an option to display a top screen menubar—hidden by default—that appears when the mouse is moved near the top edge of the screen. The menubar follows the window focus so it can be used in multiscreen environments. There is also an option for the menu to be displayed as a sub-menu of a button in the window decoration. The menu can be displayed on the screen wherever the user wants it."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:55
msgid "The application menu can now be embedded in the window title bar"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:57
msgid "KWin bug fixing has improved thanks to <a href='http://blog.martin-graesslin.com/blog/2012/07/looking-for-kwin-bug-triagers/'>extra help verifying incoming bug reports</a>. Stay current with KWin Window Manager development at <a href='http://blog.martin-graesslin.com/blog/'>Martin Gräßlin's blog</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:60
msgid "Faster and more reliable metadata engine"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:62
msgid ""
"Thanks to the work sponsored by Blue Systems, the KDE cross-application semantic search and storage backend has seen over 240 bugs fixed and a significant number of other improvements. Chief among these is <a href='http://vhanda.in/blog/2012/11/nepomuk-without-strigi/'>the new indexer</a>, which makes indexing faster and more robust. A nice feature is that it first quickly indexes the basic information of new files (name and mimetype) so the files are available at once, and then delays full data extraction until the system is idle (or connected to AC!), so it doesn't interfere with the user's workflow. In addition, it is now far simpler to write extractors for new file formats. \n"
"A few formats that were previously supported are not yet available for the new indexer, but support for these can be expected soon. An added benefit of the new indexer is the ability to easily filter on the type of file, which is reflected in the user interface: it is now possible to enable or disable indexing of Audio, Images, Documents, Video's and Source Code. The search and storage user interface and Backup have seen improvements as well. The introduction of the Tags <a href='http://en.wikipedia.org/wiki/KIO'>KIO slave</a> allows users to browse their files by tags from any KDE application."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:65
msgid "Nepomuk Cleaner is a simple new tool for managing semantic storage. It is useful for cleaning up legacy, invalid or duplicate data. Running the Cleaner after upgrading can provide a significant speed improvement. More information on this and other changes in the KDE search technologies can be found in <a href='http://vhanda.in/blog/2013/01/what-new-with-nepomuk-4-10/'>Vishesh Handa's blog</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:67
msgid "Metadata handling has been improved"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:69
msgid "New Print Manager"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:71
msgid "Printer setup, maintenance and job control are improved with a new implementation of the Print Manager. The Plasma applet shows available printers and provides access and control over queued jobs. The System Setting configuration screen enables users to add and remove printers, giving an overview of the current printers, along with access to important control functions such as sharing and default printer selection. The New Printer Wizard automatically selects proper drivers and control settings on recognized devices. The new Print Manager tools are fully compatible with the latest CUPS printing subsystem, resulting in quick responses and reliable reporting."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:74
msgid "Dolphin File Manager"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:76
msgid ""
"The KDE file manager Dolphin has seen many bugfixes, improvements and new features. Transferring files to and from a phone or other mobile device has become easier with support for <a href='http://en.wikipedia.org/wiki/Media_Transfer_Protocol'>MTP</a> devices, which show up in the Places panel. The size of Panel icons can now be changed, and other usability and accessibility options have been added. Dolphin now has the ability to report the current directory and files to the Activity manager (controlled in System Settings). There has also been an impressive number of performance enhancements.\n"
"Loading folders, both with and without previews, is significantly faster and requires less memory while using all available processor cores to be as fast as possible. Minor improvements were made to search, drag and drop and other areas. Dolphin also benefits from the improvements in the KDE semantic storage and search backend, reducing the resources needed for metadata handling. More details from <a href='http://freininghaus.wordpress.com/2012/11/27/on-the-way-to-dolphin-2-2/'>Frank Reininghaus, the Dolphin maintainer</a>."
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:79
msgid "Transferring files from mobile devices is now easier"
msgstr ""
#. +> trunk
#: announcements/4.10/plasma.php:82 announcements/4.11/plasma.php:69
msgid "Installing Plasma"
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:28
msgid "Plasma SDK"
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:30
msgid ""
"This release of the KDE Development Platform sees more work on a\n"
"comprehensive SDK for Plasma. Previously separate and distinct\n"
"components, such as plasmoidviewer, plasamengineexplorer and\n"
"plasmawallpaperviewer, are now part of <a\n"
"href='http://techbase.kde.org/Projects/Plasma/PlasMate'>PlasMate</a>,\n"
"the toolset for developing Plasma widgets."
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:37
msgid "Plasmate forms the heart of the Plasma SDK"
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:39
msgid "Qt Quick Support"
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:41
msgid ""
"The use of <a href='http://doc.qt.digia.com/qt/qtquick.html'>Qt\n"
"Quick</a> within Plasma continues to expand. Many components have been\n"
"updated to use Qt Quick exclusively for the user interface; this also\n"
"makes it easy to extend and customize Plasma Workspaces. Plasma now\n"
"also allows Containments (which are responsible for presenting widgets\n"
"on the desktop and in panels) to be written using only Qt Quick's\n"
"easy-to-learn language. This gives developers the ability to produce\n"
"custom Containments for experimentation or special use cases. With\n"
"this capability, Plasma is a valuable, universal user interface\n"
"toolkit."
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:53
msgid "Scripting Desktop Effects"
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:55
msgid ""
"Scripting interfaces for window effects, behavior and management make\n"
"KWin Window Management a useful tool for developers wanting to address\n"
"a particular use case. In addition, this modular approach minimizes\n"
"the size of the core of KWin. It also improves maintainability by\n"
"moving specialized code into external scripts Compared to the C++ code\n"
"they replace, scripts make it easier to write, maintain and ensure\n"
"quality of code."
msgstr ""
#. +> trunk
#: announcements/4.10/platform.php:64 announcements/4.11/platform.php:51
msgid "Installing the KDE Development Platform"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:6 announcements/4.11/index.php:51
#: announcements/4.11/plasma.php:75 announcements/4.11/platform.php:62
msgid "KDE Applications 4.11 Bring Huge Step Forward in Personal Information Management and Improvements All Over"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:30 announcements/4.11/plasma.php:30
#: announcements/4.11/platform.php:30
msgid "August 14, 2013"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:34
msgid "The Dolphin file manager brings many small fixes and optimizations in this release. Loading large folders has been sped up and requires up to 30&#37; less memory. Heavy disk and CPU activity is prevented by only loading previews around the visible items. There have been many more improvements: for example, many bugs that affected expanded folders in Details View were fixed, no &quot;unknown&quot; placeholder icons will be shown any more when entering a folder, and middle clicking an archive now opens a new tab with the archive contents, creating a more consistent experience overall."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:37 announcements/announce-4.11.1.php:26
#: announcements/announce-4.11.1.php:28 announcements/announce-4.11.2.php:26
#: announcements/announce-4.11.2.php:28 announcements/announce-4.11.3.php:26
#: announcements/announce-4.11.3.php:28 announcements/announce-4.11.4.php:26
#: announcements/announce-4.11.4.php:28 announcements/announce-4.11.5.php:26
#: announcements/announce-4.11.5.php:28
msgid "The new send-later work flow in Kontact"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:39
msgid "Kontact Suite Improvements"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:42
msgid "The Kontact Suite has once again seen significant focus on stability, performance and memory usage. Importing folders, switching between maps, fetching mail, marking or moving large numbers of messages and startup time have all been improved in the last 6 months. See <a href='http://blogs.kde.org/2013/07/18/memory-usage-improvements-411'>this blog</a> for details. The <a href='http://www.aegiap.eu/kdeblog/2013/07/news-in-kdepim-4-11-archive-mail-agent/'>archive functionality has seen many bug fixes</a> and there have also been improvements in the ImportWizard, allowing importing of settings from the Trojitá mail client and better importing from various other applications. Find more information <a href='http://www.progdan.cz/2013/07/whats-new-in-the-akonadi-world/'>here</a>."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:45
msgid "The archive agent manages storing email in compressed form"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:48
msgid "This release also comes with some significant new features. There is a <a href='http://www.aegiap.eu/kdeblog/2013/05/news-in-kdepim-4-11-header-theme-33-grantlee-theme-generator-headerthemeeditor/'>new theme editor for email headers</a> and email images can be resized on the fly. The <a href='http://www.aegiap.eu/kdeblog/2013/07/new-in-kdepim-4-11-send-later-agent/'>Send Later feature</a> allows scheduling the sending of emails on a specific date and time, with the added possibility of repeated sending according to a specified interval. KMail Sieve filter support (an IMAP feature allowing filtering on the server) has been improved, users can generate sieve filtering scripts <a href='http://www.aegiap.eu/kdeblog/2013/04/news-in-kdepim-4-11-improve-sieve-support-22/'>with an easy-to-use interface</a>. In the security area, KMail introduces automatic 'scam detection', <a href='http://www.aegiap.eu/kdeblog/2013/04/news-in-kdepim-4-11-scam-detection/'>showing a warning</a> when mails contain typical phishing tricks. You now receive an <a href='http://www.aegiap.eu/kdeblog/2013/06/news-in-kdepim-4-11-new-mail-notifier/'>informative notification</a> when new mail arrives. and last but not least, the Blogilo blog writer comes with a much-improved QtWebKit-based HTML editor."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:51
msgid "Extended Language Support for Kate"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:54
msgid "Advanced text editor Kate introduces new plugins: Python (2 and 3), JavaScript & JQuery, Django and XML. They introduce features like static and dynamic autocompletion, syntax checkers, inserting of code snippets and the ability to automatically indent XML with a shortcut. But there is more for Python friends: a python console providing in-depth information on an opened source file. Some small UI improvements have also been done, including <a href='http://kate-editor.org/2013/04/02/kate-search-replace-highlighting-in-kde-4-11/'>new passive notifications for the search functionality</a>, <a href='http://kate-editor.org/2013/03/16/kate-vim-mode-papercuts-bonus-emscripten-qt-stuff/'>optimizations to the VIM mode</a> and <a href='http://kate-editor.org/2013/03/27/new-text-folding-in-kate-git-master/'>new text folding functionality</a>."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:57
msgid "KStars shows interesting upcoming events visible from your location"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:59
msgid "Other Application Improvements"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:62
msgid "In the area of games and education several smaller and larger new features and optimizations have arrived. Prospective touch typists might enjoy the right-to-left support in KTouch while the star-gazer's friend, KStars, now has a tool which shows interesting events coming up in your area. Math tools Rocs, Kig, Cantor and KAlgebra all got attention, supporting more backends and calculations. And the KJumpingCube game now has features larger board sizes, new skill levels, faster responses and an improved user interface."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:66
msgid "The Kolourpaint simple painting application can deal with the WebP image format and the universal document viewer Okular has configurable review tools and introduces undo/redo support in forms and annotations. The JuK audio tagger/player supports playback and metadata editing of the new Ogg Opus audio format (however, this requires that the audio driver and TagLib also support Ogg Opus)."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:76 announcements/4.11/index.php:26
#: announcements/4.11/index.php:46 announcements/4.11/platform.php:57
msgid "The KDE Plasma Workspaces 4.11"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:76 announcements/4.11/index.php:46
#: announcements/4.11/plasma.php:6 announcements/4.11/platform.php:57
msgid "Plasma Workspaces 4.11 Continues to Refine User Experience"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:78 announcements/4.11/index.php:47
#: announcements/4.11/platform.php:59
msgid "Gearing up for long term maintenance, Plasma Workspaces delivers further improvements to basic functionality with a smoother taskbar, smarter battery widget and improved sound mixer. The introduction of KScreen brings intelligent multi-monitor handling to the Workspaces, and large scale performance improvements combined with small usability tweaks make for an overall nicer experience."
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:81 announcements/4.11/index.php:57
#: announcements/4.11/plasma.php:80
msgid "The KDE Development Platform 4.11"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:81 announcements/4.11/index.php:57
#: announcements/4.11/plasma.php:80 announcements/4.11/platform.php:6
msgid "KDE Platform 4.11 Delivers Better Performance"
msgstr ""
#. +> trunk
#: announcements/4.11/applications.php:83 announcements/4.11/index.php:58
#: announcements/4.11/plasma.php:82
msgid "This release of KDE Platform 4.11 continues to focus on stability. New features are being implemented for our future KDE Frameworks 5.0 release, but for the stable release we managed to squeeze in optimizations for our Nepomuk framework."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:6
msgid "KDE Software Compilation 4.11"
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:29
msgid "August 14, 2013. The KDE Community is proud to announce the latest major updates to the Plasma Workspaces, Applications and Development Platform delivering new features and fixes while readying the platform for further evolution. The Plasma Workspaces 4.11 will receive long term support as the team focuses on the technical transition to Frameworks 5. This then presents the last combined release of the Workspaces, Applications and Platform under the same version number."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:38
msgid "This release is dedicated to the memory of <a href='http://en.wikipedia.org/wiki/Atul_Chitnis'>Atul 'toolz' Chitnis</a>, a great Free and Open Source Software champion from India. Atul led the Linux Bangalore and FOSS.IN conferences since 2001 and both were landmark events in the Indian FOSS scene. KDE India was born at the first FOSS.in in December 2005. Many Indian KDE contributors started out at these events. It was only because of Atul's encouragement that the KDE Project Day at FOSS.IN was always a huge success. Atul left us on June 3rd after fighting a battle with cancer. May his soul rest in peace. We are grateful for his contributions to a better world."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:42
msgid "These releases are all translated in 54 languages; we expect more languages to be added in subsequent monthly minor bugfix releases by KDE. The Documentation Team updated 91 application handbooks for this release."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:51 announcements/4.11/plasma.php:75
#: announcements/4.11/platform.php:62
msgid "The KDE Applications 4.11"
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:52 announcements/4.11/plasma.php:77
#: announcements/4.11/platform.php:64
msgid "This release marks massive improvements in the KDE PIM stack, giving much better performance and many new features. Kate improves the productivity of Python and Javascript developers with new plugins, Dolphin became faster and the educational applications bring various new features."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:61
msgid "When upgrading, please observe the <a href='http://community.kde.org/KDE_SC/4.11_Release_Notes'>release notes</a>."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:65
msgid "KDE encourages people to spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, twitter, identi.ca. Upload screenshots to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with &quot;KDE&quot;. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the 4.11 releases of KDE software."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:69
msgid "As usual, KDE community members organize release parties all around the world. Several have already been scheduled and more will come later. Find <a href='http://community.kde.org/Promo/Events/Release_Parties/4.11'>a list of parties here</a>. Anyone is welcome to join! There will be a combination of interesting company and inspiring conversations as well as food and drinks. It's a great chance to learn more about what is going on in KDE, get involved, or just meet other users and contributors."
msgstr ""
#. +> trunk
#: announcements/4.11/index.php:117
msgid "These release announcements were prepared by Jos Poortvliet, Sebastian Kügler, Markus Slopianka, Burkhard Lück, Valorie Zimmerman, Maarten De Meyer, Frank Reininghaus, Michael Pyne, Martin Gräßlin and other members of the KDE Promotion Team and the wider KDE community. They cover highlights of the many changes made to KDE software over the past six months."
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:33
msgid "KDE Plasma Workspaces 4.11"
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:36
msgid "In the 4.11 release of Plasma Workspaces, the taskbar – one of the most used Plasma widgets – <a href='http://blogs.kde.org/2013/07/29/kde-plasma-desktop-411s-new-task-manager'>has been ported to QtQuick</a>. The new taskbar, while retaining the look and functionality of its old counterpart, shows more consistent and fluent behavior. The port also resolved a number of long standing bugs. The battery widget (which previously could adjust the brightness of the screen) now also supports keyboard brightness, and can deal with multiple batteries in peripheral devices, such as your wireless mouse and keyboard. It shows the battery charge for each device and warns when one is running low. The Kickoff menu now shows recently installed applications for a few days. Last but not least, notification popups now sport a configure button where one can easily change the settings for that particular type of notification."
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:38
msgid "Improved notification handling"
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:41
msgid "KMix, KDE's sound mixer, received significant performance and stability work as well as <a href='http://kmix5.wordpress.com/2013/07/26/kmix-mission-statement-2013/'>full media player control support</a> based on the MPRIS2 standard. "
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:44
msgid "The redesigned battery applet in action"
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:49
msgid "Our window manager, KWin, has once again received significant updates, moving away from legacy technology and incorporating the 'XCB' communication protocol. This results in smoother, faster window management. Support for OpenGL 3.1 and OpenGL ES 3.0 has been introduced as well. This release also incorporates first experimental support for the X11 successor Wayland. This allows to use KWin with X11 on top of a Wayland stack. For more information on how to use this experimental mode see <a href='http://blog.martin-graesslin.com/blog/2013/06/starting-a-full-kde-plasma-session-in-wayland/'>this post</a>. The KWin scripting interface has seen massive improvements, now sporting configuration UI support, new animations and graphical effects and many smaller improvements. This release brings better multi-screen awareness (including an edge glow option for 'hot corners'), improved quick tiling (with configurable tiling areas) and the usual slew of bug fixes and optimizations. See <a href='http://blog.martin-graesslin.com/blog/2013/06/what-we-did-in-kwin-4-11/'>here</a> and <a href='http://blog.martin-graesslin.com/blog/2013/06/new-kwin-scripting-feature-in-4-11/'>here</a> for more details."
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:52
msgid "Monitor Handling and Web Shortcuts"
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:55
msgid "The monitor configuration in System Settings has been <a href='http://www.afiestas.org/kscreen-1-0-released/'>replaced with the new KScreen tool</a>. KScreen brings more intelligent multi-monitor support to Plasma Workspaces, automatically configuring new screens and remembering settings for monitors manually configured. It sports an intuitive, visually-oriented interface and handles re-arranging monitors through simple drag and drop."
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:58
msgid "The new KScreen monitor handling"
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:61
msgid "Web Shortcuts, the easiest way to quickly find what you're looking for on the web, have been cleaned up and improved. Many were updated to use securely encrypted (TLS/SSL) connections, new web shortcuts were added and a few obsolete shortcuts removed. The process of adding your own web shortcuts has been improved as well. Find more details <a href='https://plus.google.com/108470973614497915471/posts/9DUX8C9HXwD'>here</a>."
msgstr ""
#. +> trunk
#: announcements/4.11/plasma.php:65
msgid "This release marks the end of Plasma Workspaces 1, part of the KDE SC 4 feature series. To ease the transition to the next generation this release will be supported for at least two years. Focus of feature development will shift to Plasma Workspaces 2 now, performance improvements and bugfixing will concentrate on the 4.11 series."
msgstr ""
#. +> trunk
#: announcements/4.11/platform.php:34
msgid "KDE Platform 4 has been in feature freeze since the 4.9 release. This version consequently only includes a number of bugfixes and performance improvements."
msgstr ""
#. +> trunk
#: announcements/4.11/platform.php:38
msgid "The Nepomuk semantic storage and search engine received massive performance improvements, such as a set of read optimizations that make reading data up to six times faster. Indexing has become smarter, being split in two stages. The first stage retrieves general information (such as file type and name) immediately; additional information like media tags, author information, etc. is extracted in a second, somewhat slower stage. Metadata display on newly-created or freshly-downloaded content is now much faster. In addition, the Nepomuk developers improved the backup and restore system. Last but not least, Nepomuk can now also index a variety of document formats including ODF and docx."
msgstr ""
#. +> trunk
#: announcements/4.11/platform.php:41
msgid "Semantic features in action in Dolphin"
msgstr ""
#. +> trunk
#: announcements/4.11/platform.php:44
msgid "Nepomuk’s optimized storage format and rewritten e-mail indexer require reindexing some of the hard drive’s content. Consequently the reindexing run will consume an unusual amount of computing performance for a certain period – depending on the amount of content that needs to be reindexed. An automatic conversion of the Nepomuk database will run on the first login."
msgstr ""
#. +> trunk
#: announcements/4.11/platform.php:48
msgid "There have been more minor fixes which <a href='https://projects.kde.org/projects/kde/kdelibs/repository/revisions?rev=KDE%2F4.11'>can be found in the git logs</a>."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:7 announcements/4.12/index.php:43
msgid "KDE Applications 4.12 Bring Huge Step Forward in Personal Information Management and Improvements All Over"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:31
msgid "December 18, 2013"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:35
msgid "The KDE Community is proud to announce the latest major updates to the KDE Applications delivering new features and fixes. This release marks massive improvements in the KDE PIM stack, giving much better performance and many new features. Kate streamlined the integration of Python plugins and added initial Vim-macro support and the games and educational applications bring a variety of new features."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:41
msgid "The most advanced Linux graphical text editor Kate has again received work on code completion, this time introducing <a href='http://scummos.blogspot.com/2013/10/advanced-code-completion-filtering-in.html'>advanced matching code, handling abbreviation and partial matching in classes</a>. For example, the new code would match a typed 'QualIdent' with 'QualifiedIdentifier'. Kate also gets <a href='http://dot.kde.org/2013/09/09/kde-commit-digest-18th-august-2013'>initial Vim macro support</a>. Best of all, these improvements also trickle through to KDevelop and other applications using the Kate technology."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:47
msgid "Document viewer Okular <a href='http://tsdgeos.blogspot.com/2013/10/changes-in-okular-printing-for-412.html'>now takes printer hardware margins into account</a>, has audio and video support for epub, better search and can now handle more transformations including those from Exif image metadata. In the UML diagram tool Umbrello, associations can now be <a href='http://dot.kde.org/2013/09/20/kde-commit-digest-1st-september-2013'>drawn with different layouts</a> and Umbrello <a href='http://dot.kde.org/2013/09/09/kde-commit-digest-25th-august-2013'>adds visual feedback if a widget is documented</a>."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:51
msgid "Privacy guard KGpg shows more information to users and KWalletManager, the tool to save your passwords, can now <a href='http://www.rusu.info/wp/?p=248'>store them in GPG form</a>. Konsole introduces a new feature: Ctrl-click to directly launch URLs in console output. It can now also <a href='http://martinsandsmark.wordpress.com/2013/11/02/mangonel-1-1-and-more/'>list processes when warning about quit</a>."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:57
msgid "KWebKit adds the ability to <a href='http://dot.kde.org/2013/08/09/kde-commit-digest-7th-july-2013'>automatically scale content to match desktop resolution</a>. File manager Dolphin introduced a number of performance improvements in sorting and showing files, reducing memory usage and speeding things up. KRDC introduced automatic reconnecting in VNC and KDialog now provides access to 'detailedsorry' and 'detailederror' message boxes for more informative console scripts. Kopete updated its OTR plugin and the Jabber protocol has support for XEP-0264: File Transfer Thumbnails. Besides these features the main focus was on cleaning code up and fixing compile warnings.\n"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:61
msgid "Games and educational software"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:63
msgid "The KDE Games have seen work in various areas. KReversi is <a href='http://tsdgeos.blogspot.ch/2013/10/kreversi-master-is-now-qt-quick-based.html'>now QML and Qt Quick based</a>, making for a prettier and more fluid game experience. KNetWalk has also <a href='http://tsdgeos.blogspot.ch/2013/08/knetwalk-portedx-to-qtquick.html'>been ported</a> with the same benefit as well as the ability to set a grid with custom width and height. Konquest now has a new challenging AI player named 'Becai'."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:67
msgid "In the Educational applications there have been some major changes. KTouch <a href='http://blog.sebasgo.net/blog/2013/11/12/what-is-new-for-ktouch-in-kde-sc-4-dot-12/'>introduces custom lesson support and several new courses</a>; KStars has a new, more accurate <a href='http://knro.blogspot.ch/2013/10/demo-of-ekos-alignment-module.html'>alignment module for telescopes</a>, find a <a href='http://www.youtube.com/watch?v=7Dcn5aFI-vA'>youtube video here</a> of the new features. Cantor, which offers an easy and powerful UI for a variety of mathematical backends, now has backends <a href='http://blog.filipesaraiva.info/?p=1171'>for Python2 and Scilab</a>. Read more about the powerful Scilab backend <a href='http://blog.filipesaraiva.info/?p=1159'>here</a>. Marble adds integration with ownCloud (settings are available in Preferences) and adds overlay rendering support. KAlgebra makes it possible to export 3D plots to PDF, giving a great way of sharing your work. Last but not least, many bugs have been fixed in the various KDE Education applications.\n"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:71
msgid "Mail, calendar and personal information"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:74
msgid "KDE PIM, KDE's set of applications for handling mail, calendar and other personal information, has seen a lot of work."
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:78
msgid "Starting with email client KMail, there is now <a href='http://dot.kde.org/2013/10/11/kde-commit-digest-29th-september-2013'>AdBlock support</a> (when HTML is enabled) and improved scam detection support by extending shortened URLs. A new Akonadi Agent named FolderArchiveAgent allows users to archive read emails in specific folders and the GUI of the Send Later functionality has been cleaned up. KMail also benefits from improved Sieve filter support. Sieve allows for server-side filtering of emails and you can now <a href='http://www.aegiap.eu/kdeblog/2013/08/new-in-kdepim-4-12-sieve-script-parsing-22/'>create and modify the filters on the servers</a> and <a href='http://www.aegiap.eu/kdeblog/2013/08/new-in-kdepim-4-12-sieve-12/'>convert existing KMail filters to server filters</a>. KMail's mbox support <a href='http://www.aegiap.eu/kdeblog/2013/08/new-in-kdepim-4-12-mboximporter/'>has also been improved</a>.\n"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:83
msgid "In other applications, several changes make work easier and more enjoyable. A new tool is introduced, <a href='http://www.aegiap.eu/kdeblog/2013/11/new-in-kdepim-4-12-kaddressbook/'>the ContactThemeEditor</a>, which allows for creating KAddressBook Grantlee themes for displaying contacts. The addressbook can now also show previews before printing data. KNotes has seen some <a href='http://www.aegiap.eu/kdeblog/2013/11/what-news-in-kdepim-4-12-knotes/'>serious work on solving bugs</a>. Blogging tool Blogilo can now deal with translations and there are a wide variety of fixes and improvements all over the KDE PIM applications.\n"
msgstr ""
#. +> trunk
#: announcements/4.12/applications.php:88
msgid "Benefiting all applications, the underlying KDE PIM data cache has <a href='http://ltinkl.blogspot.ch/2013/11/this-month-october-in-red-hat-kde.html'>seen much work on performance, stability and scalability</a>, fixing <a href='http://www.progdan.cz/2013/10/akonadi-1-10-3-with-postgresql-fix/'>support for PostgreSQL with the latest Qt 4.8.5</a>. And there is a new command line tool, the calendarjanitor which can scan all calendar data for buggy incidences and adds a debug dialog for search. Some very special hugs go to Laurent Montel for the work he is doing on KDE PIM features!\n"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:7
msgid "KDE Software Compilation 4.12"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:27
msgid "The KDE Plasma Workspaces 4.12"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:30
msgid "December 18, 2013. The KDE Community is proud to announce the latest major updates to KDE Applications delivering new features and fixes. With the Plasma Workspaces and the KDE Platform frozen and receiving only long term support, those teams are focused on the technical transition to Frameworks 5. The upgrade in the version number for the Platform is merely for the convenience of packaging. All bug fixes and minor features developed since the release of Plasma Workspaces, Applications and Platform 4.11 have been included."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:39
msgid "These releases are all translated in 52 languages; we expect more languages to be added in subsequent monthly minor bugfix releases by KDE. The Documentation Team updated several application handbooks for this release."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:43
msgid "The KDE Applications 4.12"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:44
msgid "This release marks substantial improvements in the KDE PIM stack, giving much better performance and many new features. Kate added several features including initial Vim-macro support, and games and educational applications bring a variety of new functionality. The <a href='applications.php'>announcement for the KDE Applications 4.12</a> has more information."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:49
msgid "The KDE Development Platform 4.12"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:49
msgid "KDE Platform 4.12 Becomes More Stable"
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:50
msgid "This release of KDE Platform 4.12 only includes bugfixes and minor optimizations and features. About 20 bugfixes as well as several optimizations have been made to various subsystems, including KNewStuff, KNotify4, file handling and more. Notably, Nepomuk received bugfixes and indexing abilities for MS Office 97 formats. A technology preview of the Next Generation KDE Platform, named KDE Frameworks 5, is coming this month. Read <a href='http://dot.kde.org/2013/09/25/frameworks-5'>this article</a> to find out what is coming."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:54
msgid "KDE encourages people to spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, twitter, identi.ca. Upload screenshots to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with &quot;KDE&quot;. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the 4.12 releases of KDE software."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:58
msgid "As usual, KDE community members organize release parties all around the world. Several have already been scheduled and more will come later. Find <a href='http://community.kde.org/Promo/Events/Release_Parties/4.12'>a list of parties here</a>. Anyone is welcome to join! There will be a combination of interesting company and inspiring conversations as well as food and drinks. It's a great chance to learn more about what is going on in KDE, get involved, or just meet other users and contributors."
msgstr ""
#. +> trunk
#: announcements/4.12/index.php:103 announcements/4.13/index.php:124
msgid "These release announcements were prepared by the KDE Promotion Team and the wider KDE community. They cover highlights of the many changes made to KDE software over the past four months."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:6 announcements/4.13/index.php:40
msgid "KDE Applications 4.13 Benefit From The New Semantic Search, Introduce New Features"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:29 announcements/4.13/index.php:29
msgid "April 16, 2014"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:33
msgid "The KDE Community is proud to announce the latest major updates to the KDE Applications delivering new features and fixes. Kontact (the personal information manager) has been the subject of intense activity, benefiting from the improvements to KDE's Semantic Search technology and bringing new features. Document viewer Okular and advanced text editor Kate have gotten interface-related and feature improvements. In the education and game areas, we introduce the new foreign speech trainer Artikulate; Marble (the desktop globe) gets support for Sun, Moon, planets, bicycle routing and nautical miles. Palapeli (the jigsaw puzzle application) has leaped to unprecedented new dimensions and capabilities."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:38
msgid "KDE Kontact Introduces New Features And More Speed"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:40
msgid "KDE’s Kontact Suite introduces a series of features in its various components. KMail introduces Cloud Storage and improved sieve support for server-side filtering, KNotes can now generate alarms and introduces search capabilities, and there have been many improvements to the data cache layer in Kontact, speeding up almost all operations."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:43
msgid "Cloud Storage Support"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:45
msgid "KMail introduces storage service support, so large attachments on can be stored in cloud services and included as with links in email messages. Supported storage services include Dropbox, Box, KolabServer, YouSendIt, UbuntuOne, Hubic and there is a generic WebDav option. A <em>storageservicemanager</em> tool helps with the managing of files on these services."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:50
msgid "Much Improved Sieve Support"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:52
msgid "Sieve Filters, a technology to let KMail handle filters on the server, can now handle vacation support for multiple servers. The KSieveEditor tool allows users to edit sieve filters without having to add the server to Kontact."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:55
msgid "Other Changes"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:57
msgid "The quick filter bar has a small user interface improvement and benefits greatly from the improved search capabilities introduced in the KDE Development Platform 4.13 release. Searching has become significantly faster and more reliable. The composer introduces a URL shortener, augmenting the existing translation and text snippets tools."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:61
msgid "Tags and annotations of PIM data are now stored in Akonadi. In future versions, they will be also stored in servers (on IMAP or Kolab), making it possible to share tags across multiple computers. Akonadi: Google Drive API support has been added. There is support for searching with 3rd party plugins (which means that results can be retrieved very quickly) and server-search (searching items not indexed by a local indexing service)."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:64
#: announcements/4.13/applications.php:79
msgid "KNotes, KAddressbook"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:66
#: announcements/4.13/applications.php:81
msgid "Significant work was done on KNotes, fixing a series of bugs and small annoyances. The ability to set alarms on notes is new, as is searching through notes. Read more <a href='http://www.aegiap.eu/kdeblog/2014/03/whats-new-in-kdepim-4-13-knotes/'>here</a>. KAdressbook gained printing support: more details <a href='http://www.aegiap.eu/kdeblog/2013/11/new-in-kdepim-4-12-kaddressbook/'>here</a>."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:69
msgid "Performance Improvements"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:71
msgid ""
"Kontact performance is noticeably improved in this version. Some improvements are due to the integration with the new version of KDE’s <a href='http://dot.kde.org/2014/02/24/kdes-next-generation-semantic-search'>Semantic Search</a> infrastructure, and the data caching layer and loading of data in KMail itself have seen significant work as well. Notable work has taken place to improve support for the PostgreSQL database. More information and details on performance-related changes can be found in these links:\n"
"<ul> \n"
"<li>Storage Optimizations: <a href='http://www.progdan.cz/2013/11/kde-pim-sprint-report/'>sprint report</a>;</li>"
" \n"
"<li>speed up and size reduction of database: <a href='http://lists.kde.org/?l=kde-pim&amp;m=138496023016075&amp;w=2'>mailing list</a>;</li>"
"\n"
"<li>optimization in access of folders: <a href='https://git.reviewboard.kde.org/r/113918/'>review board</a>;</li>"
"\n"
"</ul>"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:84
msgid "Okular Refines User Interface"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:86
msgid "This release of the Okular document reader brings a number of improvements. You can now open multiple PDF files in one Okular instance thanks to tab support. There is a new Magnifier mouse mode and the DPI of the current screen is used for PDF rendering, improving the look of documents. A new Play button is included in presentation mode and there are improvements to Find and Undo/Redo actions."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:91
msgid "Kate introduces improved statusbar, animated bracket matching, enhanced plugins"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:93
msgid "The latest version of the advanced text editor Kate introduces <a href='http://kate-editor.org/2013/11/06/animated-bracket-matching-in-kate-part/'>animated bracket matching</a>, changes to make <a href='http://dot.kde.org/2014/01/20/kde-commit-digest-5th-january-2014'>AltGr-enabled keyboards work in vim mode</a> and a series of improvements in the Kate plugins, especially in the area of Python support and the <a href='http://kate-editor.org/2014/03/16/coming-in-4-13-improvements-in-the-build-plugin/'>build plugin</a>. There is a new, much <a href='http://kate-editor.org/2014/01/23/katekdevelop-sprint-status-bar-take-2/'>improved status bar</a> which enables direct actions like changing the indent settings, encoding and highlighting, a new tab bar in each view, code completion support for <a href='http://kate-editor.org/2014/02/20/lumen-a-code-completion-plugin-for-the-d-programming-language/'>the D programming language</a> and <a href='http://kate-editor.org/2014/02/02/katekdevelop-sprint-wrap-up/'>much more</a>. The team has <a href='http://kate-editor.org/2014/03/18/kate-whats-cool-and-what-should-be-improved/'>asked for feedback on what to improve in Kate</a> and is shifting some of its attention to a Frameworks 5 port."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:96
msgid "Miscellaneous features all over"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:98
msgid "Konsole brings some additional flexibility by allowing custom stylesheets to control tab bars. Profiles can now store desired column and row sizes. See more <a href='http://blogs.kde.org/2014/03/16/konsole-new-features-213'>here</a>."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:102
msgid "Umbrello makes it possible to duplicate diagrams and introduces intelligent context menus which adjust their contents to the selected widgets. Undo support and visual properties have been improved as well. Gwenview <a href='http://agateau.com/2013/12/12/whats-new-in-gwenview-4.12/'>introduces RAW preview support</a>."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:108
msgid "The sound mixer KMix introduced remote control via the DBUS inter-process communication protocol (<a href='http://kmix5.wordpress.com/2013/12/28/kmix-dbus-remote-control/'>details</a>), additions to the sound menu and a new configuration dialog (<a href='http://kmix5.wordpress.com/2013/12/23/352/'>details</a>), and a series of bug fixes and smaller improvements."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:112
msgid "Dolphin's search interface has been modified to take advantage of the new search infrastructure and received further performance improvements. For details, read this <a href='http://freininghaus.wordpress.com/2013/12/12/a-brief-history-of-dolphins-performance-and-memory-usage'>overview of optimization work during the last year</a>."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:116
msgid "KHelpcenter adds alphabetical sorting for modules and category reorganization to make it easier to use."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:118
msgid "Games and educational applications"
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:120
msgid "KDE's game and educational applications have received many updates in this release. KDE's jigsaw puzzle application, Palapeli, has gained <a href='http://techbase.kde.org/Schedules/KDE4/4.13_Feature_Plan#kdegames'>nifty new features</a> that make solving large puzzles (up to 10,000 pieces) much easier for those who are up to the challenge. KNavalBattle shows enemy ship positions after the game ends so that you can see where you went wrong."
msgstr ""
#. +> trunk
#: announcements/4.13/applications.php:126
msgid "KDE's Educational applications have gained new features. KStars gains a scripting interface via D-BUS and can use the astrometry.net web services API to optimize memory usage. Cantor has gained syntax highlighting in its script editor and its Scilab and Python 2 backends are now supported in the editor. Educational mapping and navigation tool Marble now includes the positions of the <a href='http://kovalevskyy.tumblr.com/post/71835769570/news-from-marble-introducing-sun-and-the-moon'>Sun, Moon</a> and <a href='http://kovalevskyy.tumblr.com/post/72073986685/news-from-marble-planets'>planets</a> and enables <a href='http://ematirov.blogspot.ch/2014/01/tours-and-movie-capture-in-marble.html'>capturing movies during virtual tours</a>. Bicycle routing is improved with the addition of cyclestreets.net support. Nautical miles are now supported and clicking a <a href='http://en.wikipedia.org/wiki/Geo_URI'>Geo URI</a> will now open Marble."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:6
msgid "KDE Software Compilation 4.13"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:26
msgid "The KDE Plasma Workspaces 4.13"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:33
msgid "The KDE Community proudly announces the latest major updates to KDE Applications delivering new features and fixes. Major improvements are made to KDE's Semantic Search technology, benefiting many applications. With Plasma Workspaces and the KDE Development Platform frozen and receiving only long term support, those teams are focusing on the transition to Frameworks 5. This release is translated into 53 languages; more languages are expected to be added in subsequent monthly minor bugfix releases."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:40
msgid "The KDE Applications 4.13"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:42
msgid "The latest major updates to the KDE Applications are delivering new features and fixes. Kontact (the personal information manager) has been the subject of intense activity, benefiting from the improvements to KDE's Semantic Search technology and bringing new features. Document viewer Okular and advanced text editor Kate have gotten interface-related and feature improvements. In the education and game areas, we introduce the new foreign speech trainer Artikulate; Marble (the desktop globe) gets support for Sun, Moon, planets, bicycle routing and nautical miles. Palapeli (the jigsaw puzzle application) has leaped to unprecedented new dimensions and capabilities. <a href='https://www.kde.org/announcements/4.13/applications.php'>read the announcement</a>."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:45
msgid "The KDE Development Platform 4.13"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:45
msgid "KDE Development Platform 4.13 Introduces Improved Semantic Search"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:47
msgid "The KDE Development Platform libraries are frozen and receive only bugfixes and minor improvements. The upgrade in the version number for the Development Platform is only for packaging convenience. All bug fixes and minor features developed since the release of Applications and Development Platform 4.11 have been included. The only major change in this release is the introduction of an improved Semantic Search, which brings better performance and reliability to searching on the Linux Desktop."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:50
msgid "Development of the next generation KDE Development Platform—called KDE Frameworks 5—is in beta stage. Read <a href='http://dot.kde.org/2013/09/25/frameworks-5'>this article</a> to find out what is coming and <a href='https://www.kde.org/announcements/'>see here</a> for the latest announcements."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:52
msgid "Improved Semantic Search"
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:54
msgid "The major new addition to the KDE Development Platform is the <a href='http://dot.kde.org/2014/02/24/kdes-next-generation-semantic-search'>next generation Semantic Search</a>. To maintain compatibility, this is included as a new component rather than a replacement for the previous Semantic Search. Applications need to be ported to the new search component; most KDE Applications have already been ported. Downstream distributions can decide whether or not to ship the deprecated Semantic Search alongside the new version."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:57
msgid "The improvements to search bring significant benefits in terms of faster, more relevant results, greater stability, lower resource usage and less data storage. The upgrade requires a one-time database migration that will take a few minutes of increased processing power."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:65
msgid ""
"KDE e.V.'s new <a\n"
"href='https://relate.kde.org/civicrm/contribute/transact?reset=1&amp;id=5'>Supporting Member program</a> is\n"
"now open. For &euro;25 a quarter you can ensure the international\n"
"community of KDE continues to grow making world class Free\n"
"Software."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:76
msgid "KDE encourages people to spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, twitter, identi.ca. Upload screenshots to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with &quot;KDE&quot;. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the 4.13 releases of KDE software."
msgstr ""
#. +> trunk
#: announcements/4.13/index.php:79
msgid "You can discuss this release on <a href='http://dot.kde.org/2014/04/16/kde-releases-applications-and-development-platform-413'>our news site</a>."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:6
msgid "KDE Software Compilation 4.14"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:25
msgid "August 20, 2014"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:29
msgid "This release is dedicated to Volker Lanz, a long time KDE member who passed away last April. Volker was the author and maintainer of KDE Partition Manager, and a regular IRC participant (Torch) providing user support and being active in the KDE Community."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:37
msgid "The KDE Community announces the latest major updates to KDE Applications delivering primarily improvements and bugfixes. Plasma Workspaces and the KDE Development Platform are frozen and receiving only long term support; those teams are focused on the transition to Plasma 5 and Frameworks 5."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:44
msgid "In the past, KDE has jointly released the three major divisions of KDE software—Plasma Workspaces, KDE Development Platform and KDE Applications. The KDE Development Platform has been reworked into KDE Frameworks. The monolithic libraries that comprise the Development Platform are now independent, cross platform modules (KDE Frameworks 5) that are available to all Qt developers. Plasma Workspaces has been moved to a new technology foundation based on Qt5 and KDE Frameworks 5. With the 3 major KDE software components moving at different paces, their release schedules are now separated. For the most part, 4.14 involves KDE Applications."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:46
msgid "Development Platform/KDE Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:47
msgid "The <a href='%1'>modular Frameworks structure</a> will have widespread benefits for KDE software. In addition, Frameworks is a substantial <a href='%2'>contribution to the Qt ecosystem</a> by making KDE technology available to all Qt developers. <a href='%3'>Inqlude, the Qt library archive</a> simplifies the search for Qt libraries, while the <a href='%4'>alpha release</a> of the <a href='%5'>Inqlude tool</a> offers a command line interface for accessing Inqlude."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:49
msgid "Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:50
msgid "<a href='%1'>Plasma 5</a> was recently released after 3 years of work; it is on its own release schedule with feature releases every three months and bugfix releases in the intervening months. The Plasma team has built a solid foundation that will support Plasma Workspaces for many years."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:53
msgid "KDE Applications"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:54
msgid "KDE Applications 4.14 is not about lots of &quot;new and improved stuff&quot;. Many KDE developers are focused on the Next Experience (Plasma 5) or porting to KDE Frameworks (based on <a href='%1'>Qt5</a>). Mostly, the 4.14 release is needed by aspects of our workflow (such as translations). This release offers more software stability, with little emphasis on new and less-proven stuff."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:57
msgid "There are over 200 actively maintained <a href='%1'>KDE applications</a>. Many of them are listed in the <a href='%2'>KDE userbase</a>. Wikipedia also has another <a href='%3'>list of KDE applications</a>."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:61
msgid "Most previous releases had highlights of new features and prominent applications. This gave some people the impression that KDE developers favored new-and-shiny over quality, which is not true. So for this announcement of the 4.14 Release, developers were asked for details—small, incremental improvements and bugfixes that might not even be noticeable to most users. These are the kinds of tasks that most developers work on, the kinds of tasks that allow beginners to make meaningful, mostly invisible contributions. Here are a few examples of the kinds of improvements that KDE developers have made in this release:"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:65
msgid "Support for SOCKS5 proxy in ICQ protocol (before only HTTP type was supported)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:66
msgid "Support for using system proxy settings in ICQ protocol"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:67
msgid "Support for audio calls (both protocols Google libjingle and real jingle) for *all* <a href='%1'>jabber</a> accounts, enabled by default"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:68
msgid "Updated libiris library from upstream which implements jabber/xmpp protocol in kopete"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:69
msgid "Contact property custom name and support for preferred display name type, making it possible to distinguish and choose between custom names stored on a server list and contact custom/nick name"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:70
msgid "Wrap PGP-signed or encrypted messages into <a href='%1'>XEP-0027</a> XML block instead of the normal body of message"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:71
msgid "Show full range of jabber priorities in account config dialog"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:77
msgid "New <a href='%1'>Lua backend</a>"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:78
msgid "<a href='%1'>UTF-8</a> on LaTeX entries"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:79
msgid "Add CTRL+Space as an alternative default code completion"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:80
msgid "Support to plot extension in Python 2 backend"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:81
msgid "Support to linear algebra extension in Python 2 backend"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:82
msgid "Support to packaging extension in Sage, Octave backends"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:83
msgid "Support to autorun scripts in Python 2, Scilab, Octave, Sage, Maxima, Qalculate and KAlgebra backends"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:85
msgid "<a href='%1'>Kanagram</a> got a new QML <a href='%2'>User Interface and some features</a>."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:86
msgid "<a href='%1'>Okular</a> got bugfixes, small features and internal refactoring"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:89
msgid "New highlighting rules for languages; bugfixes and improvements to existing languages"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:90
msgid "Improved VI mode"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:91
msgid "Comment blocks can be folded automatically to save screen space"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:92
msgid "Improved support and auto-generation of dark system color schemes"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:93
msgid "Multiple bug fixes"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:97
msgid "UML2 ports on components"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:98
msgid "UML2 interface ball and socket notation"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:99
msgid "Improved C++ import (map declarations to correct namespace)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:100
msgid "Crash fixes in all language importers"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:101
msgid "Improved loading of <a href='%1'>Rose models</a>: Added support for controlled units and class diagrams"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:102
msgid "Support for loading <a href='%1'>ArgoUML</a> files (without diagrams)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:103
msgid "Support for loading <a href='%1'>Embarcadero</a> describe files (without diagrams)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:104
msgid "Ada now can generate multiple classes per package (<a href='%1'>bugfix</a>)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:105
msgid "New &quot;Find in diagram&quot; function (<a href='%1'>bugfix</a>)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:106
msgid "Stabilized positions of activity pins (<a href='%1'>bugfix</a>)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:107
msgid "Fixed sluggish UI reaction in state diagram (<a href='%1'>bugfix</a>)"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:108
msgid "Crash fixes: <a href='%1'>bugfix</a>, <a href='%2'>bugfix</a>, <a href='%3'>bugfix</a>"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:110
msgid "<a href='%1'>Dolphin</a> has mostly bug fixes and small changes such as:"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:112
msgid "Highlighting of the current item in the Places Panel is prettier."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:113
msgid "&quot;Free space&quot; notification in the status bar is now always up-to-date in all windows and views."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:114
msgid "Refactoring of the huge class that represents Dolphin's main window has been started to make the code more maintainable and easier to understand."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:118
msgid "Dolphin now shows thumbnails of .gpx, .kml and other file types supported by Marble"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:119
msgid "<a href='%1'>KML</a> improvements: The list of supported KML features has been extended"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:120
msgid "The new political vector map now shows governmental boundaries in different colors; a <a href='%1'>Google Summer of Code</a> project by Abhinav Gangwar."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:122
msgid "Many, many bugfixes"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:129
msgid ""
"KDE e.V.'s <a\n"
"href='%1'>Supporting Member program</a> is\n"
"open. For &euro;25 a quarter you can ensure the international\n"
"community of KDE continues to grow making world class Free\n"
"Software."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:134
msgid "You can also make a one time donation at <a href='%1'>our donations page</a>."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:138 announcements/announce-4.12.2.php:38
#: announcements/announce-4.12.3.php:38 announcements/announce-4.12.4.php:39
#: announcements/announce-4.12.5.php:39 announcements/announce-4.13.1.php:46
#: announcements/announce-4.13.2.php:48 announcements/announce-4.13.3.php:48
#: announcements/announce-4.14.1.php:48 announcements/announce-4.14.2.php:48
#: announcements/announce-4.14.3.php:48
msgid "Installing %1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:142 announcements/announce-4.12.2.php:42
#: announcements/announce-4.12.3.php:42 announcements/announce-4.12.4.php:43
#: announcements/announce-4.12.5.php:43 announcements/announce-4.13.1.php:50
#: announcements/announce-4.13.2.php:52 announcements/announce-4.13.3.php:52
#: announcements/announce-4.14.1.php:52 announcements/announce-4.14.2.php:52
#: announcements/announce-4.14.3.php:52
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of %1 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:147 announcements/announce-4.12.2.php:47
#: announcements/announce-4.12.3.php:47 announcements/announce-4.12.4.php:48
#: announcements/announce-4.12.5.php:48 announcements/announce-4.13.1.php:55
#: announcements/announce-4.13.2.php:57 announcements/announce-4.13.3.php:57
#: announcements/announce-4.14.1.php:57 announcements/announce-4.14.2.php:57
#: announcements/announce-4.14.3.php:57
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/%1.php#binary'>%1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:151 announcements/announce-4.12.2.php:51
#: announcements/announce-4.12.3.php:51 announcements/announce-4.12.4.php:52
#: announcements/announce-4.12.5.php:52 announcements/announce-4.13.1.php:59
#: announcements/announce-4.13.2.php:61 announcements/announce-4.13.3.php:61
#: announcements/announce-4.14.1.php:61 announcements/announce-4.14.2.php:61
#: announcements/announce-4.14.3.php:61
msgid "Compiling %1"
msgstr ""
#. +> trunk
#: announcements/4.14/index.php:155 announcements/announce-4.12.2.php:55
#: announcements/announce-4.12.3.php:55 announcements/announce-4.12.4.php:56
#: announcements/announce-4.12.5.php:56 announcements/announce-4.13.1.php:63
#: announcements/announce-4.13.2.php:65 announcements/announce-4.13.3.php:65
#: announcements/announce-4.14.1.php:65 announcements/announce-4.14.2.php:65
#: announcements/announce-4.14.3.php:65
msgid "The complete source code for %1 may be <a href='http://download.kde.org/stable/%1/src/'>freely downloaded</a>. Instructions on compiling and installing %1 are available from the <a href='/info/%1.php'>%1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:4
msgid "KDE Ships March Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:15
msgid "March 5, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the first in a series of monthly stabilization updates to the 4.10 series. 4.10.1 updates bring many bugfixes and translation updates on top of the 4.10 release and are recommended updates for everyone running the initial 4.10 releases. As this release only contains bugfixes and translation updates, it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:17
msgid "The over 100 recorded bugfixes include improvements to the Personal Information Management suite Kontact, the Window Manager KWin, and others. KDE's Development Platform has received a number of updates that affect multiple applications. The changes are listed on <a href='%1'>KDE's issue tracker</a>. For a detailed list of changes that went into 4.10.1, you can browse the Subversion and Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:19
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.10.1.php'>4.10.1 Info Page</a>. If you want to find out more about the 4.10 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.10/'>4.10 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:24 announcements/announce-4.10.1.php:26
#: announcements/announce-4.10.2.php:24 announcements/announce-4.10.2.php:26
#: announcements/announce-4.10.3.php:24 announcements/announce-4.10.3.php:26
#: announcements/announce-4.10.4.php:24 announcements/announce-4.10.4.php:26
#: announcements/announce-4.10.5.php:24 announcements/announce-4.10.5.php:26
msgid "KDE's Dolphin File Manager"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:31
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.10.1/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:39
msgid "Installing 4.10.1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:43
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.10.1 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:48
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.10.1.php#binary'>4.10.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:52
msgid "Compiling 4.10.1"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:56
msgid "The complete source code for 4.10.1 may be <a href='http://download.kde.org/stable/4.10.1/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.1 are available from the <a href='/info/4.10.1.php'>4.10.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:60 announcements/announce-4.10.2.php:60
#: announcements/announce-4.10.3.php:60 announcements/announce-4.10.4.php:60
#: announcements/announce-4.10.5.php:60
#: announcements/announce-4.11-beta1.php:81
#: announcements/announce-4.11-beta2.php:81
#: announcements/announce-4.11-rc1.php:81
#: announcements/announce-4.11-rc2.php:83 announcements/announce-4.11.1.php:62
#: announcements/announce-4.11.2.php:62 announcements/announce-4.11.3.php:62
#: announcements/announce-4.11.4.php:62 announcements/announce-4.11.5.php:62
#: announcements/announce-4.12-beta1.php:61
#: announcements/announce-4.12-beta2.php:61
#: announcements/announce-4.12-beta3.php:61
#: announcements/announce-4.12-rc.php:61 announcements/announce-4.12.1.php:59
#: announcements/announce-4.12.2.php:59 announcements/announce-4.12.3.php:59
#: announcements/announce-4.12.4.php:60 announcements/announce-4.12.5.php:60
#: announcements/announce-4.13-beta1.php:57
#: announcements/announce-4.13-beta2.php:57
#: announcements/announce-4.13-beta3.php:57
#: announcements/announce-4.13-rc.php:57 announcements/announce-4.13.1.php:39
#: announcements/announce-4.13.2.php:41 announcements/announce-4.13.3.php:41
#: announcements/announce-4.14-beta1.php:53
#: announcements/announce-4.14-beta2.php:53
#: announcements/announce-4.14-beta3.php:53
#: announcements/announce-4.14-rc.php:53 announcements/announce-4.14.1.php:41
#: announcements/announce-4.14.2.php:41 announcements/announce-4.14.3.php:41
#: announcements/announce-applications-14.12-beta1.php:47
#: announcements/announce-applications-14.12-beta2.php:47
#: announcements/announce-applications-14.12-beta3.php:47
#: announcements/announce-applications-14.12-rc.php:47
#: announcements/announce-applications-14.12.0.php:84
#: announcements/announce-applications-14.12.1.php:62
#: announcements/announce-applications-14.12.2.php:62
#: announcements/announce-applications-14.12.3.php:62
#: announcements/announce-applications-15.04-beta1.php:47
#: announcements/announce-applications-15.04-beta2.php:47
#: announcements/announce-applications-15.04-beta3.php:47
#: announcements/announce-applications-15.04-rc.php:47
#: announcements/announce-applications-15.04.0.php:81
#: announcements/announce-applications-15.04.1.php:62
#: announcements/announce-applications-15.04.2.php:62
#: announcements/announce-applications-15.04.3.php:62
#: announcements/announce-applications-15.08-beta.php:47
#: announcements/announce-applications-15.08-rc.php:47
#: announcements/announce-applications-15.08.0.php:107
#: announcements/announce-applications-15.08.1.php:62
#: announcements/announce-applications-15.08.2.php:62
#: announcements/announce-applications-15.08.3.php:62
#: announcements/announce-applications-15.12-beta.php:47
#: announcements/announce-applications-15.12-rc.php:47
#: announcements/announce-applications-15.12.0.php:159
#: announcements/announce-applications-15.12.1.php:62
#: announcements/announce-applications-15.12.2.php:62
#: announcements/announce-applications-15.12.3.php:62
#: announcements/announce-applications-16.04-beta.php:51
#: announcements/announce-applications-16.04-rc.php:47
#: announcements/announce-applications-16.04.0.php:156
#: announcements/announce-applications-16.04.1.php:62
#: announcements/announce-applications-16.04.2.php:62
#: announcements/announce-applications-16.04.3.php:62
#: announcements/announce-applications-16.08-beta.php:51
#: announcements/announce-applications-16.08-rc.php:51
#: announcements/announce-applications-16.08.0.php:118
#: announcements/announce-applications-16.08.1.php:62
#: announcements/announce-applications-16.08.2.php:62
#: announcements/announce-applications-16.08.3.php:62
#: announcements/announce-applications-16.12-beta.php:51
#: announcements/announce-applications-16.12-rc.php:51
#: announcements/announce-applications-16.12.0.php:159
#: announcements/announce-applications-16.12.1.php:66
#: announcements/announce-applications-16.12.2.php:62
#: announcements/announce-applications-16.12.3.php:62
#: announcements/announce-applications-17.04-beta.php:51
#: announcements/announce-applications-17.04-rc.php:51
#: announcements/announce-applications-17.04.0.php:152
#: announcements/announce-applications-17.04.1.php:62
#: announcements/announce-applications-17.04.2.php:62
#: announcements/announce-applications-17.04.3.php:62
#: announcements/announce-applications-17.08-beta.php:51
#: announcements/announce-applications-17.08-rc.php:51
#: announcements/announce-applications-17.08.0.php:126
#: announcements/announce-applications-17.08.1.php:62
#: announcements/announce-applications-17.08.2.php:70
#: announcements/announce-applications-17.08.3.php:70
#: announcements/announce-applications-17.12-beta.php:51
#: announcements/announce-applications-17.12-rc.php:51
#: announcements/announce-applications-17.12.0.php:129
#: announcements/announce-applications-17.12.1.php:66
#: announcements/announce-frameworks5-alpha.php:50
#: announcements/announce-frameworks5-alpha2.php:50
#: announcements/announce-frameworks5-beta1.php:61
#: announcements/announce-frameworks5-beta3.php:51
#: announcements/announce-plasma-2014.6-alpha1.php:43
#: announcements/announce-plasma-next-beta1.php:178
#: announcements/kde-frameworks-5.0.php:118
#: announcements/kde-frameworks-5.1.php:91
#: announcements/kde-frameworks-5.10.0.php:220
#: announcements/kde-frameworks-5.11.0.php:290
#: announcements/kde-frameworks-5.12.0.php:271
#: announcements/kde-frameworks-5.13.0.php:364
#: announcements/kde-frameworks-5.14.0.php:324
#: announcements/kde-frameworks-5.15.0.php:404
#: announcements/kde-frameworks-5.16.0.php:452
#: announcements/kde-frameworks-5.17.0.php:249
#: announcements/kde-frameworks-5.18.0.php:280
#: announcements/kde-frameworks-5.19.0.php:335
#: announcements/kde-frameworks-5.2.0.php:179
#: announcements/kde-frameworks-5.20.0.php:353
#: announcements/kde-frameworks-5.21.0.php:373
#: announcements/kde-frameworks-5.22.0.php:301
#: announcements/kde-frameworks-5.23.0.php:355
#: announcements/kde-frameworks-5.24.0.php:386
#: announcements/kde-frameworks-5.25.0.php:377
#: announcements/kde-frameworks-5.26.0.php:352
#: announcements/kde-frameworks-5.27.0.php:339
#: announcements/kde-frameworks-5.28.0.php:375
#: announcements/kde-frameworks-5.29.0.php:350
#: announcements/kde-frameworks-5.3.0.php:225
#: announcements/kde-frameworks-5.30.0.php:350
#: announcements/kde-frameworks-5.31.0.php:291
#: announcements/kde-frameworks-5.32.0.php:287
#: announcements/kde-frameworks-5.33.0.php:264
#: announcements/kde-frameworks-5.34.0.php:299
#: announcements/kde-frameworks-5.35.0.php:277
#: announcements/kde-frameworks-5.36.0.php:269
#: announcements/kde-frameworks-5.37.0.php:357
#: announcements/kde-frameworks-5.38.0.php:326
#: announcements/kde-frameworks-5.39.0.php:337
#: announcements/kde-frameworks-5.4.0.php:207
#: announcements/kde-frameworks-5.40.0.php:307
#: announcements/kde-frameworks-5.41.0.php:389
#: announcements/kde-frameworks-5.42.0.php:427
#: announcements/kde-frameworks-5.5.0.php:246
#: announcements/kde-frameworks-5.6.0.php:241
#: announcements/kde-frameworks-5.7.0.php:341
#: announcements/kde-frameworks-5.8.0.php:221
#: announcements/kde-frameworks-5.9.0.php:242
#: announcements/kirigami-1.1.php:87 announcements/plasma-5.0-rc.php:72
#: announcements/plasma-5.0.1.php:95 announcements/plasma-5.0.2.php:95
#: announcements/plasma-5.0.95.php:138 announcements/plasma-5.1.1.php:115
#: announcements/plasma-5.1.2.php:98 announcements/plasma-5.1.95.php:162
#: announcements/plasma-5.1/index.php:164 announcements/plasma-5.10.0.php:310
#: announcements/plasma-5.10.1.php:186 announcements/plasma-5.10.2.php:186
#: announcements/plasma-5.10.3.php:194 announcements/plasma-5.10.4.php:187
#: announcements/plasma-5.10.5.php:183 announcements/plasma-5.10.95.php:273
#: announcements/plasma-5.11.0.php:279 announcements/plasma-5.11.1.php:185
#: announcements/plasma-5.11.2.php:186 announcements/plasma-5.11.3.php:185
#: announcements/plasma-5.11.4.php:186 announcements/plasma-5.11.5.php:184
-#: announcements/plasma-5.11.95.php:447 announcements/plasma-5.2.0.php:189
-#: announcements/plasma-5.2.1.php:113 announcements/plasma-5.2.2.php:111
-#: announcements/plasma-5.2.95.php:237 announcements/plasma-5.3.0.php:261
-#: announcements/plasma-5.3.1.php:115 announcements/plasma-5.3.2.php:114
-#: announcements/plasma-5.3.95.php:235 announcements/plasma-5.4.0.php:255
-#: announcements/plasma-5.4.1.php:116 announcements/plasma-5.4.2.php:115
-#: announcements/plasma-5.4.3.php:116 announcements/plasma-5.4.95.php:223
-#: announcements/plasma-5.5.0.php:244 announcements/plasma-5.5.1.php:119
-#: announcements/plasma-5.5.2.php:119 announcements/plasma-5.5.3.php:115
-#: announcements/plasma-5.5.4.php:112 announcements/plasma-5.5.5.php:115
-#: announcements/plasma-5.5.95.php:241 announcements/plasma-5.6.0.php:267
-#: announcements/plasma-5.6.1.php:121 announcements/plasma-5.6.2.php:121
-#: announcements/plasma-5.6.3.php:121 announcements/plasma-5.6.4.php:121
-#: announcements/plasma-5.6.5.php:120 announcements/plasma-5.6.95.php:184
-#: announcements/plasma-5.7.0.php:179 announcements/plasma-5.7.1.php:122
-#: announcements/plasma-5.7.2.php:120 announcements/plasma-5.7.3.php:121
-#: announcements/plasma-5.7.4.php:121 announcements/plasma-5.7.5.php:121
-#: announcements/plasma-5.7.95.php:253 announcements/plasma-5.8.0.php:251
-#: announcements/plasma-5.8.1.php:122 announcements/plasma-5.8.2.php:120
-#: announcements/plasma-5.8.3.php:121 announcements/plasma-5.8.4.php:125
-#: announcements/plasma-5.8.5.php:121 announcements/plasma-5.8.6.php:175
-#: announcements/plasma-5.8.7.php:177 announcements/plasma-5.8.8.php:186
-#: announcements/plasma-5.8.95.php:230 announcements/plasma-5.9.0.php:226
-#: announcements/plasma-5.9.1.php:122 announcements/plasma-5.9.2.php:179
-#: announcements/plasma-5.9.3.php:175 announcements/plasma-5.9.4.php:176
-#: announcements/plasma-5.9.5.php:178 announcements/plasma-5.9.95.php:311
+#: announcements/plasma-5.11.95.php:447 announcements/plasma-5.12.0.php:181
+#: announcements/plasma-5.2.0.php:189 announcements/plasma-5.2.1.php:113
+#: announcements/plasma-5.2.2.php:111 announcements/plasma-5.2.95.php:237
+#: announcements/plasma-5.3.0.php:261 announcements/plasma-5.3.1.php:115
+#: announcements/plasma-5.3.2.php:114 announcements/plasma-5.3.95.php:235
+#: announcements/plasma-5.4.0.php:255 announcements/plasma-5.4.1.php:116
+#: announcements/plasma-5.4.2.php:115 announcements/plasma-5.4.3.php:116
+#: announcements/plasma-5.4.95.php:223 announcements/plasma-5.5.0.php:244
+#: announcements/plasma-5.5.1.php:119 announcements/plasma-5.5.2.php:119
+#: announcements/plasma-5.5.3.php:115 announcements/plasma-5.5.4.php:112
+#: announcements/plasma-5.5.5.php:115 announcements/plasma-5.5.95.php:241
+#: announcements/plasma-5.6.0.php:267 announcements/plasma-5.6.1.php:121
+#: announcements/plasma-5.6.2.php:121 announcements/plasma-5.6.3.php:121
+#: announcements/plasma-5.6.4.php:121 announcements/plasma-5.6.5.php:120
+#: announcements/plasma-5.6.95.php:184 announcements/plasma-5.7.0.php:179
+#: announcements/plasma-5.7.1.php:122 announcements/plasma-5.7.2.php:120
+#: announcements/plasma-5.7.3.php:121 announcements/plasma-5.7.4.php:121
+#: announcements/plasma-5.7.5.php:121 announcements/plasma-5.7.95.php:253
+#: announcements/plasma-5.8.0.php:251 announcements/plasma-5.8.1.php:122
+#: announcements/plasma-5.8.2.php:120 announcements/plasma-5.8.3.php:121
+#: announcements/plasma-5.8.4.php:125 announcements/plasma-5.8.5.php:121
+#: announcements/plasma-5.8.6.php:175 announcements/plasma-5.8.7.php:177
+#: announcements/plasma-5.8.8.php:186 announcements/plasma-5.8.95.php:230
+#: announcements/plasma-5.9.0.php:226 announcements/plasma-5.9.1.php:122
+#: announcements/plasma-5.9.2.php:179 announcements/plasma-5.9.3.php:175
+#: announcements/plasma-5.9.4.php:176 announcements/plasma-5.9.5.php:178
+#: announcements/plasma-5.9.95.php:311
#: announcements/plasma5.0-beta2/index.php:155
#: announcements/plasma5.0/index.php:188
msgid "Supporting KDE"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.1.php:64 announcements/announce-4.10.2.php:64
#: announcements/announce-4.10.3.php:64 announcements/announce-4.10.4.php:64
#: announcements/announce-4.10.5.php:64
#: announcements/announce-4.11-beta1.php:85
#: announcements/announce-4.11-beta2.php:85
#: announcements/announce-4.11-rc1.php:85
#: announcements/announce-4.11-rc2.php:87 announcements/announce-4.11.1.php:66
#: announcements/announce-4.11.2.php:66 announcements/announce-4.11.3.php:66
#: announcements/announce-4.11.4.php:66 announcements/announce-4.11.5.php:66
#: announcements/announce-4.12-beta1.php:65
#: announcements/announce-4.12-beta2.php:65
#: announcements/announce-4.12-beta3.php:65
#: announcements/announce-4.12-rc.php:65 announcements/announce-4.12.1.php:63
#: announcements/announce-4.12.2.php:63 announcements/announce-4.12.3.php:63
#: announcements/announce-4.12.4.php:64 announcements/announce-4.12.5.php:64
#: announcements/announce-4.13-beta1.php:61
#: announcements/announce-4.13-beta2.php:61
#: announcements/announce-frameworks5-alpha.php:54
#: announcements/announce-frameworks5-alpha2.php:54
#: announcements/announce-frameworks5-beta1.php:65
#: announcements/announce-frameworks5-beta3.php:55
#: announcements/announce-plasma-2014.6-alpha1.php:47
msgid "KDE is a <a href='http://www.gnu.org/philosophy/free-sw.html'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='/community/donations/'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our new <a href='http://jointhegame.kde.org/'>Join the Game</a> initiative. </p>"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:4
msgid "KDE Ships April Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:15
msgid "April 2, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the second in a series of monthly stabilization updates to the 4.10 series. 4.10.2 updates bring many bugfixes and translation updates on top of the 4.10 release and are recommended updates for everyone running the 4.10 release series. As this release only contains bugfixes and translation updates, it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:17
msgid "The over 100 recorded bugfixes include improvements to the Personal Information Management suite Kontact, the Window Manager KWin, and others. KDE's Development Platform has received a number of updates that affect multiple applications. The changes are listed on <a href='%1'>KDE's issue tracker</a>. For a detailed list of changes that went into 4.10.2, you can browse the Subversion and Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:19
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.10.2.php'>4.10.2 Info Page</a>. If you want to find out more about the 4.10 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.10/'>4.10 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:31
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.10.2/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:39
msgid "Installing 4.10.2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:43
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.10.2 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:48
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.10.2.php#binary'>4.10.2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:52
msgid "Compiling 4.10.2"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.2.php:56
msgid "The complete source code for 4.10.2 may be <a href='http://download.kde.org/stable/4.10.2/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.2 are available from the <a href='/info/4.10.2.php'>4.10.2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:4
msgid "KDE Ships May Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:15
msgid "May 7, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates continue the series of monthly stabilization updates to the 4.10 series. 4.10.3 updates bring many bugfixes and translation updates on top of the 4.10 release and are recommended updates for everyone running the 4.10 release series. As this release only contains bugfixes and translation updates, it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:17
msgid "The over 75 recorded bugfixes include improvements to the Personal Information Management suite Kontact, the Window Manager KWin, and others. The changes are listed on <a href='%1'>KDE's issue tracker</a>. For a detailed list of changes that went into 4.10.3, you can browse the Subversion and Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:19
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.10.3.php'>4.10.3 Info Page</a>. If you want to find out more about the 4.10 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.10/'>4.10 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:31
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.10.3/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:39
msgid "Installing 4.10.3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:43
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.10.3 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:48
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.10.3.php#binary'>4.10.3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:52
msgid "Compiling 4.10.3"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.3.php:56
msgid "The complete source code for 4.10.3 may be <a href='http://download.kde.org/stable/4.10.3/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.3 are available from the <a href='/info/4.10.3.php'>4.10.3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:4 announcements/announce-4.13.2.php:4
msgid "KDE Ships June Updates to Applications, Platform and Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:15
msgid "June 4, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates continue the series of monthly stabilization updates to the 4.10 series. 4.10.4 updates bring many bugfixes and translation updates on top of the 4.10 release and are recommended updates for everyone running the 4.10 release series. As this release only contains bugfixes and translation updates, it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:17
msgid "The over 50 recorded bugfixes include improvements to the Personal Information Management suite Kontact, the File Manager Dolphin, and others. The changes are listed on <a href='%1'>KDE's issue tracker</a>. For a detailed list of changes that went into 4.10.4, you can browse the Subversion and Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:19
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.10.4.php'>4.10.4 Info Page</a>. If you want to find out more about the 4.10 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.10/'>4.10 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:31
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.10.4/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:39
msgid "Installing 4.10.4 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:43
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.10.4 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:48
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.10.4.php#binary'>4.10.4 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:52
msgid "Compiling 4.10.4"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.4.php:56
msgid "The complete source code for 4.10.4 may be <a href='http://download.kde.org/stable/4.10.4/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.4 are available from the <a href='/info/4.10.4.php'>4.10.4 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:4 announcements/announce-4.13.3.php:4
msgid "KDE Ships July Updates to Applications, Platform and Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:15
msgid "July 2, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates continue the series of monthly stabilization updates to the 4.10 series. 4.10.5 updates bring many bugfixes and translation updates on top of the 4.10 release and are recommended updates for everyone running the 4.10 release series. As this release only contains bugfixes and translation updates, it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:17
msgid "The over 30 recorded bugfixes include improvements to the Personal Information Management suite Kontact, the File Manager Dolphin, and others. The changes are listed on <a href='%1'>KDE's issue tracker</a>. For a detailed list of changes that went into 4.10.5, you can browse the Subversion and Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:19
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.10.5.php'>4.10.5 Info Page</a>. If you want to find out more about the 4.10 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.10/'>4.10 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:31
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.10.5/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:39
msgid "Installing 4.10.5 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:43
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.10.5 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:48
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.10.5.php#binary'>4.10.5 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:52
msgid "Compiling 4.10.5"
msgstr ""
#. +> trunk
#: announcements/announce-4.10.5.php:56
msgid "The complete source code for 4.10.5 may be <a href='http://download.kde.org/stable/4.10.5/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.5 are available from the <a href='/info/4.10.5.php'>4.10.5 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:4
msgid "KDE Ships First Beta of Plasma Workspaces, Applications and Platform 4.11"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:16
msgid "June 13, 2013. Today KDE released the beta of the new versions of Workspaces, Applications, and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:20
#: announcements/announce-4.11-beta1.php:22
#: announcements/announce-4.11-beta2.php:20
#: announcements/announce-4.11-beta2.php:22
#: announcements/announce-4.11-rc1.php:20
#: announcements/announce-4.11-rc1.php:22
#: announcements/announce-4.11-rc2.php:22
#: announcements/announce-4.11-rc2.php:24
msgid "New KWalletManager user interface; changes to Okular"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:26
#: announcements/announce-4.11-beta2.php:26
#: announcements/announce-4.11-rc1.php:26
#: announcements/announce-4.11-rc2.php:28
msgid "The 4.11 releases include the following highlights and more:"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:30
#: announcements/announce-4.11-beta2.php:30
#: announcements/announce-4.11-rc1.php:30
#: announcements/announce-4.11-rc2.php:32
msgid "<strong>Qt Quick in Plasma Workspaces</strong>—Qt Quick is continuing to make its way into the Plasma Workspaces. Plasma Quick, KDE&quot;s extensions on top of Qt Quick, allow deeper integration and more powerful apps and Plasma components. One of the central Plasma widgets, the task manager, was completely rewritten in Plasma Quick. It got quite a few bug fixes on its way to the new QML version. The Battery widget was overhauled. It now shows information about all the batteries (e.g. mouse, keyboard) in a system. And the battery icons can now show a finer-grained load-status."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:34
#: announcements/announce-4.11-beta2.php:34
#: announcements/announce-4.11-rc1.php:34
#: announcements/announce-4.11-rc2.php:36
msgid "<strong>Faster Nepomuk indexing</strong>—The Nepomuk semantic engine received massive performance optimizations (e.g., reading data is 6 or more times faster). Indexing happens in two stages: the first stage retrieves general information (such as file type and name) immediately; additional information like MP3 tags, author information and similar is extracted in a second, somehow slower stage. Metadata display is now much faster. In addition, the Nepomuk backup and restore system was improved. The system also got new indexers for documents like odt or docx."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:38
#: announcements/announce-4.11-beta2.php:38
msgid "<strong>Kontact improvements</strong>—Kontact got a faster indexer for its PIM data with improvements to Nepomuk, and a <a href='http://www.aegiap.eu/kdeblog/2013/05/news-in-kdepim-4-11-header-theme-33-grantlee-theme-generator-headerthemeeditor/'>new theme editor</a> for email headers. The way it handles email images now allows it to resize pictures on the fly. The whole KDE PIM suite got a lot of bug fixes, such as the way it deals with Google Calender resources. The PIM Import Wizard allows users to import settings and data from <a href='http://trojita.flaska.net/'>Trojita</a> (the Qt IMAP email client) and all other importers were improved as well."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:42
#: announcements/announce-4.11-beta2.php:42
#: announcements/announce-4.11-rc1.php:42
#: announcements/announce-4.11-rc2.php:44
msgid "<strong>KWin and Path to Wayland</strong>—Initial experimental support for Wayland was added to KWin. KWin also got many OpenGL improvements including support being added for creating an OpenGL 3.1 core context and robustness from using the new functionality provided by the GL_ARB_robustness extension. Numerous KWin optimizations are aimed at reducing CPU and memory overhead in the OpenGL backend. Some desktop effects have been re-written in JavaScript to ease maintenance."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:46
#: announcements/announce-4.11-beta2.php:46
#: announcements/announce-4.11-rc1.php:46
#: announcements/announce-4.11-rc2.php:48
msgid "More improvements can be found in <a href='http://techbase.kde.org/Schedules/KDE4/4.11_Feature_Plan'>the 4.11 Feature Plan</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:48
#: announcements/announce-4.11-beta2.php:48
msgid "With the large number of changes, the 4.11 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.11 team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:51
msgid "KDE Software Compilation 4.11 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:53
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.10.80/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:60
msgid "Installing 4.11 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:64
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11 Beta1 (internally 4.10.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:69
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_4.11_Beta_1_.284.10.80.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:73
msgid "Compiling 4.11 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta1.php:77
msgid "The complete source code for 4.11 Beta1 may be <a href='http://download.kde.org/unstable/4.10.80/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.80 are available from the <a href='/info/4.10.80.php'>4.10.80 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:4
msgid "KDE Ships Second Beta of Plasma Workspaces, Applications and Platform 4.11"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:16
msgid "June 27, 2013. Today KDE released the second beta of the new versions of Workspaces, Applications, and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:51
msgid "KDE Software Compilation 4.11 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:53
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.10.90/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:60
msgid "Installing 4.11 Beta2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:64
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11 Beta2 (internally 4.10.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:69
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_4.11_Beta_2_.284.10.90.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:73
msgid "Compiling 4.11 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-beta2.php:77
msgid "The complete source code for 4.11 Beta2 may be <a href='http://download.kde.org/unstable/4.10.90/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.90 are available from the <a href='/info/4.10.90.php'>4.10.90 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:4
msgid "KDE Ships First Release Candidate of Plasma Workspaces, Applications and Platform 4.11"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:16
msgid "July 16, 2013. Today KDE released the first release candidate of the new versions of Workspaces, Applications, and Development Platform."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:38
#: announcements/announce-4.11-rc2.php:40
msgid "<strong>Kontact improvements</strong>—Kontact got a faster indexer for its PIM data with improvements to Nepomuk, and a <a href='http://www.aegiap.eu/kdeblog/2013/05/news-in-kdepim-4-11-header-theme-33-grantlee-theme-generator-headerthemeeditor/'>new theme editor</a> for email headers. The way it handles email images now allows it to resize pictures on the fly. The whole KDE PIM suite got a lot of bug fixes, such as the way it deals with Google Calender resources. The PIM Import Wizard allows users to import settings and data from <a href='http://trojita.flaska.net/'>Trojita</a> (the Qt IMAP email client) and all other importers were improved as well."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:48
#: announcements/announce-4.11-rc2.php:50
msgid "With the large number of changes, the 4.11 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.11 team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:51
msgid "KDE Software Compilation 4.11 Release Candidate 1"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:53
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.10.95/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:60
msgid "Installing 4.11 Release Candidate 1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:64
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11 Release Candidate 1 (internally 4.10.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:69
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_4.11_RC_1_.284.10.95.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:73
msgid "Compiling 4.11 Release Candidate 1"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc1.php:77
msgid "The complete source code for 4.11 Release Candidate 1 may be <a href='http://download.kde.org/unstable/4.10.95/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.95 are available from the <a href='/info/4.10.95.php'>4.10.95 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:4
msgid "KDE Ships Second Release Candidate of Plasma Workspaces, Applications and Platform 4.11"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:18
msgid "July 25, 2013. Today KDE released the second release candidate of the new versions of Workspaces, Applications, and Development Platform."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:53
msgid "KDE Software Compilation 4.11 Release Candidate 2"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:55
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.10.97/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:62
msgid "Installing 4.11 Release Candidate 2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:66
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11 Release Candidate 2 (internally 4.10.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:71
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_4.11_RC_2_.284.10.97.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:75
msgid "Compiling 4.11 Release Candidate 2"
msgstr ""
#. +> trunk
#: announcements/announce-4.11-rc2.php:79
msgid "The complete source code for 4.11 Release Candidate 2 may be <a href='http://download.kde.org/unstable/4.10.97/src/'>freely downloaded</a>. Instructions on compiling and installing 4.10.97 are available from the <a href='/info/4.10.97.php'>4.10.97 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:4
msgid "KDE Ships September Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:15
msgid "September 3, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the first in a series of monthly stabilization updates to the 4.11 series. As was announced on the release, the workspaces will continue to receive updates for the next two years. This release only contains bugfixes and translation updates and will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:17
msgid "More than 70 recorded bugfixes include improvements to the Window Manager KWin, the file manager Dolphin, and others. Users can expect Plasma Desktop to start up faster, Dolphin to scroll smoother, and various applications and tools will use less memory. Improvements include the return of drag-and-drop from taskbar to pager, highlighting and color fixes in Kate and MANY little bugs squashed in the Kmahjongg game. There are many stability fixes and the usual additions of translations."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. For a detailed list of changes that went into 4.11.1, you can also browse the Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.11.1.php'>4.11.1 Info Page</a>. If you want to find out more about the 4.11 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.11/'>4.11 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.11.1/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:41
msgid "Installing 4.11.1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:45
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11.1 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:50
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.11.1.php#binary'>4.11.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:54
msgid "Compiling 4.11.1"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.1.php:58
msgid "The complete source code for 4.11.1 may be <a href='http://download.kde.org/stable/4.11.1/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.1 are available from the <a href='/info/4.11.1.php'>4.11.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:4
msgid "KDE Ships October Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:15
msgid "October 1, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the second in a series of monthly stabilization updates to the 4.11 series. As was announced on the release, the workspaces will continue to receive updates for the next two years. This release only contains bugfixes and translation updates and will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:17
msgid "More than 70 recorded bugfixes include improvements to the Window Manager KWin, the file manager Dolphin, the personal information management suite Kontact, and others. There are many stability fixes and the usual additions of translations."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. For a detailed list of changes that went into 4.11.2, you can also browse the Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.11.2.php'>4.11.2 Info Page</a>. If you want to find out more about the 4.11 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.11/'>4.11 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.11.2/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:41
msgid "Installing 4.11.2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:45
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11.2 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:50
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.11.2.php#binary'>4.11.2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:54
msgid "Compiling 4.11.2"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.2.php:58
msgid "The complete source code for 4.11.2 may be <a href='http://download.kde.org/stable/4.11.2/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.2 are available from the <a href='/info/4.11.2.php'>4.11.2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:4
msgid "KDE Ships November Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:15
msgid "November 5, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the third in a series of monthly stabilization updates to the 4.11 series. As was announced on the release, the workspaces will continue to receive updates for the next two years. This release only contains bugfixes and translation updates and will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:17
msgid "At least 120 recorded bugfixes include improvements to the Window Manager KWin, the file manager Dolphin, the personal information management suite Kontact, the UML tool Umbrello, and others. There are many stability fixes and the usual additions of translations."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. For a detailed list of changes that went into 4.11.3, you can also browse the Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.11.3.php'>4.11.3 Info Page</a>. If you want to find out more about the 4.11 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.11/'>4.11 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.11.3/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:41
msgid "Installing 4.11.3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:45
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11.3 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:50
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.11.3.php#binary'>4.11.3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:54
msgid "Compiling 4.11.3"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.3.php:58
msgid "The complete source code for 4.11.3 may be <a href='http://download.kde.org/stable/4.11.3/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.3 are available from the <a href='/info/4.11.3.php'>4.11.3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:4
msgid "KDE Ships December Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:15
msgid "December 3, 2013. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the fourth in a series of monthly stabilization updates to the 4.11 series. As was announced on the release, the workspaces will continue to receive updates for the next two years. This release only contains bugfixes and translation updates and will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:17
msgid "At least 65 recorded bugfixes include improvements to the personal information management suite Kontact, the UML tool Umbrello, the window manager KWin, the web browser Konqueror, and others. There are many stability fixes."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. For a detailed list of changes that went into 4.11.4, you can also browse the Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.11.4.php'>4.11.4 Info Page</a>. If you want to find out more about the 4.11 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.11/'>4.11 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.11.4/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:41
msgid "Installing 4.11.4 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:45
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11.4 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:50
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.11.4.php#binary'>4.11.4 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:54
msgid "Compiling 4.11.4"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.4.php:58
msgid "The complete source code for 4.11.4 may be <a href='http://download.kde.org/stable/4.11.4/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.4 are available from the <a href='/info/4.11.4.php'>4.11.4 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:4
msgid "KDE Ships January Updates to Plasma Workspaces, Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:15
msgid "January 7, 2014. Today KDE released updates for its Workspaces, Applications and Development Platform. These updates are the fifth in a series of monthly stabilization updates to the 4.11 series. As was announced on the release, the workspaces will continue to receive updates until August 2015. This release only contains bugfixes and translation updates and will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:17
msgid "Several recorded bugfixes include improvements to the personal information management suite Kontact, the UML tool Umbrello, the document viewer Okular, the web browser Konqueror, the file manager Dolphin, and others. The Plasma calculator can handle greek letters now and Okular can print pages with long titles. And Konqueror got better web fonts support through fixing a bug."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. For a detailed list of changes that went into 4.11.5, you can also browse the Git logs."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.11.5.php'>4.11.5 Info Page</a>. If you want to find out more about the 4.11 versions of KDE Workspaces, Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.11/'>4.11 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.11.5/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:41
msgid "Installing 4.11.5 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:45
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.11.5 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:50
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.11.5.php#binary'>4.11.5 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:54
msgid "Compiling 4.11.5"
msgstr ""
#. +> trunk
#: announcements/announce-4.11.5.php:58
msgid "The complete source code for 4.11.5 may be <a href='http://download.kde.org/stable/4.11.5/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.5 are available from the <a href='/info/4.11.5.php'>4.11.5 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:4
msgid "KDE Ships First Beta of Applications and Platform 4.12"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:15
msgid "November 7, 2013. Today KDE released the beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:19
#: announcements/announce-4.12-beta2.php:19
#: announcements/announce-4.12-beta3.php:19
#: announcements/announce-4.12-rc.php:19
msgid "This release does not include Plasma Workspaces since it was frozen for new features in 4.11.x. The Development Platform has been virtually frozen for a number of releases, so this release is mainly about improving and polishing Applications."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:23
#: announcements/announce-4.12-beta2.php:23
#: announcements/announce-4.12-beta3.php:23
#: announcements/announce-4.12-rc.php:23
msgid "A non complete list of improvements can be found in <a href='http://techbase.kde.org/Schedules/KDE4/4.12_Feature_Plan'>the 4.12 Feature Plan</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:27
#: announcements/announce-4.12-beta2.php:27
#: announcements/announce-4.12-beta3.php:27
msgid "With the large number of changes, the 4.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.12 team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:31
msgid "KDE Software Compilation 4.12 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:33
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.11.80/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:40
msgid "Installing 4.12 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:44
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.12 Beta1 (internally 4.11.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:49
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.12_Beta_1_.284.11.80.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:53
msgid "Compiling 4.12 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta1.php:57
msgid "The complete source code for 4.12 Beta1 may be <a href='http://download.kde.org/unstable/4.11.80/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.80 are available from the <a href='/info/4.11.80.php'>4.11.80 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:4
msgid "KDE Ships Second Beta of Applications and Platform 4.12"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:15
msgid "November 14, 2013. Today KDE released the second beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:31
msgid "KDE Software Compilation 4.12 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:33
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.11.90/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:40
msgid "Installing 4.12 Beta2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:44
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.12 Beta2 (internally 4.11.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:49
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.12_Beta_2_.284.11.90.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:53
msgid "Compiling 4.12 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta2.php:57
msgid "The complete source code for 4.12 Beta2 may be <a href='http://download.kde.org/unstable/4.11.90/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.90 are available from the <a href='/info/4.11.90.php'>4.11.90 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:4
msgid "KDE Ships Third Beta of Applications and Platform 4.12"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:15
msgid "November 21, 2013. Today KDE released the third beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:31
msgid "KDE Software Compilation 4.12 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:33
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.11.95/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:40
msgid "Installing 4.12 Beta3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:44
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.12 Beta3 (internally 4.11.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:49
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.12_Beta_3_.284.11.95.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:53
msgid "Compiling 4.12 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-beta3.php:57
msgid "The complete source code for 4.12 Beta3 may be <a href='http://download.kde.org/unstable/4.11.95/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.95 are available from the <a href='/info/4.11.95.php'>4.11.95 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:4
msgid "KDE Ships Release Candidate of Applications and Platform 4.12"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:15
msgid "November 28, 2013. Today KDE released the release candidate of the new versions of Applications and Development Platform."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:27
msgid "With the large number of changes, the 4.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.12 team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:31
msgid "KDE Software Compilation 4.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:33
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.11.97/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:40
msgid "Installing 4.12 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:44
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.12 Release Candidate (internally 4.11.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:49
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.12_RC_.284.11.97.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:53
msgid "Compiling 4.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.12-rc.php:57
msgid "The complete source code for 4.12 Release Candidate may be <a href='http://download.kde.org/unstable/4.11.97/src/'>freely downloaded</a>. Instructions on compiling and installing 4.11.97 are available from the <a href='/info/4.11.97.php'>4.11.97 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:4
msgid "KDE Ships January Updates to Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:15
msgid "January 14, 2014. Today KDE released updates for its Applications and Development Platform, the first in a series of monthly stabilization updates to the 4.12 series. Starting with the 4.12.2 releases, the KDE Workspaces 4.11.x releases will be synchronized with those of KDE Applications and Development Platform 4.12.x. This release contains only bugfixes and translation updates; it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:17
msgid "More than 45 recorded bugfixes include improvements to the personal information management suite Kontact, the UML tool Umbrello, the document viewer Okular, the web browser Konqueror, the file manager Dolphin, and others. Umbrello standardizes the global, diagram and widget settings and adds a clone diagram function. Dolphin gets a bug fixed that slowed down pdf preview under certain circumstances. In Kontact, several bugs and regressions were fixed in the KOrganizer, Akregator and KMail components."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:19
msgid "A more complete <a href='%1'>list</a> of changes can be found in KDE's issue tracker. Browse the Git logs for a detailed list of changes in 4.12.1."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:21
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/4.12.1.php'>4.12.1 Info Page</a>. If you want to find out more about the 4.12 versions of KDE Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.12/'>4.12 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:30
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/4.12.1/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:38
msgid "Installing 4.12.1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:42
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.12.1 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:47
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='/info/4.12.1.php#binary'>4.12.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:51
msgid "Compiling 4.12.1"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.1.php:55
msgid "The complete source code for 4.12.1 may be <a href='http://download.kde.org/stable/4.12.1/src/'>freely downloaded</a>. Instructions on compiling and installing 4.12.1 are available from the <a href='/info/4.12.1.php'>4.12.1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:4
msgid "KDE Ships February Updates to Applications, Platform and Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:15
msgid "February 4, 2014. Today KDE released updates for its Applications and Development Platform, the second in a series of monthly stabilization updates to the 4.12 series. This release also includes an updated Plasma Workspaces 4.11.6. This release contains only bugfixes and translation updates; it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:17
msgid "More than 20 recorded bugfixes include improvements to the personal information management suite Kontact, the UML tool Umbrello, the document viewer Okular, the web browser Konqueror, the file manager Dolphin, and others."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:19 announcements/announce-4.12.3.php:19
msgid "A more complete <a href='%1'>list of changes</a> can be found in KDE's issue tracker. Browse the Git logs for a detailed list of changes in %2."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:21 announcements/announce-4.12.3.php:21
#: announcements/announce-4.12.4.php:22 announcements/announce-4.12.5.php:22
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/%1.php'>%1 Info Page</a>. If you want to find out more about the 4.12 versions of KDE Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.12/'>4.12 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.2.php:30 announcements/announce-4.12.3.php:30
#: announcements/announce-4.12.4.php:31 announcements/announce-4.12.5.php:31
#: announcements/announce-4.13.1.php:31 announcements/announce-4.13.2.php:33
#: announcements/announce-4.13.3.php:33 announcements/announce-4.14.1.php:33
#: announcements/announce-4.14.2.php:33 announcements/announce-4.14.3.php:33
msgid ""
"KDE software, including all libraries and applications, is available for free under Open Source licenses. KDE's software can be obtained as source code and various binary formats from <a\n"
"href='http://download.kde.org/stable/%1/'>http://download.kde.org</a> or from any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.3.php:4
msgid "KDE Ships March Updates to Applications, Platform and Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.3.php:15
msgid "March 4, 2014. Today KDE released updates for its Applications and Development Platform, the third in a series of monthly stabilization updates to the 4.12 series. This release also includes <a href='%1'>an updated Plasma Workspaces 4.11.7</a>. This release contains only bugfixes and translation updates; it will be a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.3.php:17
msgid "More than 30 recorded bugfixes include improvements to the personal information management suite Kontact, the UML tool Umbrello, the image viewer Gwenview, the web browser Konqueror, the file manager Dolphin, and others."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.4.php:4 announcements/announce-4.12.5.php:4
msgid "KDE Ships April Updates to Applications, Platform and Plasma Workspaces"
msgstr ""
#. +> trunk
#: announcements/announce-4.12.4.php:15
msgid "April 1, 2014. Today KDE released <a href='%1'>updates for its Applications and Development Platform</a>, the fourth in a series of monthly stabilization updates to the 4.12 series. This release also includes an <a href='%2'>updated Plasma Workspaces 4.11.8</a>. Both releases contain only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.4.php:18
msgid "More than 20 recorded bugfixes include improvements to Personal  Information Management suite Kontact, Umbrello UML Modeller, image viewer Gwenview, web browser Konqueror, file manager Dolphin and others."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.4.php:20 announcements/announce-4.12.5.php:20
#: announcements/announce-4.13.1.php:20 announcements/announce-4.13.2.php:20
#: announcements/announce-4.13.3.php:22 announcements/announce-4.14.1.php:20
#: announcements/announce-4.14.2.php:20 announcements/announce-4.14.3.php:20
msgid "A more complete <a href='%1'>list of changes</a> can be found in KDE's issue tracker."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.5.php:15
msgid "April 29, 2014. Today KDE released <a href='%1'>updates for its Applications and Development Platform</a>, the fifth in a series of monthly stabilization updates to the 4.12 series. This release also includes an <a href='%2'>updated Plasma Workspaces 4.11.9</a>. Both releases contain only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.12.5.php:18
msgid "Almost 10 recorded bugfixes to mainly KWin and plasma and including others."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:4
msgid "KDE Ships First Beta of Applications and Platform 4.13"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:15
msgid "March 6, 2014. Today KDE released the beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:19
#: announcements/announce-4.13-beta2.php:19
#: announcements/announce-4.13-beta3.php:19
#: announcements/announce-4.13-rc.php:19
msgid "A non complete list of improvements can be found in <a href='http://techbase.kde.org/Schedules/KDE4/4.13_Feature_Plan'>the 4.13 Feature Plan</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:23
#: announcements/announce-4.13-beta2.php:23
#: announcements/announce-4.13-beta3.php:23
msgid "With the large number of changes, the 4.13 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.13 team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:27
msgid "KDE Software Compilation 4.13 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:29
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.12.80/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:36
msgid "Installing 4.13 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:40
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.13 Beta1 (internally 4.12.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:45
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.13_Beta_1_.284.12.80.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:49
msgid "Compiling 4.13 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta1.php:53
msgid "The complete source code for 4.13 Beta1 may be <a href='http://download.kde.org/unstable/4.12.80/src/'>freely downloaded</a>. Instructions on compiling and installing 4.12.80 are available from the <a href='/info/4.12.80.php'>4.12.80 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:4
msgid "KDE Ships Second Beta of Applications and Platform 4.13"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:15
msgid "March 13, 2014. Today KDE released the second beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:27
msgid "KDE Software Compilation 4.13 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:29
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.12.90/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:36
msgid "Installing 4.13 Beta2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:40
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.13 Beta2 (internally 4.12.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:45
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.13_Beta_2_.284.12.90.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:49
msgid "Compiling 4.13 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta2.php:53
msgid "The complete source code for 4.13 Beta2 may be <a href='http://download.kde.org/unstable/4.12.90/src/'>freely downloaded</a>. Instructions on compiling and installing 4.12.90 are available from the <a href='/info/4.12.90.php'>4.12.90 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:4
msgid "KDE Ships Third Beta of Applications and Platform 4.13"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:15
msgid "March 20, 2014. Today KDE released the third beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:27
msgid "KDE Software Compilation 4.13 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:29
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.12.95/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:36
msgid "Installing 4.13 Beta3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:40
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.13 Beta3 (internally 4.12.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:45
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.13_Beta_3_.284.12.95.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:49
msgid "Compiling 4.13 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:53
msgid "The complete source code for 4.13 Beta3 may be <a href='http://download.kde.org/unstable/4.12.95/src/'>freely downloaded</a>. Instructions on compiling and installing 4.12.95 are available from the <a href='/info/4.12.95.php'>4.12.95 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-beta3.php:61
#: announcements/announce-4.13-rc.php:61
msgid "KDE is a <a href='%1'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='%2'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our new <a href='%3'>Join the Game</a> initiative. </p>"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:4
msgid "KDE Ships Release Candidate of Applications and Platform 4.13"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:15
msgid "March 27, 2014. Today KDE released the release candidate of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:23
msgid "With the large number of changes, the 4.13 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.13 team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:27
msgid "KDE Software Compilation 4.13 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:29
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.12.97/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:36
msgid "Installing 4.13 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:40
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.13 Release Candidate (internally 4.12.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:45
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.13_RC_.284.12.97.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:49
msgid "Compiling 4.13 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.13-rc.php:53
msgid "The complete source code for 4.13 Release Candidate may be <a href='http://download.kde.org/unstable/4.12.97/src/'>freely downloaded</a>. Instructions on compiling and installing 4.12.97 are available from the <a href='/info/4.12.97.php'>4.12.97 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.1.php:4
msgid "KDE Ships May Updates to Applications and Platform"
msgstr ""
#. +> trunk
#: announcements/announce-4.13.1.php:15
msgid "May 13, 2014. Today KDE released updates for its Applications and Development Platform, the first in a series of monthly stabilization updates to the 4.13 series. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.1.php:18
msgid "More than 50 recorded bugfixes include improvements to Personal Information Management suite Kontact, Umbrello UML Modeller, the Desktop search functionality, web browser Konqueror and the file manager Dolphin."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.1.php:22 announcements/announce-4.13.2.php:24
#: announcements/announce-4.13.3.php:24
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/%1.php'>%1 Info Page</a>. If you want to find out more about the 4.13 versions of KDE Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.13/'>4.13 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.1.php:43 announcements/announce-4.13.2.php:45
#: announcements/announce-4.13.3.php:45 announcements/announce-4.14.1.php:45
#: announcements/announce-4.14.2.php:45 announcements/announce-4.14.3.php:45
#: announcements/kde-frameworks-5.0.php:121
#: announcements/kde-frameworks-5.1.php:94
#: announcements/kde-frameworks-5.10.0.php:223
#: announcements/kde-frameworks-5.11.0.php:293
#: announcements/kde-frameworks-5.12.0.php:274
#: announcements/kde-frameworks-5.13.0.php:367
#: announcements/kde-frameworks-5.14.0.php:327
#: announcements/kde-frameworks-5.15.0.php:407
#: announcements/kde-frameworks-5.16.0.php:455
#: announcements/kde-frameworks-5.17.0.php:252
#: announcements/kde-frameworks-5.18.0.php:283
#: announcements/kde-frameworks-5.19.0.php:338
#: announcements/kde-frameworks-5.2.0.php:182
#: announcements/kde-frameworks-5.20.0.php:356
#: announcements/kde-frameworks-5.21.0.php:376
#: announcements/kde-frameworks-5.22.0.php:304
#: announcements/kde-frameworks-5.23.0.php:358
#: announcements/kde-frameworks-5.24.0.php:389
#: announcements/kde-frameworks-5.25.0.php:380
#: announcements/kde-frameworks-5.26.0.php:355
#: announcements/kde-frameworks-5.27.0.php:342
#: announcements/kde-frameworks-5.28.0.php:378
#: announcements/kde-frameworks-5.29.0.php:353
#: announcements/kde-frameworks-5.3.0.php:228
#: announcements/kde-frameworks-5.30.0.php:353
#: announcements/kde-frameworks-5.31.0.php:294
#: announcements/kde-frameworks-5.32.0.php:290
#: announcements/kde-frameworks-5.33.0.php:267
#: announcements/kde-frameworks-5.34.0.php:302
#: announcements/kde-frameworks-5.35.0.php:280
#: announcements/kde-frameworks-5.36.0.php:272
#: announcements/kde-frameworks-5.37.0.php:360
#: announcements/kde-frameworks-5.38.0.php:329
#: announcements/kde-frameworks-5.39.0.php:340
#: announcements/kde-frameworks-5.4.0.php:210
#: announcements/kde-frameworks-5.40.0.php:310
#: announcements/kde-frameworks-5.41.0.php:392
#: announcements/kde-frameworks-5.42.0.php:430
#: announcements/kde-frameworks-5.5.0.php:249
#: announcements/kde-frameworks-5.6.0.php:244
#: announcements/kde-frameworks-5.7.0.php:344
#: announcements/kde-frameworks-5.8.0.php:224
#: announcements/kde-frameworks-5.9.0.php:245
msgid "KDE is a <a href='http://www.gnu.org/philosophy/free-sw.html'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='/community/donations/'>Donations page</a> for further information or become a KDE e.V. supporting member through our new <a href='https://relate.kde.org/civicrm/contribute/transact?id=5'>Join the Game</a> initiative.</p>"
msgstr ""
#. +> trunk
#: announcements/announce-4.13.2.php:15
msgid "June 10, 2014. Today KDE released updates for its Applications and Development Platform, the second in a series of monthly stabilization updates to the 4.13 series. This release also includes an <a href='https://bugs.kde.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=substring&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=2013-06-01&chfieldto=Now&chfield=cf_versionfixedin&chfieldvalue=4.11.10&cmdtype=doit&order=Bug+Number&field0-0-0=noop&type0-0-0=noop&value0-0-0='>updated Plasma Workspaces 4.11.10</a>. Both releases contain only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.2.php:18 announcements/announce-4.13.3.php:20
msgid "More than 40 recorded bugfixes include improvements to Personal Information Management suite Kontact, Umbrello UML Modeller, the Desktop search functionality, web browser Konqueror and the file manager Dolphin."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.2.php:22
msgid "Additional and noteworthy: this release of KDE Applications includes a number of important fixes for Kopete: a decrease in the exit time of Kopete with enabled statistics plugin, a fix for the compilation of jabber libjingle for non x86 architectures and another fix for voice call support in the jabber libjingle library. Without this last fix, voice calls worked only with the old Google Talk windows jingle client. Now after applying the patches it was tested with GMail web plugin, old Google Talk windows client, telepathy-gabble and other Kopete versions."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.3.php:15
msgid "July 15, 2014. Today KDE released <a href=\"http://www.kde.org/announcements/announce-4.13.3.php\">updates for its Applications and Development Platform</a>, the third in a series of monthly stabilization updates to the 4.13 series. This release also includes an <a href=\"https://bugs.kde.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=substring&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=2013-06-01&chfieldto=Now&chfield=cf_versionfixedin&chfieldvalue=4.11.11&cmdtype=doit&order=Bug+Number&field0-0-0=noop&type0-0-0=noop&value0-0-0=\">updated Plasma Workspaces 4.11.11</a>. Both releases contain only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.13.3.php:18
msgid "On the language front Farsi (Persian) reached the <a href=\"http://l10n.kde.org/stats/gui/stable-kde4/essential/\">essential criteria</a> and thus will be again part of this release. And once again Kopete has some important fixes: fixed formatting both plain and html messages when OTR plugin is enabled, loaded but not used for encrypting messages in chat window and fixed generating of html messages in jabber protocol."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:4
msgid "KDE Ships First Beta of Applications and Platform 4.14"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:15
msgid "July 10, 2014. Today KDE released the beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:19
#: announcements/announce-4.14-beta2.php:19
#: announcements/announce-4.14-beta3.php:19
msgid "With the large number of changes, the 4.14 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.14 team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:23
msgid "KDE Software Compilation 4.14 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:25
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.13.80/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:32
msgid "Installing 4.14 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:36
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.14 Beta1 (internally 4.13.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:41
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.14_Beta_1_.284.13.80.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:45
msgid "Compiling 4.14 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:49
msgid "The complete source code for 4.14 Beta1 may be <a href='http://download.kde.org/unstable/4.13.80/src/'>freely downloaded</a>. Instructions on compiling and installing 4.13.80 are available from the <a href='/info/4.13.80.php'>4.13.80 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta1.php:57
#: announcements/announce-4.14-beta2.php:57
#: announcements/announce-4.14-beta3.php:57
#: announcements/announce-4.14-rc.php:57
#: announcements/announce-applications-14.12-beta1.php:51
#: announcements/announce-applications-14.12-beta2.php:51
#: announcements/announce-applications-14.12-beta3.php:51
#: announcements/announce-applications-14.12-rc.php:51
#: announcements/announce-applications-14.12.0.php:88
#: announcements/announce-applications-14.12.1.php:66
#: announcements/announce-applications-14.12.2.php:66
#: announcements/announce-applications-14.12.3.php:66
#: announcements/announce-applications-15.04-beta1.php:51
#: announcements/announce-applications-15.04-beta2.php:51
#: announcements/announce-applications-15.04-beta3.php:51
#: announcements/announce-applications-15.04-rc.php:51
#: announcements/announce-applications-15.04.0.php:85
#: announcements/announce-applications-15.04.1.php:66
#: announcements/announce-applications-15.04.2.php:66
#: announcements/announce-applications-15.04.3.php:66
#: announcements/announce-applications-15.08-beta.php:51
#: announcements/announce-applications-15.08-rc.php:51
#: announcements/announce-applications-15.08.0.php:111
#: announcements/announce-applications-15.08.1.php:66
#: announcements/announce-applications-15.08.2.php:66
#: announcements/announce-applications-15.08.3.php:66
#: announcements/announce-applications-15.12-beta.php:51
#: announcements/announce-applications-15.12-rc.php:51
#: announcements/announce-applications-15.12.0.php:163
#: announcements/announce-applications-15.12.1.php:66
#: announcements/announce-applications-15.12.2.php:66
#: announcements/announce-applications-15.12.3.php:66
#: announcements/announce-applications-16.04-beta.php:55
#: announcements/announce-applications-16.04-rc.php:51
#: announcements/announce-applications-16.04.0.php:160
#: announcements/announce-applications-16.04.1.php:66
#: announcements/announce-applications-16.04.2.php:66
#: announcements/announce-applications-16.04.3.php:66
#: announcements/announce-applications-16.08-beta.php:55
#: announcements/announce-applications-16.08-rc.php:55
#: announcements/announce-applications-16.08.0.php:122
#: announcements/announce-applications-16.08.1.php:66
#: announcements/announce-applications-16.08.2.php:66
#: announcements/announce-applications-16.08.3.php:66
#: announcements/announce-applications-16.12-beta.php:55
#: announcements/announce-applications-16.12-rc.php:55
#: announcements/announce-applications-16.12.0.php:163
#: announcements/announce-applications-16.12.1.php:70
#: announcements/announce-applications-16.12.2.php:66
#: announcements/announce-applications-16.12.3.php:66
#: announcements/announce-applications-17.04-beta.php:55
#: announcements/announce-applications-17.04-rc.php:55
#: announcements/announce-applications-17.04.0.php:156
#: announcements/announce-applications-17.04.1.php:66
#: announcements/announce-applications-17.04.2.php:66
#: announcements/announce-applications-17.04.3.php:66
#: announcements/announce-applications-17.08-beta.php:55
#: announcements/announce-applications-17.08-rc.php:55
#: announcements/announce-applications-17.08.0.php:130
#: announcements/announce-applications-17.08.1.php:66
#: announcements/announce-applications-17.08.2.php:74
#: announcements/announce-applications-17.08.3.php:74
#: announcements/announce-applications-17.12-beta.php:55
#: announcements/announce-applications-17.12-rc.php:55
#: announcements/announce-applications-17.12.0.php:133
#: announcements/announce-applications-17.12.1.php:70
msgid "KDE is a <a href='http://www.gnu.org/philosophy/free-sw.html'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='/community/donations/'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our new <a href='https://relate.kde.org/civicrm/contribute/transact?id=5'>Join the Game</a> initiative. </p>"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:4
msgid "KDE Ships Second Beta of Applications and Platform 4.14"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:15
msgid "July 17, 2014. Today KDE released the second beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:23
msgid "KDE Software Compilation 4.14 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:25
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.13.90/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:32
msgid "Installing 4.14 Beta2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:36
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.14 Beta2 (internally 4.13.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:41
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.14_Beta_2_.284.13.90.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:45
msgid "Compiling 4.14 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta2.php:49
msgid "The complete source code for 4.14 Beta2 may be <a href='http://download.kde.org/unstable/4.13.90/src/'>freely downloaded</a>. Instructions on compiling and installing 4.13.90 are available from the <a href='/info/4.13.90.php'>4.13.90 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:4
msgid "KDE Ships Third Beta of Applications and Platform 4.14"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:15
msgid "July 24, 2014. Today KDE released the third beta of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:23
msgid "KDE Software Compilation 4.14 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:25
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.13.95/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:32
msgid "Installing 4.14 Beta3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:36
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.14 Beta3 (internally 4.13.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:41
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.14_Beta_3_.284.13.95.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:45
msgid "Compiling 4.14 Beta3"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-beta3.php:49
msgid "The complete source code for 4.14 Beta3 may be <a href='http://download.kde.org/unstable/4.13.95/src/'>freely downloaded</a>. Instructions on compiling and installing 4.13.95 are available from the <a href='/info/4.13.95.php'>4.13.95 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:4
msgid "KDE Ships Release Candidate of Applications and Platform 4.14"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:15
msgid "July 31, 2014. Today KDE released the Release Candidate of the new versions of Applications and Development Platform. With API, dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:19
msgid "With the large number of changes, the 4.14 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the 4.14 team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:23
msgid "KDE Software Compilation 4.14 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:25
msgid "The KDE Software Compilation, including all its libraries and its applications, is available for free under Open Source licenses. KDE's software can be obtained in source and various binary formats from <a href='http://download.kde.org/unstable/4.13.97/'>http://download.kde.org</a> or with any of the <a href='http://www.kde.org/download/distributions.php'>major GNU/Linux and UNIX systems</a> shipping today."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:32
msgid "Installing 4.14 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:36
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of 4.14 Release Candidate (internally 4.13.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:41
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages#KDE_SC_4.14_RC_.284.13.97.29'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:45
msgid "Compiling 4.14 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-4.14-rc.php:49
msgid "The complete source code for 4.14 Release Candidate may be <a href='http://download.kde.org/unstable/4.13.97/src/'>freely downloaded</a>. Instructions on compiling and installing 4.13.97 are available from the <a href='/info/4.13.97.php'>4.13.97 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.1.php:4
msgid "KDE Ships Applications and Platform 4.14.1"
msgstr ""
#. +> trunk
#: announcements/announce-4.14.1.php:15
msgid "September 16, 2014. Today KDE released updates for its Applications and Development Platform, the first in a series of monthly stabilization updates to the 4.14 series. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.1.php:18
msgid "More than 50 recorded bugfixes include improvements to Personal Information Management suite Kontact, Umbrello UML Modeller, the document viewer Okular, the vocabulary learning application Parley and the file manager Dolphin."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.1.php:22 announcements/announce-4.14.2.php:22
msgid "This release also includes <a href='%1'>Plasma Workspaces %2</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.1.php:24
msgid "To download source code or packages to install go to the <a href='http://www.kde.org/info/%1.php'>%1 Info Page</a>. If you want to find out more about the 4.14 versions of KDE Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.14/'>4.14 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.2.php:4
msgid "KDE Ships Applications and Platform 4.14.2"
msgstr ""
#. +> trunk
#: announcements/announce-4.14.2.php:15
msgid "October 14, 2014. Today KDE released updates for its Applications and Development Platform, the second in a series of monthly stabilization updates to the 4.14 series. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.2.php:18
msgid "More than 35 recorded bugfixes include improvements to E-Mail client KMail, Umbrello UML Modeller, the document viewer Okular, the plot drawing application Kmplot and the file manager Dolphin."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.2.php:24 announcements/announce-4.14.3.php:24
msgid "To download source code or packages to install go to the <a href='/info/%1.php'>%1 Info Page</a>. If you want to find out more about the 4.14 versions of KDE Applications and Development Platform, please refer to the <a href='http://www.kde.org/announcements/4.14/'>4.14 release notes</a>."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.3.php:4
msgid "KDE Ships Applications and Platform 4.14.3"
msgstr ""
#. +> trunk
#: announcements/announce-4.14.3.php:15
msgid "November 11, 2014. Today KDE released updates for its Applications and Development Platform, the third in a series of monthly stabilization updates to the 4.14 series. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.3.php:18
msgid "More than 50 recorded bugfixes include improvements to E-Mail client KMail, Umbrello UML Modeller, the document viewer Okular, the RSS application Akregator, the file manager Dolphin and more."
msgstr ""
#. +> trunk
#: announcements/announce-4.14.3.php:22
msgid "This release also includes Plasma Workspaces %2. The only change for this version is <a href='%1'>CVE-2014-8651</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:4
msgid "KDE Ships First Beta of KDE Applications 14.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:15
msgid "November 6, 2014. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 14.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:26
msgid "Installing KDE Applications 14.12 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 14.12 Beta1 (internally 14.11.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:35
#: announcements/announce-applications-14.12-beta2.php:35
#: announcements/announce-applications-14.12-beta3.php:35
#: announcements/announce-applications-14.12-rc.php:35
#: announcements/announce-applications-15.04-beta1.php:35
#: announcements/announce-applications-15.04-beta2.php:35
#: announcements/announce-applications-15.04-beta3.php:35
#: announcements/announce-applications-15.04-rc.php:35
#: announcements/announce-applications-15.08-beta.php:35
#: announcements/announce-applications-15.08-rc.php:35
#: announcements/announce-applications-15.12-beta.php:35
#: announcements/announce-applications-15.12-rc.php:35
#: announcements/announce-applications-16.04-beta.php:39
#: announcements/announce-applications-16.04-rc.php:35
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_SC/Binary_Packages'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:39
msgid "Compiling KDE Applications 14.12 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta1.php:43
msgid "The complete source code for KDE Applications 14.12 Beta1 may be <a href='http://download.kde.org/unstable/applications/14.11.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-14.11.80.php'>KDE Applications Beta 1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:4
msgid "KDE Ships Second Beta of KDE Applications 14.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:15
msgid "November 13, 2014. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:19
#: announcements/announce-applications-14.12-beta3.php:19
msgid "With various applications being based on KDE Frameworks 5, the KDE Applications 14.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:26
msgid "Installing KDE Applications 14.12 Beta2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 14.12 Beta2 (internally 14.11.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:39
msgid "Compiling KDE Applications 14.12 Beta2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta2.php:43
msgid "The complete source code for KDE Applications 14.12 Beta2 may be <a href='http://download.kde.org/unstable/applications/14.11.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-14.11.90.php'>KDE Applications Beta 2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:4
msgid "KDE Ships Third Beta of KDE Applications 14.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:15
msgid "November 20, 2014. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:26
msgid "Installing KDE Applications 14.12 Beta 3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 14.12 Beta 3 (internally 14.11.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:39
msgid "Compiling KDE Applications 14.12 Beta 3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-beta3.php:43
msgid "The complete source code for KDE Applications 14.12 Beta 3 may be <a href='http://download.kde.org/unstable/applications/14.11.95/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-14.11.95.php'>KDE Applications Beta 3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 14.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:15
msgid "November 27, 2014. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:19
msgid "With various applications being based on KDE Frameworks 5, the KDE Applications 14.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:26
msgid "Installing KDE Applications 14.12 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 14.12 Release Candidate (internally 14.11.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:39
msgid "Compiling KDE Applications 14.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12-rc.php:43
msgid "The complete source code for KDE Applications 14.12 Release Candidate may be <a href='http://download.kde.org/unstable/applications/14.11.97/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-14.11.97.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:4
msgid "KDE Ships KDE Applications 14.12.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:15
msgid "December 17, 2014. Today KDE released KDE Applications 14.12. This release brings new features and bug fixes to more than a hundred applications. Most of these applications are based on the KDE Development Platform 4; some have been converted to the new <a href='%1'>KDE Frameworks 5</a>, a set of modularized libraries that are based on Qt5, the latest version of this popular cross-platform application framework."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:19
msgid "<a href='%1'>Libkface</a> is new in this release; it is a library to enable face detection and face recognition in photographs."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:23
msgid "The release includes the first KDE Frameworks 5-based versions of <a href='%1'>Kate</a> and <a href='%2'>KWrite</a>, <a href='%3'>Konsole</a>, <a href='%4'>Gwenview</a>, <a href='%5'>KAlgebra</a>, <a href='%6'>Kanagram</a>, <a href='%7'>KHangman</a>, <a href='%8'>Kig</a>, <a href='%9'>Parley</a>"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:25
msgid ", <a href='%1'>KApptemplate</a> and <a href='%2'>Okteta</a>. Some libraries are also ready for KDE Frameworks 5 use: analitza and libkeduvocdocument."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:29
msgid "The <a href='%1'>Kontact Suite</a> is now in Long Term Support in the 4.14 version while developers are using their new energy to port it to KDE Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:33
msgid "Some of the new features in this release include:"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:35
msgid "<a href='%1'>KAlgebra</a> has a new Android version thanks to KDE Frameworks 5 and is now able to <a href='%2'>print its graphs in 3D</a>"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:36
msgid "<a href='%1'>KGeography</a> has a new map for Bihar."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:37
msgid "The document viewer <a href='%1'>Okular</a> now has support for latex-synctex reverse searching in dvi and some small improvements in the ePub support."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:38
msgid "<a href='%1'>Umbrello</a> --the UML modeller-- has many new features too numerous to list here."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:42
#: announcements/announce-applications-14.12.1.php:28
#: announcements/announce-applications-14.12.2.php:28
#: announcements/announce-applications-14.12.3.php:28
#: announcements/announce-applications-15.04.0.php:43
#: announcements/announce-applications-15.04.1.php:28
#: announcements/announce-applications-15.04.2.php:28
#: announcements/announce-applications-15.04.3.php:28
#: announcements/announce-applications-15.08.0.php:69
#: announcements/announce-applications-15.08.1.php:28
#: announcements/announce-applications-15.08.2.php:28
#: announcements/announce-applications-15.08.3.php:28
#: announcements/announce-applications-15.12.0.php:121
#: announcements/announce-applications-15.12.1.php:28
#: announcements/announce-applications-15.12.2.php:28
#: announcements/announce-applications-15.12.3.php:28
#: announcements/announce-applications-16.04.0.php:118
#: announcements/announce-applications-16.04.1.php:28
#: announcements/announce-applications-16.04.2.php:28
#: announcements/announce-applications-16.04.3.php:28
#: announcements/announce-applications-16.08.0.php:80
#: announcements/announce-applications-16.08.1.php:28
#: announcements/announce-applications-16.08.2.php:28
#: announcements/announce-applications-16.08.3.php:28
#: announcements/announce-applications-16.12.0.php:121
#: announcements/announce-applications-16.12.1.php:32
#: announcements/announce-applications-16.12.2.php:28
#: announcements/announce-applications-16.12.3.php:28
#: announcements/announce-applications-17.04.1.php:28
#: announcements/announce-applications-17.04.2.php:28
#: announcements/announce-applications-17.04.3.php:28
#: announcements/announce-applications-17.08.1.php:28
#: announcements/announce-applications-17.08.2.php:36
#: announcements/announce-applications-17.08.3.php:36
#: announcements/announce-applications-17.12.1.php:32
msgid "You can find the full list of changes <a href='%1'>here</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:46
msgid "The April release of KDE Applications 15.04 will include many new features as well as more applications based on the modular KDE Frameworks 5."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:50
#: announcements/announce-applications-14.12.1.php:32
#: announcements/announce-applications-14.12.2.php:32
#: announcements/announce-applications-14.12.3.php:32
#: announcements/announce-applications-15.04.0.php:47
#: announcements/announce-applications-15.04.1.php:32
#: announcements/announce-applications-15.04.2.php:32
#: announcements/announce-applications-15.04.3.php:32
#: announcements/announce-applications-15.08.0.php:73
#: announcements/announce-applications-15.08.1.php:32
#: announcements/announce-applications-15.08.2.php:32
#: announcements/announce-applications-15.08.3.php:32
#: announcements/announce-applications-15.12.0.php:125
#: announcements/announce-applications-15.12.1.php:32
#: announcements/announce-applications-15.12.2.php:32
#: announcements/announce-applications-15.12.3.php:32
#: announcements/announce-applications-16.04.0.php:122
#: announcements/announce-applications-16.04.1.php:32
#: announcements/announce-applications-16.04.2.php:32
#: announcements/announce-applications-16.04.3.php:32
#: announcements/announce-applications-16.08.0.php:84
#: announcements/announce-applications-16.08.1.php:32
#: announcements/announce-applications-16.08.2.php:32
#: announcements/announce-applications-16.08.3.php:32
#: announcements/announce-applications-16.12.0.php:125
#: announcements/announce-applications-16.12.1.php:36
#: announcements/announce-applications-16.12.2.php:32
#: announcements/announce-applications-16.12.3.php:32
#: announcements/announce-applications-17.04.0.php:110
#: announcements/announce-applications-17.04.1.php:32
#: announcements/announce-applications-17.04.2.php:32
#: announcements/announce-applications-17.04.3.php:32
#: announcements/announce-applications-17.08.0.php:84
#: announcements/announce-applications-17.08.1.php:32
#: announcements/announce-applications-17.08.2.php:40
#: announcements/announce-applications-17.08.3.php:40
#: announcements/announce-applications-17.12.0.php:87
#: announcements/announce-applications-17.12.1.php:36
msgid "Spread the Word"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:53
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 14.12 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:57
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 14.12 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:63
msgid "Installing KDE Applications 14.12 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:67
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 14.12 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:72
#: announcements/announce-applications-14.12.1.php:50
#: announcements/announce-applications-14.12.2.php:50
#: announcements/announce-applications-14.12.3.php:50
#: announcements/announce-applications-15.04.0.php:69
#: announcements/announce-applications-15.04.1.php:50
#: announcements/announce-applications-15.04.2.php:50
#: announcements/announce-applications-15.04.3.php:50
#: announcements/announce-applications-15.08.0.php:95
#: announcements/announce-applications-15.08.1.php:50
#: announcements/announce-applications-15.08.2.php:50
#: announcements/announce-applications-15.08.3.php:50
#: announcements/announce-applications-15.12.0.php:147
#: announcements/announce-applications-15.12.1.php:50
#: announcements/announce-applications-15.12.2.php:50
#: announcements/announce-applications-15.12.3.php:50
#: announcements/announce-applications-16.04.0.php:144
#: announcements/announce-applications-16.04.1.php:50
#: announcements/announce-applications-16.04.2.php:50
#: announcements/announce-applications-16.04.3.php:50
#: announcements/announce-applications-16.08.0.php:106
#: announcements/announce-applications-16.08.1.php:50
#: announcements/announce-applications-16.08.2.php:50
#: announcements/announce-applications-16.08.3.php:50
#: announcements/announce-applications-16.12.0.php:147
#: announcements/announce-applications-16.12.1.php:54
#: announcements/announce-applications-16.12.2.php:50
#: announcements/announce-applications-16.12.3.php:50
#: announcements/announce-applications-17.04.0.php:140
#: announcements/announce-applications-17.04.1.php:50
#: announcements/announce-applications-17.04.2.php:50
#: announcements/announce-applications-17.04.3.php:50
#: announcements/announce-applications-17.08.0.php:114
#: announcements/announce-applications-17.08.1.php:50
#: announcements/announce-applications-17.08.2.php:58
#: announcements/announce-applications-17.08.3.php:58
#: announcements/announce-applications-17.12.0.php:117
#: announcements/announce-applications-17.12.1.php:54
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/KDE_Applications/Binary_Packages'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:76
msgid "Compiling KDE Applications 14.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.0.php:80
msgid "The complete source code for KDE Applications 14.12 may be <a href='http://download.kde.org/stable/applications/14.12.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-14.12.0.php'>KDE Applications 14.12.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:4
msgid "KDE Ships KDE Applications 14.12.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:16
msgid "January 13, 2015. Today KDE released the first stability update for <a href='%1'>KDE Applications 14.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:20
msgid "More than 50 recorded bugfixes include improvements to the archiving tool Ark, Umbrello UML Modeller, the document viewer Okular, the pronunciation learning application Artikulate and remote desktop client KRDC."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:24
#: announcements/announce-applications-14.12.2.php:24
#: announcements/announce-applications-14.12.3.php:24
#: announcements/announce-applications-15.04.1.php:24
#: announcements/announce-applications-15.04.2.php:24
#: announcements/announce-applications-15.04.3.php:24
msgid "This release also includes Long Term Support versions of Plasma Workspaces %1, KDE Development Platform %2 and the Kontact Suite %2."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:35
#: announcements/announce-applications-14.12.2.php:35
#: announcements/announce-applications-14.12.3.php:35
#: announcements/announce-applications-15.04.1.php:35
#: announcements/announce-applications-15.04.2.php:35
#: announcements/announce-applications-15.04.3.php:35
#: announcements/announce-applications-15.08.1.php:35
#: announcements/announce-applications-15.08.2.php:35
#: announcements/announce-applications-15.08.3.php:35
#: announcements/announce-applications-15.12.1.php:35
#: announcements/announce-applications-15.12.2.php:35
#: announcements/announce-applications-15.12.3.php:35
#: announcements/announce-applications-16.04.1.php:35
#: announcements/announce-applications-16.04.2.php:35
#: announcements/announce-applications-16.04.3.php:35
#: announcements/announce-applications-16.08.1.php:35
#: announcements/announce-applications-16.08.2.php:35
#: announcements/announce-applications-16.08.3.php:35
#: announcements/announce-applications-16.12.1.php:39
#: announcements/announce-applications-16.12.2.php:35
#: announcements/announce-applications-16.12.3.php:35
#: announcements/announce-applications-17.04.1.php:35
#: announcements/announce-applications-17.04.2.php:35
#: announcements/announce-applications-17.04.3.php:35
#: announcements/announce-applications-17.08.1.php:35
#: announcements/announce-applications-17.08.2.php:43
#: announcements/announce-applications-17.08.3.php:43
#: announcements/announce-applications-17.12.1.php:39
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications %1 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%2'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:41
#: announcements/announce-applications-14.12.2.php:41
#: announcements/announce-applications-14.12.3.php:41
#: announcements/announce-applications-15.04.1.php:41
#: announcements/announce-applications-15.04.2.php:41
#: announcements/announce-applications-15.04.3.php:41
#: announcements/announce-applications-15.08.1.php:41
#: announcements/announce-applications-15.08.2.php:41
#: announcements/announce-applications-15.08.3.php:41
#: announcements/announce-applications-15.12.1.php:41
#: announcements/announce-applications-15.12.2.php:41
#: announcements/announce-applications-15.12.3.php:41
#: announcements/announce-applications-16.04.1.php:41
#: announcements/announce-applications-16.04.2.php:41
#: announcements/announce-applications-16.04.3.php:41
#: announcements/announce-applications-16.08.1.php:41
#: announcements/announce-applications-16.08.2.php:41
#: announcements/announce-applications-16.08.3.php:41
#: announcements/announce-applications-16.12.1.php:45
#: announcements/announce-applications-16.12.2.php:41
#: announcements/announce-applications-16.12.3.php:41
#: announcements/announce-applications-17.04.1.php:41
#: announcements/announce-applications-17.04.2.php:41
#: announcements/announce-applications-17.04.3.php:41
#: announcements/announce-applications-17.08.1.php:41
#: announcements/announce-applications-17.08.2.php:49
#: announcements/announce-applications-17.08.3.php:49
#: announcements/announce-applications-17.12.1.php:45
msgid "Installing KDE Applications %1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:45
#: announcements/announce-applications-14.12.2.php:45
#: announcements/announce-applications-14.12.3.php:45
#: announcements/announce-applications-15.04.1.php:45
#: announcements/announce-applications-15.04.2.php:45
#: announcements/announce-applications-15.04.3.php:45
#: announcements/announce-applications-15.08.1.php:45
#: announcements/announce-applications-15.08.2.php:45
#: announcements/announce-applications-15.08.3.php:45
#: announcements/announce-applications-15.12.1.php:45
#: announcements/announce-applications-15.12.2.php:45
#: announcements/announce-applications-15.12.3.php:45
#: announcements/announce-applications-16.04.1.php:45
#: announcements/announce-applications-16.04.2.php:45
#: announcements/announce-applications-16.04.3.php:45
#: announcements/announce-applications-16.08.1.php:45
#: announcements/announce-applications-16.08.2.php:45
#: announcements/announce-applications-16.08.3.php:45
#: announcements/announce-applications-16.12.1.php:49
#: announcements/announce-applications-16.12.2.php:45
#: announcements/announce-applications-16.12.3.php:45
#: announcements/announce-applications-17.04.1.php:45
#: announcements/announce-applications-17.04.2.php:45
#: announcements/announce-applications-17.04.3.php:45
#: announcements/announce-applications-17.08.1.php:45
#: announcements/announce-applications-17.08.2.php:53
#: announcements/announce-applications-17.08.3.php:53
#: announcements/announce-applications-17.12.1.php:49
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications %1 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:54
#: announcements/announce-applications-14.12.2.php:54
#: announcements/announce-applications-14.12.3.php:54
#: announcements/announce-applications-15.04.1.php:54
#: announcements/announce-applications-15.04.2.php:54
#: announcements/announce-applications-15.04.3.php:54
#: announcements/announce-applications-15.08.1.php:54
#: announcements/announce-applications-15.08.2.php:54
#: announcements/announce-applications-15.08.3.php:54
#: announcements/announce-applications-15.12.1.php:54
#: announcements/announce-applications-15.12.2.php:54
#: announcements/announce-applications-15.12.3.php:54
#: announcements/announce-applications-16.04.1.php:54
#: announcements/announce-applications-16.04.2.php:54
#: announcements/announce-applications-16.04.3.php:54
#: announcements/announce-applications-16.08.1.php:54
#: announcements/announce-applications-16.08.2.php:54
#: announcements/announce-applications-16.08.3.php:54
#: announcements/announce-applications-16.12.1.php:58
#: announcements/announce-applications-16.12.2.php:54
#: announcements/announce-applications-16.12.3.php:54
#: announcements/announce-applications-17.04.1.php:54
#: announcements/announce-applications-17.04.2.php:54
#: announcements/announce-applications-17.04.3.php:54
#: announcements/announce-applications-17.08.1.php:54
#: announcements/announce-applications-17.08.2.php:62
#: announcements/announce-applications-17.08.3.php:62
#: announcements/announce-applications-17.12.1.php:58
msgid "Compiling KDE Applications %1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.1.php:58
#: announcements/announce-applications-14.12.2.php:58
#: announcements/announce-applications-14.12.3.php:58
#: announcements/announce-applications-15.04.1.php:58
#: announcements/announce-applications-15.04.2.php:58
#: announcements/announce-applications-15.04.3.php:58
#: announcements/announce-applications-15.08.1.php:58
#: announcements/announce-applications-15.08.2.php:58
#: announcements/announce-applications-15.08.3.php:58
#: announcements/announce-applications-15.12.1.php:58
#: announcements/announce-applications-15.12.2.php:58
#: announcements/announce-applications-15.12.3.php:58
#: announcements/announce-applications-16.04.1.php:58
#: announcements/announce-applications-16.04.2.php:58
#: announcements/announce-applications-16.04.3.php:58
#: announcements/announce-applications-16.08.1.php:58
#: announcements/announce-applications-16.08.2.php:58
#: announcements/announce-applications-16.08.3.php:58
#: announcements/announce-applications-16.12.1.php:62
#: announcements/announce-applications-16.12.2.php:58
#: announcements/announce-applications-16.12.3.php:58
#: announcements/announce-applications-17.04.1.php:58
#: announcements/announce-applications-17.04.2.php:58
#: announcements/announce-applications-17.04.3.php:58
#: announcements/announce-applications-17.08.1.php:58
#: announcements/announce-applications-17.08.2.php:66
#: announcements/announce-applications-17.08.3.php:66
#: announcements/announce-applications-17.12.1.php:62
msgid "The complete source code for KDE Applications %1 may be <a href='%2'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='%3'>KDE Applications %1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.2.php:4
msgid "KDE Ships KDE Applications 14.12.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.2.php:16
msgid "February 3, 2015. Today KDE released the second stability update for <a href='%1'>KDE Applications 14.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.2.php:20
msgid "More than 20 recorded bugfixes include improvements to the anagram game Kanagram, Umbrello UML Modeller, the document viewer Okular and the virtual globe Marble."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.3.php:4
msgid "KDE Ships KDE Applications 14.12.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.3.php:16
msgid "March 3, 2015. Today KDE released the third stability update for <a href='%1'>KDE Applications 14.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-14.12.3.php:20
msgid "With 19 recorded bugfixes it also includes improvements to the anagram game Kanagram, Umbrello UML Modeller, the document viewer Okular and the geometry application Kig."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:4
msgid "KDE Ships First Beta of KDE Applications 15.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:15
msgid "March 6, 2015. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:19
#: announcements/announce-applications-15.04-beta2.php:19
#: announcements/announce-applications-15.04-beta3.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.04 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:26
msgid "Installing KDE Applications 15.04 Beta1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.04 Beta1 (internally 15.03.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:39
msgid "Compiling KDE Applications 15.04 Beta1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta1.php:43
msgid "The complete source code for KDE Applications 15.04 Beta1 may be <a href='http://download.kde.org/unstable/applications/15.03.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.03.80.php'>KDE Applications Beta 1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:4
msgid "KDE Ships Second Beta of KDE Applications 15.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:15
msgid "March 12, 2015. Today KDE released the second beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:26
msgid "Installing KDE Applications 15.04 Beta 2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.04 Beta 2 (internally 15.03.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:39
msgid "Compiling KDE Applications 15.04 Beta 2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta2.php:43
msgid "The complete source code for KDE Applications 15.04 Beta 2 may be <a href='http://download.kde.org/unstable/applications/15.03.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.03.90.php'>KDE Applications Beta 2 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:4
msgid "KDE Ships Third Beta of KDE Applications 15.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:15
msgid "March 19, 2015. Today KDE released the third beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:26
msgid "Installing KDE Applications 15.04 Beta 3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.04 Beta 3 (internally 15.03.95) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:39
msgid "Compiling KDE Applications 15.04 Beta 3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-beta3.php:43
msgid "The complete source code for KDE Applications 15.04 Beta 3 may be <a href='http://download.kde.org/unstable/applications/15.03.95/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.03.95.php'>KDE Applications Beta 3 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 15.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:15
msgid "March 26, 2015. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.04 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:26
msgid "Installing KDE Applications 15.04 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.04 Release Candidate (internally 15.03.97) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:39
msgid "Compiling KDE Applications 15.04 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04-rc.php:43
msgid "The complete source code for KDE Applications 15.04 Release Candidate may be <a href='http://download.kde.org/unstable/applications/15.03.97/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.03.97.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:4
msgid "KDE Ships KDE Applications 15.04.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:15
msgid "April 15, 2015. Today KDE released KDE Applications 15.04. With this release a total of 72 applications have been ported to <a href='%1'>KDE Frameworks 5</a>. The team is striving to bring the best quality to your desktop and these applications. So we're counting on you to send your feedback."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:19
msgid "With this release there are several new additions to the KDE Frameworks 5-based applications list, including <a href='%1'>KHangMan</a>, <a href='%2'>Rocs</a>, <a href='%3'>Cantor</a>, <a href='%4'>Kompare</a>, <a href='%5'>Kdenlive</a>, <a href='%6'>KDE Telepathy</a> and <a href='%7'>some KDE Games</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:23
msgid "Kdenlive is one of the best non-linear video editing software available. It recently finished its <a href='%1'>incubation process</a> to become an official KDE project and was ported to KDE Frameworks 5. The team behind this masterpiece decided that Kdenlive should be released together with KDE Applications. Some new features are the autosaving function of new projects and a fixed clip stabilization."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:27
msgid "KDE Telepathy is the tool for instant messaging. It was ported to KDE Frameworks 5 and Qt5 and is a new member of the KDE Applications releases. It is mostly complete, except the audio and video call user interface is still missing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:31
msgid "Where possible KDE uses existing technology as has been done with the new KAccounts which is also used in SailfishOS and Canonical's Unity. Within KDE Applications, it's currently used only by KDE Telepathy. But in the future, it will see wider usage by applications such as Kontact and Akonadi."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:35
msgid "In the <a href='%1'>KDE Education module</a>, Cantor got some new features around its Python support: a new Python 3 backend and new Get Hot New Stuff categories. Rocs has been turned upside down: the graph theory core has been rewritten, data structure separation removed and a more general graph document as central graph entity has been introduced as well as a major revisit of the scripting API for graph algorithms which now provides only one unified API. KHangMan was ported to QtQuick and given a fresh coat of paint in the process. And Kanagram received a new 2-player mode and the letters are now clickable buttons and can be typed like before."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:39
msgid "Besides the usual bug fixes <a href='%1'>Umbrello</a> got some usability and stability improvements this time. Furthermore the Find function can now be limited by category: class, interface, package, operations, or attributes."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:50
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 15.04 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:54
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 15.04 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:60
msgid "Installing KDE Applications 15.04 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:64
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.04 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:73
msgid "Compiling KDE Applications 15.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.0.php:77
msgid "The complete source code for KDE Applications 15.04 may be <a href='http://download.kde.org/stable/applications/15.04.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.04.0.php'>KDE Applications 15.04.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.1.php:4
msgid "KDE Ships KDE Applications 15.04.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.1.php:16
msgid "May 12, 2015. Today KDE released the first stability update for <a href='%1'>KDE Applications 15.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.1.php:20
msgid "More than 50 recorded bugfixes include improvements to kdelibs, kdepim, kdenlive, okular, marble and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.2.php:4
msgid "KDE Ships KDE Applications 15.04.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.2.php:16
msgid "June 2, 2015. Today KDE released the second stability update for <a href='%1'>KDE Applications 15.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.2.php:20
msgid "More than 30 recorded bugfixes include improvements to gwenview, kate, kdenlive, kdepim, konsole, marble, kgpg, kig, ktp-call-ui and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.3.php:4
msgid "KDE Ships KDE Applications 15.04.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.3.php:16
msgid "July 1, 2015. Today KDE released the third stability update for <a href='%1'>KDE Applications 15.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.04.3.php:20
msgid "More than 20 recorded bugfixes include improvements to kdenlive, kdepim, kopete, ktp-contact-list, marble, okteta and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:4
msgid "KDE Ships Beta of KDE Applications 15.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:15
msgid "July 28, 2015. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.08 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:26
msgid "Installing KDE Applications 15.08 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.08 Beta (internally 15.07.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:39
msgid "Compiling KDE Applications 15.08 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-beta.php:43
msgid "The complete source code for KDE Applications 15.08 Beta may be <a href='http://download.kde.org/unstable/applications/15.07.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.07.80.php'>KDE Applications Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 15.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:15
msgid "August 6, 2015. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.08 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:26
msgid "Installing KDE Applications 15.08 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.08 Release Candidate (internally 15.07.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:39
msgid "Compiling KDE Applications 15.08 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08-rc.php:43
msgid "The complete source code for KDE Applications 15.08 Release Candidate may be <a href='http://download.kde.org/unstable/applications/15.07.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.07.90.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:4
msgid "KDE Ships KDE Applications 15.08.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:18
msgid "Dolphin in the new look - now KDE Frameworks 5 based"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:22
msgid "August 19, 2015. Today KDE released KDE Applications 15.08."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:26
msgid "With this release a total of 107 applications have been ported to <a href='%1'>KDE Frameworks 5</a>. The team is striving to bring the best quality to your desktop and these applications. So we're counting on you to send your feedback."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:30
msgid "With this release there are several new additions to the KDE Frameworks 5-based applications list, including <a href='%1'>Dolphin</a>, <a href='%2'>the Kontact Suite</a>, <a href='%3'>Ark</a>, <a href='%4'>Picmi</a>, etc."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:33
msgid "Kontact Suite technical preview"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:35
msgid ""
"Over the past several months the KDE PIM team did put a lot of effort into porting Kontact to Qt 5 and KDE Frameworks 5. Additionally the data access performance got improved considerably by an optimized communication layer.\n"
"The KDE PIM team is working hard on further polishing the Kontact Suite and is looking forward to your feedback.\n"
"For more and detailed information about what changed in KDE PIM see <a href='%1'>Laurent Montels blog</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:40
msgid "Kdenlive and Okular"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:42
msgid "This release of Kdenlive includes lots of fixes in the DVD wizard, along with a large number of bug-fixes and other features which includes the integration of some bigger refactorings. More information about Kdenlive's changes can be seen in its <a href='%1'>extensive changelog</a>. And Okular now supports Fade transition in the presentation mode."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:49
msgid "KSudoku with a character puzzle"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:52
msgid "Dolphin, Edu and Games"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:55
msgid "Dolphin was as well ported to KDE Frameworks 5. Marble got improved <a href='%1'>UTM</a> support as well as better support for annotations, editing and KML overlays."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:59
msgid "Ark has had an astonishing number of commits including many small fixes. Kstars received a large number of commits, including improving the flat ADU algorithm and checking for out of bound values, saving Meridian Flip, Guide Deviation, and Autofocus HFR limit in the sequence file, and adding telescope rate and unpark support. KSudoku just got better. Commits include: add GUI and engine for entering in Mathdoku and Killer Sudoku puzzles, and add a new solver based on Donald Knuth's Dancing Links (DLX) algorithm."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:63
msgid "Other Releases"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:65
msgid "Along with this release Plasma 4 will be published in its LTS version for the last time as version 4.11.22."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:76
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 15.08 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:80
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 15.08 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:86
msgid "Installing KDE Applications 15.08 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:90
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.08 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:99
msgid "Compiling KDE Applications 15.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.0.php:103
msgid "The complete source code for KDE Applications 15.08 may be <a href='http://download.kde.org/stable/applications/15.08.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.08.0.php'>KDE Applications 15.08.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.1.php:4
msgid "KDE Ships KDE Applications 15.08.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.1.php:16
msgid "September 15, 2015. Today KDE released the first stability update for <a href='%1'>KDE Applications 15.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.1.php:20
msgid "More than 40 recorded bugfixes include improvements to kdelibs, kdepim, kdenlive, dolphin, marble, kompare, konsole, ark and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.1.php:24
#: announcements/announce-applications-15.08.2.php:24
#: announcements/announce-applications-15.08.3.php:24
#: announcements/announce-applications-15.12.1.php:24
#: announcements/announce-applications-15.12.2.php:24
#: announcements/announce-applications-15.12.3.php:24
#: announcements/announce-applications-16.04.1.php:24
#: announcements/announce-applications-16.04.2.php:24
#: announcements/announce-applications-16.04.3.php:24
#: announcements/announce-applications-16.08.1.php:24
#: announcements/announce-applications-16.08.2.php:24
#: announcements/announce-applications-16.08.3.php:24
#: announcements/announce-applications-16.12.1.php:28
#: announcements/announce-applications-16.12.2.php:24
#: announcements/announce-applications-16.12.3.php:24
#: announcements/announce-applications-17.04.1.php:24
#: announcements/announce-applications-17.04.2.php:24
#: announcements/announce-applications-17.04.3.php:24
#: announcements/announce-applications-17.08.1.php:24
#: announcements/announce-applications-17.08.2.php:24
msgid "This release also includes Long Term Support version of KDE Development Platform %1."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.2.php:4
msgid "KDE Ships KDE Applications 15.08.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.2.php:16
msgid "October 13, 2015. Today KDE released the second stability update for <a href='%1'>KDE Applications 15.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.2.php:20
msgid "More than 30 recorded bugfixes include improvements to ark, gwenview, kate, kbruch, kdelibs, kdepim, lokalize and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.3.php:4
msgid "KDE Ships KDE Applications 15.08.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.3.php:16
msgid "November 10, 2015. Today KDE released the third stability update for <a href='%1'>KDE Applications 15.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.08.3.php:20
msgid "More than 20 recorded bugfixes include improvements to ark, dolphin, kdenlive, kdepim, kig, lokalize and umbrello."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:4
msgid "KDE Ships Beta of KDE Applications 15.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:15
msgid "November 20, 2015. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:26
msgid "Installing KDE Applications 15.12 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.12 Beta (internally 15.11.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:39
msgid "Compiling KDE Applications 15.12 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-beta.php:43
msgid "The complete source code for KDE Applications 15.12 Beta may be <a href='http://download.kde.org/unstable/applications/15.11.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.11.80.php'>KDE Applications Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 15.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:15
msgid "December 3, 2015. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 15.12 the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:26
msgid "Installing KDE Applications 15.12 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.12 Release Candidate (internally 15.11.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:39
msgid "Compiling KDE Applications 15.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12-rc.php:43
msgid "The complete source code for KDE Applications 15.12 Release Candidate may be <a href='http://download.kde.org/unstable/applications/15.11.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.11.90.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:4
msgid "KDE Ships KDE Applications 15.12.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:15
msgid "December 16, 2015. Today KDE released KDE Applications 15.12."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:20
msgid "KDE is excited to announce the release of KDE Applications 15.12, the December 2015 update to KDE Applications. This release brings one new application and feature additions and bug fixes across the board to existing applications. The team strives to always bring the best quality to your desktop and these applications, so we're counting on you to send your feedback."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:24
msgid "In this release, we've updated a whole host of applications to use the new <a href='%1'>KDE Frameworks 5</a>, including <a href='%2'>Artikulate</a>, <a href='%3'>Krfb</a>, <a href='%4'>KSystemLog</a>, <a href='https://games.kde.org/game.php?game=klickety'>Klickety</a> and more of the KDE Games, apart from the KDE Image Plugin Interface and its support libraries. This brings the total number of applications that use KDE Frameworks 5 to 126."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:27
msgid "A Spectacular New Addition"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:29
msgid "After 14 years of being a part of KDE, KSnapshot has been retired and replaced with a new screenshot application, Spectacle."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:32
msgid "With new features and a completely new UI, Spectacle makes taking screenshots as easy and unobtrusive as it can ever be. In addition to what you could do with KSnapshot, with Spectacle you can now take composite screenshots of pop-up menus along with their parent windows, or take screenshots of the entire screen (or the currently active window) without even starting Spectacle, simply by using the keyboard shortcuts Shift+PrintScreen and Meta+PrintScreen respectively."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:35
msgid "We've also aggressively optimised application start-up time, to absolutely minimise the time lag between when you start the application and when the image is captured."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:38
msgid "Polish Everywhere"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:40
msgid "Many of the applications have undergone significant polishing in this cycle, in addition to stability and bug fixes."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:47
msgid "Kdenlive with its polished User Interface"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:51
msgid "<a href='%1'>Kdenlive</a>, the non-linear video editor, has seen major fixes to its User Interface. You can now copy and paste items on your timeline, and easily toggle transparency in a given track. The icon colours automatically adjust to the main UI theme, making them easier to see."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:59
msgid "Ark can now show ZIP comments"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:63
msgid "<a href='%1'>Ark</a>, the archive manager, can now display comments embedded in ZIP and RAR archives. We've improved support for Unicode characters in file names in ZIP archives, and you can now detect corrupt archives and recover as much data as possible from them. You can also open archived files in their default application, and we've fixed drag-and-drop to the desktop as well previews for XML files."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:65
msgid "All Play and No Work"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:71
msgid "KSudoku new Welcome Screen (on a Mac OS X)"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:75
msgid "The KDE Games developers have been working hard for the past few months to optimise our games for a smoother and richer experience, and we've got a lot of new stuff in this area for our users to enjoy."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:79
msgid "In <a href='%1'>KGoldrunner</a>, we've added two new sets of levels, one allowing digging while falling and one not. We've added solutions for several existing sets of levels. For an added challenge, we now disallow digging while falling in some older sets of levels."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:83
msgid "In <a href='%1'>KSudoku</a>, you can now print Mathdoku and Killer Sudoku puzzles. The new multi-column layout in KSudoku's Welcome Screen makes it easier to see more of the many puzzle types available, and the columns adjust themselves automatically as the window is resized. We've done the same to Palapeli, making it easier to see more of your jigsaw puzzle collection at once."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:87
msgid "We've also included stability fixes for games like KNavalBattle, Klickety, <a href='%1'>KShisen</a> and <a href='%2'>KTuberling</a>, and the overall experience is now greatly improved. KTuberling, Klickety and KNavalBattle have also been updated to use the new KDE Frameworks 5."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:90
msgid "Important Fixes"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:93
msgid "Don't you simply hate it when your favorite application crashes at the most inconvinient time? We do too, and to remedy that we've worked very hard at fixing lots of bugs for you, but probably we've left some sneak, so don't forget to <a href='%1'>report them</a>!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:97
msgid "In our file manager <a href='%1'>Dolphin</a>, we've included various fixes for stability and some fixes to make scrolling smoother. In <a href='%2'>Kanagram</a>, we've fixed a bothersome issue with white text on white backgrounds. In <a href='%3'>Kate</a>, we've attempted to fix a crash that was occurring on shutdown, in addition to cleaning up the UI and adding in a new cache cleaner."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:101
msgid "The <a href='%1'>Kontact Suite</a> has seen tons of added features, big fixes and performance optimisations. In fact, there's been so much development this cycle that we've bumped the version number to 5.1. The team is hard at work, and is looking forward to all your feedback."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:104
msgid "Moving Forward"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:107
msgid "As part of the effort to modernise our offerings, we've dropped some applications from KDE Applications and are no longer releasing them as of KDE Applications 15.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:111
msgid "We've dropped 4 applications from the release - Amor, KTux, KSnapshot and SuperKaramba. As noted above, KSnapshot has been replaced by Spectacle, and Plasma essentially replaces SuperKaramba as a widget engine. We've dropped standalone screensavers because screen locking is handled very differently in modern desktops."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:115
msgid "We've also dropped 3 artwork packages (kde-base-artwork, kde-wallpapers and kdeartwork); their content had not changed in long time."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:118
#: announcements/announce-applications-16.04.0.php:115
#: announcements/announce-applications-16.08.0.php:77
#: announcements/announce-applications-16.12.0.php:118
#: announcements/announce-applications-17.04.0.php:103
#: announcements/announce-applications-17.08.0.php:77
#: announcements/announce-applications-17.12.0.php:80
#: announcements/plasma-5.4.95.php:152 announcements/plasma-5.5.0.php:173
msgid "Full Changelog"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:128
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 15.12 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:132
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 15.12 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:138
msgid "Installing KDE Applications 15.12 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:142
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 15.12 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:151
msgid "Compiling KDE Applications 15.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.0.php:155
msgid "The complete source code for KDE Applications 15.12 may be <a href='http://download.kde.org/stable/applications/15.12.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-15.12.0.php'>KDE Applications 15.12.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.1.php:4
msgid "KDE Ships KDE Applications 15.12.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.1.php:16
msgid "January 12, 2016. Today KDE released the first stability update for <a href='%1'>KDE Applications 15.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.1.php:20
#: announcements/announce-applications-15.12.2.php:20
msgid "More than 30 recorded bugfixes include improvements to kdelibs, kdepim, kdenlive, marble, konsole, spectacle, akonadi, ark and umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.2.php:4
msgid "KDE Ships KDE Applications 15.12.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.2.php:16
msgid "February 16, 2016. Today KDE released the second stability update for <a href='%1'>KDE Applications 15.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.3.php:4
msgid "KDE Ships KDE Applications 15.12.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.3.php:16
msgid "March 15, 2016. Today KDE released the third stability update for <a href='%1'>KDE Applications 15.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-15.12.3.php:20
msgid "More than 15 recorded bugfixes include improvements to kdepim, akonadi, ark, kblocks, kcalc, ktouch and umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:4
msgid "KDE Ships Beta of KDE Applications 16.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:15
msgid "March 24, 2016. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:19
#: announcements/announce-applications-16.08-beta.php:19
#: announcements/announce-applications-16.08-rc.php:19
#: announcements/announce-applications-16.12-beta.php:19
#: announcements/announce-applications-16.12-rc.php:19
#: announcements/announce-applications-17.04-beta.php:19
#: announcements/announce-applications-17.04-rc.php:19
#: announcements/announce-applications-17.08-rc.php:19
#: announcements/announce-applications-17.12-rc.php:19
msgid "Check the <a href='%1'>community release notes</a> for information on new tarballs, tarballs that are now KF5 based and known issues. A more complete announcement will be available for the final release"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:23
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 16.04 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:30
msgid "Installing KDE Applications 16.04 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.04 Beta (internally 16.03.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:43
msgid "Compiling KDE Applications 16.04 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-beta.php:47
msgid "The complete source code for KDE Applications 16.04 Beta may be <a href='http://download.kde.org/unstable/applications/16.03.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.03.80.php'>KDE Applications Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 16.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:15
msgid "April 7, 2016. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:19
msgid "With the various applications being based on KDE Frameworks 5, the KDE Applications 16.04 the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:26
msgid "Installing KDE Applications 16.04 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:30
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.04 Release Candidate (internally 16.03.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:39
msgid "Compiling KDE Applications 16.04 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04-rc.php:43
msgid "The complete source code for KDE Applications 16.04 Release Candidate may be <a href='http://download.kde.org/unstable/applications/16.03.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.03.90.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:4
msgid "KDE Ships KDE Applications 16.04.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:16
msgid "April 20, 2016. KDE introduces today KDE Applications 16.04 with an impressive array of upgrades when it comes to better ease of access, the introduction of highly useful functionalities and getting rid of those minor issues which lead to KDE Applications now getting a step closer to offering you the perfect setup for your device."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:20
msgid "<a href='%1'>KColorChooser</a>, <a href='%2'>KFloppy</a>, <a href='%3'>KMahjongg</a> and <a href='%4'>KRDC</a> have now been ported to KDE Frameworks 5 and we look forward to your feedback and insight into the newest features introduced with this release. We would also highly encourage your support for <a href='%5'>Minuet</a> as we welcome it to our KDE Applications and your input on what more you'd like to see."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:24
msgid "KDE's Newest Addition"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:29
msgid "A new application has been added to the KDE Education suite. <a href='%1'>Minuet</a> is a Music Education Software featuring full MIDI support with tempo, pitch and volume control, which makes it suitable for both novice and experienced musicians."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:32
msgid "Minuet includes 44 ear-training exercises about scales, chords, intervals and rhythm, enables the visualization of musical content on the piano keyboard and allows for the seamless integration of your own exercises."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:36
msgid "More Help to you"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:41
msgid "KHelpCenter which was previously distributed under Plasma is now distributed as a part of KDE Applications."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:44
msgid "A massive bug triaging and cleanup campaign taken up by the KHelpCenter team resulted in 49 resolved bugs, many of which were related to improving and restoring the previously non-functional search functionality."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:47
msgid "The internal document search which relied on the deprecated software ht::/dig has been replaced with a new Xapian-based indexing and search system which leads to the restoring of functionalities such as searching within man pages, info pages and KDE Software provided Documentation, with the added provision of bookmarks for the documentation pages."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:50
msgid "With the removal of KDELibs4 Support and a further cleanup of the code and some other minor bugs, the maintenance of the code has also been thoroughly furnished to give you KHelpCenter in a newly shiny form."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:54
#: announcements/announce-applications-16.08.0.php:72
#: announcements/announce-applications-16.12.0.php:113
msgid "Aggressive Pest Control"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:56
msgid "The Kontact Suite had a whopping 55 bugs resolved; some of which were related to issues with setting alarms, and in the import of Thunderbird mails, downsizing Skype &amp; Google talk icons in the Contacts Panel View, KMail related workarounds such as folder imports, vCard imports, opening ODF mail attachments, URL inserts from Chromium, the tool menu differences with the app started as a part of Kontact as opposed to a standalone use, missing 'Send' menu item and a few others. The support for Brazilian Portuguese RSS feeds has been added along with the fixing of the addresses for the Hungarian and Spanish feeds."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:59
msgid "The new features include a redesign of the KAddressbook contact editor, a new default KMail Header theme, improvements to the Settings Exporter and a fix of Favicon support in Akregator. The KMail composer interface has been cleaned up along with the introduction of a new Default KMail Header Theme with the Grantlee theme used for the 'About' page in KMail as well as Kontact and Akregator. Akregator now uses QtWebKit - one of the major engines to render webpages and execute javascript code as the renderer web engine and the process of implementing support for QtWebEngine in Akregator and other Kontact Suite applications has already begun. While several features were shifted as plugins in kdepim-addons, the pim libraries were split into numerous packages."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:63
msgid "Archiving in Depth"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:68
msgid "<a href='%1'>Ark</a>, the archive manager, has had two major bugs fixed so that now Ark warns the user if an extraction fails due to lack of sufficient space in the destination folder and it does not fill up the RAM during the extraction of huge files via drag and drop."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:71
msgid "Ark now also includes a properties dialog which displays information like the type of archive, compressed and uncompressed size, MD5/SHA-1/SHA-256 cryptographic hashes about the currently opened archive."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:74
msgid "Ark can also now open and extract RAR archives without utilizing the non-free rar utilities and can open, extract and create TAR archives compressed with the lzop/lzip/lrzip formats."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:77
msgid "The User Interface of Ark has been polished by reorganizing the menubar and the toolbar so as to improve the usability and to remove ambiguities, as well as to save vertical space thanks to the status-bar now hidden by default."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:81
msgid "More Precision to Video Edits"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:86
msgid "<a href='%1'>Kdenlive</a>, the non-linear video editor has numerous new features implemented. The titler now has a grid feature, gradients, the addition of text shadow and adjusting letter/line spacing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:89
msgid "Integrated display of audio levels allows easy monitoring of the audio in your project alongwith new video monitor overlays displaying playback framerate, safe zones and audio waveforms and a toolbar to seek to markers and a zoom monitor."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:92
msgid "There has also been a new library feature which allows to copy/paste sequences between projects and a split view in timeline to compare and visualise the effects applied to the clip with the one without them."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:95
msgid "The render dialog has been rewritten with an added option to get faster encoding hence, producing large files and the speed effect has been made to work with sound as well."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:98
msgid "Curves in keyframes have been introduced for a few effects and now your top chosen effects can be accessed quickly via the favourite effects widget. While using the razor tool, now the vertical line in the timeline will show the accurate frame where the cut will be performed and the newly added clip generators will enable you to create color bar clips and counters. Besides this, the clip usage count has been re-introduced in the Project Bin and the audio thumbnails have also been rewritten to make them much faster."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:101
msgid "The major bug fixes include the crash while using titles (which requires the latest MLT version), fixing corruptions occurring when the project frames per second rate is anything other than 25, the crashes on track deletion, the problematic overwrite mode in the timeline and the corruptions/lost effects while using a locale with a comma as the separator. Apart from these, the team has been consistently working to make major improvements in stability, workflow and small usability features."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:104
#: announcements/announce-applications-16.08.0.php:61
#: announcements/announce-applications-16.12.0.php:98
#: announcements/announce-applications-17.04.0.php:84
msgid "And more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:107
msgid "<a href='%1'>Okular</a>, the document viewer brings in new features in the form of customizable inline annotation width border, allowance of directly opening embedded files instead of only saving them and also the display of a table of content markers when the child links are collapsed."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:111
msgid "<a href='%1'>Kleopatra</a> introduced improved support for GnuPG 2.1 with a fixing of selftest errors and the cumbersome key refreshes caused by the new GnuPG (GNU Privacy Guard) directory layout. ECC Key generation has been added with the display of Curve details for ECC certificates now. Kleopatra is now released as a separate package and support for .pfx and .crt files has been included. To resolve the difference in the behaviour of imported secret keys and generated keys, Kleopatra now allows you to set the owner trust to ultimate for imported secret keys. "
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:125
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 16.04 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:129
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 16.04 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:135
msgid "Installing KDE Applications 16.04 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:139
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.04 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:148
msgid "Compiling KDE Applications 16.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.0.php:152
msgid "The complete source code for KDE Applications 16.04 may be <a href='http://download.kde.org/stable/applications/16.04.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.04.0.php'>KDE Applications 16.04.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.1.php:4
msgid "KDE Ships KDE Applications 16.04.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.1.php:16
msgid "May 10, 2016. Today KDE released the first stability update for <a href='%1'>KDE Applications 16.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.1.php:20
msgid "More than 25 recorded bugfixes include improvements to kdepim, ark, kate, dolphin. kdenlive, lokalize, spectacle, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.2.php:4
msgid "KDE Ships KDE Applications 16.04.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.2.php:16
msgid "June 14, 2016. Today KDE released the second stability update for <a href='%1'>KDE Applications 16.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.2.php:20
msgid "More than 25 recorded bugfixes include improvements to akonadi, ark, artikulate, dolphin. kdenlive, kdepim, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.3.php:4
msgid "KDE Ships KDE Applications 16.04.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.3.php:16
msgid "July 12, 2016. Today KDE released the third stability update for <a href='%1'>KDE Applications 16.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.04.3.php:20
msgid "More than 20 recorded bugfixes include improvements to ark, cantor, kate. kdepim, umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:4
msgid "KDE Ships Beta of KDE Applications 16.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:15
msgid "July 22, 2016. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:23
#: announcements/announce-applications-16.08-rc.php:23
msgid "The KDE Applications 16.08 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:30
msgid "Installing KDE Applications 16.08 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.08 Beta (internally 16.07.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:39
#: announcements/announce-applications-16.08-rc.php:39
#: announcements/announce-applications-16.12-beta.php:39
#: announcements/announce-applications-16.12-rc.php:39
#: announcements/announce-applications-17.04-beta.php:39
#: announcements/announce-applications-17.04-rc.php:39
#: announcements/announce-applications-17.08-beta.php:39
#: announcements/announce-applications-17.08-rc.php:39
#: announcements/announce-applications-17.12-beta.php:39
#: announcements/announce-applications-17.12-rc.php:39
msgid "For a current list of available binary packages of which the KDE Project has been informed, please visit the <a href='http://community.kde.org/Binary_Packages'>Community Wiki</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:43
msgid "Compiling KDE Applications 16.08 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-beta.php:47
msgid "The complete source code for KDE Applications 16.08 Beta may be <a href='http://download.kde.org/unstable/applications/16.07.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.07.80.php'>KDE Applications 16.08 Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 16.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:15
msgid "August 5, 2016. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:30
msgid "Installing KDE Applications 16.08 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.08 Release Candidate (internally 16.07.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:43
msgid "Compiling KDE Applications 16.08 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08-rc.php:47
msgid "The complete source code for KDE Applications 16.08 Release Candidate may be <a href='http://download.kde.org/unstable/applications/16.07.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.07.90.php'>KDE Applications Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:4
msgid "KDE Ships KDE Applications 16.08.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:16
msgid "August 18, 2016. Today, KDE introduces KDE Applications 16.08, with an impressive array of upgrades when it comes to better ease of access, the introduction of highly useful functionalities and getting rid of some minor issues, bringing KDE Applications one step closer to offering you the perfect setup for your device."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:20
msgid "<a href='%1'>Kolourpaint</a>, <a href='%2'>Cervisia</a> and KDiskFree have now been ported to KDE Frameworks 5 and we look forward to your feedback and insight into the newest features introduced with this release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:24
msgid "In the continued effort to split Kontact Suite libraries to make them easier to use for third parties, the kdepimlibs tarball has been split into akonadi-contacts, akonadi-mime and akonadi-notes."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:29
msgid "We have discontinued the following packages: kdegraphics-strigi-analyzer, kdenetwork-strigi-analyzers, kdesdk-strigi-analyzers, libkdeedu and mplayerthumbs. This will help us focus in the rest of the code."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:33
msgid "Keeping in Kontact"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:36
msgid "<a href='%1'>The Kontact Suite</a> has got the usual round of cleanups, bug fixes and optimizations in this release. Notable is the use of QtWebEngine in various compontents, which allows for a more modern HTML rendering engine to be used. We have also improved VCard4 support as well as added new plugins that can warn if some conditions are met when sending an email, e.g. verifying that you want to allow sending emails with a given identity, or checking if you are sending email as plaintext, etc."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:40
msgid "New Marble version"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:43
msgid "<a href='%1'>Marble</a> 2.0 is part of KDE Applications 16.08 and includes more than 450 code changes including improvements in navigation, rendering and an experimental vector rendering of OpenStreetMap data."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:47
msgid "More Archiving"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:50
msgid "<a href='%1'>Ark</a> can now extract AppImage and .xar files as well as testing the integrity of zip, 7z and rar archives. It can also add/edit comments in rar archives"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:54
msgid "Terminal Improvements"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:57
msgid "<a href='%1'>Konsole</a> has had improvements regarding font rendering options and accessbility support."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:64
msgid "<a href='%1'>Kate</a> got movable tabs. <a href='%2'>More information...</a>"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:68
msgid "<a href='%1'>KGeography</a>, has added provinces and regions maps of Burkina Faso."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:74
msgid "More than 120 bugs have been resolved in applications including the Kontact Suite, Ark, Cantor, Dolphin, KCalc, Kdenlive and more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:87
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 16.08 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:91
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, and twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 16.08 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:97
msgid "Installing KDE Applications 16.08 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:101
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.08 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:110
msgid "Compiling KDE Applications 16.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.0.php:114
msgid "The complete source code for KDE Applications 16.08 may be <a href='http://download.kde.org/stable/applications/16.08.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.08.0.php'>KDE Applications 16.08.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.1.php:4
msgid "KDE Ships KDE Applications 16.08.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.1.php:16
msgid "September 8, 2016. Today KDE released the first stability update for <a href='%1'>KDE Applications 16.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.1.php:20
msgid "More than 45 recorded bugfixes include improvements to kdepim, kate, kdenlive, konsole, marble, kajongg, kopete, umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.2.php:4
msgid "KDE Ships KDE Applications 16.08.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.2.php:16
msgid "October 13, 2016. Today KDE released the second stability update for <a href='%1'>KDE Applications 16.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.2.php:20
msgid "More than 30 recorded bugfixes include improvements to kdepim, ark, dolphin, kgpg, kolourpaint, okular, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.3.php:4
msgid "KDE Ships KDE Applications 16.08.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.3.php:16
msgid "November 10, 2016. Today KDE released the third stability update for <a href='%1'>KDE Applications 16.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.08.3.php:20
msgid "More than 20 recorded bugfixes include improvements to kdepim, ark, okteta, umbrello, kmines, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:4
msgid "KDE Ships Beta of KDE Applications 16.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:15
msgid "November 18, 2016. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:23
msgid "The KDE Applications 16.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:30
msgid "Installing KDE Applications 16.12 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.12 Beta (internally 16.11.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:43
msgid "Compiling KDE Applications 16.12 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-beta.php:47
msgid "The complete source code for KDE Applications 16.12 Beta may be <a href='http://download.kde.org/unstable/applications/16.11.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.11.80.php'>KDE Applications 16.12 Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 16.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:15
msgid "December 2, 2016. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:23
msgid "The KDE Applications 16.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:30
msgid "Installing KDE Applications 16.12 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.12 Release Candidate (internally 16.11.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:43
msgid "Compiling KDE Applications 16.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12-rc.php:47
msgid "The complete source code for KDE Applications 16.12 Release Candidate may be <a href='http://download.kde.org/unstable/applications/16.11.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.11.90.php'>KDE Applications 16.12 Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:4
msgid "KDE Ships KDE Applications 16.12.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:16
msgid "December 15, 2016. Today, KDE introduces KDE Applications 16.12, with an impressive array of upgrades when it comes to better ease of access, the introduction of highly useful functionalities and getting rid of some minor issues, bringing KDE Applications one step closer to offering you the perfect setup for your device."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:20
msgid "<a href='%1'>Okular</a>, <a href='%2'>Konqueror</a>, <a href='%3'>KGpg</a>, <a href='%4'>KTouch</a>, <a href='%5'>Kalzium</a> and more (<a href='%6'>Release Notes</a>) have now been ported to KDE Frameworks 5. We look forward to your feedback and insight into the newest features introduced with this release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:24
msgid "In the continued effort to make applications easier to build standalone, we have split the kde-baseapps, kdepim and kdewebdev tarballs. You can find the newly created tarballs at <a href='%1'>the Release Notes document</a>"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:29
msgid "We have discontinued the following packages: kdgantt2, gpgmepp and kuser. This will help us focus on the rest of the code."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:33
msgid "Kwave sound editor joins KDE Applications!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:38
msgid ""
"<a href='%1'>Kwave</a> is a sound editor, it can record, play back, import and edit many sorts of audio files including multi channel files.\n"
"Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom and scroll capability."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:43
msgid "The World as your wallpaper"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:48
msgid "Marble now includes both a Wallpaper and a Widget for Plasma that show the time on top of a satellite view of the earth, with real-time day/night display. These used to be available for Plasma 4; they have now been updated to work on Plasma 5."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:51
msgid "You can find more information on <a href='%1'>Friedrich W. H. Kossebau's blog</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:55
msgid "Emoticons galore!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:60
msgid "KCharSelect has gained the ability to show the Unicode Emoticons block (and other SMP symbol blocks)."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:63
msgid "It also gained a Bookmarks menu so you can favorite all your loved characters."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:67
msgid "Math is better with Julia"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:72
msgid "Cantor has a new backend for Julia, giving its users the ability to use the latest progress in scientific computing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:75
msgid "You can find more information on <a href='%1'>Ivan Lakhtanov's blog</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:79
msgid "Advanced archiving"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:84
msgid "Ark has several new features:"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:87
msgid "Files and folders can now be renamed, copied or moved within the archive"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:88
msgid "It's now possible to select compression and encryption algorithms when creating archives"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:89
msgid "Ark can now open AR files (e.g. Linux *.a static libraries)"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:93
msgid "You can find more information on <a href='%1'>Ragnar Thomsen's blog</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:101
msgid "Kopete got support for X-OAUTH2 SASL authentication in jabber protocol and fixed some problems with the OTR encryption plugin."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:105
msgid "Kdenlive has a new Rotoscoping effect, support for downloadable content and an updated Motion Tracker. It also provides <a href='%1'>Snap and AppImage</a> files for easier installation."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:109
msgid "KMail and Akregator can use Google Safe Browsing to check if a link being clicked is malicious. Both have also added back printing support (needs Qt 5.8)."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:115
msgid "More than 130 bugs have been resolved in applications including Dolphin, Akonadi, KAddressBook, KNotes, Akregator, Cantor, Ark, Kdenlive and more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:128
msgid "Non-technical contributors are an important part of KDE’s success. While proprietary software companies have huge advertising budgets for new software releases, KDE depends on people talking with other people. Even for those who are not software developers, there are many ways to support the KDE Applications 16.12 release. Report bugs. Encourage others to join the KDE Community. Or <a href='%1'>support the nonprofit organization behind the KDE community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:132
msgid "Please spread the word on the Social Web. Submit stories to news sites, use channels like delicious, Digg, Reddit, and Twitter. Upload screenshots of your new set-up to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with 'KDE'. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 16.12 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:138
msgid "Installing KDE Applications 16.12 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:142
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 16.12 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:151
msgid "Compiling KDE Applications 16.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.0.php:155
msgid "The complete source code for KDE Applications 16.12 may be <a href='http://download.kde.org/stable/applications/16.12.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-16.12.0.php'>KDE Applications 16.12.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.1.php:4
msgid "KDE Ships KDE Applications 16.12.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.1.php:16
msgid "January 12, 2017. Today KDE released the first stability update for <a href='%1'>KDE Applications 16.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.1.php:20
msgid "This release fixes a DATA LOSS bug in the iCal resource which failed to create std.ics if it didn't exist."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.1.php:24
msgid "More than 40 recorded bugfixes include improvements to kdepim, ark, gwenview, kajongg, okular, kate, kdenlive, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.2.php:4
msgid "KDE Ships KDE Applications 16.12.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.2.php:16
msgid "February 9, 2017. Today KDE released the second stability update for <a href='%1'>KDE Applications 16.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.2.php:20
msgid "More than 20 recorded bugfixes include improvements to kdepim, dolphin, kate, kdenlive, ktouch, okular, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.3.php:4
msgid "KDE Ships KDE Applications 16.12.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.3.php:16
msgid "March 9, 2017. Today KDE released the third stability update for <a href='%1'>KDE Applications 16.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-16.12.3.php:20
msgid "More than 20 recorded bugfixes include improvements to kdepim, ark, filelight, gwenview, kate, kdenlive, okular, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:4
msgid "KDE Ships Beta of KDE Applications 17.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:15
msgid "March 24, 2017. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:23
#: announcements/announce-applications-17.04-rc.php:23
msgid "The KDE Applications 17.04 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:30
msgid "Installing KDE Applications 17.04 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.04 Beta (internally 17.03.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:43
msgid "Compiling KDE Applications 17.04 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-beta.php:47
msgid "The complete source code for KDE Applications 17.04 Beta may be <a href='http://download.kde.org/unstable/applications/17.03.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.03.80.php'>KDE Applications 17.04 Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 17.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:15
msgid "April 7, 2017. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:30
msgid "Installing KDE Applications 17.04 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.04 Release Candidate (internally 17.03.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:43
msgid "Compiling KDE Applications 17.04 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04-rc.php:47
msgid "The complete source code for KDE Applications 17.04 Release Candidate may be <a href='http://download.kde.org/unstable/applications/17.03.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.03.90.php'>KDE Applications 17.04 Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:4
msgid "KDE Ships KDE Applications 17.04.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:16
msgid "April 20, 2017. KDE Applications 17.04 is here. On the whole, we have worked to make both the applications and the underlying libraries more stable and easier to use. By ironing out wrinkles and listening to your feedback, we have made the KDE Applications suite less prone to glitches and much friendlier."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:20
msgid "Enjoy your new apps!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:23
#: announcements/announce-applications-17.08.0.php:36
msgid "KAlgebra"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:28
msgid "The developers of KAlgebra are on their own particular road to convergence, having ported the mobile version of the comprehensive educational program to Kirigami 2.0 -- the preferred framework for integrating KDE applications on desktop and mobile platforms."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:31
msgid "Furthermore, the desktop version has also migrated the 3D back-end to GLES, the software that allows the program to render 3D functions both on the desktop and on mobile devices. This makes the code simpler and easier to maintain."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:35
#: announcements/announce-applications-17.08.0.php:52
msgid "Kdenlive"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:40
msgid "KDE's video editor is becoming more stable and more full-featured with every new version. This time, the developers have redesigned the profile selection dialog to make it easier to set screen size, framerate, and other parameters of your film."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:43
msgid "Now you can also play your video directly from the notification when rendering is finished. Some crashes that happened when moving clips around on the timeline have been corrected, and the DVD Wizard has been improved."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:47
#: announcements/announce-applications-17.08.0.php:26
msgid "Dolphin"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:52
msgid "Our favorite file explorer and portal to everything (except maybe the underworld) has had several makeovers and usability improvements to make it even more powerful."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:55
msgid "The context menus in the <i>Places</i> panel (by default on the left of the main viewing area) have been cleaned up, and it is now possible to interact with the metadata widgets in the tooltips. The tooltips, by the way, now also work on Wayland."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:59
msgid "Ark"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:64
msgid "The popular graphical app for creating, decompressing and managing compressed archives for files and folders now comes with a <i>Search</i> function to help you find files in crowded archives."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:67
msgid "It also allows you to enable and disable plugins directly from the <i>Configure</i> dialog. Talking of plugins, the new Libzip plugin improves Zip archive support."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:71
msgid "Minuet"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:76
msgid "If you are teaching or learning to play music, you have to check out Minuet. The new version offers more scales exercises and ear-training tasks for bebop, harmonic minor/major, pentatonic, and symmetric scales."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:79
msgid "You can also set or take tests using the new <i>Test mode</i> for answering exercises. You can monitor your progress by running a sequence of 10 exercises and you'll get hit ratio statistics when finished."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:87
msgid "<a href='%1'>Okular</a>, KDE's document viewer, has had at least half a dozen changes that add features and crank up its usability on touchscreens. <a href='%2'>Akonadi</a> and several other apps that make up <a href='%3'>Kontact</a> (KDE's email/calendar/groupware suite) have been revised, debugged and optimized to help you become more productive."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:91
msgid "<a href='%1'>Kajongg</a>, <a href='%2'>KCachegrind</a> and more (<a href='%3'>Release Notes</a>) have now been ported to KDE Frameworks 5. We look forward to your feedback and insight into the newest features introduced with this release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:95
msgid "<a href='%1'>K3b</a> has joined the KDE Applications release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:98
#: announcements/announce-applications-17.08.0.php:72
#: announcements/announce-applications-17.12.0.php:75
msgid "Bug Stomping"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:100
msgid "More than 95 bugs have been resolved in applications including Kopete, KWalletManager, Marble, Spectacle and more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:106
#: announcements/announce-applications-17.08.0.php:80
#: announcements/announce-applications-17.12.0.php:83
msgid "If you would like to read more about the changes in this release, <a href='%1'>head over to the complete changelog</a>. Although a bit intimidating due to its breadth, the changelog can be an excellent way to learn about KDE's internal workings and discover apps and features you never knew you had."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:113
#: announcements/announce-applications-17.08.0.php:87
#: announcements/announce-applications-17.12.0.php:90
msgid "Non-technical contributors play an important part in KDE's success. While proprietary software companies have huge advertising budgets for new software releases, KDE often depends on word of mouth."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:117
msgid "There are many ways to support the KDE Applications 17.04 release: you can report bugs, encourage others to join the KDE Community, or <a href='%1'>support the non-profit organization behind the KDE Community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:121
#: announcements/announce-applications-17.08.0.php:95
#: announcements/announce-applications-17.12.0.php:98
msgid "Help us spread the word on the social web. You can submit stories to news sites like Reddit, Facebook and Twitter; upload screenshots of your new set-up to services like Snapchat, Instagram and Google+; or create screencasts and upload them to YouTube, Blip.tv, and Vimeo, or stream them live over Twitch!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:125
msgid "Remember to tag your posts and uploaded materials with the <i>KDE</i> moniker, as this makes them easier to find and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 17.04 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:131
msgid "Installing KDE Applications 17.04 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:135
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.04 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:144
msgid "Compiling KDE Applications 17.04"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.0.php:148
msgid "The complete source code for KDE Applications 17.04 may be <a href='http://download.kde.org/stable/applications/17.04.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.04.0.php'>KDE Applications 17.04.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.1.php:4
msgid "KDE Ships KDE Applications 17.04.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.1.php:16
msgid "May 11, 2017. Today KDE released the first stability update for <a href='%1'>KDE Applications 17.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.1.php:20
msgid "More than 20 recorded bugfixes include improvements to kdepim, dolphin, gwenview, kate, kdenlive, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.2.php:4
msgid "KDE Ships KDE Applications 17.04.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.2.php:16
msgid "June 8, 2017. Today KDE released the second stability update for <a href='%1'>KDE Applications 17.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.2.php:20
msgid "More than 15 recorded bugfixes include improvements to kdepim, ark, dolphin, gwenview, kdenlive, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.3.php:4
msgid "KDE Ships KDE Applications 17.04.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.3.php:16
msgid "July 13, 2017. Today KDE released the third stability update for <a href='%1'>KDE Applications 17.04</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.04.3.php:20
msgid "More than 25 recorded bugfixes include improvements to kdepim, dolphin, dragonplayer, kdenlive, umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:4
msgid "KDE Ships Beta of KDE Applications 17.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:15
msgid "July 21, 2017. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:19
#: announcements/announce-applications-17.12-beta.php:19
msgid "Check the <a href='%1'>community release notes</a> for information on tarballs that are now KF5 based and known issues. A more complete announcement will be available for the final release"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:23
msgid "The KDE Applications 17.08 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:30
msgid "Installing KDE Applications 17.08 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.08 Beta (internally 17.07.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:43
msgid "Compiling KDE Applications 17.08 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-beta.php:47
msgid "The complete source code for KDE Applications 17.08 Beta may be <a href='http://download.kde.org/unstable/applications/17.07.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.07.80.php'>KDE Applications 17.08 Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 17.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:15
msgid "August 4, 2017. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:23
msgid "The KDE Applications 17.08 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:30
msgid "Installing KDE Applications 17.08 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.08 Release Candidate (internally 17.07.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:43
msgid "Compiling KDE Applications 17.08 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08-rc.php:47
msgid "The complete source code for KDE Applications 17.08 Release Candidate may be <a href='http://download.kde.org/unstable/applications/17.07.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.07.90.php'>KDE Applications 17.08 Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:4
msgid "KDE Ships KDE Applications 17.08.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:16
msgid "August 17, 2017. KDE Applications 17.08 is here. We have worked to make both the applications and the underlying libraries more stable and easier to use. By ironing out wrinkles and listening to your feedback, we have made the KDE Applications suite less prone to glitches and much friendlier. Enjoy your new apps!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:19
#: announcements/announce-applications-17.12.0.php:67
msgid "More Porting to KDE Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:21
msgid "We're pleased that the following applications which were based on kdelibs4 are now based on KDE Frameworks 5: kmag, kmousetool, kgoldrunner, kigo, konquest, kreversi, ksnakeduel, kspaceduel, ksudoku, kubrick, lskat, and umbrello. Thanks to the hard-working developers who volunteered their time and work to make that happen."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:24
msgid "What's new in KDE Applications 17.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:28
msgid "Dolphin developers report that Dolphin now shows 'Deletion Time' in the Trash, and shows 'Creation Time' if the OS supports it such as on BSDs."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:31
msgid "KIO-Extras"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:33
msgid "Kio-Extras now provides better support for Samba shares."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:38
msgid "The KAlgebra developers have worked on improving their Kirigami front-end on the desktop, and implemented code completion."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:41
msgid "Kontact"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:44
msgid "In KMailtransport, developers have reactivated akonadi transport support, created plugins support, and recreated sendmail mail transport support."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:45
msgid "In SieveEditor, a lot of bugs in autocreate scripts have been fixed and closed. Along with general bug-fixing, a regexp editor line-editor has been added."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:46
msgid "In KMail the ability to use an external editor has been recreated as a plugin."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:47
msgid "The Akonadi-import-wizard now has the 'convert all converter' as a plugin, so that developers can create new converters easily."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:48
msgid "Applications now depend on Qt 5.7. Developers have fixed a lot of compile errors on Windows. All of kdepim does not compile on Windows yet but the developers have made big progress. To begin, the developers created a craft-recipe for it. Much bug fixing has been done to modernize code (C++11). Wayland support on Qt 5.9. Kdepim-runtime adds a facebook resource."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:54
msgid "In Kdenlive, the team fixed the broken 'Freeze effect'. In recent versions, it was impossible to change the frozen frame for the freeze effect. Now a keyboard shortcut for Extract Frame feature is allowed. Now the user can save screenshots of their timeline with a keyboard shortcut, and a name is now suggested based on frame number <a href='https://bugs.kde.org/show_bug.cgi?id=381325'>https://bugs.kde.org/show_bug.cgi?id=381325</a>. Fix downloaded transition lumas do not appear in interface: <a href='https://bugs.kde.org/show_bug.cgi?id=382451'>https://bugs.kde.org/show_bug.cgi?id=382451</a>. Fix audio clicks issue (for now, requires building the dependency MLT from git until a MLT release): <a href='https://bugs.kde.org/show_bug.cgi?id=371849'>https://bugs.kde.org/show_bug.cgi?id=371849</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:57
msgid "Krfb"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:59
msgid "Developers have finished porting the X11 plugin to Qt5, and krfb is working again using a X11 backend that is much faster than the Qt plugin. There's a new Settings page, allowing the user to change preferred framebuffer plugin."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:62
msgid "Konsole"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:64
msgid "Konsole now allows unlimited scrollback to extend past 2GB (32bit) limit. Now Konsole allows users to enter any location to store scrollback files. Also, a regression was fixed, Konsole can once again allow KonsolePart to call the Manage Profile dialog."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:67
msgid "KAppTemplate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:69
msgid "In KAppTemplate there is now an option to install new templates from the filesystem. More templates have been removed from KAppTemplate and instead integrated into related products; ktexteditor plugin template and kpartsapp template (ported to Qt5/KF5 now) have become part of KDE Frameworks KTextEditor and KParts since 5.37.0. These changes should simplify creation of templates in KDE applications."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:74
msgid "More than 80 bugs have been resolved in applications including the Kontact Suite, Ark, Dolphin, K3b, Kdenlive, KGpg, Konsole and more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:91
msgid "There are many ways to support the KDE Applications 17.08 release: you can report bugs, encourage others to join the KDE Community, or <a href='%1'>support the non-profit organization behind the KDE Community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:99
msgid "Remember to tag your posts and uploaded materials with the <i>KDE</i> moniker, as this makes them easier to find and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 17.08 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:105
msgid "Installing KDE Applications 17.08 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:109
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.08 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:118
msgid "Compiling KDE Applications 17.08"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.0.php:122
msgid "The complete source code for KDE Applications 17.08 may be <a href='http://download.kde.org/stable/applications/17.08.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.08.0.php'>KDE Applications 17.08.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.1.php:4
msgid "KDE Ships KDE Applications 17.08.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.1.php:16
msgid "September 7, 2017. Today KDE released the first stability update for <a href='%1'>KDE Applications 17.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.1.php:20
msgid "More than 20 recorded bugfixes include improvements to Kontact, Gwenview, Kdenlive, Konsole, KWalletManager, Okular, Umbrello, KDE games, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:4
msgid "KDE Ships KDE Applications 17.08.2"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:16
msgid "October 12, 2017. Today KDE released the second stability update for <a href='%1'>KDE Applications 17.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:20
msgid "More than 25 recorded bugfixes include improvements to Kontact, Dolphin, Gwenview, Kdenlive, Marble, Okular, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:28
#: announcements/announce-applications-17.08.3.php:28
#: announcements/announce-applications-17.12.1.php:24
msgid "Improvements include:"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:31
msgid "A memory leak and crash in Plasma events plugin configuration was fixed"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:32
msgid "Read messages are no longer removed immediately from Unread filter in Akregator"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.2.php:33
msgid "Gwenview Importer now uses the EXIF date/time"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:4
msgid "KDE Ships KDE Applications 17.08.3"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:16
msgid "November 9, 2017. Today KDE released the third stability update for <a href='%1'>KDE Applications 17.08</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:20
msgid "About a dozen recorded bugfixes include improvements to Kontact, Ark, Gwenview, KGpg, KWave, Okular, Spectacle, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:24
msgid "This release also includes the last version of KDE Development Platform %1."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:31
msgid "Work around a Samba 4.7 regression with password-protected SMB shares"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:32
msgid "Okular no longer crashes after certain rotation jobs"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.08.3.php:33
msgid "Ark preserves file modification dates when extracting ZIP archives"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:4
msgid "KDE Ships Beta of KDE Applications 17.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:15
msgid "November 17, 2017. Today KDE released the beta of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:23
msgid "The KDE Applications 17.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the beta <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:30
msgid "Installing KDE Applications 17.12 Beta Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.12 Beta (internally 17.11.80) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:43
msgid "Compiling KDE Applications 17.12 Beta"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-beta.php:47
msgid "The complete source code for KDE Applications 17.12 Beta may be <a href='http://download.kde.org/unstable/applications/17.11.80/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.11.80.php'>KDE Applications 17.12 Beta Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:4
msgid "KDE Ships Release Candidate of KDE Applications 17.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:15
msgid "December 1, 2017. Today KDE released the release candidate of the new versions of KDE Applications. With dependency and feature freezes in place, the KDE team's focus is now on fixing bugs and further polishing."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:23
msgid "The KDE Applications 17.12 releases need a thorough testing in order to maintain and improve the quality and user experience. Actual users are critical to maintaining high KDE quality, because developers simply cannot test every possible configuration. We're counting on you to help find bugs early so they can be squashed before the final release. Please consider joining the team by installing the release candidate <a href='https://bugs.kde.org/'>and reporting any bugs</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:30
msgid "Installing KDE Applications 17.12 Release Candidate Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:34
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.12 Release Candidate (internally 17.11.90) for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:43
msgid "Compiling KDE Applications 17.12 Release Candidate"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12-rc.php:47
msgid "The complete source code for KDE Applications 17.12 Release Candidate may be <a href='http://download.kde.org/unstable/applications/17.11.90/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.11.90.php'>KDE Applications 17.12 Release Candidate Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:4
msgid "KDE Ships KDE Applications 17.12.0"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:16
msgid "December 14, 2017. KDE Applications 17.12.0 are now released."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:20
msgid "We continuously work on improving the software included in our KDE Application series, and we hope you will find all the new enhancements and bug fixes useful!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:23
msgid "What's new in KDE Applications 17.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:25
msgid "System"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:28
msgid "<a href='%1'>Dolphin</a>, our file manager, can now save searches and limit the search only to folders. Renaming files is now easier; simply double click on the file name. More file information is now at your hands, as the modification date and origin URL of downloaded files are now displayed in the information panel. Additionally, new Genre, Bitrate, and Release Year columns have been introduced."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:31
msgid "Graphics"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:33
msgid "Our powerful document viewer <a href='%1'>Okular</a> gained support for HiDPI displays and Markdown language, and the rendering of documents that are slow to load is now shown progressively. An option is now available to share a document via email."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:36
msgid "<a href='%1'>Gwenview</a> image viewer can now open and highlight images in the file manager, zooming is smoother, keyboard navigation has been improved, and it now supports the FITS and Truevision TGA formats. Images are now protected from being accidentally removed by the Delete key when they are not selected."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:39
msgid "Multimedia"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:41
msgid "<a href='%1'>Kdenlive</a> now uses less memory when handling video projects which include many images, default proxy profiles have been refined, and an annoying bug related to jumping one second forward when playing backward has been fixed."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:44
msgid "Utilities"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:47
msgid "<a href='%1'>Ark</a>'s zip support in the libzip backend has been improved. <a href='%2'>Kate</a> has a new <a href='%3'>Preview plugin</a> that allows you to see a live preview of the text document in the final format, applying any available KParts plugins (e.g. for Markdown, SVG, Dot graph, Qt UI, or patches). This plugin also works in <a href='%4'>KDevelop.</a>"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:50
msgid "Development"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:53
msgid "<a href='%1'>Kompare</a> now provides a context menu in the diff area, allowing for quicker access to navigation or modification actions. If you are a developer, you might find KUIViewers' new in-pane preview of UI object described by Qt UI files (widgets, dialogs, etc) useful. It now also supports KParts streaming API."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:56
msgid "Office"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:58
msgid "The <a href='%1'>Kontact</a> team has been hard at work improving and refining. Much of the work has been modernizing the code, but users will notice that encrypted messages display has been improved and support has been added for text/pgp and <a href='%2'>Apple® Wallet Pass</a>. There is now an option to select IMAP folder during vacation configuration, a new warning in KMail when a mail gets reopened and identity/mailtransport is not the same, new <a href='%3'>support for Microsoft® Exchange™</a>, support for Nylas Mail and improved Geary import in the akonadi-import-wizard, along with various other bug-fixes and general improvements."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:61
msgid "Games"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:64
msgid "<a href='%1'>KTuberling</a> can now reach a wider audience, as it has been <a href='%2'>ported to Android</a>. <a href='%3'>Kolf</a>, <a href='%4'>KsirK</a>, and <a href='%5'>Palapeli</a> complete the porting of KDE games to Frameworks 5."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:68
msgid "Even more applications which were based on kdelibs4 have now been ported to KDE Frameworks 5. These include the music player <a href='%1'>JuK</a>, the download manager <a href='%2'>KGet</a>, <a href='%3'>KMix</a>, utilities such as <a href='%4'>Sweeper</a> and <a href='%5'>KMouth</a>, and <a href='%6'>KImageMapEditor</a> and Zeroconf-ioslave. Many thanks to the hard-working developers who volunteered their time and work to make this happen!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:71
msgid "Applications moving to their own release schedule"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:72
msgid "<a href='%1'>KStars</a> now has its own release schedule; check this <a href='%2'>developer's blog</a> for announcements. It is worth noting that several applications such as Kopete and Blogilo are <a href='%3'>no longer shipped</a> with the Application series, as they have not yet been ported to KDE Frameworks 5, or are not actively maintained at the moment."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:77
msgid "More than 110 bugs have been resolved in applications including the Kontact Suite, Ark, Dolphin, Gwenview, K3b, Kate, Kdenlive, Konsole, Okular, Umbrello and more!"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:94
msgid "There are many ways to support the KDE Applications 17.12 release: you can report bugs, encourage others to join the KDE Community, or <a href='%1'>support the non-profit organization behind the KDE Community</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:102
msgid "Remember to tag your posts and uploaded materials with the <i>KDE</i> moniker, as this makes them easier to find and gives the KDE Promo Team a way to analyze coverage for the KDE Applications 17.12 release."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:108
msgid "Installing KDE Applications 17.12 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:112
msgid "Some Linux/UNIX OS vendors have kindly provided binary packages of KDE Applications 17.12 for some versions of their distribution, and in other cases community volunteers have done so. Additional binary packages, as well as updates to the packages now available, may become available over the coming weeks."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:121
msgid "Compiling KDE Applications 17.12"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.0.php:125
msgid "The complete source code for KDE Applications 17.12 may be <a href='http://download.kde.org/stable/applications/17.12.0/src/'>freely downloaded</a>. Instructions on compiling and installing are available from the <a href='/info/applications-17.12.0.php'>KDE Applications 17.12.0 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:4
msgid "KDE Ships KDE Applications 17.12.1"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:16
msgid "January 11, 2018. Today KDE released the first stability update for <a href='%1'>KDE Applications 17.12</a>. This release contains only bugfixes and translation updates, providing a safe and pleasant update for everyone."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:20
msgid "About 20 recorded bugfixes include improvements to Kontact, Dolphin, Filelight, Gwenview, KGet, Okteta, Umbrello, among others."
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:27
msgid "Sending mails in Kontact has been fixed for certain SMTP servers"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:28
msgid "Gwenview's timeline and tag searches have been improved"
msgstr ""
#. +> trunk
#: announcements/announce-applications-17.12.1.php:29
msgid "JAVA import has been fixed in Umbrello UML diagram tool"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:4
msgid "KDE Ships First Alpha of Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:15
#: announcements/announce-frameworks5-alpha2.php:15
#: announcements/announce-frameworks5-beta1.php:15
#: announcements/announce-frameworks5-beta3.php:15
#: announcements/frameworks5TP/index.php:31
msgid "Collaboration between Qt and KDE"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:16
msgid "February 14, 2014. Today KDE released the first alpha of Frameworks 5, part of a series of releases leading up to the final version planned for June 2014. This release includes progress since the <a href='frameworks5TP/index.php'>Frameworks 5 Tech Preview</a> in the beginning of this year."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:18
msgid "Improvements in this release include the addition of .pri files which make it easy for qmake based projects to use individual frameworks and two new frameworks: kactivities and plasma-framework. There has also been significant progress in getting frameworks to work on the Microsoft Windows platform."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:20
#: announcements/announce-frameworks5-alpha2.php:20
#: announcements/announce-frameworks5-beta1.php:31
#: announcements/announce-frameworks5-beta3.php:21
msgid "For information about Frameworks 5, see <a href='http://dot.kde.org/2013/09/25/frameworks-5'>this article on the dot news site</a>. Those interested in following progress can check out the <a href='https://projects.kde.org/projects/frameworks'>git repositories</a>, follow the discussions on the <a href='https://mail.kde.org/mailman/listinfo/kde-frameworks-devel'>KDE Frameworks Development mailing list</a> and contribute patches through <a href='https://git.reviewboard.kde.org/groups/kdeframeworks/'>review board</a>. Policies and the current state of the project and plans are available at the <a href='http://community.kde.org/Frameworks'>Frameworks wiki</a>. Real-time discussions take place on the <a href='irc://#kde-devel@freenode.net'>#kde-devel IRC channel on freenode.net</a>."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:23
#: announcements/announce-frameworks5-alpha2.php:23
#: announcements/announce-frameworks5-beta1.php:34
#: announcements/announce-frameworks5-beta3.php:24
#: announcements/frameworks5TP/index.php:75
msgid "Discuss, Spread the Word and See What's Happening: Tag as &quot;KDE&quot;"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:25
#: announcements/announce-frameworks5-alpha2.php:25
#: announcements/announce-frameworks5-beta1.php:36
#: announcements/announce-frameworks5-beta3.php:26
#: announcements/frameworks5TP/index.php:77
#: announcements/plasma2tp/index.php:52
msgid "KDE encourages people to spread the word on the Social Web. Submit stories to news sites, use channels like delicious, digg, reddit, twitter, identi.ca. Upload screenshots to services like Facebook, Flickr, ipernity and Picasa, and post them to appropriate groups. Create screencasts and upload them to YouTube, Blip.tv, and Vimeo. Please tag posts and uploaded materials with &quot;KDE&quot;. This makes them easy to find, and gives the KDE Promo Team a way to analyze coverage for these releases of KDE software."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:28
msgid "You can discuss this news story <a href='http://dot.kde.org/2014/02/14/kde-frameworks-5-alpha-out'>on the Dot</a>, KDE's news site."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:34
msgid "Installing frameworks Alpha 1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:38
#: announcements/announce-frameworks5-alpha2.php:38
#: announcements/announce-frameworks5-beta1.php:49
#: announcements/announce-frameworks5-beta3.php:39
msgid "A variety of distributions offers frequently updated packages of Frameworks 5. This includes Arch Linux, AOSC, Fedora, Kubuntu and openSUSE. See <a href='http://community.kde.org/Frameworks/Binary_Packages'>this wikipage</a> for an overview."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:42
#: announcements/announce-frameworks5-alpha2.php:42
#: announcements/announce-frameworks5-beta1.php:53
#: announcements/announce-frameworks5-beta3.php:43
msgid "Compiling frameworks"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha.php:46
#: announcements/announce-frameworks5-alpha2.php:46
#: announcements/announce-frameworks5-beta1.php:57
#: announcements/announce-frameworks5-beta3.php:47
msgid "The complete source code for frameworks %1 may be <a href='http://download.kde.org/unstable/frameworks/%1/'>freely downloaded</a>."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha2.php:4
msgid "KDE Ships Second Alpha of Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha2.php:16
msgid "March 3, 2014. Today KDE released the second alpha of Frameworks 5, part of a series of releases leading up to the final version planned for June 2014. This release includes progress since the <a href='announce-frameworks5-alpha.php'>previous alpha</a> in February."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha2.php:18
msgid "Efforts were directed towards getting frameworks to work on the MacOSX platform and <a href='http://blog.martin-graesslin.com/blog/2014/02/running-frameworks-powered-applications-on-wayland/'>Wayland on Linux</a>. Moreover, kprintutils is no more, kwallet-framework was renamed kwallet and some new frameworks have been added."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha2.php:28
msgid "You can discuss this news story <a href='http://dot.kde.org/2014/03/04/kde-frameworks-5-alpha-two-out'>on the Dot</a>, KDE's news site."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-alpha2.php:34
msgid "Installing frameworks Alpha 2 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:4
msgid "KDE Ships First Beta of Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:16
msgid "April 1, 2014. Today KDE makes available the first beta of Frameworks 5. This release is part of a series of releases leading up to the final version planned for June 2014 following the <a href='announce-frameworks5-alpha.php'>previous alpha</a> last month. This release marks the freeze of source incompatible changes and the introduction of the Frameworks 5 Porting Aids."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:17
msgid "Frameworks 5 Porting Aids"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:18
msgid "To ease the porting of KDE Platform 4 based applications, the Frameworks team has brought the 'Porting Aids' group into existence. These Frameworks contain kdelibs4 modules and API's that are being deprecated in KF5 and are provided only to assist applications in porting to KF5. As such these Frameworks will only have a limited support period, currently planned to be three release cycles. Application developers are strongly encouraged to port away from these Frameworks during this support period to prevent dependency on obsolete and unsupported code. Once support is ended, some unofficial development may continue on some modules, but they will not be part of the officially supported Frameworks release."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:20
msgid ""
"Currently, the following Frameworks belong to this group:\n"
"<ul>\n"
"<li>khtml</li>"
"\n"
"<li>kjs</li>"
"\n"
"<li>kjsembed</li>"
"\n"
"<li>krunner</li>"
"\n"
"<li>kmediaplayer</li>"
"\n"
"<li>kdelibs4support*</li>"
"\n"
"</ul>"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:29
msgid "* kdelibs4support contains deprecated API's from modules which no longer exist or deprecated classes from existing modules."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:39
msgid "You can discuss this news story <a href='http://dot.kde.org/2014/04/01/kde-ships-first-beta-frameworks-5'>on the Dot</a>, KDE's news site."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta1.php:45
msgid "Installing frameworks Beta 1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:4
msgid "KDE Ships Third Beta of Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:16
msgid "June 5, 2014. Today KDE makes available the third beta of Frameworks 5. This release is part of a series of releases leading up to the final version planned for July 2014."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:17
msgid "Frameworks 5 Beta 3"
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:18
msgid "This beta features multiple bug fixes, and the finishing touches required to ease the transition for developers to the newest iteration of the KDE Frameworks. This process has included contributions back to Qt5, the modularisation of the kdelibs, and general improvements to the components that developers can use to improve their applications and user experience. This pre-release improves co-installability with kdelibs4 and with future versions of KDE Frameworks (i.e. 6). This is also the first release with translations for Frameworks using the KDE's i18n translation system."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:29
msgid "You can discuss this news story <a href='http://dot.kde.org/2014/06/05/kde-releases-3rd-beta-frameworks-5'>on the Dot</a>, KDE's news site."
msgstr ""
#. +> trunk
#: announcements/announce-frameworks5-beta3.php:35
msgid "Installing frameworks Beta 3 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-i18n-bar.inc:139
msgid "Also available in:"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:4
msgid "KDE Ships First Alpha of Next Generation Plasma Workspace"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:15
#: announcements/announce-plasma-next-beta1.php:14
msgid "Plasma Next"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:17
msgid ""
"April 2, 2014. \n"
"KDE today releases the first Alpha version of the next-generation Plasma workspace. This kicks off the public testing phase for the next iteration of the popular Free software workspace, code-named 'Plasma Next' (referring to the 'next' Plasma release-more below). Plasma Next is built using QML and runs on top of a fully hardware-accelerated graphics stack using Qt 5, QtQuick 2 and an OpenGL(-ES) scenegraph. Plasma Next provides a core desktop experience that will be easy and familiar for current users of KDE workspaces or alternative Free Software or proprietary offerings. Plasma Next is planned to be released as 2014.06 on the 17th of June.\n"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:24
msgid "Installing Plasma Next Alpha 1 Binary Packages"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:28
msgid "A variety of distributions offer frequently updated packages of Plasma. This includes Kubuntu, Fedora and openSUSE. See <a href='http://community.kde.org/Plasma/Next/UnstablePackages'>this wikipage</a> for an overview."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:32
msgid "Compiling Plasma"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:36
msgid "The complete source code for Plasma Next Alpha 1 may be <a href='http://download.kde.org/unstable/plasma/%1/'>freely downloaded</a>. Planned future releases are listed on the <a href='http://techbase.kde.org/Schedules/Plasma/2014.6_Release_Schedule'>the Plasma release schedule.</a>"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-2014.6-alpha1.php:38
msgid ""
"It comes with three tars which do not co-install with\n"
"the equivalents using KDE libs 4. You will need to uninstall these\n"
"older versions or install into a separate prefix."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:4
msgid "KDE Ships First Beta of Next Generation Plasma Workspace"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:17
msgid ""
"May 14, 2014.\n"
"KDE today releases the <a\n"
"href='http://www.kde.org/announcements/announce-plasma-2014.6-beta1.php'>first\n"
"Beta version of the next-generation Plasma workspace</a>. The Plasma\n"
"team would like to ask the wider Free Software community to test this\n"
"release and give any feedback . Plasma Next is built using QML and\n"
"runs on top of a fully hardware-accelerated graphics stack using Qt 5,\n"
"QtQuick 2 and an OpenGL(-ES) scenegraph. Plasma Next provides a core\n"
"desktop experience that will be easy and familiar for current users of\n"
"KDE workspaces or alternative Free Software or proprietary\n"
"offerings. You can find more details on the upcoming Plasma Next\n"
"release in the <a\n"
"href='http://dot.kde.org/2014/04/02/kde-releases-alpha-version-next-gen-plasma-workspace'>alpha\n"
"release announcement</a>. Plasma Next is <a\n"
"href='http://techbase.kde.org/Schedules/Plasma/2014.6_Release_Schedule'>planned\n"
"to be released</a> in early July."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:34
msgid "<h2>Major changes</h2>"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:36
msgid "Kicker Menu in Plasma Next"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:39
msgid ""
"Since the alpha, a wide range of\n"
"changes has been made. Many are of course small yet important\n"
"stability, performance and bug fixes, but there have also been larger\n"
"changes. For example, the introduction of a new Application\n"
"Menu widget, which is a reimplementation of what originally debuted as\n"
"'Homerun Kicker' in the homerun package. See this recent <a\n"
"href='http://blogs.kde.org/2014/01/29/homerun-120'>blog about\n"
"Homerun</a>. Homerun has been proven to be very popular, with some\n"
"distributions picking it up as their default."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:50
msgid ""
"For the first time KDE is shipping its\n"
"own font. Oxygen Font is designed to be optimised for the\n"
"FreeType font rendering system and works well in all graphical user\n"
"interfaces, desktops and devices."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:57
#: announcements/plasma5.0-beta2/index.php:76
msgid "Ready for testing, not production"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:59
msgid "Clock and calendar in Plasma Next"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:61
msgid ""
"The workspace demonstrated in this pre-release is\n"
"Plasma Desktop. It represents an evolution of known desktop and laptop\n"
"paradigms. Plasma Next keeps existing workflows intact, while\n"
"providing incremental visual and interactive improvements. Many of\n"
"those can be observed in this technology preview, others are still\n"
"being worked on. Workspaces optimized for other devices will be made\n"
"available in future releases."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:69
msgid ""
"As an Beta release, this pre-release is not suitable\n"
"for production use. It is meant as a base for testing and gathering\n"
"feedback, so that the initial stable release of Plasma Next in July\n"
"will be a smooth ride for everybody involved and lay a stable\n"
"foundation for future versions. Plasma Next is intended for end users,\n"
"but will not provide feature parity with the latest 4.x release, which\n"
"will come in follow-up releases. The team is concentrating on the\n"
"core desktop features first, instead of trying to transplant every\n"
"single feature into the new workspaces. The feature set presented in\n"
"Plasma Next will suffice for most users, though some might miss a button\n"
"here and there. This is not because the Plasma team wants to remove\n"
"features, but simply that not everything has been done yet. Of course,\n"
"everybody is encouraged to help bringing Plasma back to its original\n"
"feature set and beyond."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:84
#: announcements/plasma5.0-beta2/index.php:95
msgid "Known issues"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:86
msgid ""
"<strong>Stability</strong> is not yet up to the level\n"
"where the developers want Plasma Next. With a substantial new toolkit\n"
"stack below come exciting new crashes and problems that need time to\n"
"be shaken out."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:91
msgid ""
"<strong>Performance</strong> of Plasma Next is heavily\n"
"dependent on specific hardware and software configurations and usage\n"
"patterns. While it has great potential, it takes time to wrangle this\n"
"out of it and the underlying stack is not entirely ready for this\n"
"either. In some scenarios, Plasma Next will display the buttery\n"
"smooth performance it is capable off - while at other times, it will\n"
"be hampered by various shortcomings. These can and will be addressed,\n"
"however, much is dependent on components like Qt, Mesa and hardware\n"
"drivers lower in the stack. Again, this will need time, as fixes made\n"
"in Qt now simply won't be released by the time the first Plasma Next\n"
"version becomes available."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:103
msgid ""
"<strong>Polish</strong> is a major benefit of QML2, as\n"
"it allows seamless usage of openGL, much more precise positioning and\n"
"many other abilities. At the same time, the immaturity of Qt Quick\n"
"Controls, the brand new successor to the 15+ year old Qt Widgets\n"
"technology, brings some rough edges yet to be smoothed out."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:109
msgid ""
"<strong>Design</strong> is not yet finalized. Much of\n"
"the work on theming has not made it in yet and the state of design in\n"
"this beta is not representative for the first Plasma Next\n"
"release. Below is a glimpse into the new design that the Visual Design\n"
"Group is working on and which will be released once it's\n"
"ready."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:116
msgid "Current draft of new design"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:118
#: announcements/plasma5.0-beta2/index.php:56
msgid "For developers"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:120
msgid ""
"Plasma Next builds on top of Qt 5. With this\n"
"transition, all QML-based UIs—which Plasma is built exclusively\n"
"with—will make use of a new scenegraph and scripting engine, resulting\n"
"in huge performance wins as well as architectural benefits, such as\n"
"being able to render using available graphics hardware."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:126
msgid ""
"Plasma Next is the first complex codebase to transition\n"
"to <a href='http://dot.kde.org/2013/09/25/frameworks-5'>KDE Frameworks\n"
"5</a>, which is a modular evolution of the KDE development platform\n"
"into leaner, less interdependent libraries."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:131
#: announcements/plasma5.0-beta2/index.php:38
msgid "For users"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:133
msgid ""
"Users testing this Plasma pre-release are greeted with\n"
"a more refined visual appearance. The new Breeze Plasma theme debuts\n"
"in this pre-release with a flatter, cleaner look. Less visual clutter\n"
"and improved contrast make Plasma Next a noticeable improvement over\n"
"the current stable Plasma workspaces. There has been some polish to\n"
"much of Plasma's default functionality, such as the system tray area,\n"
"the notifications, the settings for the compositor and window manager,\n"
"and many more. While it will feel familiar, users will notice a more\n"
"modern workspace."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:145
#: announcements/plasma-5.0-rc.php:24
#: announcements/plasma5.0-beta2/index.php:122
#: announcements/plasma5.0/index.php:143
msgid "Installing and providing feedback"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:147
#: announcements/plasma-5.0-rc.php:26
msgid ""
"The easiest way to try it out is the <a\n"
"href='http://files.kde.org/snapshots/neon5-latest.iso'>Neon5 ISO</a>,\n"
"a live OS image updated with the latest builds straight from\n"
"source."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:152
msgid ""
"Some distributions have created, or are in the process\n"
"of creating, packages; for an overview of Beta 1 packages, see <a\n"
"href='http://community.kde.org/Plasma/Next/UnstablePackages'>our\n"
"unstable packages wiki page</a>"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:157
msgid ""
"<a\n"
"href='http://download.kde.org/unstable/plasma/4.96.0/src/'>Source\n"
"download</a>. You can install Plasma Next directly from source. KDE's\n"
"community wiki has <a\n"
"href='http://community.kde.org/Frameworks/Building'>instructions</a>.\n"
"Note that Plasma Next does not co-install with Plasma 1, you will need\n"
"to uninstall older versions or install into a separate prefix."
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:166
#: announcements/plasma-5.0-rc.php:61
#: announcements/plasma5.0-beta2/index.php:143
msgid ""
"You can provide feedback either via the <a\n"
"href='irc://#plasma@freenode.net'>#Plasma IRC channel</a>, <a\n"
"href='https://mail.kde.org/mailman/listinfo/plasma-devel'>Plasma-devel\n"
"mailing list</a> or report issues via <a\n"
"href='https://bugs.kde.org/enter_bug.cgi?product=plasmashell&format=guided'>bugzilla</a>. Plasma\n"
"Next is also <a\n"
"href='http://forum.kde.org/viewforum.php?f=287'>discussed on the KDE\n"
"Forums</a>. Your feedback is greatly appreciated. If you like what the\n"
"team is doing, please let them know!"
msgstr ""
#. +> trunk
#: announcements/announce-plasma-next-beta1.php:182
#: announcements/plasma-5.0-rc.php:76 announcements/plasma-5.0.1.php:99
#: announcements/plasma-5.0.2.php:99 announcements/plasma-5.1.1.php:119
#: announcements/plasma-5.1.2.php:102 announcements/plasma-5.1.95.php:166
#: announcements/plasma-5.2.0.php:193 announcements/plasma-5.2.1.php:117
#: announcements/plasma-5.2.2.php:115 announcements/plasma-5.2.95.php:241
#: announcements/plasma-5.3.0.php:265 announcements/plasma-5.3.1.php:119
#: announcements/plasma-5.3.2.php:118 announcements/plasma-5.3.95.php:239
#: announcements/plasma-5.4.0.php:259 announcements/plasma-5.4.1.php:120
#: announcements/plasma-5.4.2.php:119 announcements/plasma-5.4.3.php:120
#: announcements/plasma-5.4.95.php:227 announcements/plasma-5.5.0.php:248
#: announcements/plasma-5.5.1.php:123 announcements/plasma-5.5.2.php:123
#: announcements/plasma-5.5.3.php:119 announcements/plasma-5.5.4.php:116
#: announcements/plasma-5.5.5.php:119 announcements/plasma-5.5.95.php:245
#: announcements/plasma-5.6.0.php:271 announcements/plasma-5.6.1.php:125
#: announcements/plasma-5.6.2.php:125 announcements/plasma-5.6.3.php:125
#: announcements/plasma-5.6.4.php:125 announcements/plasma-5.6.5.php:124
#: announcements/plasma-5.6.95.php:188 announcements/plasma-5.7.0.php:183
#: announcements/plasma-5.7.1.php:126 announcements/plasma-5.7.2.php:124
#: announcements/plasma-5.7.3.php:125 announcements/plasma-5.7.4.php:125
#: announcements/plasma-5.7.5.php:125 announcements/plasma-5.7.95.php:257
#: announcements/plasma-5.8.0.php:255 announcements/plasma-5.8.1.php:126
#: announcements/plasma-5.8.2.php:124 announcements/plasma-5.8.3.php:125
#: announcements/plasma-5.8.4.php:129 announcements/plasma-5.8.5.php:125
#: announcements/plasma-5.8.95.php:234 announcements/plasma-5.9.0.php:230
#: announcements/plasma-5.9.1.php:126
#: announcements/plasma5.0-beta2/index.php:159
#: announcements/plasma5.0/index.php:192
msgid "KDE is a <a href='http://www.gnu.org/philosophy/free-sw.html'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='/community/donations/'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our <a href='https://relate.kde.org/civicrm/contribute/transact?id=5'>Join the Game</a> initiative. </p>"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:6
msgid "Frameworks 5 Technology Preview"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:33
msgid "January 7, 2014. The KDE Community is proud to announce a Tech Preview of KDE Frameworks 5. Frameworks 5 is the result of almost three years of work to plan, modularize, review and port the set of libraries previously known as KDElibs or KDE Platform 4 into a set of Qt Addons, separate libraries with well-defined dependencies and abilities, ready for Qt 5. This gives the Qt ecosystem a powerful set of drop-in libraries providing additional functionality for a wide variety of tasks and platforms, based on over 15 years of KDE experience in building applications. Today, all the Frameworks are available in Tech Preview mode; a final release is planned for the first half of 2014. Some Tech Preview addons (notably KArchive and Threadweaver) are more mature than others at this time."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:36
msgid "What is Frameworks 5?"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:38
msgid "The KDE libraries are currently the common code base for (almost) all KDE applications. They provide high-level functionality such as toolbars and menus, spell checking and file access. Currently, 'kdelibs' is distributed as a single set of interconnected libraries. Through KDE Frameworks efforts, these libraries have been methodically reworked into a set of independent, cross platform libraries that will be readily available to all Qt developers."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:40
msgid "The KDE Frameworks—designed as drop-in Qt Addons—will enrich Qt as a development environment with libraries providing functions that simplify, accelerate and reduce the cost of Qt development. Frameworks eliminate the need to reinvent key functionality."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:45
msgid "The transition from Platform to Frameworks has been underway for almost three years and is being implemented by a team of about 20 (paid and volunteer) developers and actively supported by four companies. Frameworks 5 consists of 57 modules: 19 independent libraries (Qt Addons) not requiring any dependencies; 9 that require libraries which themselves are independent; and 29 with more significant dependency chains. Frameworks are developed following the <a href='http://community.kde.org/Frameworks/Policies'>Frameworks Policies</a>, in a vendor neutral, open process."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:47
msgid ""
"\n"
"<a href='http://dot.kde.org/2013/09/25/frameworks-5'>This KDE News article</a> has more background on Frameworks 5."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:50
msgid "<h2>Available today</h2>"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:51
msgid "The tech preview made available today contains all 57 modules that are part of Frameworks 5. Of these, two have a maturity level that shows the direction of Frameworks: ThreadWeaver and KArchive. Developers are invited to take all of the modules for a spin and provide feedback (and patches) to help bring them to the same level of maturity."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:54
msgid "KArchive offers support for many popular compression codecs in a self-contained, featureful and easy-to-use file archiving and extracting library. Just feed it files; there is no need to reinvent an archiving function in your Qt-based application! ThreadWeaver offers a high-level API to manage threads using job- and queue-based interfaces. It allows easy scheduling of thread execution by specifying dependencies between the threads and executing them while satisfying these dependencies, greatly simplifying the use of multiple threads. These are available for production use now."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:57
msgid "There is a <a href='http://community.kde.org/Frameworks/List'>full list of the Frameworks</a>; tarballs with the current code can be <a href='http://download.kde.org/unstable/frameworks/4.95.0/'>downloaded</a>. <a href='http://community.kde.org/Frameworks/Binary_Packages'>Binaries</a> are available as well."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:60
msgid "Overview of the KDE Frameworks (a work in progress!)"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:62
msgid "The team is currently working on providing a detailed listing of all Frameworks and third party libraries at <a href='http://inqlude.org'>inqlude.org</a>, the curated archive of Qt libraries. Each entry includes a dependency tree view. Dependency diagrams can also be found <a href='http://agateau.com/tmp/kf5/'>here</a>."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:65
msgid "<h2>Working towards a final release</h2>"
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:66
msgid "The team will do monthly releases with a beta planned for the first week of April and a final release in the beginning of June."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:69
msgid "Plans for this period include tidying up the infrastructure, integration with QMake and pkg-config for non-CMake users, getting CMake contributions upstream, and a final round of API cleanups and reviews. Frameworks 5 will be open for API changes until the beta in April."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:72
msgid "Those interested in following progress can check out the <a href='https://projects.kde.org/projects/frameworks'>git repositories</a>, follow the discussions on the <a href='https://mail.kde.org/mailman/listinfo/kde-frameworks-devel'>KDE Frameworks Development mailing list</a> and contribute patches through <a href='https://git.reviewboard.kde.org/groups/kdeframeworks/'>review board</a>. Policies and the current state of the project and plans are available at the <a href='http://community.kde.org/Frameworks'>Frameworks wiki</a>. Real-time discussions take place on the <a href='irc://#kde-devel@freenode.net'>#kde-devel IRC channel on freenode.net</a>."
msgstr ""
#. +> trunk
#: announcements/frameworks5TP/index.php:80
msgid "You can discuss this news story <a href='http://dot.kde.org/2014/01/07/frameworks-5-tech-preview'>on the Dot</a>, KDE's news site."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:4
msgid "First release of KDE Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:16
msgid ""
"\n"
"July 7th, 2014. The KDE Community is proud to announce KDE Frameworks 5.0. Frameworks 5 is the next generation of KDE libraries, modularized and optimized for easy integration in Qt applications. The Frameworks offer a wide variety of commonly needed functionality in mature, peer reviewed and well tested libraries with friendly licensing terms. There are over 50 different Frameworks as part of this release providing solutions including hardware integration, file format support, additional widgets, plotting functions, spell checking and more. Many of the Frameworks are cross platform and have minimal or no extra dependencies making them easy to build and add to any Qt application.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:21
msgid ""
"\n"
"The KDE Frameworks represent an effort to rework the powerful KDE Platform 4 libraries into a set of independent, cross platform modules that will be readily available to all Qt developers to simplify, accelerate and reduce the cost of Qt development. The individual Frameworks are cross-platform and well documented and tested and their usage will be familiar to Qt developers, following the style and standards set by the Qt Project. Frameworks are developed under the proven KDE governance model with a predictable release schedule, a clear and vendor neutral contributor process, open governance and flexible licensing (LGPL).\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:26
msgid ""
"\n"
"The Frameworks have a clear dependency structure, divided into Categories and Tiers. The Categories refer to runtime dependencies:\n"
"<ul>\n"
"<li><strong>Functional</strong> elements have no runtime dependencies.</li>"
"\n"
"<li><strong>Integration</strong> designates code that may require runtime dependencies for integration depending on what the OS or platform offers.</li>"
"\n"
"<li><strong>Solutions</strong> have mandatory runtime dependencies.</li>"
"\n"
"</ul>"
"\n"
"The <strong>Tiers</strong> refer to compile-time dependencies on other Frameworks. Tier 1 Frameworks have no dependencies within Frameworks and only need Qt and other relevant libraries. Tier 2 Frameworks can depend only on Tier 1. Tier 3 Frameworks can depend on other Tier 3 Frameworks as well as Tier 2 and Tier 1.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:37
msgid ""
"\n"
"The transition from Platform to Frameworks has been in progress for over 3 years, guided by top KDE technical contributors.\n"
"Learn more about Frameworks 5 <a href='%1'>in this article from last year</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:42
msgid ""
"\n"
"<h2>Highlights</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:47
msgid ""
"\n"
"There are over 50 Frameworks currently available. Browse the complete set <a href='%1'>in the online API documentation</a>. Below an impression of some of the functionality Frameworks offers to Qt application developers.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:52
msgid ""
"\n"
"<strong>KArchive</strong> offers support for many popular compression codecs in a self-contained, featureful and easy-to-use file archiving and extracting library. Just feed it files; there's no need to reinvent an archiving function in your Qt-based application!\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:58
msgid ""
"\n"
"<strong>ThreadWeaver</strong> offers a high-level API to manage threads using job- and queue-based interfaces. It allows easy scheduling of thread execution by specifying dependencies between the threads and executing them satisfying these dependencies, greatly simplifying the use of multiple threads.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:64
msgid ""
"\n"
"<strong>KConfig</strong> is a Framework to deal with storing and retrieving configuration settings. It features a group-oriented API. It works with INI files and XDG-compliant cascading directories. It generates code based on XML files.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:70
msgid ""
"\n"
"<strong>Solid</strong> offers hardware detection and can inform an application about storage devices and volumes, CPU, battery status, power management, network status and interfaces, and Bluetooth. For encrypted partitions, power and networking, running daemons are required.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:76
msgid ""
"\n"
"<strong>KI18n</strong> adds Gettext support to applications, making it easier to integrate the translation workflow of Qt applications in the general translation infrastructure of many projects.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:81
#: announcements/kde-frameworks-5.1.php:53
#: announcements/kde-frameworks-5.2.0.php:139
msgid ""
"\n"
"<h2>Getting started</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:86
msgid ""
"\n"
"On Linux, using packages for your favorite distribution is the recommended way to get access to KDE Frameworks.\n"
"<ul>\n"
"<li><a href='%1'>Binary package distro install instructions</a>.<br />"
"</li>"
"\n"
"</ul>"
"\n"
"Building from source is possible using the basic <em>cmake .; make; make install</em> commands. For a single Tier 1 framework, this is often the easiest solution. People interested in contributing to frameworks or tracking progress in development of the entire set are encouraged to <a href='%2'>use kdesrc-build</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:94
msgid ""
"\n"
"Frameworks 5.0 requires Qt 5.2. It represents the first in a series of planned monthly releases making improvements available to developers in a quick and predictable manner.\n"
"<ul>\n"
"<li><a href='%1'>KDE Frameworks 5.0 Source Info page with known bugs and security issues</a></li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:101
msgid ""
"\n"
"The team is currently working on providing a detailed listing of all Frameworks and third party libraries at <a href='%1'>inqlude.org</a>, the curated archive of Qt libraries. A complete list with API documentation is on <a href='%2'>api.kde.org</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:105
#: announcements/kde-frameworks-5.1.php:77
#: announcements/kde-frameworks-5.10.0.php:206
#: announcements/kde-frameworks-5.11.0.php:276
#: announcements/kde-frameworks-5.12.0.php:257
#: announcements/kde-frameworks-5.13.0.php:350
#: announcements/kde-frameworks-5.14.0.php:310
#: announcements/kde-frameworks-5.15.0.php:390
#: announcements/kde-frameworks-5.16.0.php:438
#: announcements/kde-frameworks-5.17.0.php:235
#: announcements/kde-frameworks-5.18.0.php:266
#: announcements/kde-frameworks-5.19.0.php:321
#: announcements/kde-frameworks-5.2.0.php:165
#: announcements/kde-frameworks-5.20.0.php:339
#: announcements/kde-frameworks-5.21.0.php:359
#: announcements/kde-frameworks-5.22.0.php:287
#: announcements/kde-frameworks-5.23.0.php:341
#: announcements/kde-frameworks-5.24.0.php:372
#: announcements/kde-frameworks-5.25.0.php:363
#: announcements/kde-frameworks-5.26.0.php:338
#: announcements/kde-frameworks-5.27.0.php:325
#: announcements/kde-frameworks-5.28.0.php:361
#: announcements/kde-frameworks-5.29.0.php:336
#: announcements/kde-frameworks-5.3.0.php:211
#: announcements/kde-frameworks-5.30.0.php:336
#: announcements/kde-frameworks-5.31.0.php:277
#: announcements/kde-frameworks-5.32.0.php:273
#: announcements/kde-frameworks-5.33.0.php:250
#: announcements/kde-frameworks-5.34.0.php:285
#: announcements/kde-frameworks-5.35.0.php:263
#: announcements/kde-frameworks-5.36.0.php:255
#: announcements/kde-frameworks-5.37.0.php:343
#: announcements/kde-frameworks-5.38.0.php:312
#: announcements/kde-frameworks-5.39.0.php:323
#: announcements/kde-frameworks-5.4.0.php:193
#: announcements/kde-frameworks-5.40.0.php:293
#: announcements/kde-frameworks-5.41.0.php:375
#: announcements/kde-frameworks-5.42.0.php:413
#: announcements/kde-frameworks-5.5.0.php:232
#: announcements/kde-frameworks-5.6.0.php:227
#: announcements/kde-frameworks-5.7.0.php:327
#: announcements/kde-frameworks-5.8.0.php:207
#: announcements/kde-frameworks-5.9.0.php:228
msgid ""
"\n"
"<h2>Contribute</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:109
#: announcements/kde-frameworks-5.1.php:81
#: announcements/kde-frameworks-5.10.0.php:210
#: announcements/kde-frameworks-5.11.0.php:280
#: announcements/kde-frameworks-5.12.0.php:261
#: announcements/kde-frameworks-5.13.0.php:354
#: announcements/kde-frameworks-5.14.0.php:314
#: announcements/kde-frameworks-5.15.0.php:394
#: announcements/kde-frameworks-5.16.0.php:442
#: announcements/kde-frameworks-5.17.0.php:239
#: announcements/kde-frameworks-5.18.0.php:270
#: announcements/kde-frameworks-5.19.0.php:325
#: announcements/kde-frameworks-5.20.0.php:343
#: announcements/kde-frameworks-5.21.0.php:363
#: announcements/kde-frameworks-5.22.0.php:291
#: announcements/kde-frameworks-5.23.0.php:345
#: announcements/kde-frameworks-5.24.0.php:376
#: announcements/kde-frameworks-5.25.0.php:367
#: announcements/kde-frameworks-5.26.0.php:342
#: announcements/kde-frameworks-5.27.0.php:329
#: announcements/kde-frameworks-5.28.0.php:365
#: announcements/kde-frameworks-5.29.0.php:340
#: announcements/kde-frameworks-5.3.0.php:215
#: announcements/kde-frameworks-5.30.0.php:340
#: announcements/kde-frameworks-5.31.0.php:281
#: announcements/kde-frameworks-5.32.0.php:277
#: announcements/kde-frameworks-5.33.0.php:254
#: announcements/kde-frameworks-5.34.0.php:289
#: announcements/kde-frameworks-5.35.0.php:267
#: announcements/kde-frameworks-5.36.0.php:259
#: announcements/kde-frameworks-5.37.0.php:347
#: announcements/kde-frameworks-5.38.0.php:316
#: announcements/kde-frameworks-5.39.0.php:327
#: announcements/kde-frameworks-5.4.0.php:197
#: announcements/kde-frameworks-5.40.0.php:297
#: announcements/kde-frameworks-5.41.0.php:379
#: announcements/kde-frameworks-5.42.0.php:417
#: announcements/kde-frameworks-5.5.0.php:236
#: announcements/kde-frameworks-5.6.0.php:231
#: announcements/kde-frameworks-5.7.0.php:331
#: announcements/kde-frameworks-5.8.0.php:211
#: announcements/kde-frameworks-5.9.0.php:232
msgid ""
"\n"
"Those interested in following and contributing to the development of Frameworks can check out the <a href='%1'>git repositories</a>, follow the discussions on the <a href='%2'>KDE Frameworks Development mailing list</a> and contribute patches through <a href='%3'>review board</a>. Policies and the current state of the project and plans are available at the <a href='%4'>Frameworks wiki</a>. Real-time discussions take place on the <a href=%5>#kde-devel IRC channel on freenode.net</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.0.php:114
#: announcements/kde-frameworks-5.1.php:87
#: announcements/kde-frameworks-5.10.0.php:216
#: announcements/kde-frameworks-5.11.0.php:286
#: announcements/kde-frameworks-5.12.0.php:267
#: announcements/kde-frameworks-5.13.0.php:360
#: announcements/kde-frameworks-5.14.0.php:320
#: announcements/kde-frameworks-5.15.0.php:400
#: announcements/kde-frameworks-5.16.0.php:448
#: announcements/kde-frameworks-5.17.0.php:245
#: announcements/kde-frameworks-5.18.0.php:276
#: announcements/kde-frameworks-5.19.0.php:331
#: announcements/kde-frameworks-5.2.0.php:175
#: announcements/kde-frameworks-5.20.0.php:349
#: announcements/kde-frameworks-5.21.0.php:369
#: announcements/kde-frameworks-5.22.0.php:297
#: announcements/kde-frameworks-5.23.0.php:351
#: announcements/kde-frameworks-5.24.0.php:382
#: announcements/kde-frameworks-5.25.0.php:373
#: announcements/kde-frameworks-5.26.0.php:348
#: announcements/kde-frameworks-5.27.0.php:335
#: announcements/kde-frameworks-5.28.0.php:371
#: announcements/kde-frameworks-5.29.0.php:346
#: announcements/kde-frameworks-5.3.0.php:221
#: announcements/kde-frameworks-5.30.0.php:346
#: announcements/kde-frameworks-5.31.0.php:287
#: announcements/kde-frameworks-5.32.0.php:283
#: announcements/kde-frameworks-5.33.0.php:260
#: announcements/kde-frameworks-5.34.0.php:295
#: announcements/kde-frameworks-5.35.0.php:273
#: announcements/kde-frameworks-5.36.0.php:265
#: announcements/kde-frameworks-5.37.0.php:353
#: announcements/kde-frameworks-5.38.0.php:322
#: announcements/kde-frameworks-5.39.0.php:333
#: announcements/kde-frameworks-5.4.0.php:203
#: announcements/kde-frameworks-5.40.0.php:303
#: announcements/kde-frameworks-5.41.0.php:385
#: announcements/kde-frameworks-5.42.0.php:423
#: announcements/kde-frameworks-5.5.0.php:242
#: announcements/kde-frameworks-5.6.0.php:237
#: announcements/kde-frameworks-5.7.0.php:337
#: announcements/kde-frameworks-5.8.0.php:217
#: announcements/kde-frameworks-5.9.0.php:238
msgid "You can discuss and share ideas on this release in the comments section of <a href='https://dot.kde.org/2014/07/07/kde-frameworks-5-makes-kde-software-more-accessible-all-qt-developers'>the dot article</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:4
msgid "Second release of KDE Frameworks 5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:16
msgid ""
" \n"
"August 7th, 2014. KDE today announces the second release\n"
"of KDE Frameworks 5. In line with the planned release policy for KDE\n"
"Frameworks this release comes one month after the initial version and\n"
"has both bugfixes and new features.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:23
#: announcements/kde-frameworks-5.10.0.php:21
#: announcements/kde-frameworks-5.11.0.php:21
#: announcements/kde-frameworks-5.12.0.php:21
#: announcements/kde-frameworks-5.13.0.php:21
#: announcements/kde-frameworks-5.14.0.php:21
#: announcements/kde-frameworks-5.15.0.php:21
#: announcements/kde-frameworks-5.16.0.php:21
#: announcements/kde-frameworks-5.17.0.php:21
#: announcements/kde-frameworks-5.18.0.php:21
#: announcements/kde-frameworks-5.2.0.php:21
#: announcements/kde-frameworks-5.3.0.php:21
#: announcements/kde-frameworks-5.4.0.php:21
#: announcements/kde-frameworks-5.5.0.php:21
#: announcements/kde-frameworks-5.6.0.php:21
#: announcements/kde-frameworks-5.7.0.php:21
#: announcements/kde-frameworks-5.8.0.php:21
#: announcements/kde-frameworks-5.9.0.php:21
msgid ""
" \n"
"KDE Frameworks are 60 addon libraries to Qt which provide a wide\n"
"variety of commonly needed functionality in mature, peer reviewed and\n"
"well tested libraries with friendly licensing terms. For an\n"
"introduction see <a\n"
"href='http://kde.org/announcements/kde-frameworks-5.0.php'>the\n"
"Frameworks 5.0 release announcement</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:32
#: announcements/kde-frameworks-5.10.0.php:34
#: announcements/kde-frameworks-5.11.0.php:34
#: announcements/kde-frameworks-5.12.0.php:34
#: announcements/kde-frameworks-5.13.0.php:34
#: announcements/kde-frameworks-5.14.0.php:34
#: announcements/kde-frameworks-5.15.0.php:34
#: announcements/kde-frameworks-5.16.0.php:34
#: announcements/kde-frameworks-5.17.0.php:34
#: announcements/kde-frameworks-5.18.0.php:34
#: announcements/kde-frameworks-5.19.0.php:34
#: announcements/kde-frameworks-5.2.0.php:30
#: announcements/kde-frameworks-5.20.0.php:34
#: announcements/kde-frameworks-5.21.0.php:34
#: announcements/kde-frameworks-5.22.0.php:34
#: announcements/kde-frameworks-5.23.0.php:34
#: announcements/kde-frameworks-5.24.0.php:34
#: announcements/kde-frameworks-5.25.0.php:34
#: announcements/kde-frameworks-5.26.0.php:34
#: announcements/kde-frameworks-5.27.0.php:34
#: announcements/kde-frameworks-5.28.0.php:34
#: announcements/kde-frameworks-5.29.0.php:34
#: announcements/kde-frameworks-5.3.0.php:34
#: announcements/kde-frameworks-5.30.0.php:34
#: announcements/kde-frameworks-5.31.0.php:34
#: announcements/kde-frameworks-5.32.0.php:34
#: announcements/kde-frameworks-5.33.0.php:34
#: announcements/kde-frameworks-5.34.0.php:34
#: announcements/kde-frameworks-5.35.0.php:34
#: announcements/kde-frameworks-5.36.0.php:34
#: announcements/kde-frameworks-5.37.0.php:34
#: announcements/kde-frameworks-5.38.0.php:34
#: announcements/kde-frameworks-5.39.0.php:34
#: announcements/kde-frameworks-5.4.0.php:34
#: announcements/kde-frameworks-5.40.0.php:34
#: announcements/kde-frameworks-5.41.0.php:34
#: announcements/kde-frameworks-5.42.0.php:34
#: announcements/kde-frameworks-5.6.0.php:34
#: announcements/kde-frameworks-5.7.0.php:34
#: announcements/kde-frameworks-5.8.0.php:34
#: announcements/kde-frameworks-5.9.0.php:34
msgid ""
"\n"
"<h2>New in this Version</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:37
msgid ""
"\n"
"This release, versioned 5.1, comes with a number of bugfixes and new features including:\n"
"</p>"
"\n"
"\n"
"<ul>\n"
"<li>KTextEditor: Major refactorings and improvements of the vi-mode</li>"
"\n"
"<li>KAuth: Now based on PolkitQt5-1</li>"
"\n"
"<li>New migration agent for KWallet</li>"
"\n"
"<li>Windows compilation fixes</li>"
"\n"
"<li>Translation fixes</li>"
"\n"
"<li>New install dir for KXmlGui files and for AppStream metainfo</li>"
"\n"
"<li><a href='http://www.proli.net/2014/08/04/taking-advantage-of-opengl-from-plasma/'>Plasma Taking advantage of OpenGL</a></li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:58
#: announcements/kde-frameworks-5.2.0.php:144
msgid ""
"\n"
"On Linux, using packages for your favorite distribution is the recommended way to get access to KDE Frameworks.\n"
"<ul>\n"
"<li><a href='%1'>Binary package distro install instructions</a>.<br />"
"</li>"
"\n"
"</ul>"
"\n"
"Building from source is possible using the basic <em>cmake .; make; make install</em> commands. For a single Tier 1 framework, this is often the easiest solution. People interested in contributing to frameworks or tracking progress in development of the entire set are encouraged to <a href='%2'>use kdesrc-build</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:66
msgid ""
"\n"
"Frameworks 5.1 requires Qt 5.2. It is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner.\n"
"<ul>\n"
"<li><a href='%1'>KDE Frameworks 5.1 Source Info page with known bugs and security issues</a></li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.1.php:73
#: announcements/kde-frameworks-5.10.0.php:202
#: announcements/kde-frameworks-5.11.0.php:272
#: announcements/kde-frameworks-5.12.0.php:253
#: announcements/kde-frameworks-5.13.0.php:346
#: announcements/kde-frameworks-5.14.0.php:306
#: announcements/kde-frameworks-5.15.0.php:386
#: announcements/kde-frameworks-5.16.0.php:434
#: announcements/kde-frameworks-5.17.0.php:231
#: announcements/kde-frameworks-5.18.0.php:262
#: announcements/kde-frameworks-5.19.0.php:317
#: announcements/kde-frameworks-5.2.0.php:161
#: announcements/kde-frameworks-5.20.0.php:335
#: announcements/kde-frameworks-5.21.0.php:355
#: announcements/kde-frameworks-5.22.0.php:283
#: announcements/kde-frameworks-5.23.0.php:337
#: announcements/kde-frameworks-5.24.0.php:368
#: announcements/kde-frameworks-5.25.0.php:359
#: announcements/kde-frameworks-5.26.0.php:334
#: announcements/kde-frameworks-5.27.0.php:321
#: announcements/kde-frameworks-5.28.0.php:357
#: announcements/kde-frameworks-5.29.0.php:332
#: announcements/kde-frameworks-5.3.0.php:207
#: announcements/kde-frameworks-5.30.0.php:332
#: announcements/kde-frameworks-5.31.0.php:273
#: announcements/kde-frameworks-5.32.0.php:269
#: announcements/kde-frameworks-5.33.0.php:246
#: announcements/kde-frameworks-5.34.0.php:281
#: announcements/kde-frameworks-5.35.0.php:259
#: announcements/kde-frameworks-5.36.0.php:251
#: announcements/kde-frameworks-5.37.0.php:339
#: announcements/kde-frameworks-5.38.0.php:308
#: announcements/kde-frameworks-5.39.0.php:319
#: announcements/kde-frameworks-5.4.0.php:189
#: announcements/kde-frameworks-5.40.0.php:289
#: announcements/kde-frameworks-5.41.0.php:371
#: announcements/kde-frameworks-5.42.0.php:409
#: announcements/kde-frameworks-5.5.0.php:228
#: announcements/kde-frameworks-5.6.0.php:223
#: announcements/kde-frameworks-5.7.0.php:323
#: announcements/kde-frameworks-5.8.0.php:203
#: announcements/kde-frameworks-5.9.0.php:224
msgid ""
"\n"
"A detailed listing of all Frameworks and other third party Qt libraries is at <a href='%1'>inqlude.org</a>, the curated archive of Qt libraries. A complete list with API documentation is on <a href='%2'>api.kde.org</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:4
msgid "Release of KDE Frameworks 5.10.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:16
msgid ""
" \n"
"May 08, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.10.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:30
#: announcements/kde-frameworks-5.11.0.php:30
#: announcements/kde-frameworks-5.12.0.php:30
#: announcements/kde-frameworks-5.13.0.php:30
#: announcements/kde-frameworks-5.14.0.php:30
#: announcements/kde-frameworks-5.15.0.php:30
#: announcements/kde-frameworks-5.16.0.php:30
#: announcements/kde-frameworks-5.17.0.php:30
#: announcements/kde-frameworks-5.18.0.php:30
#: announcements/kde-frameworks-5.19.0.php:30
#: announcements/kde-frameworks-5.20.0.php:30
#: announcements/kde-frameworks-5.21.0.php:30
#: announcements/kde-frameworks-5.22.0.php:30
#: announcements/kde-frameworks-5.23.0.php:30
#: announcements/kde-frameworks-5.24.0.php:30
#: announcements/kde-frameworks-5.25.0.php:30
#: announcements/kde-frameworks-5.26.0.php:30
#: announcements/kde-frameworks-5.27.0.php:30
#: announcements/kde-frameworks-5.28.0.php:30
#: announcements/kde-frameworks-5.29.0.php:30
#: announcements/kde-frameworks-5.3.0.php:30
#: announcements/kde-frameworks-5.30.0.php:30
#: announcements/kde-frameworks-5.31.0.php:30
#: announcements/kde-frameworks-5.32.0.php:30
#: announcements/kde-frameworks-5.33.0.php:30
#: announcements/kde-frameworks-5.34.0.php:30
#: announcements/kde-frameworks-5.35.0.php:30
#: announcements/kde-frameworks-5.36.0.php:30
#: announcements/kde-frameworks-5.37.0.php:30
#: announcements/kde-frameworks-5.38.0.php:30
#: announcements/kde-frameworks-5.39.0.php:30
#: announcements/kde-frameworks-5.4.0.php:30
#: announcements/kde-frameworks-5.40.0.php:30
#: announcements/kde-frameworks-5.41.0.php:30
#: announcements/kde-frameworks-5.42.0.php:30
#: announcements/kde-frameworks-5.5.0.php:30
#: announcements/kde-frameworks-5.6.0.php:30
#: announcements/kde-frameworks-5.7.0.php:30
#: announcements/kde-frameworks-5.8.0.php:30
#: announcements/kde-frameworks-5.9.0.php:30
msgid ""
"\n"
"This release is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:38
#: announcements/kde-frameworks-5.11.0.php:52
#: announcements/kde-frameworks-5.12.0.php:51
#: announcements/kde-frameworks-5.14.0.php:84
#: announcements/kde-frameworks-5.15.0.php:120
#: announcements/kde-frameworks-5.16.0.php:86
#: announcements/kde-frameworks-5.17.0.php:74
#: announcements/kde-frameworks-5.18.0.php:65
#: announcements/kde-frameworks-5.19.0.php:60
#: announcements/kde-frameworks-5.20.0.php:56
#: announcements/kde-frameworks-5.21.0.php:102
#: announcements/kde-frameworks-5.23.0.php:77
#: announcements/kde-frameworks-5.25.0.php:82
#: announcements/kde-frameworks-5.27.0.php:79
#: announcements/kde-frameworks-5.34.0.php:68
#: announcements/kde-frameworks-5.37.0.php:60
#: announcements/kde-frameworks-5.41.0.php:81
#: announcements/kde-frameworks-5.42.0.php:74
#: announcements/kde-frameworks-5.7.0.php:46
#: announcements/kde-frameworks-5.8.0.php:50
#: announcements/kde-frameworks-5.9.0.php:44
msgid "KActivities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:41
msgid "(no changelog provided)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:44
#: announcements/kde-frameworks-5.11.0.php:74
#: announcements/kde-frameworks-5.12.0.php:83
#: announcements/kde-frameworks-5.13.0.php:79
#: announcements/kde-frameworks-5.14.0.php:113
#: announcements/kde-frameworks-5.15.0.php:133
#: announcements/kde-frameworks-5.16.0.php:115
#: announcements/kde-frameworks-5.18.0.php:93
#: announcements/kde-frameworks-5.20.0.php:78
#: announcements/kde-frameworks-5.21.0.php:125
#: announcements/kde-frameworks-5.23.0.php:95
#: announcements/kde-frameworks-5.24.0.php:80
#: announcements/kde-frameworks-5.25.0.php:115
#: announcements/kde-frameworks-5.26.0.php:99
#: announcements/kde-frameworks-5.27.0.php:110
#: announcements/kde-frameworks-5.28.0.php:80
#: announcements/kde-frameworks-5.29.0.php:104
#: announcements/kde-frameworks-5.30.0.php:84
#: announcements/kde-frameworks-5.31.0.php:81
#: announcements/kde-frameworks-5.32.0.php:80
#: announcements/kde-frameworks-5.33.0.php:81
#: announcements/kde-frameworks-5.34.0.php:81
#: announcements/kde-frameworks-5.36.0.php:77
#: announcements/kde-frameworks-5.37.0.php:78
#: announcements/kde-frameworks-5.38.0.php:69
#: announcements/kde-frameworks-5.39.0.php:78
#: announcements/kde-frameworks-5.41.0.php:115
#: announcements/kde-frameworks-5.42.0.php:80
#: announcements/kde-frameworks-5.7.0.php:77
#: announcements/kde-frameworks-5.9.0.php:72
msgid "KConfig"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:47
msgid "Generate QML-proof classes using the kconfigcompiler"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:50
#: announcements/kde-frameworks-5.11.0.php:81
#: announcements/kde-frameworks-5.12.0.php:91
#: announcements/kde-frameworks-5.13.0.php:86
#: announcements/kde-frameworks-5.15.0.php:139
#: announcements/kde-frameworks-5.16.0.php:131
#: announcements/kde-frameworks-5.17.0.php:99
#: announcements/kde-frameworks-5.18.0.php:99
#: announcements/kde-frameworks-5.20.0.php:84
#: announcements/kde-frameworks-5.21.0.php:131
#: announcements/kde-frameworks-5.22.0.php:71
#: announcements/kde-frameworks-5.23.0.php:107
#: announcements/kde-frameworks-5.25.0.php:128
#: announcements/kde-frameworks-5.27.0.php:116
#: announcements/kde-frameworks-5.28.0.php:87
#: announcements/kde-frameworks-5.29.0.php:117
#: announcements/kde-frameworks-5.30.0.php:98
#: announcements/kde-frameworks-5.31.0.php:93
#: announcements/kde-frameworks-5.32.0.php:94
#: announcements/kde-frameworks-5.35.0.php:91
#: announcements/kde-frameworks-5.36.0.php:83
#: announcements/kde-frameworks-5.37.0.php:85
#: announcements/kde-frameworks-5.38.0.php:84
#: announcements/kde-frameworks-5.39.0.php:90
#: announcements/kde-frameworks-5.40.0.php:70
#: announcements/kde-frameworks-5.41.0.php:127
#: announcements/kde-frameworks-5.42.0.php:88
#: announcements/kde-frameworks-5.7.0.php:90
#: announcements/kde-frameworks-5.8.0.php:68
msgid "KCoreAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:53
msgid "New cmake macro kcoreaddons_add_plugin to create KPluginLoader-based plugins more easily."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:56
#: announcements/kde-frameworks-5.11.0.php:87
#: announcements/kde-frameworks-5.12.0.php:105
#: announcements/kde-frameworks-5.13.0.php:100
#: announcements/kde-frameworks-5.15.0.php:157
#: announcements/kde-frameworks-5.16.0.php:165
#: announcements/kde-frameworks-5.17.0.php:106
#: announcements/kde-frameworks-5.18.0.php:117
#: announcements/kde-frameworks-5.19.0.php:98
#: announcements/kde-frameworks-5.20.0.php:92
#: announcements/kde-frameworks-5.21.0.php:145
#: announcements/kde-frameworks-5.22.0.php:85
#: announcements/kde-frameworks-5.23.0.php:122
#: announcements/kde-frameworks-5.24.0.php:93
#: announcements/kde-frameworks-5.25.0.php:134
#: announcements/kde-frameworks-5.26.0.php:111
#: announcements/kde-frameworks-5.28.0.php:94
#: announcements/kde-frameworks-5.30.0.php:111
#: announcements/kde-frameworks-5.31.0.php:101
#: announcements/kde-frameworks-5.33.0.php:94
#: announcements/kde-frameworks-5.34.0.php:94
#: announcements/kde-frameworks-5.35.0.php:104
#: announcements/kde-frameworks-5.36.0.php:89
#: announcements/kde-frameworks-5.37.0.php:94
#: announcements/kde-frameworks-5.39.0.php:96
#: announcements/kde-frameworks-5.41.0.php:137
#: announcements/kde-frameworks-5.42.0.php:102
#: announcements/kde-frameworks-5.7.0.php:108
#: announcements/kde-frameworks-5.8.0.php:74
msgid "KDeclarative"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:59
msgid "Fix crash in texture cache."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:60
msgid "and other fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:63
#: announcements/kde-frameworks-5.11.0.php:114
#: announcements/kde-frameworks-5.12.0.php:137
#: announcements/kde-frameworks-5.14.0.php:150
#: announcements/kde-frameworks-5.16.0.php:201
#: announcements/kde-frameworks-5.19.0.php:127
#: announcements/kde-frameworks-5.21.0.php:171
#: announcements/kde-frameworks-5.24.0.php:133
#: announcements/kde-frameworks-5.25.0.php:146
#: announcements/kde-frameworks-5.30.0.php:123
#: announcements/kde-frameworks-5.34.0.php:119
#: announcements/kde-frameworks-5.38.0.php:105
#: announcements/kde-frameworks-5.39.0.php:109
#: announcements/kde-frameworks-5.40.0.php:90
#: announcements/kde-frameworks-5.41.0.php:176
#: announcements/kde-frameworks-5.7.0.php:123
#: announcements/kde-frameworks-5.8.0.php:91
msgid "KGlobalAccel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:66
msgid "Add new method globalShortcut which retrieves the shortcut as defined in global settings."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:69
#: announcements/kde-frameworks-5.13.0.php:155
#: announcements/kde-frameworks-5.26.0.php:142
#: announcements/kde-frameworks-5.28.0.php:118
#: announcements/kde-frameworks-5.37.0.php:128
msgid "KIdleTime"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:72
msgid "Prevent kidletime from crashing on platform wayland"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:75
#: announcements/kde-frameworks-5.11.0.php:126
#: announcements/kde-frameworks-5.13.0.php:161
#: announcements/kde-frameworks-5.14.0.php:175
#: announcements/kde-frameworks-5.15.0.php:223
#: announcements/kde-frameworks-5.16.0.php:235
#: announcements/kde-frameworks-5.17.0.php:132
#: announcements/kde-frameworks-5.18.0.php:158
#: announcements/kde-frameworks-5.19.0.php:165
#: announcements/kde-frameworks-5.20.0.php:153
#: announcements/kde-frameworks-5.21.0.php:189
#: announcements/kde-frameworks-5.22.0.php:139
#: announcements/kde-frameworks-5.23.0.php:176
#: announcements/kde-frameworks-5.24.0.php:174
#: announcements/kde-frameworks-5.25.0.php:179
#: announcements/kde-frameworks-5.26.0.php:148
#: announcements/kde-frameworks-5.27.0.php:157
#: announcements/kde-frameworks-5.28.0.php:130
#: announcements/kde-frameworks-5.29.0.php:174
#: announcements/kde-frameworks-5.30.0.php:153
#: announcements/kde-frameworks-5.31.0.php:128
#: announcements/kde-frameworks-5.32.0.php:126
#: announcements/kde-frameworks-5.33.0.php:119
#: announcements/kde-frameworks-5.34.0.php:138
#: announcements/kde-frameworks-5.35.0.php:142
#: announcements/kde-frameworks-5.36.0.php:122
#: announcements/kde-frameworks-5.37.0.php:140
#: announcements/kde-frameworks-5.38.0.php:117
#: announcements/kde-frameworks-5.39.0.php:131
#: announcements/kde-frameworks-5.40.0.php:102
#: announcements/kde-frameworks-5.41.0.php:184
#: announcements/kde-frameworks-5.42.0.php:168
#: announcements/kde-frameworks-5.7.0.php:146
#: announcements/kde-frameworks-5.8.0.php:109
#: announcements/kde-frameworks-5.9.0.php:92
msgid "KIO"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:78
msgid "Added KPropertiesDialog::KPropertiesDialog(urls) and KPropertiesDialog::showDialog(urls)."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:79
msgid "Asynchronous QIODevice-based data fetch for KIO::storedPut and KIO::AccessManager::put."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:80
msgid "Fix conditions with QFile::rename return value (bug 343329)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:81
msgid "Fixed KIO::suggestName to suggest better names (bug 341773)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:82
msgid "kioexec: Fixed path for writeable location for kurl (bug 343329)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:83
msgid "Store bookmarks only in user-places.xbel (bug 345174)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:84
msgid "Duplicate RecentDocuments entry if two different files have the same name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:85
msgid "Better error message if a single file is too large for the trash (bug 332692)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:86
msgid "Fix KDirLister crash upon redirection when the slot calls openURL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:89
#: announcements/kde-frameworks-5.11.0.php:138
#: announcements/kde-frameworks-5.16.0.php:264
#: announcements/kde-frameworks-5.17.0.php:148
#: announcements/kde-frameworks-5.20.0.php:192
#: announcements/kde-frameworks-5.21.0.php:209
#: announcements/kde-frameworks-5.23.0.php:191
#: announcements/kde-frameworks-5.24.0.php:200
#: announcements/kde-frameworks-5.26.0.php:163
#: announcements/kde-frameworks-5.27.0.php:177
#: announcements/kde-frameworks-5.28.0.php:163
#: announcements/kde-frameworks-5.29.0.php:186
#: announcements/kde-frameworks-5.30.0.php:185
#: announcements/kde-frameworks-5.31.0.php:144
#: announcements/kde-frameworks-5.34.0.php:151
#: announcements/kde-frameworks-5.35.0.php:154
#: announcements/kde-frameworks-5.36.0.php:134
#: announcements/kde-frameworks-5.37.0.php:150
#: announcements/kde-frameworks-5.39.0.php:172
#: announcements/kde-frameworks-5.40.0.php:135
#: announcements/kde-frameworks-5.41.0.php:219
#: announcements/kde-frameworks-5.42.0.php:219
#: announcements/kde-frameworks-5.7.0.php:168
msgid "KNewStuff"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:92
msgid "New set of classes, called KMoreTools and related. KMoreTools helps to add hints about external tools which are potentially not yet installed. Furthermore, it makes long menus shorter by providing a main and more section which is also user-configurable."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:95
#: announcements/kde-frameworks-5.7.0.php:174
#: announcements/kde-frameworks-5.8.0.php:118
#: announcements/kde-frameworks-5.9.0.php:115
msgid "KNotifications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:98
msgid "Fix KNotifications when used with Ubuntu's NotifyOSD (bug 345973)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:99
msgid "Don't trigger notification updates when setting the same properties (bug 345973)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:100
msgid "Introduce LoopSound flag allowing notifications to play sound in a loop if they need it (bug 346148)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:101
msgid "Don't crash if notification doesn't have a widget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:104
#: announcements/kde-frameworks-5.7.0.php:183
msgid "KPackage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:107
msgid "Add a KPackage::findPackages function similar to KPluginLoader::findPlugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:110
#: announcements/kde-frameworks-5.11.0.php:162
#: announcements/kde-frameworks-5.12.0.php:163
#: announcements/kde-frameworks-5.13.0.php:189
#: announcements/kde-frameworks-5.18.0.php:191
#: announcements/kde-frameworks-5.20.0.php:204
#: announcements/kde-frameworks-5.21.0.php:230
#: announcements/kde-frameworks-5.22.0.php:167
#: announcements/kde-frameworks-5.27.0.php:197
#: announcements/kde-frameworks-5.35.0.php:168
#: announcements/kde-frameworks-5.9.0.php:122
msgid "KPeople"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:113
msgid "Use KPluginFactory for instantiating the plugins, instead of KService (kept for compatibility)."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:116
#: announcements/kde-frameworks-5.11.0.php:180
#: announcements/kde-frameworks-5.13.0.php:203
#: announcements/kde-frameworks-5.14.0.php:206
#: announcements/kde-frameworks-5.15.0.php:259
#: announcements/kde-frameworks-5.16.0.php:292
#: announcements/kde-frameworks-5.20.0.php:214
#: announcements/kde-frameworks-5.21.0.php:243
#: announcements/kde-frameworks-5.22.0.php:179
#: announcements/kde-frameworks-5.23.0.php:210
#: announcements/kde-frameworks-5.25.0.php:230
#: announcements/kde-frameworks-5.30.0.php:220
#: announcements/kde-frameworks-5.33.0.php:149
#: announcements/kde-frameworks-5.40.0.php:156
#: announcements/kde-frameworks-5.7.0.php:196
#: announcements/kde-frameworks-5.8.0.php:132
msgid "KService"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:119
msgid "Fix wrong splitting of entry path (bug 344614)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:122
#: announcements/kde-frameworks-5.7.0.php:222
msgid "KWallet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:125
msgid "Migration agent now also check old wallet is empty before starting (bug 346498)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:128
#: announcements/kde-frameworks-5.11.0.php:206
#: announcements/kde-frameworks-5.13.0.php:270
#: announcements/kde-frameworks-5.14.0.php:226
#: announcements/kde-frameworks-5.15.0.php:309
#: announcements/kde-frameworks-5.16.0.php:368
#: announcements/kde-frameworks-5.17.0.php:169
#: announcements/kde-frameworks-5.19.0.php:230
#: announcements/kde-frameworks-5.21.0.php:273
#: announcements/kde-frameworks-5.22.0.php:210
#: announcements/kde-frameworks-5.23.0.php:265
#: announcements/kde-frameworks-5.24.0.php:289
#: announcements/kde-frameworks-5.25.0.php:256
#: announcements/kde-frameworks-5.26.0.php:237
#: announcements/kde-frameworks-5.28.0.php:254
#: announcements/kde-frameworks-5.29.0.php:251
#: announcements/kde-frameworks-5.30.0.php:239
#: announcements/kde-frameworks-5.31.0.php:177
#: announcements/kde-frameworks-5.32.0.php:172
#: announcements/kde-frameworks-5.33.0.php:170
#: announcements/kde-frameworks-5.34.0.php:191
#: announcements/kde-frameworks-5.35.0.php:194
#: announcements/kde-frameworks-5.36.0.php:156
#: announcements/kde-frameworks-5.37.0.php:213
#: announcements/kde-frameworks-5.38.0.php:220
#: announcements/kde-frameworks-5.39.0.php:211
#: announcements/kde-frameworks-5.40.0.php:188
#: announcements/kde-frameworks-5.41.0.php:259
#: announcements/kde-frameworks-5.42.0.php:286
#: announcements/kde-frameworks-5.7.0.php:231
#: announcements/kde-frameworks-5.8.0.php:145
#: announcements/kde-frameworks-5.9.0.php:142
msgid "KWidgetsAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:131
msgid "KDateTimeEdit: Fix so user input actually gets registered. Fix double margins."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:132
msgid "KFontRequester: fix selecting monospaced fonts only"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:135
#: announcements/kde-frameworks-5.13.0.php:281
#: announcements/kde-frameworks-5.15.0.php:315
#: announcements/kde-frameworks-5.18.0.php:209
#: announcements/kde-frameworks-5.19.0.php:238
#: announcements/kde-frameworks-5.20.0.php:242
#: announcements/kde-frameworks-5.22.0.php:217
#: announcements/kde-frameworks-5.23.0.php:271
#: announcements/kde-frameworks-5.25.0.php:266
#: announcements/kde-frameworks-5.28.0.php:274
#: announcements/kde-frameworks-5.29.0.php:260
#: announcements/kde-frameworks-5.31.0.php:189
#: announcements/kde-frameworks-5.35.0.php:200
#: announcements/kde-frameworks-5.37.0.php:221
#: announcements/kde-frameworks-5.38.0.php:230
#: announcements/kde-frameworks-5.40.0.php:196
#: announcements/kde-frameworks-5.41.0.php:267
#: announcements/kde-frameworks-5.7.0.php:238
#: announcements/kde-frameworks-5.8.0.php:151
#: announcements/kde-frameworks-5.9.0.php:148
msgid "KWindowSystem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:138
msgid "Don't depend on QX11Info in KXUtils::createPixmapFromHandle (bug 346496)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:139
msgid "new method NETWinInfo::xcbConnection() -&gt; xcb_connection_t*"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:142
#: announcements/kde-frameworks-5.9.0.php:155
msgid "KXmlGui"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:145
msgid "Fix shortcuts when secondary shortcut set (bug 345411)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:146
msgid "Update list of bugzilla products/components for bug reporting (bug 346559)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:147
msgid "Global shortcuts: allow configuring also the alternate shortcut"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:150
#: announcements/kde-frameworks-5.11.0.php:218
#: announcements/kde-frameworks-5.14.0.php:250
#: announcements/kde-frameworks-5.15.0.php:330
#: announcements/kde-frameworks-5.18.0.php:215
#: announcements/kde-frameworks-5.19.0.php:255
#: announcements/kde-frameworks-5.21.0.php:285
#: announcements/kde-frameworks-5.23.0.php:283
#: announcements/kde-frameworks-5.24.0.php:306
#: announcements/kde-frameworks-5.25.0.php:280
#: announcements/kde-frameworks-5.27.0.php:256
#: announcements/kde-frameworks-5.28.0.php:293
#: announcements/kde-frameworks-5.32.0.php:187
#: announcements/kde-frameworks-5.33.0.php:179
#: announcements/kde-frameworks-5.34.0.php:210
#: announcements/kde-frameworks-5.36.0.php:170
#: announcements/kde-frameworks-5.37.0.php:233
#: announcements/kde-frameworks-5.40.0.php:210
#: announcements/kde-frameworks-5.42.0.php:299
#: announcements/kde-frameworks-5.8.0.php:158
msgid "NetworkManagerQt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:153
msgid "The installed headers are now organized like all other frameworks."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:156
#: announcements/kde-frameworks-5.9.0.php:168
msgid "Plasma framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:159
msgid "PlasmaComponents.Menu now supports sections"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:160
msgid "Use KPluginLoader instead of ksycoca for loading C++ dataengines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:161
msgid "Consider visualParent rotation in popupPosition (bug 345787)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:164
#: announcements/kde-frameworks-5.11.0.php:239
#: announcements/kde-frameworks-5.12.0.php:223
#: announcements/kde-frameworks-5.13.0.php:314
#: announcements/kde-frameworks-5.15.0.php:351
#: announcements/kde-frameworks-5.20.0.php:301
#: announcements/kde-frameworks-5.22.0.php:247
#: announcements/kde-frameworks-5.24.0.php:337
#: announcements/kde-frameworks-5.25.0.php:328
#: announcements/kde-frameworks-5.26.0.php:288
#: announcements/kde-frameworks-5.29.0.php:288
#: announcements/kde-frameworks-5.30.0.php:287
#: announcements/kde-frameworks-5.31.0.php:229
#: announcements/kde-frameworks-5.37.0.php:258
#: announcements/kde-frameworks-5.40.0.php:240
#: announcements/kde-frameworks-5.41.0.php:324
#: announcements/kde-frameworks-5.42.0.php:342
msgid "Sonnet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:167
msgid "Don't try to highlight if there is no spell checker found. This would lead to an infinite loop with rehighlighRequest timer firing constanty."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:170
#: announcements/kde-frameworks-5.7.0.php:289
#: announcements/kde-frameworks-5.9.0.php:193
msgid "Frameworkintegration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:173
msgid ""
"Fix native file dialogs from widgets QFileDialog:\n"
"** File dialogs opened with exec() and without parent were opened, but any user-interaction was blocked in a way that no file could be selected nor the dialog closed.\n"
"** File dialogs opened with open() or show() with parent were not opened at all."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:178
#: announcements/kde-frameworks-5.11.0.php:248
#: announcements/kde-frameworks-5.12.0.php:229
#: announcements/kde-frameworks-5.13.0.php:322
#: announcements/kde-frameworks-5.14.0.php:282
#: announcements/kde-frameworks-5.15.0.php:362
#: announcements/kde-frameworks-5.16.0.php:410
#: announcements/kde-frameworks-5.17.0.php:207
#: announcements/kde-frameworks-5.18.0.php:238
#: announcements/kde-frameworks-5.19.0.php:293
#: announcements/kde-frameworks-5.20.0.php:311
#: announcements/kde-frameworks-5.21.0.php:331
#: announcements/kde-frameworks-5.22.0.php:259
#: announcements/kde-frameworks-5.23.0.php:313
#: announcements/kde-frameworks-5.24.0.php:344
#: announcements/kde-frameworks-5.25.0.php:335
#: announcements/kde-frameworks-5.26.0.php:310
#: announcements/kde-frameworks-5.27.0.php:297
#: announcements/kde-frameworks-5.28.0.php:333
#: announcements/kde-frameworks-5.29.0.php:308
#: announcements/kde-frameworks-5.3.0.php:185
#: announcements/kde-frameworks-5.30.0.php:308
#: announcements/kde-frameworks-5.31.0.php:249
#: announcements/kde-frameworks-5.32.0.php:245
#: announcements/kde-frameworks-5.33.0.php:222
#: announcements/kde-frameworks-5.34.0.php:257
#: announcements/kde-frameworks-5.35.0.php:235
#: announcements/kde-frameworks-5.36.0.php:227
#: announcements/kde-frameworks-5.37.0.php:315
#: announcements/kde-frameworks-5.38.0.php:284
#: announcements/kde-frameworks-5.39.0.php:295
#: announcements/kde-frameworks-5.4.0.php:161
#: announcements/kde-frameworks-5.40.0.php:265
#: announcements/kde-frameworks-5.41.0.php:347
#: announcements/kde-frameworks-5.42.0.php:385
#: announcements/kde-frameworks-5.5.0.php:200
#: announcements/kde-frameworks-5.6.0.php:199
#: announcements/kde-frameworks-5.7.0.php:299
#: announcements/kde-frameworks-5.8.0.php:179
#: announcements/kde-frameworks-5.9.0.php:200
msgid ""
"\n"
"<h2>Installing binary packages</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:183
#: announcements/kde-frameworks-5.11.0.php:253
#: announcements/kde-frameworks-5.12.0.php:234
#: announcements/kde-frameworks-5.13.0.php:327
#: announcements/kde-frameworks-5.14.0.php:287
#: announcements/kde-frameworks-5.15.0.php:367
#: announcements/kde-frameworks-5.16.0.php:415
#: announcements/kde-frameworks-5.17.0.php:212
#: announcements/kde-frameworks-5.18.0.php:243
#: announcements/kde-frameworks-5.19.0.php:298
#: announcements/kde-frameworks-5.20.0.php:316
#: announcements/kde-frameworks-5.21.0.php:336
#: announcements/kde-frameworks-5.22.0.php:264
#: announcements/kde-frameworks-5.23.0.php:318
#: announcements/kde-frameworks-5.24.0.php:349
#: announcements/kde-frameworks-5.25.0.php:340
#: announcements/kde-frameworks-5.26.0.php:315
#: announcements/kde-frameworks-5.27.0.php:302
#: announcements/kde-frameworks-5.28.0.php:338
#: announcements/kde-frameworks-5.29.0.php:313
#: announcements/kde-frameworks-5.3.0.php:190
#: announcements/kde-frameworks-5.30.0.php:313
#: announcements/kde-frameworks-5.31.0.php:254
#: announcements/kde-frameworks-5.32.0.php:250
#: announcements/kde-frameworks-5.33.0.php:227
#: announcements/kde-frameworks-5.34.0.php:262
#: announcements/kde-frameworks-5.35.0.php:240
#: announcements/kde-frameworks-5.36.0.php:232
#: announcements/kde-frameworks-5.37.0.php:320
#: announcements/kde-frameworks-5.38.0.php:289
#: announcements/kde-frameworks-5.39.0.php:300
#: announcements/kde-frameworks-5.4.0.php:166
#: announcements/kde-frameworks-5.40.0.php:270
#: announcements/kde-frameworks-5.41.0.php:352
#: announcements/kde-frameworks-5.42.0.php:390
#: announcements/kde-frameworks-5.5.0.php:205
#: announcements/kde-frameworks-5.6.0.php:204
#: announcements/kde-frameworks-5.7.0.php:304
#: announcements/kde-frameworks-5.8.0.php:184
#: announcements/kde-frameworks-5.9.0.php:205
msgid ""
"\n"
"On Linux, using packages for your favorite distribution is the recommended way to get access to KDE Frameworks.\n"
"<a href='%1'>Binary package distro install instructions</a>.<br />"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:189
#: announcements/kde-frameworks-5.11.0.php:259
#: announcements/kde-frameworks-5.12.0.php:240
#: announcements/kde-frameworks-5.13.0.php:333
#: announcements/kde-frameworks-5.14.0.php:293
#: announcements/kde-frameworks-5.15.0.php:373
#: announcements/kde-frameworks-5.16.0.php:421
#: announcements/kde-frameworks-5.17.0.php:218
#: announcements/kde-frameworks-5.18.0.php:249
#: announcements/kde-frameworks-5.19.0.php:304
#: announcements/kde-frameworks-5.20.0.php:322
#: announcements/kde-frameworks-5.21.0.php:342
#: announcements/kde-frameworks-5.22.0.php:270
#: announcements/kde-frameworks-5.23.0.php:324
#: announcements/kde-frameworks-5.24.0.php:355
#: announcements/kde-frameworks-5.25.0.php:346
#: announcements/kde-frameworks-5.26.0.php:321
#: announcements/kde-frameworks-5.27.0.php:308
#: announcements/kde-frameworks-5.28.0.php:344
#: announcements/kde-frameworks-5.29.0.php:319
#: announcements/kde-frameworks-5.3.0.php:195
#: announcements/kde-frameworks-5.30.0.php:319
#: announcements/kde-frameworks-5.31.0.php:260
#: announcements/kde-frameworks-5.32.0.php:256
#: announcements/kde-frameworks-5.33.0.php:233
#: announcements/kde-frameworks-5.34.0.php:268
#: announcements/kde-frameworks-5.35.0.php:246
#: announcements/kde-frameworks-5.36.0.php:238
#: announcements/kde-frameworks-5.37.0.php:326
#: announcements/kde-frameworks-5.38.0.php:295
#: announcements/kde-frameworks-5.39.0.php:306
#: announcements/kde-frameworks-5.4.0.php:172
#: announcements/kde-frameworks-5.40.0.php:276
#: announcements/kde-frameworks-5.41.0.php:358
#: announcements/kde-frameworks-5.42.0.php:396
#: announcements/kde-frameworks-5.5.0.php:211
#: announcements/kde-frameworks-5.6.0.php:210
#: announcements/kde-frameworks-5.7.0.php:310
#: announcements/kde-frameworks-5.8.0.php:190
#: announcements/kde-frameworks-5.9.0.php:211
msgid ""
"\n"
"<h2>Compiling from sources</h2>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:193
#: announcements/kde-frameworks-5.11.0.php:263
#: announcements/kde-frameworks-5.12.0.php:244
#: announcements/kde-frameworks-5.13.0.php:337
#: announcements/kde-frameworks-5.14.0.php:297
#: announcements/kde-frameworks-5.15.0.php:377
#: announcements/kde-frameworks-5.16.0.php:425
#: announcements/kde-frameworks-5.17.0.php:222
#: announcements/kde-frameworks-5.18.0.php:253
#: announcements/kde-frameworks-5.19.0.php:308
#: announcements/kde-frameworks-5.20.0.php:326
#: announcements/kde-frameworks-5.21.0.php:346
#: announcements/kde-frameworks-5.22.0.php:274
#: announcements/kde-frameworks-5.23.0.php:328
#: announcements/kde-frameworks-5.24.0.php:359
#: announcements/kde-frameworks-5.25.0.php:350
#: announcements/kde-frameworks-5.26.0.php:325
#: announcements/kde-frameworks-5.27.0.php:312
#: announcements/kde-frameworks-5.28.0.php:348
#: announcements/kde-frameworks-5.29.0.php:323
#: announcements/kde-frameworks-5.30.0.php:323
#: announcements/kde-frameworks-5.31.0.php:264
#: announcements/kde-frameworks-5.32.0.php:260
#: announcements/kde-frameworks-5.33.0.php:237
#: announcements/kde-frameworks-5.34.0.php:272
#: announcements/kde-frameworks-5.35.0.php:250
#: announcements/kde-frameworks-5.36.0.php:242
#: announcements/kde-frameworks-5.37.0.php:330
#: announcements/kde-frameworks-5.38.0.php:299
#: announcements/kde-frameworks-5.39.0.php:310
#: announcements/kde-frameworks-5.40.0.php:280
#: announcements/kde-frameworks-5.41.0.php:362
#: announcements/kde-frameworks-5.42.0.php:400
#: announcements/kde-frameworks-5.7.0.php:314
#: announcements/kde-frameworks-5.8.0.php:194
#: announcements/kde-frameworks-5.9.0.php:215
msgid "The complete source code for KDE Frameworks %1 may be <a href='http://download.kde.org/stable/frameworks/%2/'>freely downloaded</a>. Instructions on compiling and installing KDE Frameworks %1 are available from the <a href='/info/kde-frameworks-%1.php'>KDE Frameworks %1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.10.0.php:196
#: announcements/kde-frameworks-5.11.0.php:266
#: announcements/kde-frameworks-5.12.0.php:247
#: announcements/kde-frameworks-5.13.0.php:340
#: announcements/kde-frameworks-5.14.0.php:300
#: announcements/kde-frameworks-5.15.0.php:380
#: announcements/kde-frameworks-5.16.0.php:428
#: announcements/kde-frameworks-5.17.0.php:225
#: announcements/kde-frameworks-5.18.0.php:256
#: announcements/kde-frameworks-5.19.0.php:311
#: announcements/kde-frameworks-5.20.0.php:329
#: announcements/kde-frameworks-5.21.0.php:349
#: announcements/kde-frameworks-5.22.0.php:277
#: announcements/kde-frameworks-5.23.0.php:331
#: announcements/kde-frameworks-5.24.0.php:362
#: announcements/kde-frameworks-5.25.0.php:353
#: announcements/kde-frameworks-5.26.0.php:328
#: announcements/kde-frameworks-5.27.0.php:315
#: announcements/kde-frameworks-5.28.0.php:351
#: announcements/kde-frameworks-5.29.0.php:326
#: announcements/kde-frameworks-5.3.0.php:199
#: announcements/kde-frameworks-5.30.0.php:326
#: announcements/kde-frameworks-5.31.0.php:267
#: announcements/kde-frameworks-5.32.0.php:263
#: announcements/kde-frameworks-5.33.0.php:240
#: announcements/kde-frameworks-5.34.0.php:275
#: announcements/kde-frameworks-5.35.0.php:253
#: announcements/kde-frameworks-5.36.0.php:245
#: announcements/kde-frameworks-5.37.0.php:333
#: announcements/kde-frameworks-5.38.0.php:302
#: announcements/kde-frameworks-5.39.0.php:313
#: announcements/kde-frameworks-5.4.0.php:183
#: announcements/kde-frameworks-5.40.0.php:283
#: announcements/kde-frameworks-5.41.0.php:365
#: announcements/kde-frameworks-5.42.0.php:403
#: announcements/kde-frameworks-5.5.0.php:222
#: announcements/kde-frameworks-5.6.0.php:217
#: announcements/kde-frameworks-5.7.0.php:317
#: announcements/kde-frameworks-5.8.0.php:197
#: announcements/kde-frameworks-5.9.0.php:218
msgid ""
"\n"
"Building from source is possible using the basic <em>cmake .; make; make install</em> commands. For a single Tier 1 framework, this is often the easiest solution. People interested in contributing to frameworks or tracking progress in development of the entire set are encouraged to <a href='%1'>use kdesrc-build</a>.\n"
"Frameworks %2 requires Qt %3.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:4
msgid "Release of KDE Frameworks 5.11.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:16
msgid ""
" \n"
"June 12, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.11.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:38
#: announcements/kde-frameworks-5.12.0.php:38
#: announcements/kde-frameworks-5.14.0.php:68
#: announcements/kde-frameworks-5.15.0.php:102
#: announcements/kde-frameworks-5.16.0.php:70
#: announcements/kde-frameworks-5.17.0.php:56
#: announcements/kde-frameworks-5.18.0.php:56
#: announcements/kde-frameworks-5.19.0.php:51
#: announcements/kde-frameworks-5.21.0.php:88
#: announcements/kde-frameworks-5.22.0.php:57
#: announcements/kde-frameworks-5.24.0.php:60
#: announcements/kde-frameworks-5.25.0.php:73
#: announcements/kde-frameworks-5.26.0.php:77
#: announcements/kde-frameworks-5.27.0.php:73
#: announcements/kde-frameworks-5.28.0.php:51
#: announcements/kde-frameworks-5.29.0.php:63
#: announcements/kde-frameworks-5.30.0.php:50
#: announcements/kde-frameworks-5.31.0.php:54
#: announcements/kde-frameworks-5.32.0.php:55
#: announcements/kde-frameworks-5.33.0.php:51
#: announcements/kde-frameworks-5.34.0.php:54
#: announcements/kde-frameworks-5.35.0.php:57
#: announcements/kde-frameworks-5.36.0.php:54
#: announcements/kde-frameworks-5.37.0.php:49
#: announcements/kde-frameworks-5.38.0.php:47
#: announcements/kde-frameworks-5.39.0.php:53
#: announcements/kde-frameworks-5.41.0.php:57
#: announcements/kde-frameworks-5.42.0.php:67
msgid "Extra CMake Modules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:41
msgid "New arguments for ecm_add_tests(). (bug 345797)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:44
#: announcements/kde-frameworks-5.13.0.php:53
#: announcements/kde-frameworks-5.14.0.php:78
#: announcements/kde-frameworks-5.15.0.php:114
#: announcements/kde-frameworks-5.16.0.php:78
#: announcements/kde-frameworks-5.17.0.php:68
#: announcements/kde-frameworks-5.20.0.php:49
#: announcements/kde-frameworks-5.21.0.php:95
#: announcements/kde-frameworks-5.22.0.php:65
#: announcements/kde-frameworks-5.23.0.php:71
#: announcements/kde-frameworks-5.29.0.php:72
#: announcements/kde-frameworks-5.30.0.php:61
#: announcements/kde-frameworks-5.31.0.php:63
#: announcements/kde-frameworks-5.38.0.php:54
#: announcements/kde-frameworks-5.39.0.php:59
#: announcements/kde-frameworks-5.41.0.php:69
msgid "Framework Integration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:47
msgid "Use the correct initialDirectory for the KDirSelectDialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:48
msgid "Make sure the scheme is specified when overriding the start url value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:49
msgid "Only accept existing directories in FileMode::Directory mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:56
#: announcements/kde-frameworks-5.12.0.php:64
#: announcements/kde-frameworks-5.16.0.php:107
#: announcements/kde-frameworks-5.19.0.php:67
#: announcements/kde-frameworks-5.20.0.php:72
#: announcements/kde-frameworks-5.28.0.php:73
#: announcements/kde-frameworks-5.29.0.php:98
#: announcements/kde-frameworks-5.31.0.php:75
#: announcements/kde-frameworks-5.33.0.php:74
#: announcements/kde-frameworks-5.34.0.php:75
#: announcements/kde-frameworks-5.35.0.php:79
#: announcements/kde-frameworks-5.36.0.php:65
#: announcements/kde-frameworks-5.41.0.php:87
#: announcements/kde-frameworks-5.7.0.php:59
msgid "KAuth"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:59
msgid "Make KAUTH_HELPER_INSTALL_ABSOLUTE_DIR available to all KAuth users"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:62
#: announcements/kde-frameworks-5.12.0.php:77
#: announcements/kde-frameworks-5.15.0.php:127
#: announcements/kde-frameworks-5.18.0.php:87
#: announcements/kde-frameworks-5.21.0.php:110
#: announcements/kde-frameworks-5.26.0.php:93
#: announcements/kde-frameworks-5.27.0.php:104
#: announcements/kde-frameworks-5.35.0.php:85
#: announcements/kde-frameworks-5.7.0.php:71
msgid "KCodecs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:65
msgid "KEmailAddress: Add overload for extractEmailAddress and firstEmailAddress which returns an error message."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:68
#: announcements/kde-frameworks-5.13.0.php:72
#: announcements/kde-frameworks-5.14.0.php:107
#: announcements/kde-frameworks-5.19.0.php:80
#: announcements/kde-frameworks-5.21.0.php:118
#: announcements/kde-frameworks-5.41.0.php:107
msgid "KCompletion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:71
msgid "Fix unwanted selection when editing the filename in the file dialog (bug 344525)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:77
msgid "Prevent crash if QWindow::screen() is null"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:78
msgid "Add KConfigGui::setSessionConfig() (bug 346768)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:84
msgid "New KPluginLoader::findPluginById() convenience API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:90
msgid "support creation of ConfigModule from KPluginMetdata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:91
msgid "fix pressAndhold events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:94
#: announcements/kde-frameworks-5.12.0.php:116
#: announcements/kde-frameworks-5.13.0.php:111
#: announcements/kde-frameworks-5.14.0.php:122
#: announcements/kde-frameworks-5.15.0.php:172
#: announcements/kde-frameworks-5.16.0.php:182
#: announcements/kde-frameworks-5.17.0.php:120
#: announcements/kde-frameworks-5.18.0.php:130
#: announcements/kde-frameworks-5.19.0.php:115
#: announcements/kde-frameworks-5.20.0.php:104
#: announcements/kde-frameworks-5.21.0.php:152
#: announcements/kde-frameworks-5.22.0.php:91
#: announcements/kde-frameworks-5.23.0.php:129
#: announcements/kde-frameworks-5.24.0.php:105
#: announcements/kde-frameworks-5.26.0.php:121
#: announcements/kde-frameworks-5.27.0.php:132
#: announcements/kde-frameworks-5.28.0.php:100
#: announcements/kde-frameworks-5.31.0.php:108
#: announcements/kde-frameworks-5.32.0.php:101
#: announcements/kde-frameworks-5.35.0.php:111
#: announcements/kde-frameworks-5.36.0.php:97
#: announcements/kde-frameworks-5.37.0.php:100
#: announcements/kde-frameworks-5.40.0.php:77
#: announcements/kde-frameworks-5.42.0.php:115
msgid "KDELibs 4 Support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:97
msgid "Use QTemporaryFile instead of hardcoding a temporary file."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:100
#: announcements/kde-frameworks-5.12.0.php:131
#: announcements/kde-frameworks-5.13.0.php:118
#: announcements/kde-frameworks-5.14.0.php:129
#: announcements/kde-frameworks-5.16.0.php:195
#: announcements/kde-frameworks-5.20.0.php:110
#: announcements/kde-frameworks-5.22.0.php:98
#: announcements/kde-frameworks-5.23.0.php:136
#: announcements/kde-frameworks-5.24.0.php:118
#: announcements/kde-frameworks-5.26.0.php:127
#: announcements/kde-frameworks-5.27.0.php:139
#: announcements/kde-frameworks-5.28.0.php:106
#: announcements/kde-frameworks-5.30.0.php:117
#: announcements/kde-frameworks-5.32.0.php:107
#: announcements/kde-frameworks-5.33.0.php:101
#: announcements/kde-frameworks-5.34.0.php:101
#: announcements/kde-frameworks-5.38.0.php:98
#: announcements/kde-frameworks-5.41.0.php:152
#: announcements/kde-frameworks-5.42.0.php:122
#: announcements/kde-frameworks-5.8.0.php:83
msgid "KDocTools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:103
msgid "Update translations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:104
msgid "Update customization/ru"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:105
msgid "Fix entities with wrong links"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:108
#: announcements/kde-frameworks-5.13.0.php:134
#: announcements/kde-frameworks-5.14.0.php:136
#: announcements/kde-frameworks-5.21.0.php:165
#: announcements/kde-frameworks-5.23.0.php:145
#: announcements/kde-frameworks-5.24.0.php:127
#: announcements/kde-frameworks-5.31.0.php:115
#: announcements/kde-frameworks-5.35.0.php:117
#: announcements/kde-frameworks-5.41.0.php:161
#: announcements/kde-frameworks-5.42.0.php:133
msgid "KEmoticons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:111
msgid "Cache the theme in the integration plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:117
msgid "[runtime] Move platform specific code into plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:120
#: announcements/kde-frameworks-5.12.0.php:144
#: announcements/kde-frameworks-5.13.0.php:148
#: announcements/kde-frameworks-5.14.0.php:162
#: announcements/kde-frameworks-5.16.0.php:215
#: announcements/kde-frameworks-5.20.0.php:140
#: announcements/kde-frameworks-5.22.0.php:131
#: announcements/kde-frameworks-5.23.0.php:161
#: announcements/kde-frameworks-5.24.0.php:161
#: announcements/kde-frameworks-5.25.0.php:163
#: announcements/kde-frameworks-5.28.0.php:112
#: announcements/kde-frameworks-5.29.0.php:162
#: announcements/kde-frameworks-5.30.0.php:141
#: announcements/kde-frameworks-5.31.0.php:122
#: announcements/kde-frameworks-5.34.0.php:132
#: announcements/kde-frameworks-5.36.0.php:115
#: announcements/kde-frameworks-5.39.0.php:115
#: announcements/kde-frameworks-5.8.0.php:97
#: announcements/kde-frameworks-5.9.0.php:85
msgid "KIconThemes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:123
msgid "Optimize KIconEngine::availableSizes()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:129
msgid "Do not try to complete users and assert when prepend is non-empty. (bug 346920)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:130
msgid "Use KPluginLoader::factory() when loading KIO::DndPopupMenuPlugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:131
msgid "Fix deadlock when using network proxies (bug 346214)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:132
msgid "Fixed KIO::suggestName to preserve file extensions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:133
msgid "Kick off kbuildsycoca4 when updating sycoca5."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:134
msgid "KFileWidget: Don't accept files in directory only mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:135
msgid "KIO::AccessManager: Make it possible to treat sequential QIODevice asynchronously"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:141
msgid "Add new method fillMenuFromGroupingNames"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:142
msgid "KMoreTools: add many new groupings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:143
msgid "KMoreToolsMenuFactory: handling for \"git-clients-and-actions\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:144
msgid "createMenuFromGroupingNames: make url parameter optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:147
#: announcements/kde-frameworks-5.12.0.php:156
#: announcements/kde-frameworks-5.13.0.php:173
#: announcements/kde-frameworks-5.15.0.php:242
#: announcements/kde-frameworks-5.16.0.php:270
#: announcements/kde-frameworks-5.18.0.php:171
#: announcements/kde-frameworks-5.21.0.php:215
#: announcements/kde-frameworks-5.23.0.php:198
#: announcements/kde-frameworks-5.24.0.php:207
#: announcements/kde-frameworks-5.25.0.php:210
#: announcements/kde-frameworks-5.26.0.php:170
#: announcements/kde-frameworks-5.28.0.php:170
#: announcements/kde-frameworks-5.29.0.php:195
#: announcements/kde-frameworks-5.30.0.php:192
#: announcements/kde-frameworks-5.31.0.php:155
#: announcements/kde-frameworks-5.32.0.php:139
#: announcements/kde-frameworks-5.33.0.php:136
#: announcements/kde-frameworks-5.35.0.php:161
#: announcements/kde-frameworks-5.38.0.php:182
#: announcements/kde-frameworks-5.40.0.php:143
#: announcements/kde-frameworks-5.42.0.php:227
msgid "KNotification"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:150
msgid "Fix crash in NotifyByExecute when no widget has been set (bug 348510)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:151
msgid "Improve handling of notifications being closed (bug 342752)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:152
msgid "Replace QDesktopWidget usage with QScreen"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:153
msgid "Ensure KNotification can be used from a non-GUI thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:156
#: announcements/kde-frameworks-5.13.0.php:182
#: announcements/kde-frameworks-5.14.0.php:199
#: announcements/kde-frameworks-5.18.0.php:185
#: announcements/kde-frameworks-5.19.0.php:199
#: announcements/kde-frameworks-5.20.0.php:198
#: announcements/kde-frameworks-5.21.0.php:222
#: announcements/kde-frameworks-5.25.0.php:216
#: announcements/kde-frameworks-5.26.0.php:176
#: announcements/kde-frameworks-5.27.0.php:183
msgid "Package Framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:159
msgid "Guard the structure qpointer access (bug 347231)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:165
msgid "Use QTemporaryFile instead of hardcoding /tmp."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:168
#: announcements/kde-frameworks-5.27.0.php:203
#: announcements/kde-frameworks-5.28.0.php:188
#: announcements/kde-frameworks-5.29.0.php:212
#: announcements/kde-frameworks-5.9.0.php:129
msgid "KPty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:171
msgid "Use tcgetattr &amp; tcsetattr if available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:174
#: announcements/kde-frameworks-5.13.0.php:196
#: announcements/kde-frameworks-5.24.0.php:226
#: announcements/kde-frameworks-5.25.0.php:224
#: announcements/kde-frameworks-5.26.0.php:182
#: announcements/kde-frameworks-5.7.0.php:190
msgid "Kross"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:177
msgid "Fix loading of Kross modules \"forms\" and \"kdetranslation\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:183
msgid "When running as root preserve file ownership on existing cache files (bug 342438)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:184
msgid "Guard against being unable to open stream (bug 342438)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:185
msgid "Fix check for invalid permissions writing file (bug 342438)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:186
msgid "Fix querying ksycoca for x-scheme-handler/* pseudo-mimetypes. (bug 347353)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:189
#: announcements/kde-frameworks-5.12.0.php:177
#: announcements/kde-frameworks-5.13.0.php:210
#: announcements/kde-frameworks-5.14.0.php:214
#: announcements/kde-frameworks-5.15.0.php:288
#: announcements/kde-frameworks-5.16.0.php:302
#: announcements/kde-frameworks-5.17.0.php:155
#: announcements/kde-frameworks-5.18.0.php:197
#: announcements/kde-frameworks-5.19.0.php:211
#: announcements/kde-frameworks-5.20.0.php:222
#: announcements/kde-frameworks-5.21.0.php:251
#: announcements/kde-frameworks-5.22.0.php:185
#: announcements/kde-frameworks-5.23.0.php:218
#: announcements/kde-frameworks-5.24.0.php:241
#: announcements/kde-frameworks-5.25.0.php:237
#: announcements/kde-frameworks-5.26.0.php:188
#: announcements/kde-frameworks-5.27.0.php:210
#: announcements/kde-frameworks-5.28.0.php:203
#: announcements/kde-frameworks-5.29.0.php:219
#: announcements/kde-frameworks-5.30.0.php:226
#: announcements/kde-frameworks-5.31.0.php:171
#: announcements/kde-frameworks-5.32.0.php:153
#: announcements/kde-frameworks-5.33.0.php:155
#: announcements/kde-frameworks-5.34.0.php:175
#: announcements/kde-frameworks-5.36.0.php:148
#: announcements/kde-frameworks-5.37.0.php:172
#: announcements/kde-frameworks-5.38.0.php:201
#: announcements/kde-frameworks-5.39.0.php:193
#: announcements/kde-frameworks-5.40.0.php:163
#: announcements/kde-frameworks-5.41.0.php:236
#: announcements/kde-frameworks-5.42.0.php:254
#: announcements/kde-frameworks-5.7.0.php:204
#: announcements/kde-frameworks-5.8.0.php:138
#: announcements/kde-frameworks-5.9.0.php:135
msgid "KTextEditor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:192
msgid "Allow like in KDE 4.x times 3rdparty apps/plugins to install own highlighting XML files into katepart5/syntax"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:193
msgid "Add KTextEditor::Document::searchText()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:194
msgid "Bring back use of KEncodingFileDialog (bug 343255)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:197
#: announcements/kde-frameworks-5.12.0.php:186
#: announcements/kde-frameworks-5.13.0.php:252
#: announcements/kde-frameworks-5.16.0.php:353
#: announcements/kde-frameworks-5.29.0.php:226
#: announcements/kde-frameworks-5.40.0.php:174
msgid "KTextWidgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:200
msgid "Add a method to clear decorator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:201
msgid "Allow to use custom sonnet decorator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:202
msgid "Implement \"find previous\" in KTextEdit."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:203
msgid "Re-add support for speech-to-text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:209
msgid "KAssistantDialog: Re-add the Help button that was present in KDELibs4 version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:212
#: announcements/kde-frameworks-5.12.0.php:199
#: announcements/kde-frameworks-5.13.0.php:290
#: announcements/kde-frameworks-5.14.0.php:232
#: announcements/kde-frameworks-5.15.0.php:324
#: announcements/kde-frameworks-5.16.0.php:376
#: announcements/kde-frameworks-5.17.0.php:176
#: announcements/kde-frameworks-5.19.0.php:247
#: announcements/kde-frameworks-5.20.0.php:248
#: announcements/kde-frameworks-5.21.0.php:279
#: announcements/kde-frameworks-5.23.0.php:277
#: announcements/kde-frameworks-5.24.0.php:298
#: announcements/kde-frameworks-5.25.0.php:273
#: announcements/kde-frameworks-5.26.0.php:245
#: announcements/kde-frameworks-5.28.0.php:281
#: announcements/kde-frameworks-5.30.0.php:248
#: announcements/kde-frameworks-5.31.0.php:195
#: announcements/kde-frameworks-5.32.0.php:181
#: announcements/kde-frameworks-5.34.0.php:199
#: announcements/kde-frameworks-5.35.0.php:206
#: announcements/kde-frameworks-5.36.0.php:162
#: announcements/kde-frameworks-5.37.0.php:227
#: announcements/kde-frameworks-5.38.0.php:236
#: announcements/kde-frameworks-5.39.0.php:222
#: announcements/kde-frameworks-5.40.0.php:204
#: announcements/kde-frameworks-5.41.0.php:273
#: announcements/kde-frameworks-5.42.0.php:292
msgid "KXMLGUI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:215
msgid "Add session management for KMainWindow (bug 346768)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:221
msgid "Drop WiMAX support for NM 1.2.0+"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:224
#: announcements/kde-frameworks-5.12.0.php:205
#: announcements/kde-frameworks-5.13.0.php:296
#: announcements/kde-frameworks-5.14.0.php:256
#: announcements/kde-frameworks-5.15.0.php:336
#: announcements/kde-frameworks-5.16.0.php:386
#: announcements/kde-frameworks-5.17.0.php:182
#: announcements/kde-frameworks-5.18.0.php:221
#: announcements/kde-frameworks-5.19.0.php:270
#: announcements/kde-frameworks-5.20.0.php:265
#: announcements/kde-frameworks-5.21.0.php:302
#: announcements/kde-frameworks-5.22.0.php:223
#: announcements/kde-frameworks-5.23.0.php:296
#: announcements/kde-frameworks-5.24.0.php:313
#: announcements/kde-frameworks-5.25.0.php:292
#: announcements/kde-frameworks-5.26.0.php:252
#: announcements/kde-frameworks-5.27.0.php:272
#: announcements/kde-frameworks-5.28.0.php:300
#: announcements/kde-frameworks-5.29.0.php:272
#: announcements/kde-frameworks-5.30.0.php:262
#: announcements/kde-frameworks-5.31.0.php:202
#: announcements/kde-frameworks-5.32.0.php:194
#: announcements/kde-frameworks-5.33.0.php:188
#: announcements/kde-frameworks-5.34.0.php:224
#: announcements/kde-frameworks-5.35.0.php:213
#: announcements/kde-frameworks-5.36.0.php:184
#: announcements/kde-frameworks-5.37.0.php:240
#: announcements/kde-frameworks-5.38.0.php:245
#: announcements/kde-frameworks-5.39.0.php:228
#: announcements/kde-frameworks-5.40.0.php:217
#: announcements/kde-frameworks-5.41.0.php:279
#: announcements/kde-frameworks-5.42.0.php:305
msgid "Plasma Framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:227
msgid "Calendar components can now display week numbers (bug 338195)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:228
msgid "Use QtRendering for fonts in password fields"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:229
msgid "Fix AssociatedApplicationManager lookup when a mimetype has (bug 340326)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:230
msgid "Fix panel background coloring (bug 347143)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:231
msgid "Get rid of \"Could not load applet\" message"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:232
msgid "Capability to load QML kcms in plasmoid config windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:233
msgid "Don't use the DataEngineStructure for Applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:234
msgid "Port libplasma away from sycoca as much as possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:235
msgid "[plasmacomponents] Make SectionScroller follow the ListView.section.criteria"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:236
msgid "Scroll bars no longer automatically hide when a touch screen is present (bug 347254)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:242
msgid "Use one central cache for the SpellerPlugins."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:243
msgid "Reduce temporary allocations."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:244
msgid "Optimize: Do not wipe dict cache when copying speller objects."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.11.0.php:245
msgid "Optimise away save() calls by calling it once at the end if needed."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:4
msgid "Release of KDE Frameworks 5.12.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:16
msgid ""
" \n"
"July 10, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.12.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:41
msgid "Improve error reporting of query_qmake macro"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:44
#: announcements/kde-frameworks-5.14.0.php:61
#: announcements/kde-frameworks-5.15.0.php:92
#: announcements/kde-frameworks-5.16.0.php:62
#: announcements/kde-frameworks-5.21.0.php:58
#: announcements/kde-frameworks-5.26.0.php:44
#: announcements/kde-frameworks-5.27.0.php:55
#: announcements/kde-frameworks-5.33.0.php:45
#: announcements/kde-frameworks-5.35.0.php:44
#: announcements/kde-frameworks-5.41.0.php:44
msgid "BluezQt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:47
msgid "Remove all devices from adapter before removing the adapter (bug 349363)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:48
msgid "Update links in README.md"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:54
msgid "Adding the option not to track the user when in specific activities (similar to the 'private browsing' mode in a web browser)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:57
#: announcements/kde-frameworks-5.16.0.php:100
#: announcements/kde-frameworks-5.17.0.php:93
#: announcements/kde-frameworks-5.24.0.php:67
#: announcements/kde-frameworks-5.25.0.php:102
#: announcements/kde-frameworks-5.27.0.php:93
#: announcements/kde-frameworks-5.29.0.php:92
#: announcements/kde-frameworks-5.31.0.php:69
#: announcements/kde-frameworks-5.32.0.php:68
#: announcements/kde-frameworks-5.37.0.php:72
#: announcements/kde-frameworks-5.40.0.php:51
#: announcements/kde-frameworks-5.7.0.php:53
#: announcements/kde-frameworks-5.8.0.php:56
#: announcements/kde-frameworks-5.9.0.php:52
msgid "KArchive"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:60
msgid "Preserve executable permissions from files in copyTo()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:61
msgid "Clarify ~KArchive by removing dead code."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:67
msgid "Make it possible to use kauth-policy-gen from different sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:70
#: announcements/kde-frameworks-5.13.0.php:66
#: announcements/kde-frameworks-5.18.0.php:75
#: announcements/kde-frameworks-5.24.0.php:74
#: announcements/kde-frameworks-5.25.0.php:109
#: announcements/kde-frameworks-5.36.0.php:71
#: announcements/kde-frameworks-5.41.0.php:94
#: announcements/kde-frameworks-5.9.0.php:59
msgid "KBookmarks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:73
msgid "Don't add a bookmark with url is empty and text is empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:74
msgid "Encode KBookmark URL to fix compatibility with KDE4 applications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:80
msgid "Remove x-euc-tw prober"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:86
msgid "Install kconfig_compiler into libexec"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:87
msgid "New code generation option TranslationDomain=, for use with TranslationSystem=kde; normally needed in libraries."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:88
msgid "Make it possible to use kconfig_compiler from different sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:94
msgid "KDirWatch: Only establish a connection to FAM if requested"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:95
msgid "Allow filtering plugins and applications by formfactor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:96
msgid "Make it possible to use desktoptojson from different sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:99
#: announcements/kde-frameworks-5.13.0.php:94
#: announcements/kde-frameworks-5.18.0.php:111
#: announcements/kde-frameworks-5.21.0.php:139
#: announcements/kde-frameworks-5.22.0.php:79
#: announcements/kde-frameworks-5.30.0.php:105
#: announcements/kde-frameworks-5.33.0.php:88
#: announcements/kde-frameworks-5.35.0.php:98
#: announcements/kde-frameworks-5.42.0.php:95
#: announcements/kde-frameworks-5.7.0.php:102
msgid "KDBusAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:102
msgid "Clarify exit value for Unique instances"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:108
msgid "Add QQC clone of KColorButton"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:109
msgid "Assign a QmlObject for each kdeclarative instance when possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:110
msgid "Make Qt.quit() from QML code work"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:111
msgid "Merge branch 'mart/singleQmlEngineExperiment'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:112
msgid "Implement sizeHint based on implicitWidth/height"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:113
msgid "Subclass of QmlObject with static engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:119
msgid "Fix KMimeType::Ptr::isNull implementation."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:120
msgid "Reenable support for KDateTime streaming to kDebug/qDebug, for more SC"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:121
msgid "Load correct translation catalog for kdebugdialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:122
msgid "Don't skip documenting deprecated methods, so that people can read the porting hints"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:125
#: announcements/kde-frameworks-5.15.0.php:187
#: announcements/kde-frameworks-5.18.0.php:138
#: announcements/kde-frameworks-5.21.0.php:159
#: announcements/kde-frameworks-5.29.0.php:137
msgid "KDESU"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:128
msgid "Fix CMakeLists.txt to pass KDESU_USE_SUDO_DEFAULT to the compilation so it is used by suprocess.cpp"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:134
msgid "Update K5 docbook templates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:140
msgid "private runtime API gets installed to allow KWin to provide plugin for Wayland."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:141
msgid "Fallback for componentFriendlyForAction name resolving"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:147
msgid "Don't try to paint the icon if the size is invalid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:150
#: announcements/kde-frameworks-5.13.0.php:167
#: announcements/kde-frameworks-5.14.0.php:190
#: announcements/kde-frameworks-5.17.0.php:141
#: announcements/kde-frameworks-5.19.0.php:187
#: announcements/kde-frameworks-5.20.0.php:173
#: announcements/kde-frameworks-5.21.0.php:199
#: announcements/kde-frameworks-5.22.0.php:154
#: announcements/kde-frameworks-5.24.0.php:188
#: announcements/kde-frameworks-5.25.0.php:201
#: announcements/kde-frameworks-5.28.0.php:151
#: announcements/kde-frameworks-5.30.0.php:170
#: announcements/kde-frameworks-5.33.0.php:130
#: announcements/kde-frameworks-5.7.0.php:162
#: announcements/kde-frameworks-5.9.0.php:100
msgid "KItemModels"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:153
msgid "New proxy model: KRearrangeColumnsProxyModel. It supports reordering and hiding columns from the source model."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:159
msgid "Fix pixmap types in org.kde.StatusNotifierItem.xml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:160
msgid "[ksni] Add method to retrieve action by its name (bug 349513)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:166
msgid "Implement PersonsModel filtering facilities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:169
msgid "KPlotting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:172
msgid "KPlotWidget: add setAutoDeletePlotObjects, fix memory leak in replacePlotObject"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:173
msgid "Fix missing tickmarks when x0 &gt; 0."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:174
msgid "KPlotWidget: no need to setMinimumSize or resize."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:180
msgid "debianchangelog.xml: add Debian/Stretch, Debian/Buster, Ubuntu-Wily"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:181
msgid "Fix for UTF-16 surrogate pair backspace/delete behavior."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:182
msgid "Let QScrollBar handle the WheelEvents (bug 340936)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:183
msgid "Apply patch from KWrite devel top update pure basic HL, \"Alexander Clay\" &lt;tuireann@EpicBasic.org&gt;"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:189
msgid "Fix enable/disable ok button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:192
#: announcements/kde-frameworks-5.13.0.php:258
#: announcements/kde-frameworks-5.15.0.php:303
#: announcements/kde-frameworks-5.16.0.php:360
#: announcements/kde-frameworks-5.17.0.php:163
#: announcements/kde-frameworks-5.18.0.php:203
#: announcements/kde-frameworks-5.19.0.php:224
#: announcements/kde-frameworks-5.20.0.php:233
#: announcements/kde-frameworks-5.22.0.php:204
#: announcements/kde-frameworks-5.23.0.php:239
#: announcements/kde-frameworks-5.26.0.php:224
#: announcements/kde-frameworks-5.27.0.php:233
#: announcements/kde-frameworks-5.28.0.php:224
#: announcements/kde-frameworks-5.30.0.php:232
#: announcements/kde-frameworks-5.35.0.php:176
#: announcements/kde-frameworks-5.37.0.php:194
#: announcements/kde-frameworks-5.42.0.php:265
msgid "KWallet Framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:195
msgid "Imported and improved the kwallet-query command-line tool."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:196
msgid "Support to overwrite maps entries."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:202
msgid "Don't show \"KDE Frameworks version\" in the About KDE dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:208
msgid "Make the dark theme completely dark, also the complementary group"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:209
msgid "Cache naturalsize separately by scalefactor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:210
msgid "ContainmentView: Do not crash on an invalid corona metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:211
msgid "AppletQuickItem: Do not access KPluginInfo if not valid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:212
msgid "Fix occasional empty applet config pages (bug 349250)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:213
msgid "Improve hidpi support in the Calendar grid component"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:214
msgid "Verify KService has valid plugin info before using it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:215
msgid "[calendar] Ensure the grid is repainted on theme changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:216
msgid "[calendar] Always start counting weeks from Monday (bug 349044)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:217
msgid "[calendar] Repaint the grid when show week numbers setting changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:218
msgid "An opaque theme is now used when only the blur effect is available (bug 348154)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:219
msgid "Whitelist applets/versions for separate engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:220
msgid "Introduce a new class ContainmentView"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.12.0.php:226
msgid "Allow to use highlight spellchecking in a QPainTextEdit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:4
msgid "Release of KDE Frameworks 5.13.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:16
msgid ""
" \n"
"August 12, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.13.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:38
msgid "New frameworks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:41
msgid "KFileMetadata: file metadata and extraction library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:42
msgid "Baloo: file indexing and searching framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:45
msgid "Changes affecting all frameworks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:48
msgid "The Qt version requirement has been bumped from 5.2 to 5.3"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:49
msgid "Debug output has been ported to categorized output, for less noise by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:50
msgid "Docbook documentation has been reviewed and updated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:56
msgid "Fix crash in directories-only file dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:57
msgid "Don't rely on options()-&gt;initialDirectory() for Qt &lt; 5.4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:60
#: announcements/kde-frameworks-5.14.0.php:100
#: announcements/kde-frameworks-5.17.0.php:87
#: announcements/kde-frameworks-5.23.0.php:83
#: announcements/kde-frameworks-5.25.0.php:95
#: announcements/kde-frameworks-5.26.0.php:86
#: announcements/kde-frameworks-5.27.0.php:85
#: announcements/kde-frameworks-5.28.0.php:65
#: announcements/kde-frameworks-5.29.0.php:85
#: announcements/kde-frameworks-5.30.0.php:77
#: announcements/kde-frameworks-5.33.0.php:68
#: announcements/kde-frameworks-5.35.0.php:73
#: announcements/kde-frameworks-5.37.0.php:66
msgid "KDE Doxygen Tools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:63
msgid "Add man pages for kapidox scripts and update maintainer info in setup.py"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:69
msgid "KBookmarkManager: use KDirWatch instead of QFileSystemWatcher to detect user-places.xbel being created."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:75
msgid "HiDPI fixes for KLineEdit/KComboBox"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:76
msgid "KLineEdit: Don't let the user delete text when the lineedit is readonly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:82
msgid "Don't recommend to use deprecated API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:83
msgid "Don't generate deprecated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:89
msgid "Add Kdelibs4Migration::kdeHome() for cases not covered by resources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:90
msgid "Fix tr() warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:91
msgid "Fix KCoreAddons build on Clang+ARM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:97
msgid "KDBusService: document how to raise the active window, in Activate()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:103
msgid "Fix deprecated KRun::run call"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:104
msgid "Same behavior of MouseArea to map coords of filtered child events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:105
msgid "Detect initial face icon being created"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:106
msgid "Don't refresh the entire window when we render the plotter (bug 348385)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:107
msgid "add the userPaths context property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:108
msgid "Don't choke on empty QIconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:114
msgid "kconfig_compiler_kf5 moved to libexec, use kreadconfig5 instead for the findExe test"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:115
msgid "Document the (suboptimal) replacements for KApplication::disableSessionManagement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:121
msgid "change sentence about reporting bugs, ack'ed by dfaure"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:122
msgid "adapt german user.entities to en/user.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:123
msgid "Update general.entities: change markup for frameworks + plasma from application to productname"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:124
msgid "Update en/user.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:125
msgid "Update book and man page templates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:126
msgid "Use CMAKE_MODULE_PATH in cmake_install.cmake"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:127
msgid "BUG: 350799 (bug 350799)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:128
msgid "Update general.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:129
msgid "Search for required perl modules."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:130
msgid "Namespace a helper macro in the installed macros file."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:131
msgid "Adapted key name tranlations to standard tranlations provided by Termcat"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:137
msgid "Install Breeze theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:138
msgid "Kemoticons: make Breeze emotions standard instead of Glass"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:139
msgid "Breeze emoticon pack made by Uri Herrera"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:142
#: announcements/kde-frameworks-5.15.0.php:205
#: announcements/kde-frameworks-5.16.0.php:209
#: announcements/kde-frameworks-5.18.0.php:144
#: announcements/kde-frameworks-5.19.0.php:139
#: announcements/kde-frameworks-5.20.0.php:122
#: announcements/kde-frameworks-5.22.0.php:114
#: announcements/kde-frameworks-5.23.0.php:152
#: announcements/kde-frameworks-5.24.0.php:139
#: announcements/kde-frameworks-5.25.0.php:154
#: announcements/kde-frameworks-5.29.0.php:149
#: announcements/kde-frameworks-5.30.0.php:135
#: announcements/kde-frameworks-5.33.0.php:113
#: announcements/kde-frameworks-5.35.0.php:129
#: announcements/kde-frameworks-5.37.0.php:115
#: announcements/kde-frameworks-5.42.0.php:148
msgid "KHTML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:145
msgid "Let KHtml be useable w/o searching for private deps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:151
msgid "Remove temporary string allocations."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:152
msgid "Remove Theme tree debug entry"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:158
msgid "Private headers for platform plugins get installed."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:164
msgid "Kill unneeded QUrl wrappers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:170
msgid "New proxy: KExtraColumnsProxyModel, allows to add columns to an existing model."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:176
msgid "Fix the starting Y position for fallback popups"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:177
msgid "Reduce dependencies and move to Tier 2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:178
msgid "catch unknown notification entries (nullptr deref) (bug 348414)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:179
msgid "Remove pretty much useless warning message"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:185
msgid "make the subtitles, subtitles ;)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:186
msgid "kpackagetool: Fix output of non-latin text to stdout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:192
msgid "Add AllPhoneNumbersProperty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:193
msgid "PersonsSortFilterProxyModel now available for usage in QML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:199
msgid "krosscore: Install CamelCase header \"KrossConfig\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:200
msgid "Fix Python2 tests to run with PyQt5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:206
msgid "Fix kbuildsycoca --global"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:207
msgid "KToolInvocation::invokeMailer: fix attachment when we have multi attachement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:213
msgid "guard default log level for Qt &lt; 5.4.0, fix log cat name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:214
msgid "add hl for Xonotic (bug 342265)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:215
msgid "add Groovy HL (bug 329320)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:216
msgid "update J highlighting (bug 346386)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:217
msgid "Make compile with MSVC2015"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:218
msgid "less iconloader use, fix more pixelated icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:219
msgid "enable/disable find all button on pattern changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:220
msgid "Improved search &amp; replace bar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:221
msgid "remove useless ruler from powermode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:222
msgid "more slim search bar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:223
msgid "vi: Fix misreading of markType01 flag"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:224
msgid "Use correct qualification to call base method."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:225
msgid "Remove checks, QMetaObject::invokeMethod guards itself against that already."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:226
msgid "fix HiDPI issues with color pickers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:227
msgid "Cleanup coe: QMetaObject::invokeMethod is nullptr safe."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:228
msgid "more comments"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:229
msgid "change the way the interfaces are null safe"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:230
msgid "only output warnings and above per default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:231
msgid "remove todos from the past"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:232
msgid "Use QVarLengthArray to save the temporary QVector iteration."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:233
msgid "Move the hack to indent group labels to construction time."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:234
msgid "Fixup some serious issues with the KateCompletionModel in tree mode."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:235
msgid "Fix broken model design, which relied on Qt 4 behavior."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:236
msgid "obey umask rules when saving new file (bug 343158)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:237
msgid "add meson HL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:238
msgid "As Varnish 4.x introduces various syntax changes compared to Varnish 3.x, I wrote additional, separate syntax highlighting files for Varnish 4 (varnish4.xml, varnishtest4.xml)."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:239
msgid "fix HiDPI issues"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:240
msgid "vimode: don't crash if the &lt;c-e&gt; command gets executed in the end of a document. (bug 350299)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:241
msgid "Support QML multi-line strings."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:242
msgid "fix syntax of oors.xml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:243
msgid "add CartoCSS hl by Lukas Sommer (bug 340756)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:244
msgid "fix floating point HL, use the inbuilt Float like in C (bug 348843)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:245
msgid "split directions did got reversed (bug 348845)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:246
msgid "Bug 348317 - [PATCH] Katepart syntax highlighting should recognize \\u0123 style escapes for JavaScript (bug 348317)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:247
msgid "add *.cljs (bug 349844)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:248
msgid "Update the GLSL highlighting file."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:249
msgid "fixed default colors to be more distinguishable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:255
msgid "Delete old highlighter"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:261
msgid "Fix Windows build"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:262
msgid "Print a warning with error code when opening the wallet by PAM fails"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:263
msgid "Return the backend error code rather than -1 when opening a wallet failed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:264
msgid "Make the backend's \"unknown cipher\" a negative return code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:265
msgid "Watch for PAM_KWALLET5_LOGIN for KWallet5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:266
msgid "Fix crash when MigrationAgent::isEmptyOldWallet() check fails"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:267
msgid "KWallet can now be unlocked by PAM using kwallet-pam module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:273
msgid "New API taking QIcon parameters to set the icons in the tab bar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:274
msgid "KCharSelect: Fix unicode category and use boundingRect for width calculation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:275
msgid "KCharSelect: fix cell width to fit contents"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:276
msgid "KMultiTabBar margins now are ok on HiDPI screens"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:277
msgid "KRuler: deprecate unimplemented KRuler::setFrameStyle(), clean up comments"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:278
msgid "KEditListWidget: remove margin, so it aligns better with other widgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:284
msgid "Harden NETWM data reading (bug 350173)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:285
msgid "guard for older Qt versions like in kio-http"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:286
msgid "Private headers for platform plugins are installed."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:287
msgid "Platform specific parts loaded as plugins."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:293
msgid "Fix method behavior KShortcutsEditorPrivate::importConfiguration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:299
msgid "Using a pinch gesture one can now switch between the different zoom levels of the calenda"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:300
msgid "comment about code duplication in icondialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:301
msgid "Slider groove color was hardcoded, modified to use color scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:302
msgid "Use QBENCHMARK instead of a hard requirement on the machine's performance"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:303
msgid "Calendar navigation has been significantly improved, providing a year and decade overview"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:304
msgid "PlasmaCore.Dialog now has an 'opacity' property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:305
msgid "Make some space for the radio button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:306
msgid "Don't show the circular background if there's a menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:307
msgid "Add X-Plasma-NotificationAreaCategory definition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:308
msgid "Set notifications and osd to show on all desktops"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:309
msgid "Print useful warning when we can not get valid KPluginInfo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:310
msgid "Fix potential endless recursion in PlatformStatus::findLookAndFeelPackage()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:311
msgid "Rename software-updates.svgz to software.svgz"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:317
msgid "Add in CMake bits to enable building of Voikko plugin."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:318
msgid "Implement Sonnet::Client factory for Voikko spell chekers."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.13.0.php:319
msgid "Implement Voikko based spell checker (Sonnet::SpellerPlugin)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:4
msgid "Release of KDE Frameworks 5.14.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:16
msgid ""
" \n"
"September 12, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.14.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:38
msgid "In many frameworks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:41
msgid "Rename private classes to avoid exporting them accidentally"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:44
#: announcements/kde-frameworks-5.15.0.php:38
#: announcements/kde-frameworks-5.16.0.php:38
#: announcements/kde-frameworks-5.17.0.php:38
#: announcements/kde-frameworks-5.18.0.php:38
#: announcements/kde-frameworks-5.21.0.php:50
#: announcements/kde-frameworks-5.22.0.php:44
#: announcements/kde-frameworks-5.23.0.php:46
#: announcements/kde-frameworks-5.24.0.php:45
#: announcements/kde-frameworks-5.27.0.php:41
#: announcements/kde-frameworks-5.29.0.php:46
#: announcements/kde-frameworks-5.32.0.php:38
#: announcements/kde-frameworks-5.33.0.php:38
#: announcements/kde-frameworks-5.34.0.php:38
#: announcements/kde-frameworks-5.36.0.php:42
#: announcements/kde-frameworks-5.38.0.php:41
#: announcements/kde-frameworks-5.39.0.php:38
#: announcements/kde-frameworks-5.40.0.php:38
#: announcements/kde-frameworks-5.41.0.php:38
#: announcements/kde-frameworks-5.42.0.php:45
msgid "Baloo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:47
#: announcements/kde-frameworks-5.15.0.php:78
msgid "Add org.kde.baloo interface to root object for backward compatibility"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:48
msgid "Install a fake org.kde.baloo.file.indexer.xml to fix compilation of plasma-desktop 5.4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:49
msgid "Re-organize D-Bus interfaces"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:50
msgid "Use json metadata in kded plugin and fix plugin name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:51
msgid "Create one Database instance per process (bug 350247)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:52
msgid "Prevent baloo_file_extractor being killed while committing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:53
msgid "Generate xml interface file using qt5_generate_dbus_interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:54
msgid "Baloo monitor fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:55
msgid "Move file url export to main thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:56
msgid "Make sure cascaded configs are taken into account"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:57
msgid "Do not install namelink for private library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:58
msgid "Install translations, spotted by Hrvoje Senjan."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:64
msgid "Don't forward deviceChanged signal after device was removed (bug 351051)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:65
msgid "Respect -DBUILD_TESTING=OFF"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:71
msgid "Add macro to generate logging category declarations for Qt5."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:72
msgid "ecm_generate_headers: Add COMMON_HEADER option and multiple header functionality"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:73
msgid "Add -pedantic for KF5 code (when using gcc or clang)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:74
msgid "KDEFrameworkCompilerSettings: only enable strict iterators in debug mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:75
msgid "Also set the default visibility for C code to hidden."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:81
msgid "Also propagate window titles for folder-only file dialogs."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:87
msgid "Only spawn one action loader (thread) when the actions of the FileItemLinkingPlugin are not initialized (bug 351585)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:88
msgid "Fixing the build problems introduced by renaming the Private classes (11030ffc0)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:89
msgid "Add missing boost include path to build on OS X"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:90
msgid "Setting the shortcuts moved to activity settings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:91
msgid "Setting the private activity mode works"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:92
msgid "Refactor of the settings UI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:93
msgid "Basic activity methods are functional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:94
msgid "UI for the activity configuration and deletion pop-ups"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:95
msgid "Basic UI for the activities creation/deletion/configuration section in KCM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:96
msgid "Increased the chunk size for loading the results"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:97
msgid "Added missing include for std::set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:103
msgid "Windows fix: remove existing files before we replace them with os.rename."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:104
msgid "Use native paths when calling python to fix Windows builds"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:110
msgid "Fix bad behavior / running OOM on Windows (bug 345860)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:116
msgid "Optimize readEntryGui"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:117
msgid "Avoid QString::fromLatin1() in generated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:118
msgid "Minimize calls to expensive QStandardPaths::locateAll()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:119
msgid "Finish the port to QCommandLineParser (it has addPositionalArgument now)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:125
msgid "Port solid-networkstatus kded plugin to json metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:126
msgid "KPixmapCache: create dir if it doesn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:132
msgid "Sync Catalan user.entities with English (en) version."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:133
msgid "Add entities for sebas and plasma-pa"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:139
msgid "Performance: cache a KEmoticons instance here, not a KEmoticonsTheme."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:142
#: announcements/kde-frameworks-5.15.0.php:193
#: announcements/kde-frameworks-5.17.0.php:126
#: announcements/kde-frameworks-5.19.0.php:121
#: announcements/kde-frameworks-5.20.0.php:116
#: announcements/kde-frameworks-5.22.0.php:104
#: announcements/kde-frameworks-5.25.0.php:140
#: announcements/kde-frameworks-5.26.0.php:135
#: announcements/kde-frameworks-5.27.0.php:150
#: announcements/kde-frameworks-5.29.0.php:143
#: announcements/kde-frameworks-5.32.0.php:118
#: announcements/kde-frameworks-5.33.0.php:107
#: announcements/kde-frameworks-5.34.0.php:112
#: announcements/kde-frameworks-5.35.0.php:123
#: announcements/kde-frameworks-5.36.0.php:103
#: announcements/kde-frameworks-5.39.0.php:103
#: announcements/kde-frameworks-5.40.0.php:84
#: announcements/kde-frameworks-5.41.0.php:168
#: announcements/kde-frameworks-5.42.0.php:139
msgid "KFileMetaData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:145
msgid "PlainTextExtractor: enable O_NOATIME branch on GNU libc platforms"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:146
msgid "PlainTextExtractor: make the Linux branch work also without O_NOATIME"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:147
msgid "PlainTextExtractor: fix error check on open(O_NOATIME) failure"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:153
msgid "Only start kglobalaccel5 if needed."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:156
#: announcements/kde-frameworks-5.15.0.php:217
#: announcements/kde-frameworks-5.18.0.php:150
#: announcements/kde-frameworks-5.19.0.php:145
#: announcements/kde-frameworks-5.20.0.php:130
#: announcements/kde-frameworks-5.21.0.php:177
#: announcements/kde-frameworks-5.22.0.php:125
#: announcements/kde-frameworks-5.24.0.php:154
#: announcements/kde-frameworks-5.29.0.php:156
#: announcements/kde-frameworks-5.34.0.php:125
#: announcements/kde-frameworks-5.35.0.php:136
#: announcements/kde-frameworks-5.36.0.php:109
#: announcements/kde-frameworks-5.37.0.php:121
#: announcements/kde-frameworks-5.42.0.php:154
#: announcements/kde-frameworks-5.7.0.php:132
#: announcements/kde-frameworks-5.9.0.php:79
msgid "KI18n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:159
msgid "Gracefully handle no newline at end of pmap file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:165
msgid "KIconLoader: fix reconfigure() forgetting about inherited themes and app dirs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:166
msgid "Adhere better to the icon loading spec"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:169
#: announcements/kde-frameworks-5.16.0.php:222
#: announcements/kde-frameworks-5.19.0.php:151
#: announcements/kde-frameworks-5.28.0.php:124
#: announcements/kde-frameworks-5.8.0.php:103
msgid "KImageFormats"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:172
msgid "eps: fix includes related to Qt Caterogized Logging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:178
msgid "Use Q_OS_WIN instead of Q_OS_WINDOWS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:179
msgid "Make KDE_FORK_SLAVES work under Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:180
msgid "Disable installation of desktop file for ProxyScout kded module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:181
msgid "Provide deterministic sort order for KDirSortFilterProxyModelPrivate::compare"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:182
msgid "Show custom folder icons again (bug 350612)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:183
msgid "Move kpasswdserver from kded to kiod"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:184
msgid "Fix porting bugs in kpasswdserver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:185
msgid "Remove legacy code for talking very very old versions of kpasswdserver."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:186
msgid "KDirListerTest: use QTRY_COMPARE on both statements, to fix race showed by CI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:187
msgid "KFilePlacesModel: implement old TODO about using trashrc instead of a full-blown KDirLister."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:193
msgid "New proxymodel: KConcatenateRowsProxyModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:194
msgid "KConcatenateRowsProxyModelPrivate: fix handling of layoutChanged."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:195
msgid "More checking on the selection after sorting."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:196
msgid "KExtraColumnsProxyModel: fix bug in sibling() which broke e.g. selections"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:202
msgid "kpackagetool can uninstall a package from a package file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:203
msgid "kpackagetool is now smarter about finding the right servicetype"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:209
msgid "KSycoca: check timestamps and run kbuildsycoca if needed. No kded dependency anymore."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:210
msgid "Don't close ksycoca right after opening it."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:211
msgid "KPluginInfo now correctly handles FormFactor metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:217
msgid "Merge allocation of TextLineData and ref count block."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:218
msgid "Change default keyboard shortcut for \"go to previous editing line\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:219
msgid "Syntax highlighting Haskell comment fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:220
msgid "Speed up code-completion pop-up appearance"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:221
msgid "minimap: Attempt to improve the look and feel (bug 309553)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:222
msgid "nested comments in Haskell syntax highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:223
msgid "Fix problem with wrong unindent for python (bug 351190)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:229
msgid "KPasswordDialog: let the user change the password visibility (bug 224686)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:235
msgid "Fix KSwitchLanguageDialog not showing most languages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:238
#: announcements/kde-frameworks-5.27.0.php:250
#: announcements/kde-frameworks-5.9.0.php:162
msgid "KXmlRpcClient"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:241
msgid "Avoid QLatin1String wherever it allocates heap memory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:244
#: announcements/kde-frameworks-5.28.0.php:287
msgid "ModemManagerQt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:247
msgid "Fix metatype conflict with the latest nm-qt change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:253
msgid "Added new properties from the latest NM snapshot/releases"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:259
msgid "reparent to flickable if possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:260
msgid "fix package listing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:261
msgid "plasma: Fix applet actions might be nullptr (bug 351777)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:262
msgid "The onClicked signal of PlasmaComponents.ModelContextMenu now works properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:263
msgid "PlasmaComponents ModelContextMenu can now create Menu sections"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:264
msgid "Port platformstatus kded plugin to json metadata..."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:265
msgid "Handle an invalid metadata in PluginLoader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:266
msgid "Let the RowLayout figure out the size of the label"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:267
msgid "always show the edit menu when the cursor is visible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:268
msgid "Fix loop on ButtonStyle"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:269
msgid "Don't change the flat-iness of a button on pressed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:270
msgid "on touchscreen and mobile scrollbars are transient"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:271
msgid "adjust flick velocity&amp;deceleration to dpi"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:272
msgid "custom cursor delegate only if mobile"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:273
msgid "touch friendly text cursor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:274
msgid "fix parenting and popping up policy"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:275
msgid "declare __editMenu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:276
msgid "add missing cursot handles delegates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:277
msgid "rewrite the EditMenu implementation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:278
msgid "use the mobile menu only conditionally"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.14.0.php:279
msgid "reparent the menu to root"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:4
msgid "Release of KDE Frameworks 5.15.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:16
msgid ""
" \n"
"October 10, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.15.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:41
msgid "Fix limit/offset handling in SearchStore::exec"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:42
msgid "Recreate the baloo index"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:43
msgid "balooctl config: add options to set/view onlyBasicIndexing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:44
msgid "Port balooctl check to work with new architecture (bug 353011)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:45
msgid "FileContentIndexer: fix emitting filePath twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:46
msgid "UnindexedFileIterator: mtime is quint32 not quint64"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:47
msgid "Transaction: fix another Dbi typo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:48
msgid "Transaction: Fix documentMTime() and documentCTime() using wrong Dbis."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:49
msgid "Transaction::checkPostingDbInTermsDb: Optimize code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:50
msgid "Fix dbus warnings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:51
msgid "Balooctl: Add checkDb command"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:52
msgid "balooctl config: Add \"exclude filter\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:53
msgid "KF5Baloo: Make sure D-Bus interfaces are generated before they are used. (bug 353308)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:54
msgid "Avoid using QByteArray::fromRawData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:55
msgid "Remove baloo-monitor from baloo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:56
msgid "TagListJob: Emit error when failed to open database"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:57
msgid "Do not ignore subterms if not found"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:58
msgid "Cleaner code for failing Baloo::File::load() on DB open fail."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:59
msgid "Make balooctl use IndexerConfig instead of manipulating baloofilerc directly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:60
msgid "Improve i18n for balooshow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:61
msgid "Make balooshow fail gracefully if database cannot be opened."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:62
msgid "Fail Baloo::File::load() if the Database is not open. (bug 353049)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:63
msgid "IndexerConfig: add refresh() method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:64
msgid "inotify: Do not simulate a closedWrite event after move without cookie"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:65
msgid ""
"ExtractorProcess: Remove the extra \n"
" at the end of the filePath"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:66
msgid "baloo_file_extractor: call QProcess::close before destroying the QProcess"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:67
msgid "baloomonitorplugin/balooctl: i18nize indexer state."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:68
msgid "BalooCtl: Add a 'config' option"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:69
msgid "Make baloosearch more presentable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:70
msgid "Remove empty EventMonitor files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:71
msgid "BalooShow: Show more information when the ids do not match"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:72
msgid "BalooShow: When called with an id check if the id is correct"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:73
msgid "Add a FileInfo class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:74
msgid "Add error checking in various bits so that Baloo doesn't crash when disabled. (bug 352454)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:75
msgid "Fix Baloo not respecting \"basic indexing only\" config option"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:76
msgid "Monitor: Fetch remaining time on startup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:77
msgid "Use actual method calls in MainAdaptor instead of QMetaObject::invokeMethod"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:79
msgid "Fix date string displayed in address bar due to porting to QDate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:80
msgid "Add delay after each file instead of each batch"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:81
msgid "Remove Qt::Widgets dependency from baloo_file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:82
msgid "Remove unused code from baloo_file_extractor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:83
msgid "Add baloo monitor or experimental qml plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:84
msgid "Make \"querying for remaining time\" thread safe"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:85
msgid "kioslaves: Add missing override for virtual functions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:86
msgid "Extractor: Set the applicationData after constructing the app"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:87
msgid "Query: Implement support for 'offset'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:88
msgid "Balooctl: Add --version and --help (bug 351645)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:89
msgid "Remove KAuth support to increase max inotify watches if count too low (bug 351602)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:95
msgid "Fix fakebluez crash in obexmanagertest with ASAN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:96
msgid "Forward declare all exported classes in types.h"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:97
msgid "ObexTransfer: Set error when transfer session is removed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:98
msgid "Utils: Hold pointers to managers instances"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:99
msgid "ObexTransfer: Set error when org.bluez.obex crashes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:105
msgid "Update GTK icon cache when installing icons."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:106
msgid "Remove workaround to delay execution on Android"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:107
msgid "ECMEnableSanitizers: The undefined sanitizer is supported by gcc 4.9"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:108
msgid "Disable X11,XCB etc. detection on OS X"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:109
msgid "Look for the files in the installed prefix rather the prefix path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:110
msgid "Use Qt5 to specify what's Qt5 installation prefix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:111
msgid "Add definition ANDROID as needed in qsystemdetection.h."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:117
msgid "Fix random file dialog not showing up problem. (bug 350758)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:123
msgid "Using a custom matching function instead of sqlite's glob. (bug 352574)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:124
msgid "Fixed problem with adding a new resource to the model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:130
msgid "Fix crash in UnicodeGroupProber::HandleData with short strings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:136
msgid "Mark kconfig-compiler as non-gui tool"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:142
msgid "KShell::splitArgs: only ASCII space is a separator, not unicode space U+3000 (bug 345140)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:143
msgid "KDirWatch: fix crash when a global static destructor uses KDirWatch::self() (bug 353080)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:144
msgid "Fix crash when KDirWatch is used in Q_GLOBAL_STATIC."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:145
msgid "KDirWatch: fix thread safety"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:146
msgid "Clarify how to set KAboutData constructor arguments."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:149
#: announcements/kde-frameworks-5.16.0.php:159
#: announcements/kde-frameworks-5.19.0.php:92
#: announcements/kde-frameworks-5.23.0.php:116
#: announcements/kde-frameworks-5.27.0.php:125
#: announcements/kde-frameworks-5.29.0.php:124
msgid "KCrash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:152
msgid "KCrash: pass cwd to kdeinit when auto-restarting the app via kdeinit. (bug 337760)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:153
msgid "Add KCrash::initialize() so that apps and the platform plugin can explicitly enable KCrash."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:154
msgid "Disable ASAN if enabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:160
msgid "Small improvements in ColumnProxyModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:161
msgid "Make it possible for applications to know path to homeDir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:162
msgid "move EventForge from the desktop containment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:163
msgid "Provide enabled property for QIconItem."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:166
#: announcements/kde-frameworks-5.16.0.php:176
#: announcements/kde-frameworks-5.17.0.php:114
#: announcements/kde-frameworks-5.18.0.php:124
#: announcements/kde-frameworks-5.19.0.php:108
#: announcements/kde-frameworks-5.20.0.php:98
#: announcements/kde-frameworks-5.24.0.php:99
#: announcements/kde-frameworks-5.38.0.php:92
#: announcements/kde-frameworks-5.41.0.php:146
#: announcements/kde-frameworks-5.42.0.php:108
msgid "KDED"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:169
msgid "kded: simplify logic around sycoca; just call ensureCacheValid."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:175
msgid "Call newInstance from the child on first invocation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:176
msgid "Use kdewin defines."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:177
#: announcements/kde-frameworks-5.15.0.php:232
#: announcements/kde-frameworks-5.15.0.php:247
msgid "Don't try to find X11 on WIN32"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:178
msgid "cmake: Fix taglib version check in FindTaglib.cmake."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:181
#: announcements/kde-frameworks-5.16.0.php:189
#: announcements/kde-frameworks-5.24.0.php:112
#: announcements/kde-frameworks-5.29.0.php:131
#: announcements/kde-frameworks-5.37.0.php:109
msgid "KDesignerPlugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:184
msgid "Qt moc can't handle macros (QT_VERSION_CHECK)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:190
msgid "kWarning -&gt; qWarning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:196
msgid "implement windows usermetadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:199
#: announcements/kde-frameworks-5.19.0.php:133
#: announcements/kde-frameworks-5.30.0.php:129
msgid "KDE GUI Addons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:202
msgid "Not looking for X11/XCB makes sense also for WIN32"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:208
msgid "Replace std::auto_ptr with std::unique_ptr"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:209
msgid "khtml-filter: Discard rules containing special adblock features that we do not handle yet."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:210
msgid "khtml-filter: Code reorder, no functional changes."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:211
msgid "khtml-filter: Ignore regexp with options as we do not support them."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:212
msgid "khtml-filter: Fix detection of adblock options delimiter."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:213
msgid "khtml-filter: Clean up from trailing white spaces."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:214
msgid "khtml-filter: Do not discard lines starting with '&amp;' as it is not a special adblock char."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:220
msgid "remove strict iterators for msvc to make ki18n build"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:226
msgid "KFileWidget: parent argument should default to 0 like in all widgets."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:227
msgid "Make sure the size of the byte array we just dumped into the struct is big enough before calculating the targetInfo, otherwise we're accessing memory that doesn't belong to us"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:228
msgid "Fix Qurl usage when calling QFileDialog::getExistingDirectory()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:229
msgid "Refresh Solid's device list before querying in kio_trash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:230
msgid "Allow trash: in addition to trash:/ as url for listDir (calls listRoot) (bug 353181)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:231
msgid "KProtocolManager: fix deadlock when using EnvVarProxy. (bug 350890)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:233
msgid "KBuildSycocaProgressDialog: use Qt's builtin busy indicator. (bug 158672)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:234
msgid "KBuildSycocaProgressDialog: run kbuildsycoca5 with QProcess."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:235
msgid "KPropertiesDialog: fix for ~/.local being a symlink, compare canonical paths"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:236
msgid "Add support for network shares in kio_trash (bug 177023)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:237
msgid "Connect to the signals of QDialogButtonBox, not QDialog (bug 352770)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:238
msgid "Cookies KCM: update DBus names for kded5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:239
msgid "Use JSON files directly instead of kcoreaddons_desktop_to_json()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:245
msgid "Don't send notification update signal twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:246
msgid "Reparse notification config only when it changed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:250
#: announcements/kde-frameworks-5.18.0.php:179
#: announcements/kde-frameworks-5.23.0.php:204
#: announcements/kde-frameworks-5.24.0.php:213
#: announcements/kde-frameworks-5.8.0.php:126
msgid "KNotifyConfig"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:253
msgid "Change method for loading defaults"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:254
msgid "Send the appname whose config was updated along with the DBus signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:255
msgid "Add method to revert kconfigwidget to defaults"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:256
msgid "Don't sync the config n times when saving"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:262
#: announcements/kde-frameworks-5.16.0.php:298
msgid "Use largest timestamp in subdirectory as resource directory timestamp."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:263
msgid "KSycoca: store mtime for every source dir, to detect changes. (bug 353036)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:264
msgid "KServiceTypeProfile: remove unnecessary factory creation. (bug 353360)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:265
msgid "Simplify and speed up KServiceTest::initTestCase."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:266
msgid "make install name of applications.menu file a cached cmake variable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:267
msgid "KSycoca: ensureCacheValid() should create the db if it doesn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:268
msgid "KSycoca: make global database work after the recent timestamp check code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:269
msgid "KSycoca: change DB filename to include language and sha1 of the dirs it's built from."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:270
msgid "KSycoca: make ensureCacheValid() part of the public API."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:271
msgid "KSycoca: add a q pointer to remove more singleton usage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:272
msgid "KSycoca: remove all self() methods for factories, store them in KSycoca instead."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:273
msgid "KBuildSycoca: remove writing of the ksycoca5stamp file."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:274
msgid "KBuildSycoca: use qCWarning rather than fprintf(stderr, ...) or qWarning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:275
msgid "KSycoca: rebuild ksycoca in process rather than executing kbuildsycoca5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:276
msgid "KSycoca: move all of the kbuildsycoca code into the lib, except for main()."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:277
msgid "KSycoca optimization: only watch the file if the app connects to databaseChanged()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:278
msgid "Fix memory leaks in the KBuildSycoca class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:279
msgid "KSycoca: replace DBus notification with file watching using KDirWatch."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:280
msgid "kbuildsycoca: deprecate option --nosignal."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:281
msgid "KBuildSycoca: replace dbus-based locking with a lock file."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:282
msgid "Do not crash when encountering invalid plugin info."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:283
msgid "Rename headers to _p.h in preparation for move to kservice library."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:284
msgid "Move checkGlobalHeader() within KBuildSycoca::recreate()."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:285
msgid "Remove code for --checkstamps and --nocheckfiles."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:291
msgid "validate more regexp"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:292
msgid "fix regexps in HL files (bug 352662)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:293
msgid "sync ocaml HL with state of https://code.google.com/p/vincent-hugot-projects/ before google code is down, some small bugfixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:294
msgid "add word-break (bug 352258)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:295
msgid "validate line before calling folding stuff (bug 339894)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:296
msgid "Fix Kate word count issues by listening to DocumentPrivate instead of Document (bug 353258)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:297
msgid "Update Kconfig syntax highlighting: add new operators from Linux 4.2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:298
msgid "sync w/ KDE/4.14 kate branch"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:299
msgid "minimap: Fix scrollbar handle not being drawn with scrollmarks off. (bug 352641)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:300
msgid "syntax: Add git-user option for kdesrc-buildrc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:306
msgid "No longer automatically close on last use"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:312
msgid "Fix warning C4138 (MSVC): '*/' found outside of comment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:318
msgid "Perform deep copy of QByteArray get_stringlist_reply"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:319
msgid "Allow interacting with multiple X servers in the NETWM classes."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:320
msgid "[xcb] Consider mods in KKeyServer as initialized on platform != x11"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:321
msgid "Change KKeyserver (x11) to categorized logging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:327
msgid "Make it possible to import/export shortcut schemes symmetrically"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:333
msgid "Fix introspections, LastSeen should be in AccessPoint and not in ActiveConnection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:339
msgid "Make tooltip dialog hidden on the cursor entering the inactive ToolTipArea"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:340
msgid "if the desktop file has Icon=/foo.svgz use that file from package"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:341
msgid "add a \"screenshot\" file type in packages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:342
msgid "consider devicepixelration in standalone scrollbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:343
msgid "no hover effect on touchscreen+mobile"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:344
msgid "Use lineedit svg margins in sizeHint calculation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:345
msgid "Don't fade animate icon in plasma tooltips"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:346
msgid "Fix eliding button text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:347
msgid "Context menus of applets within a panel no longer overlap the applet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:348
msgid "Simplify getting associated apps list in AssociatedApplicationManager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:354
msgid "Fix hunspell plugin ID for proper loading"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:355
msgid "support static compilation on windows, add windows libreoffice hunspell dict path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:356
msgid "Do not assume UTF-8 encoded Hunspell dictionaries. (bug 353133)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:357
msgid "fix Highlighter::setCurrentLanguage() for the case when previous language was invalid (bug 349151)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:358
msgid "support /usr/share/hunspell as dict location"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.15.0.php:359
msgid "NSSpellChecker-based plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:4
msgid "Release of KDE Frameworks 5.16.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:16
msgid ""
" \n"
"November 13, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.16.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:41
msgid "Monitor lib: Use Kformat::spelloutDuration to localize time string"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:42
#: announcements/kde-frameworks-5.16.0.php:363
msgid "Use KDE_INSTALL_DBUSINTERFACEDIR to install dbus interfaces"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:43
msgid "UnindexedFileIndexer: Handle files that have been moved when baloo_file was not running"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:44
msgid "Remove Transaction::renameFilePath and add DocumentOperation for it."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:45
msgid "Make constructors with a single parameter explicit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:46
msgid "UnindexedFileIndexer: only index required parts of file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:47
msgid "Transaction: add method to return timeInfo struct"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:48
msgid "Added exclude mimetypes to balooctl's config"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:49
msgid "Databases: Use QByteArray::fromRawData when passing data to a codec"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:50
msgid "Balooctl: Move 'status' command to its own class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:51
msgid "Balooctl: Show help menu if the command is not recognized"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:52
msgid "Balooshow: Allow us to lookup files by their inode + devId"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:53
msgid "Balooctl monitor: stop if baloo dies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:54
msgid "MonitorCommand: Use both the started and finished signals"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:55
msgid "Balooctl monitor: Move to a proper command class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:56
msgid "Add dbus notification for when we start/finish indexing a file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:57
msgid "FileIndexScheduler: Forcibly kill threads on exit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:58
msgid "WriteTransaction commit: Avoid fetching the positionList unless required"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:59
msgid "WriteTransaction: Extra asserts in replaceDocument"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:65
msgid "isBluetoothOperational now also depends on unblocked rfkill"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:66
msgid "Fix determining global state of rfkill switch"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:67
msgid "QML API: Mark properties without notify signal as constants"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:73
msgid "Warn instead of error if ecm_install_icons finds no icons. (bug 354610)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:74
msgid "make it possible to build KDE Frameworks 5 with a plain qt 5.5.x installed from the normal qt.io installer on mac os"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:75
msgid "Do not unset cache variables in KDEInstallDirs. (bug 342717)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:81
msgid "Set default value for WheelScrollLines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:82
msgid "Fix WheelScrollLines settings with Qt &gt;= 5.5 (bug 291144)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:83
msgid "Switch to Noto font for Plasma 5.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:89
msgid "Fixing the build against Qt 5.3"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:90
msgid "Moved the boost.optional include to the place that uses it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:91
msgid "Replacing the boost.optional usage in continuations with a slimmer optional_view structure"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:92
msgid "Added support for a custom ordering of linked results"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:93
msgid "Allow QML to invoke activities KCM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:94
msgid "Adding the support for activity deletion to activities KCM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:95
msgid "New activity configuration UI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:96
msgid "New configuration UI that supports adding description and wallpaper"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:97
msgid "Settings UI is now properly modularized"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:103
msgid "Fix KArchive for behavior change in Qt 5.6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:104
msgid "Fix memleaks, lower memory usage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:110
msgid "Handle proxying qInfo messages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:111
msgid "Wait for async call starting helper to finish before checking the reply (bug 345234)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:112
msgid "Fix variable name, otherwise there's no way the include can work"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:118
msgid "Fix usage of ecm_create_qm_loader."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:119
msgid "Fix include variable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:120
msgid "Use KDE_INSTALL_FULL_ variant, so there is no ambiguity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:121
msgid "Allow KConfig to use resources as fallback config files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:124
#: announcements/kde-frameworks-5.19.0.php:86
#: announcements/kde-frameworks-5.23.0.php:101
#: announcements/kde-frameworks-5.24.0.php:87
#: announcements/kde-frameworks-5.25.0.php:121
#: announcements/kde-frameworks-5.26.0.php:105
#: announcements/kde-frameworks-5.29.0.php:111
#: announcements/kde-frameworks-5.30.0.php:91
#: announcements/kde-frameworks-5.31.0.php:87
#: announcements/kde-frameworks-5.32.0.php:86
#: announcements/kde-frameworks-5.34.0.php:87
#: announcements/kde-frameworks-5.38.0.php:76
#: announcements/kde-frameworks-5.39.0.php:84
#: announcements/kde-frameworks-5.40.0.php:64
#: announcements/kde-frameworks-5.41.0.php:121
#: announcements/kde-frameworks-5.7.0.php:84
msgid "KConfigWidgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:127
msgid "Make KConfigWidgets self contained, bundle the one global file in a resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:128
#: announcements/kde-frameworks-5.16.0.php:179
#: announcements/kde-frameworks-5.16.0.php:232
#: announcements/kde-frameworks-5.16.0.php:296
msgid "Make doctools optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:134
msgid "KAboutData: apidoc \"is is\" -&gt; \"is\" addCredit(): ocsUserName -&gt; ocsUsername"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:135
msgid "KJob::kill(Quiet) should also exit the event loop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:136
msgid "Add support for desktop file name to KAboutData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:137
msgid "Use correct escaping character"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:138
msgid "Reduce some allocations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:139
msgid "Make KAboutData::translators/setTranslators simple"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:140
msgid "Fix setTranslator example code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:141
msgid "desktopparser: skip the Encoding= key"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:142
msgid "desktopfileparser: Address review comments"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:143
msgid "Allow setting service types in kcoreaddons_desktop_to_json()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:144
msgid "desktopparser: Fix parsing of double and bool values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:145
msgid "Add KPluginMetaData::fromDesktopFile()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:146
msgid "desktopparser: Allow passing relative paths to service type files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:147
msgid "desktopparser: Use more categorized logging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:148
msgid "QCommandLineParser uses -v for --version so just use --verbose"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:149
msgid "Remove lots of duplicated code for desktop{tojson,fileparser}.cpp"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:150
msgid "Parse ServiceType files when reading .desktop files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:151
msgid "Make SharedMimeInfo an optional requirement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:152
msgid "Remove call to QString::squeeze()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:153
msgid "desktopparser: avoid unnecessary utf8 decoding"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:154
msgid "desktopparser: Don't add another entry if entry ends in a separator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:155
msgid "KPluginMetaData: Warn when a list entry is not a JSON list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:156
msgid "Add mimeTypes() to KPluginMetaData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:162
msgid "Improve search for drkonqui and keep it silent per default if not found"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:168
msgid "ConfigPropertyMap can now be queried for immutable config options using the isImmutable(key) method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:169
msgid "Unbox QJSValue in config property map"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:170
msgid "EventGenerator: Add support for sending wheel events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:171
msgid "fix lost QuickViewSharedEngine initialSize on initializing."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:172
msgid "fix critical regression for QuickViewSharedEngine by commit 3792923639b1c480fd622f7d4d31f6f888c925b9"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:173
msgid "make pre-specified view size precede initial object size in QuickViewSharedEngine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:185
msgid "Don't try to store a QDateTime in mmap'ed memory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:186
msgid "Sync and adopt uriencode.cmake from kdoctools."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:192
msgid "Add KCollapsibleGroupBox"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:198
msgid "update pt_BR entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:204
msgid "Do not XOR Shift for KP_Enter (bug 128982)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:205
msgid "Grab all keys for a symbol (bug 351198)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:206
msgid "Do not fetch keysyms twice for every keypress"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:212
msgid "Fix printing from KHTMLPart by correctly setting printSetting parent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:218
msgid "kiconthemes now support themes embedded in qt resources inside the :/icons prefix like Qt does itself for QIcon::fromTheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:219
#: announcements/kde-frameworks-5.16.0.php:383
msgid "Add missing required dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:225
msgid "Recognize image/vnd.adobe.photoshop instead of image/x-psd"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:226
msgid "Partially revert d7f457a to prevent crash on application exit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:229
#: announcements/kde-frameworks-5.19.0.php:157
#: announcements/kde-frameworks-5.20.0.php:146
#: announcements/kde-frameworks-5.21.0.php:183
#: announcements/kde-frameworks-5.23.0.php:169
#: announcements/kde-frameworks-5.24.0.php:168
#: announcements/kde-frameworks-5.25.0.php:173
#: announcements/kde-frameworks-5.29.0.php:168
#: announcements/kde-frameworks-5.30.0.php:147
#: announcements/kde-frameworks-5.37.0.php:134
#: announcements/kde-frameworks-5.38.0.php:111
#: announcements/kde-frameworks-5.39.0.php:125
#: announcements/kde-frameworks-5.40.0.php:96
#: announcements/kde-frameworks-5.42.0.php:162
#: announcements/kde-frameworks-5.7.0.php:139
msgid "KInit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:238
msgid "Save proxy url with correct scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:239
msgid "Ship the \"new file templates\" in the kiofilewidgets library using a .qrc (bug 353642)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:240
msgid "Properly handle middle click in navigatormenu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:241
msgid "Make kio_http_cache_cleaner deployable in application installer/bundles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:242
msgid "KOpenWithDialog: Fix creating desktop file with empty mimetype"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:243
msgid "Read protocol info from plugin metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:244
msgid "Allow local kioslave deployment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:245
msgid "Add a .protocol to JSON converted"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:246
msgid "Fix double-emit of result and missing warning when listing hits an inaccessible folder (bug 333436)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:247
msgid "Preserve relative link targets when copying symlinks. (bug 352927)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:248
msgid "Using suitable icons for default folders in the user home (bug 352498)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:249
msgid "Add an interface which allow plugin to show custom overlay icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:250
msgid "Make KNotifications dep in KIO (kpac) optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:251
msgid "Make doctools + wallet optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:252
msgid "Avoid kio crashes if no dbus server is running"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:253
msgid "Add KUriFilterSearchProviderActions, to show a list of actions for searching some text using web shortcuts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:254
msgid "Move the entries for the \"Create New\" menu from kde-baseapps/lib/konq to kio (bug 349654)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:255
msgid "Move konqpopupmenuplugin.desktop from kde-baseapps to kio (bug 350769)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:258
#: announcements/kde-frameworks-5.20.0.php:186
#: announcements/kde-frameworks-5.24.0.php:194
#: announcements/kde-frameworks-5.28.0.php:157
msgid "KJS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:261
msgid "Use \"_timezone\" global variable for MSVC instead of \"timezone\". Fixes build with MSVC 2015."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:267
msgid "Fix 'KDE Partition Manager' desktop file and homepage URL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:273
msgid "Now that kparts no longer needs knotifications, only things that really want notifications require on this framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:274
msgid "Add description + purpose for speech + phonon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:275
msgid "Make phonon dependency optional, purely internal change, like it is done for speech."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:278
#: announcements/kde-frameworks-5.19.0.php:205
#: announcements/kde-frameworks-5.22.0.php:161
#: announcements/kde-frameworks-5.24.0.php:219
#: announcements/kde-frameworks-5.27.0.php:191
#: announcements/kde-frameworks-5.30.0.php:214
#: announcements/kde-frameworks-5.33.0.php:143
#: announcements/kde-frameworks-5.37.0.php:164
#: announcements/kde-frameworks-5.39.0.php:187
msgid "KParts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:281
msgid "Use deleteLater in Part::slotWidgetDestroyed()."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:282
msgid "Remove KNotifications dep from KParts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:283
msgid "Use function to query ui_standards.rc location instead of hardcoding it, allows resource fallback to work"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:286
#: announcements/kde-frameworks-5.21.0.php:237
#: announcements/kde-frameworks-5.22.0.php:173
#: announcements/kde-frameworks-5.24.0.php:235
#: announcements/kde-frameworks-5.28.0.php:197
#: announcements/kde-frameworks-5.34.0.php:169
#: announcements/kde-frameworks-5.38.0.php:194
#: announcements/kde-frameworks-5.42.0.php:248
#: announcements/plasma-5.3.95.php:100 announcements/plasma-5.3.95.php:102
#: announcements/plasma-5.4.0.php:100 announcements/plasma-5.4.0.php:102
#: announcements/plasma-5.5.95.php:114 announcements/plasma-5.6.0.php:134
msgid "KRunner"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:289
msgid "RunnerManager: Simplify plugin loading code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:295
msgid "KBuildSycoca: always save, even if no change in .desktop file was noticed. (bug 353203)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:297
msgid "kbuildsycoca: parse all the mimeapps.list files mentioned in the new spec."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:299
msgid "Keep MIME types separate when converting KPluginInfo to KPluginMetaData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:305
msgid "highlighting: gnuplot: add .plt extension"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:306
msgid "fix validation hint, thanks to \"Thomas Jarosch\" &lt;thomas.jarosch@intra2net.com&gt;, add hint about the compile time validation, too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:307
msgid "Don't crash when command is not available."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:308
msgid "Fix bug #307107"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:309
msgid "Haskell highlighting variables starting with _"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:310
msgid "simplify git2 init, given we require recent enough version (bug 353947)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:311
msgid "bundle default configs in resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:312
msgid "syntax highlighting (d-g): use default styles instead of hard-coded colors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:313
msgid "better scripts search, first user local stuff, then the stuff in our resources, then all other stuff, that way the user can overwrite our shipped scripts with local ones"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:314
msgid "package all js stuff in resources, too, only 3 config files missing and ktexteditor could be just used as a library without any bundled files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:315
msgid "next try: put all bundled xml syntax files into a resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:316
msgid "add input mode switch shortcut (bug 347769)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:317
msgid "bundle xml files in resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:318
msgid "syntax highlighting (a-c): migrate to new default styles, remove hard-coded colors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:319
msgid "syntax highlighting: remove hard-coded colors and use default styles instead"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:320
msgid "syntax highlighting: use new default styles (removes hard-coded colors)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:321
msgid "Better \"Import\" default style"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:322
msgid "Introduce \"Save As with Encoding\" to save a file with different encoding, using the nice grouped encoding menu we have and replacing all save dialogs with the correct ones of the operating system without loosing this important feature."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:323
msgid "bundle ui file into lib, using my extension to xmlgui"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:324
msgid "Printing again honors the selected font &amp; color schema (bug 344976)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:325
msgid "Use breeze colors for saved and modified lines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:326
msgid "Improved icon border default colors of scheme \"Normal\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:327
msgid "autobrace: only insert brace when next letter is empty or not alphanumeric"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:328
msgid "autobrace: if removing start parenthesis with backspace, remove end as well"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:329
msgid "autobrace: only establish connection once"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:330
msgid "Autobrace: eat closing parentheses under some conditions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:331
msgid "Fix shortcutoverride not being forwarded to the mainwindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:332
msgid "Bug 342659 - Default \"bracket highlighting\" color is hard to see (Normal schema fixed) (bug 342659)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:333
msgid "Add proper default colors for \"Current Line Number\" color"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:334
msgid "bracket matching &amp; auto-brackets: share code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:335
msgid "bracket matching: guard against negative maxLines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:336
msgid "bracket matching: just because the new range matches the old doesn't mean no update is required"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:337
msgid "Add the width of half a space to allow painting the cursor at EOL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:338
msgid "fix some HiDPI issues in the icon border"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:339
msgid "fix bug #310712: remove trailing spaces also on line with cursor (bug 310712)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:340
msgid "only display \"mark set\" message when vi input mode is active"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:341
msgid "remove &amp; from button text (bug 345937)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:342
msgid "fix update of current line number color (bug 340363)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:343
msgid "implement brackets insert on writing a bracket over a selection (bug 350317)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:344
msgid "auto brackets (bug 350317)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:345
msgid "fix alert HL (bug 344442)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:346
msgid "no column scrolling with dyn word wrap on"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:347
msgid "remember if highlighting was set by user over sessions to not loose it on save after restore (bug 332605)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:348
msgid "fix folding for tex (bug 328348)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:349
msgid "fixed bug #327842: End of C-style comment is misdetected (bug 327842)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:350
msgid "save/restore dyn word wrap on session save/restore (bug 284250)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:356
msgid "Add a new submenu to KTextEdit to switch between spell-checking languages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:357
msgid "Fix loading Sonnet default settings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:364
msgid "Fixed KWallet configuration file warnings on login (bug 351805)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:365
msgid "Prefix the kwallet-pam output properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:371
msgid "Add collapsible container widget, KCollapsibleGroupBox"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:372
msgid "KNewPasswordWidget: missing color initialization"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:373
msgid "Introduce KNewPasswordWidget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:379
msgid "kmainwindow: Pre-fill translator information when available. (bug 345320)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:380
msgid "Allow to bind the contextmenu key (lower right) to shortcuts (bug 165542)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:381
msgid "Add function to query standards xml file location"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:382
msgid "Allow kxmlgui framework to be used without any installed files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:389
msgid "Fix TabBar items being cramped together on initial creation, which can be observed in eg. Kickoff after Plasma start"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:390
msgid "Fix dropping files onto the desktop/panel not offering a selection of actions to take"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:391
msgid "Take QApplication::wheelScrollLines into account from ScrollView"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:392
msgid "Use BypassWindowManagerHint only on platform X11"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:393
msgid "delete old panel background"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:394
msgid "more readable spinner at small sizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:395
msgid "colored view-history"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:396
msgid "calendar: Make the entire header area clickable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:397
msgid "calendar: Don't use current day number in goToMonth"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:398
msgid "calendar: Fix updating decade overview"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:399
msgid "Theme breeze icons when loaded trough IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:400
msgid "Fix Button minimumWidth property (bug 353584)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:401
msgid "Introduce appletCreated signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:402
msgid "Plasma Breeze Icon: Touchpad add svg id elements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:403
msgid "Plasma Breeze Icon: change Touchpad to 22x22px size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:404
msgid "Breeze Icon: add widget icon to notes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:405
msgid "A script to replace hardcoded colors with stylesheets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:406
msgid "Apply SkipTaskbar on ExposeEvent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.16.0.php:407
msgid "Don't set SkipTaskbar on every event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:4
msgid "Release of KDE Frameworks 5.17.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:16
msgid ""
" \n"
"December 12, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.17.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:41
msgid "Fix date filter used by timeline://"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:42
msgid "BalooCtl: Return after commands"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:43
msgid "Clean up and armour Baloo::Database::open(), handle more crash conditions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:44
msgid "Add check in Database::open(OpenDatabase) to fail if db doesn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:47
#: announcements/kde-frameworks-5.18.0.php:48
#: announcements/kde-frameworks-5.19.0.php:44
#: announcements/kde-frameworks-5.20.0.php:38
#: announcements/kde-frameworks-5.21.0.php:64
#: announcements/kde-frameworks-5.22.0.php:50
#: announcements/kde-frameworks-5.23.0.php:52
#: announcements/kde-frameworks-5.24.0.php:52
#: announcements/kde-frameworks-5.25.0.php:50
#: announcements/kde-frameworks-5.26.0.php:50
#: announcements/kde-frameworks-5.27.0.php:61
#: announcements/kde-frameworks-5.28.0.php:44
#: announcements/kde-frameworks-5.29.0.php:52
#: announcements/kde-frameworks-5.30.0.php:38
#: announcements/kde-frameworks-5.31.0.php:48
#: announcements/kde-frameworks-5.32.0.php:44
#: announcements/kde-frameworks-5.34.0.php:44
#: announcements/kde-frameworks-5.35.0.php:51
#: announcements/kde-frameworks-5.36.0.php:48
#: announcements/kde-frameworks-5.37.0.php:40
#: announcements/kde-frameworks-5.39.0.php:47
#: announcements/kde-frameworks-5.40.0.php:45
#: announcements/kde-frameworks-5.41.0.php:50
#: announcements/kde-frameworks-5.42.0.php:54
#: announcements/plasma-5.4.95.php:42 announcements/plasma-5.4.95.php:44
#: announcements/plasma-5.5.0.php:49 announcements/plasma-5.5.0.php:51
msgid "Breeze Icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:50
msgid "Many icons added or improved"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:51
msgid "use stylesheets in breeze icons (bug 126166)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:52
msgid "BUG: 355902 fix and changed system-lock-screen (bug 355902 fix and changed system-lock-screen)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:53
msgid "Add 24px dialog-information for GTK apps (bug 355204)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:59
msgid "Don't warn when SVG(Z) icons are provided with multiple sizes/level of detail"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:60
msgid "Make sure we load translations on the main thread. (bug 346188)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:61
msgid "Overhaul the ECM build system."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:62
msgid "Make it possible to enable Clazy on any KDE project"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:63
msgid "Do not find XCB's XINPUT library by default."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:64
msgid "Clean export dir before generating an APK again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:65
msgid "Use quickgit for Git repository URL."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:71
msgid "Add plasmoid installation failed to plasma_workspace.notifyrc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:77
msgid "Fixed a lock on the first start of the daemon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:78
msgid "Moving QAction creation to the main thread. (bug 351485)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:79
msgid "Sometimes clang-format makes a bad decision (bug 355495)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:80
msgid "Killing potential synchronization issues"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:81
msgid "Use org.qtproject instead of com.trolltech"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:82
msgid "Removing the usage of libkactivities from the plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:83
msgid "KAStats config removed from the API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:84
msgid "Added linking and unlinking to ResultModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:90
msgid "Make kgenframeworksapidox more robust."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:96
msgid "Fix KCompressionDevice::seek(), called when creating a KTar on top of a KCompressionDevice."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:102
msgid "KAboutData: Allow https:// and other URL schemas in homepage. (bug 355508)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:103
msgid "Repair MimeType property when using kcoreaddons_desktop_to_json()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:109
msgid "Port KDeclarative to use KI18n directly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:110
msgid "DragArea delegateImage can now be a string from which an icon is automatically created"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:111
msgid "Add new CalendarEvents library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:117
msgid "Unset SESSION_MANAGER envvar instead of setting it empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:123
msgid "Fix some i18n calls."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:129
msgid "Mark m4a as readable by taglib"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:135
msgid "Cookie dialogue: make it work as intended"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:136
msgid "Fix filename suggestion changing to something random when changing save-as mimetype."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:137
msgid "Register DBus name for kioexec (bug 353037)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:138
msgid "Update KProtocolManager after configuration change."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:144
msgid "Fix KSelectionProxyModel usage in QTableView (bug 352369)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:145
msgid "Fix resetting or changing the source model of a KRecursiveFilterProxyModel."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:151
msgid "registerServicesByGroupingNames can define default more items"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:152
msgid "Make KMoreToolsMenuFactory::createMenuFromGroupingNames lazy"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:158
msgid "Add syntax highlighting for TaskJuggler and PL/I"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:159
msgid "Make it possible to disable keyword-completion via the config interface."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:160
msgid "Resize the tree when the completion model got reset."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:166
msgid "Correctly handle the case where the user deactivated us"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:172
msgid "Fix a small artifact of KRatingWidget on hi-dpi."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:173
msgid "Refactor and fix the feature introduced in bug 171343 (bug 171343)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:179
msgid "Don't call QCoreApplication::setQuitLockEnabled(true) on init."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:185
msgid "Add basic plasmoid as example for developerguide"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:186
msgid "Add a couple of plasmoid templates for kapptemplate/kdevelop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:187
msgid "[calendar] Delay the model reset until the view is ready (bug 355943)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:188
msgid "Don't reposition while hiding. (bug 354352)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:189
msgid "[IconItem] Don't crash on null KIconLoader theme (bug 355577)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:190
msgid "Dropping image files onto a panel will no longer offer to set them as wallpaper for the panel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:191
msgid "Dropping a .plasmoid file onto a panel or the desktop will install and add it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:192
msgid "remove the now unused platformstatus kded module (bug 348840)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:193
msgid "allow paste on password fields"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:194
msgid "fix positioning of edit menu, add a button to select"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:195
msgid "[calendar] Use ui language for getting the month name (bug 353715)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:196
msgid "[calendar] Sort the events by their type too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:197
msgid "[calendar] Move the plugin library to KDeclarative"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:198
msgid "[calendar] qmlRegisterUncreatableType needs a bit more arguments"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:199
msgid "Allow adding config categories dynamically"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:200
msgid "[calendar] Move the plugins handling to a separate class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:201
msgid "Allow plugins to supply event data to Calendar applet (bug 349676)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:202
msgid "check for slot existence before connecting or disconnecting (bug 354751)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:203
msgid "[plasmaquick] Don't link OpenGL explicitly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.17.0.php:204
msgid "[plasmaquick] Drop XCB::COMPOSITE and DAMAGE dependency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:4
msgid "Release of KDE Frameworks 5.18.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:16
msgid ""
" \n"
"January 09, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.18.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:41
msgid "Fix several issue of mtime related search"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:42
msgid "PostingDB Iter: Do not assert on MDB_NOTFOUND"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:43
msgid "Balooctl status: Avoid showing 'Content indexing' about folders"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:44
msgid "StatusCommand: Show the correct status for folders"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:45
msgid "SearchStore: Gracefully handle empty term values (bug 356176)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:51
msgid "icon updates and additions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:52
msgid "22px size status icons for 32px too as you need it in the system tray"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:53
msgid "Changed Fixed to Scalable value to 32px folders in Breeze Dark"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:59
msgid "Make the KAppTemplate CMake module global"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:60
msgid "Silence CMP0063 warnings with KDECompilerSettings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:61
msgid "ECMQtDeclareLoggingCategory: Include &lt;QDebug&gt; with the generated file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:62
msgid "Fix CMP0054 warnings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:68
msgid "Streamlined the QML loading for KCM (bug 356832)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:69
msgid "Work-around for the Qt SQL bug that does not clean up connections properly (bug 348194)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:70
msgid "Merged a plugin that executes applications on activity state change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:71
msgid "Port from KService to KPluginLoader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:72
msgid "Port plugins to use kcoreaddons_desktop_to_json()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:78
msgid "Fully initialize DynMenuInfo in return value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:81
#: announcements/kde-frameworks-5.19.0.php:74
#: announcements/kde-frameworks-5.23.0.php:89
#: announcements/kde-frameworks-5.32.0.php:74
#: announcements/kde-frameworks-5.39.0.php:72
#: announcements/kde-frameworks-5.40.0.php:57
#: announcements/kde-frameworks-5.41.0.php:101
#: announcements/kde-frameworks-5.7.0.php:65
#: announcements/kde-frameworks-5.8.0.php:62
#: announcements/kde-frameworks-5.9.0.php:65
msgid "KCMUtils"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:84
msgid "KPluginSelector::addPlugins: fix assert if 'config' parameter is default (bug 352471)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:90
msgid "Avoid deliberately overflowing a full buffer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:96
msgid "Ensure group is unescaped properly in kconf_update"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:102
msgid "Add KAboutData::fromPluginMetaData(const KPluginMetaData &amp;plugin)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:103
msgid "Add KPluginMetaData::copyrightText(), extraInformation() and otherContributors()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:104
msgid "Add KPluginMetaData::translators() and KAboutPerson::fromJson()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:105
msgid "Fix use-after-free in desktop file parser"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:106
msgid "Make KPluginMetaData constructible from a json path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:107
msgid "desktoptojson: make missing service type file an error for the binary"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:108
msgid "make calling kcoreaddons_add_plugin without SOURCES an error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:114
msgid "Adapt to Qt 5.6's dbus-in-secondary-thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:120
msgid "[DragArea] Add dragActive property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:121
msgid "[KQuickControlsAddons MimeDatabase] Expose QMimeType comment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:127
msgid "kded: adapt to Qt 5.6's threaded dbus: messageFilter must trigger module loading in the main thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:133
#: announcements/kde-frameworks-5.19.0.php:118
msgid "kdelibs4support requires kded (for kdedmodule.desktop)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:134
msgid "Fix CMP0064 warning by setting policy CMP0054 to NEW"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:135
msgid "Don't export symbols that also exist in KWidgetsAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:141
msgid "Don't leak fd when creating socket"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:147
msgid "Windows: remove kdewin dependency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:153
msgid "Document the first argument rule for plurals in QML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:154
msgid "Reduce unwanted type changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:155
msgid "Make it possible to use doubles as index for i18np*() calls in QML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:161
msgid "Fix kiod for Qt 5.6's threaded dbus: messageFilter must wait until the module is loaded before returning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:162
msgid "Change the error code when pasting/moving into a subdirectory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:163
msgid "Fix emptyTrash blocked issue"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:164
msgid "Fix wrong button in KUrlNavigator for remote URLs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:165
msgid "KUrlComboBox: fix returning an absolute path from urls()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:166
msgid "kiod: disable session management"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:167
msgid "Add autocompletion for '.' input which offers all hidden files/folders* (bug 354981)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:168
msgid "ktelnetservice: fix off by one in argc check, patch by Steven Bromley"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:174
msgid "[Notify By Popup] Send along event ID"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:175
msgid "Set default non-empty reason for screen saver inhibition; (bug 334525)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:176
msgid "Add a hint to skip notifications grouping (bug 356653)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:182
msgid "[KNotifyConfigWidget] Allow selecting a specific event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:188
msgid "Make it possible to provide the metadata in json"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:194
msgid "Fix possible double deletion in DeclarativePersonData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:200
msgid "Syntax h/l for pli: builtin functions added, expandable regions added"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:206
msgid "kwalletd: Fix FILE* leak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:212
msgid "Add xcb variant for static KStartupInfo::sendFoo methods"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:218
msgid "make it work with older NM versions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:224
msgid "[ToolButtonStyle] Always indicate activeFocus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:225
msgid "Use the SkipGrouping flag for the \"widget deleted\" notification (bug 356653)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:226
msgid "Deal properly with symlinks in path to packages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:227
msgid "Add HiddenStatus for plasmoid self-hiding"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:228
msgid "Stop redirecting windows when item is disabled or hidden. (bug 356938)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:229
msgid "Don't emit statusChanged if it hasn't changed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:230
msgid "Fix element ids for east orientation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:231
msgid "Containment: Don't emit appletCreated with null applet (bug 356428)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:232
msgid "[Containment Interface] Fix erratic high precision scrolling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:233
msgid "Read KPluginMetada's property X-Plasma-ComponentTypes as a stringlist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:234
msgid "[Window Thumbnails] Don't crash if Composite is disabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.18.0.php:235
msgid "Let containments override CompactApplet.qml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:4
msgid "Release of KDE Frameworks 5.19.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:16
msgid ""
" \n"
"February 13, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.19.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:21
#: announcements/kde-frameworks-5.20.0.php:21
#: announcements/kde-frameworks-5.21.0.php:21
#: announcements/kde-frameworks-5.22.0.php:21
#: announcements/kde-frameworks-5.23.0.php:21
#: announcements/kde-frameworks-5.24.0.php:21
#: announcements/kde-frameworks-5.25.0.php:21
#: announcements/kde-frameworks-5.26.0.php:21
#: announcements/kde-frameworks-5.27.0.php:21
#: announcements/kde-frameworks-5.28.0.php:21
#: announcements/kde-frameworks-5.29.0.php:21
#: announcements/kde-frameworks-5.30.0.php:21
#: announcements/kde-frameworks-5.31.0.php:21
#: announcements/kde-frameworks-5.32.0.php:21
#: announcements/kde-frameworks-5.33.0.php:21
#: announcements/kde-frameworks-5.34.0.php:21
#: announcements/kde-frameworks-5.35.0.php:21
#: announcements/kde-frameworks-5.36.0.php:21
#: announcements/kde-frameworks-5.37.0.php:21
#: announcements/kde-frameworks-5.38.0.php:21
#: announcements/kde-frameworks-5.39.0.php:21
#: announcements/kde-frameworks-5.40.0.php:21
#: announcements/kde-frameworks-5.41.0.php:21
#: announcements/kde-frameworks-5.42.0.php:21
msgid ""
" \n"
"KDE Frameworks are 70 addon libraries to Qt which provide a wide\n"
"variety of commonly needed functionality in mature, peer reviewed and\n"
"well tested libraries with friendly licensing terms. For an\n"
"introduction see <a\n"
"href='http://kde.org/announcements/kde-frameworks-5.0.php'>the\n"
"Frameworks 5.0 release announcement</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:38
#: announcements/kde-frameworks-5.21.0.php:44
#: announcements/kde-frameworks-5.22.0.php:38
#: announcements/kde-frameworks-5.23.0.php:38
#: announcements/kde-frameworks-5.25.0.php:44
#: announcements/kde-frameworks-5.26.0.php:38
#: announcements/kde-frameworks-5.31.0.php:42
#: announcements/kde-frameworks-5.35.0.php:38
msgid "Attica"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:41
msgid "Simplify attica plugin look-up and initialization"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:47
#: announcements/kde-frameworks-5.20.0.php:41
msgid "Many new icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:48
msgid "Add missing mimetype icons from oxygen icon set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:54
msgid "ECMAddAppIcon: Use absolute path when operating on icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:55
msgid "Make sure the prefix is looked-up on Android"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:56
msgid "Add a FindPoppler module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:57
msgid "Use PATH_SUFFIXES in ecm_find_package_handle_library_components()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:63
msgid "Don't call exec() from QML (bug 357435)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:64
msgid "KActivitiesStats library is now in a separate repository"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:70
msgid "Also perform preAuthAction for Backends with AuthorizeFromHelperCapability"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:71
msgid "Fix DBus service name of polkit agent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:77
msgid "Fix High-DPI issue in KCMUtils"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:83
msgid "KLineEdit::setUrlDropsEnabled method can not be marked as deprecated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:89
msgid "add a \"Complementary\" color scheme to kcolorscheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:95
msgid "Update docs for KCrash::initialize. Application developers are encourage to call it explicitly."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:101
msgid "Clean up dependencies for KDeclarative/QuickAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:102
msgid "[KWindowSystemProxy] Add setter for showingDesktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:103
msgid "DropArea: Fix correctly ignoring dragEnter event with preventStealing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:104
msgid "DragArea: Implement grabbing delegate item"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:105
msgid "DragDropEvent: Add ignore() function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:111
msgid "Revert BlockingQueuedConnection hack, Qt 5.6 will contain a better fix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:112
msgid "Make kded register under aliases specified by the kded modules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:124
msgid "Allow querying for a file's origin URL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:130
msgid "Prevent crash in case dbus is not available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:136
msgid "Fix listing of available palettes in color dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:142
msgid "Fix detection of icon link type (aka \"favicon\")"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:148
msgid "Reduce use of gettext API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:154
msgid "Add kra and ora imageio plugins (read-only)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:160
msgid "Ignore viewport on current desktop on init startup information"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:161
msgid "Port klauncher to xcb"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:162
msgid "Use an xcb for interaction with KStartupInfo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:168
msgid "New class FavIconRequestJob in new lib KIOGui, for favicons retrieval"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:169
msgid "Fix KDirListerCache crash with two listers for an empty dir in the cache (bug 278431)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:170
msgid "Make Windows implementation of KIO::stat for file:/ protocol error out if the file doesn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:171
msgid "Don't assume that files in read-only dir can't be deleted on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:172
msgid "Fix .pri file for KIOWidgets: it depends on KIOCore, not on itself"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:173
msgid "Repair kcookiejar autoload, the values got swapped in 6db255388532a4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:174
msgid "Make kcookiejar accessible under the dbus service name org.kde.kcookiejar5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:175
msgid "kssld: install DBus service file for org.kde.kssld5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:176
msgid "Provide a DBus service file for org.kde.kpasswdserver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:177
msgid "[kio_ftp] fix display of file/directory modification time/date (bug 354597)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:178
msgid "[kio_help] fix garbage sent when serving static files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:179
msgid "[kio_http] Try NTLMv2 authentication if the server denies NTLMv1"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:180
msgid "[kio_http] fix porting bugs which broke caching"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:181
msgid "[kio_http] Fix NTLMv2 stage 3 response creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:182
msgid "[kio_http] fix waiting until the cache cleaner listens to the socket"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:183
msgid "kio_http_cache_cleaner: don't exit on startup if cache dir doesn't exist yet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:184
msgid "Change DBus name of kio_http_cache_cleaner so it doesn't exit if the kde4 one is running"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:190
msgid "KRecursiveFilterProxyModel::match: Fix crash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:193
#: announcements/kde-frameworks-5.23.0.php:185
#: announcements/kde-frameworks-5.30.0.php:179
#: announcements/kde-frameworks-5.38.0.php:176
#: announcements/kde-frameworks-5.42.0.php:213
#: announcements/kde-frameworks-5.9.0.php:109
msgid "KJobWidgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:196
msgid "Fix crash in KJob dialogs (bug 346215)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:202
msgid "Avoid finding the same package multiple times from different paths"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:208
msgid "PartManager: stop tracking a widget even if it is no longer top level (bug 355711)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:214
msgid "Better behaviour for \"insert braces around\" autobrace feature"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:215
msgid "Change option key to enforce new default, Newline at End of File = true"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:216
msgid "Remove some suspicious setUpdatesEnabled calls (bug 353088)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:217
msgid "Delay emitting of verticalScrollPositionChanged until all stuff is consistent for folding (bug 342512)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:218
msgid "Patch updating tag substitution (bug 330634)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:219
msgid "Only update the palette once for the change event belonging to qApp (bug 358526)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:220
msgid "Append newlines at EOF by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:221
msgid "Add NSIS syntax highlighting file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:227
msgid "Duplicate the file descriptor while opening the file to read the env"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:233
msgid "Fix buddy widgets working with KFontRequester"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:234
msgid "KNewPasswordDialog: use KMessageWidget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:235
msgid "Prevent crash-on-exit in KSelectAction::~KSelectAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:241
msgid "Change licence header from \"Library GPL 2 or later\" to \"Lesser GPL 2.1 or later\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:242
msgid "Fix crash if KWindowSystem::mapViewport is called without a QCoreApplication"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:243
msgid "Cache QX11Info::appRootWindow in eventFilter (bug 356479)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:244
msgid "Get rid of QApplication dependency (bug 354811)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:250
msgid "Add option to disable KGlobalAccel at compilation time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:251
msgid "Repair path to app shortcut scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:252
msgid "Fix listing of shortcut files (wrong QDir usage)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:258
msgid "Re-check connection state and other properties to be sure they are actual (version 2) (bug 352326)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:261
#: announcements/kde-frameworks-5.21.0.php:293
#: announcements/kde-frameworks-5.23.0.php:289
#: announcements/kde-frameworks-5.25.0.php:286
#: announcements/kde-frameworks-5.27.0.php:264
#: announcements/kde-frameworks-5.29.0.php:266
#: announcements/kde-frameworks-5.30.0.php:256
#: announcements/kde-frameworks-5.34.0.php:217
msgid "Oxygen Icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:264
msgid "Remove broken linked files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:265
msgid "Add app icons from the kde applications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:266
msgid "Add breeze places icons into oxygen"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:267
msgid "Sync oxygen mimetype icons with breeze mimetype icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:273
msgid "Add a property separatorVisible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:274
msgid "More explicit removal from m_appletInterfaces (bug 358551)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:275
msgid "Use complementaryColorScheme from KColorScheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:276
msgid "AppletQuickItem: Don't try to set initial size bigger than parent size (bug 358200)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:277
msgid "IconItem: Add usesPlasmaTheme property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:278
msgid "Don't load toolbox on types not desktop or panel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:279
msgid "IconItem: Try to load QIcon::fromTheme icons as svg (bug 353358)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:280
msgid "Ignore check if just one part of size is zero in compactRepresentationCheck (bug 358039)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:281
msgid "[Units] Return at least 1ms for durations (bug 357532)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:282
msgid "Add clearActions() to remove every applet interface action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:283
msgid "[plasmaquick/dialog] Don't use KWindowEffects for Notification window type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:284
msgid "Deprecate Applet::loadPlasmoid()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:285
msgid "[PlasmaCore DataModel] Don't reset model when a source is removed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:286
msgid "Fix margin hints in opague panel background SVG"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:287
msgid "IconItem: Add animated property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:288
msgid "[Unity] Scale Desktop icon size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:289
msgid "the button is compose-over-borders"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.19.0.php:290
msgid "paintedWidth/paintedheight for IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.2.0.php:4
msgid "Release of KDE Frameworks 5.2.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.2.0.php:16
msgid ""
" \n"
"September 12, 2014. KDE today announces the release\n"
"of KDE Frameworks 5.2.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.2.0.php:34
msgid ""
"\n"
"<h3>KActivities</h3>"
"\n"
"\n"
"<ul>\n"
"<li>reimplementation of the file item plugin for linking files to activities</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KArchive</h3>"
"\n"
"\n"
"<ul>\n"
"<li>fix handling of uncompressed files</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KConfigWidgets</h3>"
"\n"
"\n"
"<ul>\n"
"<li>fix missing default shortcuts for standard actions, leading \n"
"to many runtime warnings</li>"
"\n"
"<li>better support for QGroupBox in KConfigDialogManager</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCoreAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Mark KAboutData::setProgramIconName() as deprecated, it did not \n"
"do anything. Use QApplication::setWindowIcon(QIcon::fromTheme(\"...\")) instead.</li>"
"\n"
"<li>new classes Kdelibs4ConfigMigrator and KPluginMetaData</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KDeclarative</h3>"
"\n"
"\n"
"<ul>\n"
"<li>added org.kde.kio component.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KImageFormats</h3>"
"\n"
"\n"
"<ul>\n"
"<li>disable the DDS and JPEG-2000 plugins when Qt version is 5.3 \n"
"or later</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KIO</h3>"
"\n"
"\n"
"<ul>\n"
"<li>now follows the mime-apps spec, for better interoperability\n"
"with gio when it comes to the user's preferred and default apps.</li>"
"\n"
"<li>new classes EmptyTrashJob and RestoreJob.</li>"
"\n"
"<li>new functions isClipboardDataCut and setClipboardDataCut.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNewStuff</h3>"
"\n"
"\n"
"<ul>\n"
"<li>installing \"stuff\" works again (porting bug)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWidgetsAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>new class KColumnResizer (makes it easy to vertically align widgets across groups)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWindowSystem</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New method KWindowSystem::setOnActivities</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KXmlGui</h3>"
"\n"
"\n"
"<ul>\n"
"<li>KActionCollection::setDefaultShortcuts now makes the shortcut\n"
"active too, to simplify application code.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Threadweaver</h3>"
"\n"
"\n"
"<ul>\n"
"<li>The maximum worker count will now decrease if a lower value is set\n"
"after workers have been created. Previously, workers would remain active\n"
"once they have been created.</li>"
"\n"
"<li>Examples from the previous ThreadWeaverDemos Github repository are\n"
"being merged into the KF5 ThreadWeaver repo.</li>"
"\n"
"<li>The maximum worker count can now be set to zero (the previous minimum\n"
"was 1). Doing so will effectively halt processing in the queue.</li>"
"\n"
"<li>Documentation of various aspects of ThreadWeaver use is becoming part\n"
"of the KDE Frameworks Cookbook. Parts of it is located in the examples/\n"
"directory.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Buildsystem changes</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Support for relative libexec dir.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Frameworkintegration</h3>"
"\n"
"\n"
"<ul>\n"
"<li>the file dialog now remembers its size correctly, and works better with remote URLs.</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.2.0.php:153
msgid ""
"\n"
"Frameworks 5.2.0 requires Qt 5.2. It is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner.\n"
"<ul>\n"
"<li><a href='%1'>KDE Frameworks 5.2.0 Source Info page with known bugs and security issues</a></li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.2.0.php:169
msgid ""
"\n"
"Those interested in following and contributing to the development of Frameworks can check out the <a href='%1'>git repositories</a>, follow the discussions on the <a href='%2'>KDE Frameworks Development mailing list</a> and contribute patches through <a href='%3'>review board</a>. Policies and the current state of the project and plans are available at the <a href='%4'>Frameworks wiki</a>. Real-time discussions take place on the <a href='%5'>#kde-devel IRC channel on freenode.net</a>.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:4
msgid "Release of KDE Frameworks 5.20.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:16
msgid ""
" \n"
"March 13, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.20.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:42
msgid "Add virtualbox mimetype icons and some other missing mimetypes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:43
msgid "Add synaptic and octopi icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:44
msgid "Fix cut icon (bug 354061)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:45
msgid "Fix name of audio-headphones.svg (+=d)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:46
msgid "Rating icons with smaller margin (1px)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:52
msgid "Remove possible file-name in KDEPlatformFileDialog::setDirectory()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:53
msgid "Don't filter by name if we have mime types"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:59
msgid "Remove dependency on Qt5::Widgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:60
msgid "Remove dependency on KDBusAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:61
msgid "Remove dependency on KI18n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:62
msgid "Remove unused includes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:63
msgid "Shell scripts output improved"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:64
msgid "Added the data model (ActivitiesModel) showing the activities to the library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:65
msgid "Build only the library by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:66
msgid "Remove the service and workspace components from the build"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:67
msgid "Move the library into src/lib from src/lib/core"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:68
msgid "Fix CMake warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:69
msgid "Fix crash in activities context menu (bug 351485)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:75
msgid "Fix kded5 dead lock when a program using kauth exits"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:81
msgid "KConfigIniBackend: Fix expensive detach in lookup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:87
msgid "Fix Kdelibs4 config migration for Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:88
msgid "Add API to get Frameworks runtime version info"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:89
msgid "KRandom: Don't use up 16K of /dev/urandom to seed rand() (bug 359485)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:95
msgid "Don't call null object pointer (bug 347962)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:101
msgid "Make it possible to compile with -DQT_NO_CAST_FROM_ASCII"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:107
msgid "Fix session management for KApplication based applications (bug 354724)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:113
msgid "Use unicode characters for callouts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:119
msgid "KFileMetadata can now query and store information about the original email a saved file may have been an attachment of"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:125
msgid "Fix cursor updating in view"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:126
#: announcements/kde-frameworks-5.20.0.php:189
msgid "Limit string memory use"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:127
msgid "KHTML java applet viewer: repair broken DBus call to kpasswdserver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:133
msgid "Use portable import macro for nl_msg_cat_cntr"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:134
msgid "Skip looking up . and .. to find the translations for an application"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:135
msgid "Restrict _nl_msg_cat_cntr use to GNU gettext implementations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:136
msgid "Add KLocalizedString::languages()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:137
msgid "Place Gettext calls only if catalog has been located"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:143
msgid "Make sure variable is being initialized"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:149
msgid "kdeinit: Prefer loading libraries from RUNPATH"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:150
msgid "Implement \"Qt5 TODO: use QUrl::fromStringList\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:156
msgid "Fix KIO app-slave connection breaking if appName contains a '/' (bug 357499)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:157
msgid "Try multiple authentication methods in case of failures"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:158
msgid "help: fix mimeType() on get()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:159
msgid "KOpenWithDialog: show mimetype name and comment in \"Remember\" checkbox text (bug 110146)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:160
msgid "A series of changes to avoid a directory relist after a file rename in more cases (bug 359596)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:161
msgid "http: rename m_iError to m_kioError"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:162
msgid "kio_http: read and discard body after a 404 with errorPage=false"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:163
msgid "kio_http: fix mimetype determination when URL ends with '/'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:164
msgid "FavIconRequestJob: add accessor hostUrl() so that konqueror can find out what the job was for, in the slot"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:165
msgid "FavIconRequestJob: fix job hanging when aborting due to favicon too big"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:166
msgid "FavIconRequestJob: fix errorString(), it only had the URL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:167
msgid "KIO::RenameDialog: restore preview support, add date and size labels (bug 356278)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:168
msgid "KIO::RenameDialog: refactor duplicated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:169
msgid "Fix wrong path-to-QUrl conversions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:170
msgid "Use kf5.kio in the category name to match other categories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:176
msgid "KLinkItemSelectionModel: Add new default constructor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:177
msgid "KLinkItemSelectionModel: Make the linked selection model settable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:178
msgid "KLinkItemSelectionModel: Handle changes to the selectionModel model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:179
msgid "KLinkItemSelectionModel: Don't store model locally"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:180
msgid "KSelectionProxyModel: Fix iteration bug"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:181
msgid "Reset KSelectionProxyModel state when needed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:182
msgid "Add a property indicating whether the models form a connected chain"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:183
msgid "KModelIndexProxyMapper: Simplify logic of connected check"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:195
msgid "Show a warning if there's an error in the Engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:201
msgid "Let KDocTools stay optional on KPackage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:207
msgid "Fix deprecated API usage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:208
msgid "Add actionType to the declarative plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:209
msgid "Reverse the filtering logic in PersonsSortFilterProxyModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:210
msgid "Make the QML example slightly more usable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:211
msgid "Add actionType to the PersonActionsModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:217
msgid "Simplify code, reduce pointer dereferences, container-related improvements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:218
msgid "Add kmimeassociations_dumper test program, inspired by bug 359850"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:219
msgid "Fix chromium/wine apps not loading on some distributions (bug 213972)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:225
msgid "Fix highlighting of all occurences in ReadOnlyPart"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:226
msgid "Don't iterate over a QString as if it was a QStringList"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:227
msgid "Properly initialize static QMaps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:228
msgid "Prefer toDisplayString(QUrl::PreferLocalFile)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:229
msgid "Support surrogate character sending from input method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:230
msgid "Do not crash on shutdown when text animation is still running"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:236
msgid "Make sure KDocTools is looked-up"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:237
msgid "Don't pass a negative number to dbus, it asserts in libdbus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:238
msgid "Clean cmake files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:239
msgid "KWallet::openWallet(Synchronous): don't time out after 25 seconds"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:245
msgid "support _NET_WM_BYPASS_COMPOSITOR (bug 349910)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:251
msgid "Use non-native Language name as fallback"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:252
msgid "Fix session management broken since KF5 / Qt5 (bug 354724)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:253
msgid "Shortcut schemes: support globally installed schemes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:254
msgid "Use Qt's qHash(QKeySequence) when building against Qt 5.6+"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:255
msgid "Shortcut schemes: fix bug where two KXMLGUIClients with the same name overwrite each other's scheme file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:256
msgid "kxmlguiwindowtest: add shortcuts dialog, for testing the shortcut schemes editor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:257
msgid "Shortcut schemes: improve usability by changing texts in GUI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:258
msgid "Shortcut schemes: improve scheme list combo (automatic size, don't clear on unknown scheme)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:259
msgid "Shortcut schemes: don't prepend the guiclient name to the filename"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:260
msgid "Shortcut schemes: create dir before trying to save a new shortcut scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:261
msgid "Shortcut schemes: restore layout margin, it looks very cramped otherwise"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:262
msgid "Fix memory leak in KXmlGui startup hook"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:268
msgid "IconItem: Don't overwrite source when using QIcon::name()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:269
msgid "ContainmentInterface: Fix use of QRect right() and bottom()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:270
msgid "Remove effectively duplicate code path for handling QPixmaps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:271
msgid "Add API docs for IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:272
msgid "Fix stylesheet (bug 359345)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:273
msgid "Don't wipe window mask on every geometry change when compositing is active and no mask has been set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:274
msgid "Applet: Don't crash on remove panel (bug 345723)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:275
msgid "Theme: Discard pixmap cache when changing theme (bug 359924)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:276
msgid "IconItemTest: Skip when grabToImage fails"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:277
msgid "IconItem: Fix changing color of svg icons loaded from icon theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:278
msgid "Fix svg iconPath resolving in IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:279
msgid "If path is passed, pick the tail (bug 359902)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:280
msgid "Add properties configurationRequired and reason"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:281
msgid "Move contextualActionsAboutToShow to Applet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:282
msgid "ScrollViewStyle: Do not use margins of the flickable item"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:283
msgid "DataContainer: Fix slot checks before connect/disconnect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:284
msgid "ToolTip: Prevent multiple geometry changes while changing contents"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:285
msgid "SvgItem: Don't use Plasma::Theme from rendering thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:286
msgid "AppletQuickItem: Fix finding own attached layout (bug 358849)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:287
msgid "Smaller expander for the taskbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:288
msgid "ToolTip: Stop show timer if hideTooltip is called (bug 358894)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:289
msgid "Disable animation of icons in plasma tooltips"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:290
msgid "Drop animations from tooltips"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:291
msgid "Default theme follows color scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:292
msgid "Fix IconItem not loading non-theme icons with name (bug 359388)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:293
msgid "Prefer other containments than desktop in containmentAt()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:294
msgid "WindowThumbnail: Discard glx pixmap in stopRedirecting() (bug 357895)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:295
msgid "Remove the legacy applets filter"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:296
msgid "ToolButtonStyle: Don't rely on an outside ID"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:297
msgid "Don't assume we find a corona (bug 359026)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:298
msgid "Calendar: Add proper back/forward buttons and a \"Today\" button (bugs 336124, 348362, 358536)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:304
msgid "Don't disable language detection just because a language is set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:305
msgid "Disable automatic disabling of automatic spelling by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:306
msgid "Fix TextBreaks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:307
msgid "Fix Hunspell dictionary search paths missing '/' (bug 359866)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.20.0.php:308
msgid "Add &lt;app dir&gt;/../share/hunspell to dictionary search path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:4
msgid "Release of KDE Frameworks 5.21.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:16
msgid ""
" \n"
"April 09, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.21.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:38
msgid "New framework: KActivitiesStats, a library for accessing the usage statistics data collected by the KDE activity manager."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:40
msgid "All frameworks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:42
msgid "Qt &gt;= 5.4 is now required, i.e. Qt 5.3 is no longer supported."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:47
msgid "Add const variant to getter method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:53
msgid "Centralize batch size in config"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:54
msgid "Remove code blocking indexing of text/plain files without .txt extension (bug 358098)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:55
msgid "Check both, filename and filecontent to determine mimetype (bug 353512)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:61
msgid "ObexManager: Split error messages for missing objects"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:67
msgid "add breeze lokalize icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:68
msgid "sync app icons between breeze and breeze dark"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:69
msgid "update theme icons and remove application-system icon fix kicker groups"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:70
msgid "add xpi support for firefox addons (bug 359913)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:71
msgid "update okular icon with the right one"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:72
msgid "add ktnef app icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:73
msgid "add kmenueditor, kmouse and knotes icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:74
msgid "change audio volume muted icon to use - for mute instead of only red color (bug 360953)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:75
msgid "add djvu mimetype support (bug 360136)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:76
msgid "add link instead of double entry"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:77
msgid "add ms-shortcut icon for gnucash (bug 360776)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:78
msgid "change wallpaper background to generic one"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:79
msgid "update icons to use an generic wallpaper"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:80
msgid "add the icon for konqueror (bug 360304)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:81
msgid "add process-working icon for progress animation in KDE (bug 360304)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:82
msgid "add software install icon and update update icon with the right color"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:83
msgid "add add and remove emblem icons for dolphin select, add mount icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:84
msgid "Remove stylesheet from analogclock and kickerdash applet icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:85
msgid "sync breeze and breeze dark (bug 360294)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:91
msgid "Fix _ecm_update_iconcache to only update the install location"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:92
msgid "Revert \"ECMQtDeclareLoggingCategory: Include &lt;QDebug&gt; with the generated file\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:98
msgid "Fallback to QCommonStyle implementation of standardIcon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:99
msgid "Set a default menu close timeout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:105
msgid "Removed compiler checks now that all frameworks require c++11"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:106
msgid "Removed QML ResourceModel as it is superseeded by KAStats::ResultModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:107
msgid "Inserting into empty QFlatSet returned an invalid iterator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:113
msgid "Simplify code (qCount -&gt; std::count, homegrown isprint -&gt; QChar::isPrint)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:114
msgid "encoding detection: fix crash in wrong usage of isprint (bug 357341)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:115
msgid "Fix crash due to uninitialized variable (bug 357341)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:121
msgid "KCompletionBox: force frameless window and don't set focus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:122
msgid "KCompletionBox should *not* be a tooltip"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:128
msgid "Add support for get QStandardPaths locations inside desktop files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:134
msgid "Fix kcoreaddons_desktop_to_json() on windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:135
msgid "src/lib/CMakeLists.txt - fix linking to a Threads library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:136
msgid "Add stubs to allow compilation on Android"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:142
msgid "Avoid introspecting a DBus interface when we don't use it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:148
msgid "uniform use of std::numeric_limits"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:149
msgid "[DeclarativeDragArea] Don't override \"text\" of mime data"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:155
msgid "Fix obsolete link in kdebugdialog5 docbook"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:156
msgid "Don't leak Qt5::Network as required lib for the rest of the ConfigureChecks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:162
msgid "Set feature macros to enable building on musl libc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:168
msgid "KEmoticons: fix crash when loadProvider fails for some reason"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:174
msgid "Make kglobalaccel5 properly killable, fixing super slow shutdown"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:180
msgid "Use qt system locale langs as fallback on non UNIX"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:186
msgid "Clean up and refactor the xcb port of klauncher"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:192
msgid "FavIconsCache: sync after write, so other apps see it, and to avoid crash on destruction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:193
msgid "Fix many threading issues in KUrlCompletion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:194
msgid "Fix crash in rename dialog (bug 360488)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:195
msgid "KOpenWithDialog: improve window title and description text (bug 359233)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:196
msgid "Allow for better cross-platform deployment of io slaves by bundling protocol info in plugin meta data"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:202
msgid "KSelectionProxyModel: Simplify row removal handling, simplify deselection logic"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:203
msgid "KSelectionProxyModel: Recreate mapping on removal only if needed (bug 352369)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:204
msgid "KSelectionProxyModel: Only clear firstChild mappings for top-level"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:205
msgid "KSelectionProxyModel: Ensure proper signalling when removing last selected"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:206
msgid "Make DynamicTreeModel searchable by display role"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:212
msgid "Do not crash if .desktop files are missing or broken"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:218
msgid "Handle left-button clicking on legacy systray icons (bug 358589)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:219
msgid "Only use X11BypassWindowManagerHint flag on platform X11"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:225
msgid "After installing a package, load it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:226
msgid "if the package exists and up to date don't fail"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:227
msgid "Add Package::cryptographicHash(QCryptographicHash::Algorithm)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:233
msgid "Set the contact uri as person uri in PersonData when no person exists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:234
msgid "Set a name for the database connection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:240
msgid "Import runner template from KAppTemplate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:246
msgid "Fix new kbuildsycoca warning, when a mimetype inherits from an alias"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:247
msgid "Fix handling of x-scheme-handler/* in mimeapps.list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:248
msgid "Fix handling of x-scheme-handler/* in mimeapps.list parsing (bug 358159)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:254
msgid "Revert \"Open/Save config page: Use term \"Folder\" instead of \"Directory\"\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:255
msgid "enforce UTF-8"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:256
msgid "Open/Save config page: Use term \"Folder\" instead of \"Directory\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:257
msgid "kateschemaconfig.cpp: use correct filters with open/save dialogs (bug 343327)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:258
msgid "c.xml: use default style for control flow keywords"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:259
msgid "isocpp.xml: use default style \"dsControlFlow\" for control flow keywords"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:260
msgid "c/isocpp: add more C standard types"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:261
msgid "KateRenderer::lineHeight() returns an int"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:262
msgid "printing: use font size from selected printing schema (bug 356110)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:263
msgid "cmake.xml speedup: Use WordDetect instead of RegExpr"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:264
msgid "Change tab width to 4 instead of 8"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:265
msgid "Fix changing the current line number color"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:266
msgid "Fix selecting completion item with the mouse (bug 307052)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:267
msgid "Add syntax highlighting for gcode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:268
msgid "Fix the MiniMap selection background painting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:269
msgid "Fix encoding for gap.xml (use UTF-8)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:270
msgid "Fix nested comment blocks (bug 358692)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:276
msgid "Take content margins into account when calculating size hints"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:282
msgid "Fix editing toolbars loses plugged actions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:288
msgid "ConnectionSettings: Initialize gateway ping timeout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:289
msgid "New TunSetting and Tun connection type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:290
msgid "Create devices for all known types"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:296
msgid "Install index.theme to same directory it always was in"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:297
msgid "Install into oxygen/base/ so icons move from apps don't clash with version installed by those apps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:298
msgid "Replicate symlinks from breeze-icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:299
msgid "Add new emblem-added and emblem-remove icons for sync with breeze"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:305
msgid "[calendar] Fix calendar applet not clearing selection when hiding (bug 360683)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:306
msgid "update audio icon to use stylesheet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:307
msgid "update audio mute icon (bug 360953)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:308
msgid "Fixing the force-creation of applets when plasma is immutable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:309
msgid "[Fading Node] Don't mix opacity separately (bug 355894)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:310
msgid "[Svg] Don't reparse configuration in response to Theme::applicationPaletteChanged"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:311
msgid "Dialog: Set SkipTaskbar/Pager states before showing window (bug 332024)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:312
msgid "Reintroduce busy property in Applet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:313
msgid "Make sure PlasmaQuick export file is properly found"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:314
msgid "Don't import an nonexistent layout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:315
msgid "Make it possible for an applet to offer a test object"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:316
msgid "Replace QMenu::exec with QMenu::popup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:317
msgid "FrameSvg: Fix dangling pointers in sharedFrames when theme changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:318
msgid "IconItem: Schedule pixmap update when window changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:319
msgid "IconItem: Animate active and enabled change even with animations disabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:320
msgid "DaysModel: Make update a slot"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:321
msgid "[Icon Item] Don't animate from previous pixmap when it has been invisible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:322
msgid "[Icon Item] Don't call loadPixmap in setColorGroup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:323
msgid "[Applet] Don't overwrite \"Persistent\" flag of Undo notification"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:324
msgid "Allowing to override plasma mutability setting on containment creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:325
msgid "Add icon/titleChanged"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:326
msgid "Remove QtScript dependency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:327
msgid "Header of plasmaquick_export.h is in plasmaquick folder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.21.0.php:328
msgid "Install some plasmaquick headers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:4
msgid "Release of KDE Frameworks 5.22.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:16
msgid ""
" \n"
"May 15, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.22.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:41
msgid "Properly check if a URL is a local file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:47
msgid "Compilation fixes for Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:53
msgid "Many new action and application icons."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:54
msgid "Specify offered extensions as per change in kiconthemes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:60
msgid "Android deployment: support projects without things in share or lib/qml (bug 362578)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:61
msgid "Enables KDE_INSTALL_USE_QT_SYS_PATHS if CMAKE_INSTALL_PREFIX Qt5 prefix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:62
msgid "ecm_qt_declare_logging_category: improve error message when using without including"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:68
msgid "Remove platformtheme plugin as it's in plasma-integration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:74
msgid "Provide a way to disable inotify use in KDirWatch"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:75
msgid "Fix KAboutData::applicationData() to init from current Q*Application metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:76
msgid "Make clear that KRandom is not recommended for cryptography purposes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:82
msgid "KDBusService: turn '-' into '_' in object paths"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:88
msgid "Don't crash if we have no openGL context"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:94
msgid "Provide a fallback MAXPATHLEN if not defined"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:95
msgid "Fix KDateTime::isValid() for ClockTime values (bug 336738)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:101
msgid "Added entity applications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:107
msgid "Merge branch 'externalextractors'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:108
msgid "Fixed external plugins and tests"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:109
msgid "Added support for external writer plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:110
msgid "Added writer plugin support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:111
msgid "Add external extractor plugin support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:117
msgid "Implement toString for Uint8ArrayConstructor and friends"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:118
msgid "Merge in several Coverity-related fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:119
msgid "Correctly use QCache::insert"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:120
msgid "Fix some memory leaks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:121
msgid "Sanity check CSS web font parsing, avoid potential mem leak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:122
msgid "dom: Add tag priorities for 'comment' tag"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:128
msgid "libgettext: Fix potential use-after-free using non-g++ compilers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:134
msgid "Use appropriate container for internal pointer array"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:135
msgid "Add opportunity to reduce unneeded disk accesses, introduces KDE-Extensions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:136
msgid "Save some disk accesses"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:142
msgid "kurlnavigatortoolbutton.cpp - use buttonWidth in paintEvent()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:143
msgid "New file menu: filter out duplicates (e.g. between .qrc and system files) (bug 355390)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:144
msgid "Fix error message on startup of the cookies KCM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:145
msgid "Remove kmailservice5, it can only do harm at this point (bug 354151)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:146
msgid "Fix KFileItem::refresh() for symlinks. The wrong size, filetype and permissions were being set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:147
msgid "Fix regression in KFileItem: refresh() would lose the file type, so a dir became a file (bug 353195)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:148
msgid "Set text on QCheckbox widget rather than using a separate label (bug 245580)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:149
msgid "Don't enable acl permissions widget if we don't own the file (bug 245580)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:150
msgid "Fix double-slash in KUriFilter results when a name filter is set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:151
msgid "KUrlRequester: add signal textEdited (forwarded from QLineEdit)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:157
msgid "Fix template syntax for test case generation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:158
msgid "Fix linking with Qt 5.4 (wrongly placed #endif)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:164
msgid "Fix the layout of the BrowserOpenOrSaveQuestion dialogue"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:170
msgid "Add a check for PersonData being valid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:176
msgid "Fix metainfo.yaml: KRunner is neither a porting aid nor deprecated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:182
msgid "Remove too-strict maximum string length in KSycoca database"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:188
msgid "Use proper char syntax '\"' instead of '\\\"'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:189
msgid "doxygen.xml: Use default style dsAnnotation for \"Custom Tags\" as well (less hard-coded colors)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:190
msgid "Add option to show the counter of words"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:191
msgid "Improved foreground color contrast for search &amp; replace highlightings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:192
msgid "Fix crash when closing Kate through dbus while the print dialog is open (bug #356813) (bug 356813)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:193
msgid "Cursor::isValid(): add note about isValidTextPosition()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:194
msgid "Add API {Cursor, Range}::{toString, static fromString}"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:197
#: announcements/kde-frameworks-5.23.0.php:233
#: announcements/kde-frameworks-5.26.0.php:218
#: announcements/kde-frameworks-5.28.0.php:218
#: announcements/kde-frameworks-5.37.0.php:188
#: announcements/kde-frameworks-5.41.0.php:243
#: announcements/kde-frameworks-5.7.0.php:216
msgid "KUnitConversion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:200
msgid "Inform the client if we don't know the conversion rate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:201
msgid "Add ILS (Israeli New Shekel) currency (bug 336016)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:207
msgid "disable seession restore for kwalletd5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:213
msgid "KNewPasswordWidget: Remove size hint on spacer, which was leading to some always empty space in the layout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:214
msgid "KNewPasswordWidget: fix QPalette when widget is disabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:220
msgid "Fix generation of path to xcb plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:226
msgid "[QuickTheme] Fix properties"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:227
msgid "highlight/highlightedText from proper color group"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:228
msgid "ConfigModel: Don't try to resolve empty source path from package"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:229
msgid "[calendar] Only show the events mark on days grid, not month or year"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:230
msgid "declarativeimports/core/windowthumbnail.h - fix -Wreorder warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:231
msgid "reload icon theme properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:232
msgid "Always write the theme name to plasmarc, also if the default theme is chosen"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:233
msgid "[calendar] Add a mark to days containing an event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:234
msgid "add Positive, Neutral, Negative text colors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:235
msgid "ScrollArea: Fix warning when contentItem is not Flickable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:236
msgid "Add a prop and method for aligning the menu against a corner of its visual parent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:237
msgid "Allow setting minimum width on Menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:238
msgid "Maintain order in stored item list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:239
msgid "Extend API to allow (re)positioning menu items during procedural insert"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:240
msgid "bind highlightedText color in Plasma::Theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:241
msgid "Fix unsetting associated application/urls for Plasma::Applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:242
msgid "Don't expose symbols of private class DataEngineManager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:243
msgid "add an \"event\" element in the calendar svg"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:244
msgid "SortFilterModel: Invalidate filter when changing filter callback"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:250
msgid "Install parsetrigrams tool for cross compiling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:251
msgid "hunspell: Load/Store a personal dictionary"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:252
msgid "Support hunspell 1.4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:253
msgid "configwidget: notify about changed config when ignored words updated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:254
msgid "settings: don't immediately save the config when updating ignore list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:255
msgid "configwidget: fix saving when ignore words updated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.22.0.php:256
msgid "Fix failed to save ignore word issue (bug 355973)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:4
msgid "Release of KDE Frameworks 5.23.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:16
msgid ""
" \n"
"June 13, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.23.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:41
msgid "Make it actually possible to tell providers from the url we were given"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:42
msgid "Provide QDebug helpers for some Attica classes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:43
msgid "Fix redirection of absolute Urls (bug 354748)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:49
msgid "Fix using spaces in the tags kioslave (bug 349118)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:55
msgid "Add a CMake option to build binary Qt resource out of icons dir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:56
msgid "Many new and updated icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:57
msgid "update disconnect network icon for bigger diference to conntected (bug 353369)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:58
msgid "update mount and unmount icon (bug 358925)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:59
msgid "add some avatars from plasma-desktop/kcms/useraccount/pics/sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:60
msgid "remove chromium icon cause the default chromium icon fit's well (bug 363595)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:61
msgid "make the konsole icons lighter (bug 355697)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:62
msgid "add mail icons for thunderbird (bug 357334)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:63
msgid "add public key icon (bug 361366)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:64
msgid "remove process-working-kde cause the konqueror icons should be used (bug 360304)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:65
msgid "update krusader icons according to (bug 359863)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:66
msgid "rename the mic icons according D1291 (bug D1291)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:67
msgid "add some script mimetype icons (bug 363040)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:68
msgid "add virtual keyboard and touchpad on/off functionality for OSD"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:74
msgid "Remove unused dependencies and translation handling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:80
msgid "Adding runningActivities property to the Consumer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:86
msgid "Major rework of the API docs generation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:92
msgid "Use QQuickWidget for QML KCMs (bug 359124)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:98
msgid "Avoid skipping KAuthorized check"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:104
msgid "Allow using new style connect syntax with KStandardAction::create()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:110
msgid "Print the failing plugin when notifying a cast warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:111
msgid "[kshareddatacache] Fix invalid use of &amp; to avoid unaligned reads"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:112
msgid "Kdelibs4ConfigMigrator: skip reparsing if nothing was migrated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:113
msgid "krandom: Add testcase to catch bug 362161 (failure to auto-seed)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:119
msgid "Check size of unix domain socket path before copying to it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:125
msgid "Support selected state"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:126
msgid "KCMShell import can now be used to query for whether opening a KCM is actually allowed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:132
msgid "Warn about KDateTimeParser::parseDateUnicode not being implemented"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:133
msgid "K4TimeZoneWidget: correct path for flag images"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:139
msgid "Add commonly used entities for keys to en/user.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:140
msgid "Update man-docbook template"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:141
msgid "Update book template + man template + add arcticle template"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:142
msgid "Call kdoctools_create_handbook only for index.docbook (bug 357428)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:148
msgid "Add emojis support to KEmoticon + Emoji One icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:149
msgid "Add support for custom emoticon sizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:155
msgid "Fix potential memory leak reported by Coverity and simplify the code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:156
msgid "The number of layers is determined by the number of comma-separated values in the ‘background-image’ property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:157
msgid "Fix parsing background-position in shorthand declaration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:158
msgid "Do not create new fontFace if there is no valid source"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:164
msgid "Don't make KIconThemes depend on Oxygen (bug 360664)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:165
msgid "Selected state concept for icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:166
msgid "Use system colors for monochrome icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:172
msgid "Fix race in which the file containing the X11 cookie has the wrong permissions for a small while"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:173
msgid "Fix permissions of /tmp/xauth-xxx-_y"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:179
msgid "Give clearer error message when KRun(URL) is given a URL without scheme (bug 363337)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:180
msgid "Add KProtocolInfo::archiveMimetypes()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:181
msgid "use selected icon mode in file open dialog sidebar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:182
msgid "kshorturifilter: fix regression with mailto: not prepended when no mailer is installed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:188
msgid "Set correct \"dialog\" flag for Progress Widget dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:194
msgid "Don't initialize KNS3::DownloadManager with the wrong categories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:195
msgid "Extend KNS3::Entry public API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:201
#: announcements/kde-frameworks-5.23.0.php:207
msgid "use QUrl::fromUserInput to construct sound url (bug 337276)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:213
msgid "Fix associated applications for mimetypes with uppercase characters"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:214
msgid "Lowercase the lookup key for mimetypes, to make it case insensitive"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:215
msgid "Fix ksycoca notifications when the DB doesn't exist yet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:221
msgid "Fix default encoding to UTF-8 (bug 362604)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:222
msgid "Fix color configurability of default style \"Error\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:223
msgid "Search &amp; Replace: Fix replace background color (regression introduced in v5.22) (bug 363441)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:224
msgid "New color scheme \"Breeze Dark\", see https://kate-editor.org/?post=3745"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:225
msgid "KateUndoManager::setUndoRedoCursorOfLastGroup(): pass Cursor as const reference"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:226
msgid "sql-postgresql.xml improve syntax highlighting by ignoring multiline function bodies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:227
msgid "Add syntax highlighting for Elixir and Kotlin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:228
msgid "VHDL syntax highlighting in ktexteditor: add support for functions inside architecture statements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:229
msgid "vimode: Don't crash when given a range for a nonexistent command (bug 360418)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:230
msgid "Properly remove composed characters when using Indic locales"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:236
msgid "Fix downloading currency exchange rates (bug 345750)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:242
msgid "KWalletd migration: fix error handling, stops the migration from happening on every single boot."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:245
#: announcements/kde-frameworks-5.24.0.php:273
#: announcements/kde-frameworks-5.25.0.php:244
#: announcements/kde-frameworks-5.26.0.php:231
#: announcements/kde-frameworks-5.27.0.php:241
#: announcements/kde-frameworks-5.28.0.php:231
#: announcements/kde-frameworks-5.29.0.php:232
#: announcements/kde-frameworks-5.33.0.php:164
#: announcements/kde-frameworks-5.34.0.php:185
#: announcements/kde-frameworks-5.35.0.php:185
#: announcements/kde-frameworks-5.37.0.php:200
#: announcements/kde-frameworks-5.38.0.php:211
#: announcements/kde-frameworks-5.39.0.php:203
#: announcements/kde-frameworks-5.40.0.php:180
#: announcements/kde-frameworks-5.41.0.php:250
#: announcements/kde-frameworks-5.42.0.php:271
msgid "KWayland"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:248
msgid "[client] Don't check resource version for PlasmaWindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:249
msgid "Introduce an initial state event into Plasma Window protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:250
msgid "[server] Trigger error if a transient request tries to parent to itself"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:251
msgid "[server] Properly handle the case that a PlasmaWindow is unmapped before client bound it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:252
msgid "[server] Properly handle destructor in SlideInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:253
msgid "Add support for touch events in fakeinput protocol and interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:254
msgid "[server] Standardize the destructor request handling for Resources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:255
msgid "Implement wl_text_input and zwp_text_input_v2 interfaces"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:256
msgid "[server] Prevent double delete of callback resources in SurfaceInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:257
msgid "[server] Add resource nullptr check to ShellSurfaceInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:258
msgid "[server] Compare ClientConnection instead of wl_client in SeatInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:259
msgid "[server] Improve the handling when clients disconnect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:260
msgid "server/plasmawindowmanagement_interface.cpp - fix -Wreorder warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:261
msgid "[client] Add context pointer to connects in PlasmaWindowModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:262
msgid "Many fixes related to destruction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:268
msgid "Use selected icon effect for current KPageView page"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:274
msgid "[platform xcb] Respect request icon size (bug 362324)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:280
msgid "Right-clicking the menu bar of an application will now longer allow bypassing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:286
msgid "Revert \"drop WiMAX support for NM 1.2.0+\" as it breaks ABI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:292
msgid "Sync weather icons with breeze"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:293
msgid "Add update icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:299
msgid "Add cantata system tray support (bug 363784)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:300
msgid "Selected state for Plasma::Svg and IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:301
msgid "DaysModel: reset m_agendaNeedsUpdate when plugin sends new events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:302
msgid "Update audio and network icon to get a better contrast (bug 356082)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:303
msgid "Deprecate downloadPath(const QString &amp;file) in favor of downloadPath()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:304
msgid "[icon thumbnail] Request for preferred icon size (bug 362324)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:305
msgid "Plasmoids can now tell whether widgets are locked by the user or sysadmin restrictions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:306
msgid "[ContainmentInterface] Don't try to popup empty QMenu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:307
msgid "Use SAX for Plasma::Svg stylesheet replacement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:308
msgid "[DialogShadows] Cache access to QX11Info::display()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:309
msgid "restore air plasma theme icons from KDE4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.23.0.php:310
msgid "Reload selected color scheme on colors changed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:4
msgid "Release of KDE Frameworks 5.24.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:16
msgid ""
" \n"
"July 09, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.24.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:38
#: announcements/kde-frameworks-5.42.0.php:38
msgid "General changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:41
msgid ""
"The list of supported platforms for each framework is now more explicit.\n"
"Android has been added to the list of supported platforms in all frameworks where this is the case."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:48
msgid "DocumentUrlDB::del Only assert when children of dir actually exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:49
msgid "Ignore malformed Queries which have a binary operator without first argument"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:55
msgid "Many new or improved icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:56
msgid "fix bug 364931 user-idle icon was not visible (bug 364931)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:57
msgid "Add a program to convert symbolically linked files to qrc aliases"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:63
msgid "Integrate relative library paths to APK"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:70
msgid ""
"Ensure extracting an archive does not install files outside the extraction folder,\n"
"for security reasons. Instead, extract such files to the root of the extraction folder."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:77
msgid "Cleanup KBookmarkManagerList before qApp exits, to avoid deadlocks with the DBus thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:83
msgid "Deprecate authorizeKAction() in favor of authorizeAction()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:84
msgid "Fix reproducibility in builds by ensuring utf-8 encoding"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:90
msgid "KStandardAction::showStatusbar: Return the intended action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:96
msgid "Make epoxy optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:102
msgid "[OS X] make kded5 an agent, and build it as a regular application"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:108
msgid "Remove KDETranslator class, there's no kdeqt.po anymore"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:109
msgid "Document the replacement for use12Clock()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:115
msgid "Add support for KNewPasswordWidget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:121
msgid "Allow KDocTools to always locate at least its own installed stuff"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:122
msgid "Use CMAKE_INSTALL_DATAROOTDIR to look for docbook instead of share"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:123
msgid "Update qt5options manpage docbook to qt 5.4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:124
msgid "Update kf5options manpage docbook"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:130
msgid "Move glass theme to kde-look"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:136
msgid "Use QGuiApplication instead of QApplication"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:142
msgid "Fix applying inherit value for outline shorthand property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:143
msgid "Handle initial and inherit for border radius"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:144
msgid "Discard property if we caught an invalid length|percent as background-size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:145
msgid "cssText must output comma separated values for those properties"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:146
msgid "Fix parsing background-clip in shorthand"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:147
msgid "Implement background-size parsing in shorthand"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:148
msgid "Mark properties as set when repeating patterns"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:149
msgid "Fix background properties inheritance"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:150
msgid "Fix applying Initial and Inherit for background-size property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:151
msgid "Deploy the khtml kxmlgui file in a Qt resource file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:157
msgid "Also search catalogs for stripped variants of values in env var LANGUAGE"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:158
msgid "Fix parsing of env var values WRT modifier and codeset, done in wrong order"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:164
msgid "Add support for loading and using an icontheme in a RCC file automatically"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:165
msgid "Document icon theme deployment on MacOS and Windows, see https://api.kde.org/frameworks/kiconthemes/html/index.html"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:171
msgid "Allow timeout in reset_oom_protection while waiting for SIGUSR1"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:177
msgid "KIO: add SlaveBase::openPasswordDialogV2 for better error checking, please port your kioslaves to it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:178
msgid "Fix KUrlRequester opening file dialog in wrong directory (bug 364719)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:179
msgid "Fix unsafe KDirModelDirNode* casts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:180
msgid "Add cmake option KIO_FORK_SLAVES to set default value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:181
msgid "ShortUri filter: fix filtering of mailto:user@host"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:182
msgid "Add OpenFileManagerWindowJob to highlight file within a folder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:183
msgid "KRun: add runApplication method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:184
msgid "Add soundcloud search provider"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:185
msgid "Fix an alignment issue with the OS X native \"macintosh\" style"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:191
msgid "Add KExtraColumnsProxyModel::removeExtraColumn, will be needed by StatisticsProxyModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:197
msgid "kjs/ConfigureChecks.cmake - set HAVE_SYS_PARAM_H properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:203
msgid "Make sure we have a size to offer (bug 364896)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:204
msgid "Fix \"Download dialog fails when all categories missing\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:210
msgid "Fix notify by taskbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:216
msgid "KNotifyConfigWidget: add disableAllSounds() method (bug 157272)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:222
msgid "Add switch to disable KParts' handling of window titles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:223
#: announcements/kde-frameworks-5.24.0.php:303
msgid "Add donate menu item to help menu of our apps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:229
msgid "Fix name of QDialogButtonBox's enumerator \"StandardButtons\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:230
msgid "Remove the first attempt to load library because we will try libraryPaths anyway"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:231
msgid "Fix crash when a method exposed to Kross returns QVariant with non-relocatable data"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:232
msgid "Do not use C-style casts into void* (bug 325055)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:238
msgid "[QueryMatch] Add iconName"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:244
msgid "Show Scrollbar Text Preview after a delay of 250ms"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:245
msgid "hide preview and stuff on view content scrolling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:246
msgid "set parent + toolview, I think this is needed to avoid task switcher entry in Win10"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:247
msgid "Remove \"KDE-Standard\" from encoding box"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:248
msgid "Folding preview on per default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:249
msgid "Avoid dashed underline for preview &amp; avoid poisoning of line layout cache"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:250
msgid "Always enable \"Show preview of folded text\" option"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:251
msgid "TextPreview: Adjust the grooveRect-height when scrollPastEnd is enabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:252
msgid "Scrollbar preview: use groove rect if scrollbar does not use full height"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:253
msgid "Add KTE::MovingRange::numberOfLines() just like KTE::Range has"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:254
msgid "Code folding preview: set popup height so that all hidden lines fit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:255
msgid "Add option to disable preview of folded text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:256
msgid "Add modeline 'folding-preview' of type bool"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:257
msgid "View ConfigInterface: support 'folding-preview' of type bool"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:258
msgid "Add bool KateViewConfig::foldingPreview() and setFoldingPreview(bool)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:259
msgid "Feature: Show text preview when hovering over folded code block"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:260
msgid "KateTextPreview: add setShowFoldedLines() and showFoldedLines()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:261
msgid "Add modelines 'scrollbar-minimap' [bool], and 'scrollbar-preview' [bool]"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:262
msgid "Enable mini-map scrollbar by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:263
msgid "New feature: Show text preview when hovering over the scrollbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:264
msgid "KateUndoGroup::editEnd(): pass KTE::Range by const ref"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:265
msgid "Fix vim-mode shortcut handling, after behaviour changes in Qt 5.5 (bug 353332)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:266
msgid "Autobrace: don't insert ' character in text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:267
msgid "ConfigInterface: add scrollbar-minimap config key to enable/disable scrollbar mini map"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:268
msgid "Fix KTE::View::cursorToCoordinate() when top message widget is visible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:269
msgid "Refactoring of the Emulated Command Bar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:270
msgid "Fix drawing artifacts when scrolling while notifications are visible (bug 363220)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:276
msgid "Add a parent_window event to Plasma Window interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:277
msgid "Properly handle destroying a Pointer/Keyboard/Touch resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:278
msgid "[server] Delete dead code: KeyboardInterface::Private::sendKeymap"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:279
msgid "[server] Add support for setting the clipboard selection DataDeviceInterface manually"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:280
msgid "[server] Ensure that Resource::Private::get returns nullptr if passed a nullptr"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:281
msgid "[server] Add resource check in QtExtendedSurfaceInterface::close"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:282
msgid "[server] Unset SurfaceInterface pointer in referenced objects when being destroyed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:283
msgid "[server] Fix error message in QtSurfaceExtension Interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:284
msgid "[server] Introduce a Resource::unbound signal emitted from unbind handler"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:285
msgid "[server] Don't assert when destroying a still referenced BufferInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:286
msgid "Add destructor request to org_kde_kwin_shadow and org_kde_kwin_shadow_manager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:292
msgid "Fix reading Unihan data"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:293
msgid "Fix minimum size of KNewPasswordDialog (bug 342523)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:294
msgid "Fix ambiguous contructor on MSVC 2015"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:295
msgid "Fix an alignment issue under the OS X native \"macintosh\" style (bug 296810)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:301
msgid "KXMLGui: Fix merge indices when removing xmlgui clients with actions in groups (bug 64754)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:302
msgid "Don't warn about \"file found in compat location\" if it wasn't found at all"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:309
msgid "Do not set peap label based on peap version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:310
msgid "Make network manager version checks in runtime (to avoid compile vs. run-time (bug 362736)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:316
msgid "[Calendar] Flip arrow buttons on right-to-left languages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:317
msgid "Plasma::Service::operationDescription() should return a QVariantMap"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:318
msgid "Don't include embedded contrainers in containmentAt(pos) (bug 361777)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:319
msgid "fix the color theming for the restart system icon (login screen) (bug 364454)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:320
msgid "disable taskbar thumbnails with llvmpipe (bug 363371)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:321
msgid "guard against invalid applets (bug 364281)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:322
msgid "PluginLoader::loadApplet: restore compatibility for misinstalled applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:323
msgid "correct folder for PLASMA_PLASMOIDS_PLUGINDIR"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:324
msgid "PluginLoader: improve error message about plugin version compatibility"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:325
msgid "Fix check to keep QMenu on screen for multiscreen layouts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:326
msgid "New containment type for the systray"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:329
#: announcements/kde-frameworks-5.25.0.php:322
#: announcements/kde-frameworks-5.28.0.php:318
#: announcements/kde-frameworks-5.29.0.php:282
#: announcements/kde-frameworks-5.31.0.php:222
#: announcements/kde-frameworks-5.32.0.php:222
#: announcements/kde-frameworks-5.34.0.php:238
#: announcements/kde-frameworks-5.36.0.php:195
#: announcements/kde-frameworks-5.39.0.php:256
#: announcements/kde-frameworks-5.41.0.php:318
#: announcements/kde-frameworks-5.7.0.php:272
#: announcements/kde-frameworks-5.9.0.php:178
msgid "Solid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:332
msgid "Fix check that CPU is valid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:333
msgid "Handle reading /proc/cpuinfo for Arm processors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:334
msgid "Find CPUs by subsystem rather than driver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:340
msgid "Mark helper exe as non-gui app"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.24.0.php:341
msgid "Allow nsspellcheck to be compiled on mac per default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:4
msgid "Release of KDE Frameworks 5.25.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:16
msgid ""
" \n"
"August 13, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.25.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:38
#: announcements/kde-frameworks-5.29.0.php:42
#: announcements/kde-frameworks-5.31.0.php:38
#: announcements/kde-frameworks-5.8.0.php:44
msgid "General"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:41
msgid "Qt &gt;= 5.5 is now required"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:47
msgid "Follow HTTP redirects"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:53
msgid "update mail- 16px icons to recognize the icons better"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:54
msgid "update mic and audio status icons to have the same layout and size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:55
msgid "New System Settings app icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:56
msgid "add symbolic status gnome icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:57
msgid "add gnome 3 symbolic icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:58
msgid "Added icons for Diaspora and Vector, see phabricator.kde.org/M59"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:59
msgid "New icons for Dolphin and Gwenview"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:60
msgid "weather icons are status icons no app icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:61
msgid "add some links to xliff thanks gnastyle"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:62
msgid "add kig icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:63
msgid "add mimetype icons, krdc icon, other app icons from gnastyle"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:64
msgid "add certificate mimetype icon (bug 365094)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:65
msgid "update gimp icons thanks gnastyle (bug 354370)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:66
msgid "globe action icon is now no linked file please use it in digikam"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:67
msgid "update labplot icons according to mail 13.07. from Alexander Semke"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:68
#: announcements/kde-frameworks-5.26.0.php:60
msgid "add app icons from gnastyle"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:69
msgid "add kruler icon from Yuri Fabirovsky"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:70
msgid "fix broken svg files thanks fuchs (bug 365035)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:76
msgid "Fix inclusion when there's no Qt5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:77
msgid "Add a fallback method for query_qmake() when there's no Qt5 installation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:78
msgid "Make sure ECMGeneratePriFile.cmake behaves like the rest of ECM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:79
msgid "Appstream data changed its preferred location"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:85
msgid "[KActivities-CLI] commands for starting and stopping an activity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:86
msgid "[KActivities-CLI] setting and getting activity name, icon and description"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:87
msgid "Added a CLI application for controlling activities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:88
msgid "Adding scripts to switch to previous and next activities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:89
msgid "Method for inserting into QFlatSet now returns index along with the iterator (bug 365610)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:90
msgid "Adding ZSH functions for stopping and deleting non-current activities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:91
msgid "Added isCurrent property to KActivities::Info"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:92
msgid "Using constant iterators when searching for activity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:98
msgid "Many improvements to the output formatting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:99
msgid "Mainpage.dox has now higher priority than README.md"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:105
msgid "Handle multiple gzip streams (bug 232843)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:106
msgid "Assume a directory is a directory, even if the permission bit is set wrong (bug 364071)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:112
msgid "KBookmarkGroup::moveBookmark: fix return value when item is already at the right position"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:118
msgid "Add DeleteFile and RenameFile standard shortcut"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:124
msgid "Add DeleteFile and RenameFile standard action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:125
msgid "The config page has now scroll bars when needed (bug 362234)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:131
msgid "Install known licenses and find them at runtime (regression fix) (bug 353939)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:137
msgid "Actually emit valueChanged"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:143
msgid "Check for xattr during config step, otherwise the build might fail (if xattr.h is missing)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:149
msgid "Use klauncher dbus instead of KRun (bug 366415)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:150
msgid "Launch jumplist actions via KGlobalAccel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:151
msgid "KGlobalAccel: Fix deadlock on exit under Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:157
msgid "Support percentage unit in border radius"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:158
msgid "Removed prefixed version of background and border radius properties"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:159
msgid "Fixes in 4-values shorthand constructor function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:160
msgid "Create string objects only if they will be used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:166
msgid "Greatly improve the performance of makeCacheKey, as it is a critical code path in icon lookup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:167
msgid "KIconLoader: reduce number of lookups when doing fallbacks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:168
msgid "KIconLoader: massive speed improvement for loading unavailable icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:169
msgid "Do not clear search line when switching category"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:170
msgid "KIconEngine: Fix QIcon::hasThemeIcon always returning true (bug 365130)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:176
msgid "Adapt KInit to Mac OS X"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:182
msgid "Fix KIO::linkAs() to work as advertised, i.e. fail if dest already exists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:183
msgid "Fix KIO::put(\"file:///path\") to respect the umask (bug 359581)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:184
msgid "Fix KIO::pasteActionText for null dest item and for empty URL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:185
msgid "Add support for undoing symlink creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:186
msgid "GUI option to configure global MarkPartial for KIO slaves"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:187
msgid "Fix MaxCacheSize limited to 99 KiB"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:188
msgid "Add clipboard buttons to checksums tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:189
msgid "KNewFileMenu: fix copying template file from embedded resource (bug 359581)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:190
msgid "KNewFileMenu: Fix creating link to application (bug 363673)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:191
msgid "KNewFileMenu: Fix suggestion of new filename when file already exist in desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:192
msgid "KNewFileMenu: ensure fileCreated() is emitted for app desktop files too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:193
msgid "KNewFileMenu: fix creating symlinks with a relative target"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:194
msgid "KPropertiesDialog: simplify button box usage, fix behavior on Esc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:195
msgid "KProtocolInfo: refill cache to find newly installed protocols"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:196
msgid "KIO::CopyJob: port to qCDebug (with its own area, since this can be quite verbose)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:197
msgid "KPropertiesDialog: add Checksums tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:198
msgid "Clean url's path before initializing KUrlNavigator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:204
msgid "KRearrangeColumnsProxyModel: fix assert in index(0, 0) on empty model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:205
msgid "Fix KDescendantsProxyModel::setSourceModel() not clearing internal caches"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:206
msgid "KRecursiveFilterProxyModel: fix QSFPM corruption due to filtering out rowsRemoved signal (bug 349789)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:207
msgid "KExtraColumnsProxyModel: implement hasChildren()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:213
msgid "Don't set parent of sublayout manually, silences warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:219
msgid "Infer the ParentApp from the PackageStructure plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:220
msgid "Let kpackagetool5 generate appstream information for kpackage components"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:221
msgid "Make it possible to load metadata.json file from kpackagetool5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:227
msgid "Remove unused KF5 dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:233
msgid "applications.menu: remove references to unused categories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:234
msgid "Always update the Trader parser from yacc/lex sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:240
msgid "Do not ask for overwriting a file twice with native dialogs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:241
msgid "added FASTQ syntax"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:247
msgid "[client] Use a QPointer for the enteredSurface in Pointer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:248
msgid "Expose Geometry in PlasmaWindowModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:249
msgid "Add a geometry event to PlasmaWindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:250
msgid "[src/server] Verify that surface has a resource before sending pointer enter"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:251
msgid "Add support for xdg-shell"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:252
msgid "[server] Properly send a selection clear prior to keyboard focus enter"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:253
msgid "[server] Handle no XDG_RUNTIME_DIR situation more gracefully"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:259
msgid "[KCharSelect] Fix crash when searching with no present data file (bug 300521)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:260
msgid "[KCharSelect] Handle characters outside BMP (bug 142625)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:261
msgid "[KCharSelect] Update kcharselect-data to Unicode 9.0.0 (bug 336360)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:262
msgid "KCollapsibleGroupBox: Stop animation in destructor if still running"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:263
msgid "Update to Breeze palette (sync from KColorScheme)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:269
msgid "[xcb] Ensure the compositingChanged signal is emitted if NETEventFilter is recreated (bug 362531)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:270
msgid "Add a convenience API to query the windowing system/platform used by Qt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:276
msgid "Fix minimum size hint (cut-off text) (bug 312667)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:277
msgid "[KToggleToolBarAction] Honor action/options_show_toolbar restriction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:283
msgid "Default to WPA2-PSK and WPA2-EAP when getting security type from connection settings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:289
msgid "add application-menu to oxygen (bug 365629)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:295
msgid "Keep compatiable slot createApplet with Frameworks 5.24"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:296
msgid "Don't delete gl texture twice in thumbnail (bug 365946)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:297
msgid "Add translation domain to wallpaper QML object"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:298
msgid "Don't manually delete applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:299
msgid "Add a kapptemplate for Plasma Wallpaper"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:300
msgid "Templates: register templates in own toplevel category \"Plasma/\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:301
msgid "Templates: Update techbase wiki links in READMEs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:302
msgid "Define what Plasma packagestructures extend plasmashell"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:303
msgid "support a size for adding applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:304
msgid "Define Plasma PackageStructure as regular KPackage PackageStructure plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:305
msgid "Fix: update wallpaper example Autumn's config.qml to QtQuick.Controls"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:306
msgid "Use KPackage to install Plasma Packages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:307
msgid "If we pass a QIcon as an argument to IconItem::Source, use it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:308
msgid "Add overlay support to Plasma IconItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:309
msgid "Add Qt::Dialog to default flags to make QXcbWindow::isTransient() happy (bug 366278)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:310
msgid "[Breeze Plasma Theme] Add network-flightmode-on/off icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:311
msgid "Emit contextualActionsAboutToShow before showing the applet's contextualActions menu (bug 366294)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:312
msgid "[TextField] Bind to TextField length instead of text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:313
msgid "[Button Styles] Horizontally center in icon-only mode (bug 365947)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:314
msgid "[Containment] Treat HiddenStatus as low status"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:315
msgid "Add kruler system tray icon from Yuri Fabirovsky"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:316
msgid "Fix the infamous 'dialogs show up on the Task Manager' bug once more"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:317
msgid "fix network wireless available icon with an ? emblem (bug 355490)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:318
msgid "IconItem: Use better approach to disable animation when going from invisible to visible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:319
msgid "Set Tooltip window type on ToolTipDialog through KWindowSystem API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:325
msgid "Always update the Predicate parser from yacc/lex sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:331
msgid "hunspell: Clean up code for searching for dictionaries, add XDG dirs (bug 361409)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.25.0.php:332
msgid "Try to fix language filter usage of language detection a bit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:4
msgid "Release of KDE Frameworks 5.26.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:16
msgid ""
" \n"
"September 10, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.26.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:41
msgid "Add Qt5Network as a public dependency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:47
#: announcements/kde-frameworks-5.28.0.php:290
#: announcements/kde-frameworks-5.28.0.php:296
msgid "Fix include dir in pri file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:53
msgid "Add missing namespace prefix definitions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:54
msgid "Check SVG icons for wellformedness"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:55
msgid "Fix all edit-clear-location-ltr icons (bug 366519)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:56
msgid "add kwin effect icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:57
msgid "rename caps-on in input-caps-on"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:58
msgid "add caps icons for text input"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:59
msgid "add some gnome specific icons from Sadi58"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:61
msgid "Dolphin, Konsole and Umbrello icons optimized for 16px, 22px, 32px"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:62
msgid "Updated VLC icon for 22px, 32px and 48px"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:63
msgid "Added app icon for Subtitle Composer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:64
msgid "Fix Kleopatra new icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:65
msgid "Added app icon for Kleopatra"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:66
msgid "Added icons for Wine and Wine-qt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:67
msgid "fix presentation word bug thanks Sadi58 (bug 358495)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:68
msgid "add system-log-out icon in 32px"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:69
msgid "add 32px system- icons, remove colored system- icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:70
msgid "add pidgin, banshee icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:71
msgid "remove vlc app icon due to license issue, add new VLC icon (bug 366490)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:72
msgid "Add gthumb icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:73
msgid "use HighlightedText for folder icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:74
msgid "places folder icons are now use stylesheet (highleight color)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:80
msgid "ecm_process_po_files_as_qm: Skip fuzzy translations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:81
msgid "The default level for logging categories should be Info rather than Warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:82
msgid "Document ARGS variable in the create-apk-* targets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:83
msgid "Create a test that validates projects' appstream information"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:89
msgid "Add condition if group's platforms are not defined"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:90
msgid "Template: Sort platforms alphabetically"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:96
msgid "Bring from kdelibs the file used to generate kentities.c"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:102
msgid "Add Donate entry to KStandardShortcut"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:108
msgid "Add Donate standard action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:114
msgid "[kpackagelauncherqml] Assume desktop file name is same as pluginId"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:115
msgid "Load QtQuick rendering settings from a config file and set default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:116
msgid "icondialog.cpp - proper compile fix that doesn't shadow m_dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:117
msgid "Fix crash when no QApplication is available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:118
msgid "expose translation domain"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:124
msgid "Fix Windows compilation error in kstyle.h"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:130
msgid "add paths for config, cache + data to general.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:131
msgid "Made up-to-date with the English version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:132
msgid "Add Space and Meta key entities to src/customization/en/user.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:138
msgid "Only require Xattr if the operating system is Linux"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:139
msgid "Restore Windows build"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:145
msgid "[xsync] XFlush in simulateUserActivity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:151
msgid "KPropertiesDialog: remove warning note from docu, the bug is gone"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:152
msgid "[test program] resolve relative paths using QUrl::fromUserInput"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:153
msgid "KUrlRequester: fix error box when selecting a file and reopening the file dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:154
msgid "Provide a fallback if slaves don't list the . entry (bug 366795)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:155
msgid "Fix creating symlink over \"desktop\" protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:156
msgid "KNewFileMenu: when creating symlinks use KIO::linkAs instead of KIO::link"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:157
msgid "KFileWidget: fix double '/' in path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:158
msgid "KUrlRequester: use static connect() syntax, was inconsistent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:159
msgid "KUrlRequester: pass window() as parent for the QFileDialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:160
msgid "avoid calling connect(null, .....) from KUrlComboRequester"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:166
msgid "uncompress archives in subfolders"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:167
msgid "No longer allow installing to generic data folder because of potential security hole"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:173
msgid "Get StatusNotifierWatcher property ProtocolVersion in async way"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:179
msgid "silence contentHash deprecation warnings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:185
msgid "Revert \"Remove unused KF5 dependencies\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:191
msgid "remove accel clash (bug 363738)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:192
msgid "fix email address highlighting in doxygen (bug 363186)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:193
msgid "detect some more json files, like our own projects ;)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:194
msgid "improve mime-type detection (bug 357902)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:195
msgid "Bug 363280 - highlighting: c++: #if 1 #endif #if defined (A) aaa #elif defined (B) bbb #endif (bug 363280)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:196
msgid "Bug 363280 - highlighting: c++: #if 1 #endif #if defined (A) aaa #elif defined (B) bbb #endif"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:197
msgid "Bug 351496 - Python folding is not working during initial typing (bug 351496)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:198
msgid "Bug 365171 - Python syntax highlighting: not working correctly for escape sequences (bug 365171)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:199
msgid "Bug 344276 - php nowdoc not folded correctly (bug 344276)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:200
msgid "Bug 359613 - Some CSS3 properties are not supported in syntax highlight (bug 359613)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:201
msgid "Bug 367821 - wineHQ syntax: The section in a reg file isn't highlighted correctly (bug 367821)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:202
msgid "Improve swap file handling if swap directory specified"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:203
msgid "Fix crash when reloading documents with auto-wrapped line due to line length limit (bug 366493)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:204
msgid "Fix constant crashes related to the vi command bar (bug 367786)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:205
msgid "Fix: Line numbers in printed documents now starts at 1 (bug 366579)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:206
msgid "Backup Remote Files: Treat mounted files also as remote files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:207
msgid "cleanup logic for searchbar creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:208
msgid "add highlighting for Magma"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:209
msgid "Allows only one level of recursion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:210
msgid "Fix broken swap-file on windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:211
msgid "Patch: add bitbake support for syntax highlighting engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:212
msgid "autobrace: look at spellcheck attribute where the character was entered (bug 367539)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:213
msgid "Highlight QMAKE_CFLAGS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:214
msgid "Don't pop out of the main context"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:215
msgid "Add some executable names that are commonly used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:221
msgid "Add British \"stone\" unit of mass"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:227
msgid "Move kwallet-query docbook to correct subdir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:228
msgid "Fix wording an -&gt; one"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:234
msgid "Make linux/input.h compile time optional"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:240
msgid "Fix background of non-BMP characters"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:241
msgid "Add C octal escaped UTF-8 search"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:242
msgid "Make the default KMessageBoxDontAskAgainMemoryStorage save to QSettings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:248
msgid "Port to Donate standard action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:249
msgid "Port away from deprecated authorizeKAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:255
msgid "fix device icon 22px icon didn't work in the old file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:256
msgid "WindowThumbnail: Do GL calls in the correct thread (bug 368066)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:257
msgid "Make plasma_install_package work with KDE_INSTALL_DIRS_NO_DEPRECATED"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:258
msgid "add margin and padding to the start.svgz icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:259
msgid "fix stylesheet stuff in computer icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:260
msgid "add computer and laptop icon for kicker (bug 367816)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:261
msgid "Fix cannot assign undefined to double warning in DayDelegate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:262
msgid "fix stylesheed svgz files are not in love with me"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:263
msgid "rename the 22px icons to 22-22-x and the 32px icons to x for kicker"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:264
msgid "[PlasmaComponents TextField] Don't bother loading icons for unused buttons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:265
msgid "Extra guard in Containment::corona in the special system tray case"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:266
msgid "When marking a containment as deleted, also mark all sub-applets as deleted - fixes system tray container configs not being deleted"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:267
msgid "Fix Device Notifier icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:268
msgid "add system-search to system in 32 and 22px size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:269
msgid "add monochrome icons for kicker"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:270
msgid "Set colour scheme on system-search icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:271
msgid "Move system-search into system.svgz"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:272
msgid "Fix wrong or missing \"X-KDE-ParentApp\" in desktop file definitions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:273
msgid "Fix API dox of Plasma::PluginLoader: mixup of applets/dataengine/services/.."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:274
msgid "add system-search icon for the sddm theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:275
msgid "add nepomuk 32px icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:276
msgid "update touchpad icon for the system tray"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:277
msgid "Remove code that can never be executed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:278
msgid "[ContainmentView] Show panels when UI becomes ready"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:279
msgid "Don't redeclare property implicitHeight"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:280
msgid "use QQuickViewSharedEngine::setTranslationDomain (bug 361513)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:281
msgid "add 22px and 32px plasma breeze icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:282
msgid "remove colored system icons and add 32px monochrome ones"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:283
msgid "Add an optional reveal password button to TextField"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:284
msgid "The standard tooltips are now mirrored when in a right-to-left language"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:285
msgid "Performance when changing months in the calendar has been greatly improved"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:291
msgid "Don't lowercase the language names in trigram parsing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:292
msgid "Fix immediate crash on startup due to null plugin pointer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:293
msgid "Handle dictionaries without correct names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:294
msgid "Replace hand-curated list of script-language mappings, use proper names for languages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:295
msgid "Add tool to generate trigrams"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:296
msgid "Unbreak language detection a bit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:297
msgid "Use selected language as suggestion for detection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:298
msgid "Use cached spellers in language detection, improve performance a bit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:299
msgid "Improve language detection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:300
msgid "Filter list of suggestions against available dictionaries, remove dupes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:301
msgid "Remember to add the last trigram match"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:302
msgid "Check if any of the trigrams actually matched"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:303
msgid "Handle multiple languages with same score in trigram matcher"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:304
msgid "Don't check for minimum size twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:305
msgid "Prune list of languages against available languages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:306
msgid "Use same minimum length everywhere in langdet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.26.0.php:307
msgid "Sanity check that the loaded model has the correct amount of trigrams for each language"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:4
msgid "Release of KDE Frameworks 5.27.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:16
msgid ""
" \n"
"October 08, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.27.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:44
msgid "Use correct config entry in autostart condition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:45
msgid "Fix sorted insert (aka flat_map like insert) (bug 367991)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:46
msgid "Add missing close env, as pointed out by Loïc Yhuel (bug 353783)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:47
msgid "Transaction not created =&gt; don't try to abort them"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:48
msgid "fix missing m_env = nullptr assignment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:49
msgid "Make e.g. Baloo::Query thread safe"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:50
msgid "On 64-bit systems baloo allows now &gt; 5 GB index storage (bug 364475)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:51
msgid "Allow ctime/mtime == 0 (bug 355238)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:52
msgid "Handle corruption of index database for baloo_file, try to recreate the database or abort if that fails"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:58
msgid "Fix crash when trying to add device to unknown adapter (bug 364416)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:64
msgid "New mimetypes icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:65
msgid "Update some kstars icons (bug 364981)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:66
msgid "Wrong style actions/24/format-border-set (bug 368980)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:67
msgid "Add wayland app icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:68
msgid "Add xorg app icon (bug 368813)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:69
msgid "Revert distribute-randomize, view-calendar + reapply the transform fix (bug 367082)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:70
msgid "Change folder-documents from one file to the multiple file cause in a folder more than one file is included (bug 368224)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:76
msgid "Make sure we don't add the appstream test twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:82
msgid "Sorting activities in the cache alphabetically by name (bug 362774)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:88
msgid "Many changes to the overall layout of the generated API docs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:89
msgid "Correct tags path, depending of if the lib is part of a group or not"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:90
msgid "Search: Fix href of libraries which are not part of a group"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:96
msgid "Fix memory leak with KTar's KCompressionDevice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:97
msgid "KArchive: fix memory leak when an entry with the same name already exists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:98
msgid "Fix memory leak in KZip when handling empty directories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:99
msgid "K7Zip: Fix memory leaks on error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:100
msgid "Fix memory leak detected by ASAN when open() fails on the underlying device"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:101
msgid "Remove bad cast to KFilterDev, detected by ASAN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:107
msgid "Add missing export macros on classes Decoder and Encoder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:113
msgid "Fix memory leak in SignalsTestNoSingletonDpointer, found by ASAN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:119
msgid "Register QPair&lt;QString,QString&gt; as metatype in KJobTrackerInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:120
msgid "Don't convert as url an url which has a double-quote character"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:121
msgid "Windows compile fix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:122
msgid "Fix very old bug when we remove space in url as \"foo &lt;&lt;url&gt; &lt;url&gt;&gt;\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:128
msgid "CMake option KCRASH_CORE_PATTERN_RAISE to forward to kernel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:129
msgid "Change default log level from Warning to Info"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:135
msgid "Cleanup. Do not install includes that point to non-existing includes and also remove those files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:136
msgid "Use more correct and with c++11 available std::remove_pointer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:142
msgid "Fix 'checkXML5 prints generated html to stdout for valid docbooks' (bug 369415)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:143
msgid "Fix bug not been able to run native tools in package using cross compiled kdoctools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:144
msgid "Setup targets for cross compiling running kdoctools from other packages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:145
msgid "Add cross compiling support for docbookl10nhelper"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:146
msgid "Add cross compile support for meinproc5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:147
msgid "Convert checkxml5 into a qt executable for cross platform support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:153
msgid "Improve epub extractor, less segfaults (bug 361727)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:154
msgid "Make odf indexer more error prove, check if the files are there (and are files at all) (meta.xml + content.xml)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:160
msgid "Fix KIO slaves using only tls1.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:161
msgid "Fix ABI break in kio"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:162
msgid "KFileItemActions: add addPluginActionsTo(QMenu *)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:163
msgid "Show copy buttons only after checksum has been calculated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:164
msgid "Add missing feedback when computing a checksum (bug 368520)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:165
msgid "Fix KFileItem::overlays returning empty string values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:166
msgid "Fix launching terminal .desktop files with konsole"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:167
msgid "Classify nfs4 mounts as probablySlow, like nfs/cifs/.."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:168
msgid "KNewFileMenu: show New Folder action shortcut (bug 366075)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:171
#: announcements/kde-frameworks-5.31.0.php:138
#: announcements/kde-frameworks-5.38.0.php:174
msgid "KItemViews"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:174
msgid "In listview mode use the default implementation of moveCursor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:180
msgid "Add KAuthorized checks to allow disabling of ghns in kdeglobals (bug 368240)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:186
msgid "Don't generate appstream files for components that are not in rdn"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:187
msgid "Make kpackage_install_package work with KDE_INSTALL_DIRS_NO_DEPRECATED"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:188
msgid "Remove unused var KPACKAGE_DATA_INSTALL_DIR"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:194
msgid "Fix URLs with a trailing slash being always assumed to be directories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:200
msgid "Fix ASAN build (duplicates.cpp uses KPeople::AbstractContact which is in KF5PeopleBackend)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:206
msgid "Use ECM path to find utempter binary, more reliable than simple cmake prefix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:207
msgid "Call the utempter helper executable manually (bug 364779)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:213
msgid "XML files: remove hard-coded color for values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:214
msgid "XML: Remove hard-coded color for values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:215
msgid "XML Schema Definition: Turn 'version' into an xs:integer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:216
msgid "Highlighting definition files: round version up to next integer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:217
msgid "support multi char captures only in {xxx} to avoid regressions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:218
msgid "Support regular expressions replaces with captures &gt; \\9, e.g. I (bug 365124)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:219
msgid "Fix rendering of characters spanning into next line, e.g. underlines are no longer cut off with some fonts/font-sizes (bug 335079)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:220
msgid "Fix crash: Make sure the display cursor is valid after text folding (bug 367466)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:221
msgid "KateNormalInputMode needs to rerun SearchBar enter methods"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:222
msgid "try to \"fixup\" rendering of underlines and stuff like that (bug 335079)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:223
msgid "Show \"View Difference\" button only, if 'diff' is installed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:224
msgid "Use non-modal message widget for externally modified file notifications (bug 353712)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:225
msgid "fix regression: testNormal did only work because of test execution at once"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:226
msgid "split the indent test into separate runs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:227
msgid "Support \"Unfold Toplevel Nodes\" action again (bug 335590)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:228
msgid "Fix crash when showing top or bottom messages multiple times"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:229
msgid "fix eol setting in mode lines (bug 365705)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:230
msgid "highlight .nix files as bash, guess can't hurt (bug 365006)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:236
msgid "Check whether kwallet is enabled in Wallet::isOpen(name) (bug 358260)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:237
msgid "Add missing boost header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:238
msgid "Remove duplicate search for KF5DocTools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:244
msgid "[server] Don't send key release for not pressed keys and no double key press (bug 366625)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:245
msgid "[server] When replacing the clipboard selection previous DataSource needs to be cancelled (bug 368391)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:246
msgid "Add support for Surface enter/leave events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:247
msgid "[client] Track all created Outputs and add static get method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:253
msgid "Convert categories to org.kde.pim.*"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:259
msgid "We need to set the state during initialization"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:260
msgid "Replace all blocking calls for initialization with just one blocking call"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:261
msgid "Use standard o.f.DBus.Properties interface for PropertiesChanged signal for NM 1.4.0+ (bug 367938)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:267
msgid "Remove invalid directory from index.theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:268
msgid "Introduce dupe test from breeze-icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:269
msgid "Convert all duplicated icons into symlinks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:275
msgid "Improve timetracker output"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:276
msgid "[ToolButtonStyle] Fix menu arrow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:277
#: announcements/kde-frameworks-5.28.0.php:200
msgid "i18n: handle strings in kdevtemplate files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:278
msgid "i18n: review strings in kdevtemplate files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:279
msgid "Add removeMenuItem to PlasmaComponents.ContextMenu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:280
msgid "update ktorrent icon (bug 369302)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:281
msgid "[WindowThumbnail] Discard pixmap on map events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:282
msgid "Don't include kdeglobals when dealing with a cache config"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:283
msgid "Fix Plasma::knownLanguages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:284
msgid "resize the view just after setting the containment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:285
msgid "Avoid creating a KPluginInfo from a KPluginMetaData instance"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:286
msgid "running tasks must have some indicator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:287
msgid "task bar lines according to RR 128802 marco give the ship it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:288
msgid "[AppletQuickItem] Break from loop when we found a layout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.27.0.php:291
#: announcements/kde-frameworks-5.28.0.php:327
#: announcements/kde-frameworks-5.29.0.php:302
#: announcements/kde-frameworks-5.30.0.php:302
#: announcements/kde-frameworks-5.31.0.php:243
#: announcements/kde-frameworks-5.32.0.php:239
#: announcements/kde-frameworks-5.33.0.php:216
#: announcements/kde-frameworks-5.34.0.php:251
#: announcements/kde-frameworks-5.35.0.php:229
#: announcements/kde-frameworks-5.36.0.php:221
#: announcements/kde-frameworks-5.37.0.php:309
#: announcements/kde-frameworks-5.38.0.php:278
#: announcements/kde-frameworks-5.39.0.php:289
#: announcements/kde-frameworks-5.40.0.php:259
#: announcements/kde-frameworks-5.41.0.php:341
#: announcements/kde-frameworks-5.42.0.php:379
msgid "Security information"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:4
msgid "Release of KDE Frameworks 5.28.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:16
msgid ""
" \n"
"November 15, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.28.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:38
msgid "New framework: syntax-highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:40
msgid "Syntax highlighting engine for Kate syntax definitions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:42
msgid "This is a stand-alone implementation of the Kate syntax highlighting engine. It's meant as a building block for text editors as well as for simple highlighted text rendering (e.g. as HTML), supporting both integration with a custom editor as well as a ready-to-use QSyntaxHighlighter sub-class."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:47
msgid "update kstars action icons (bug 364981)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:48
msgid "Breeze Dark is listed as Breeze in System Settings wrong .themes file (bug 370213)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:54
msgid "Make KDECMakeSettings work with KDE_INSTALL_DIRS_NO_DEPRECATED"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:55
msgid "Don't require the python bindings dependencies for ECM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:56
msgid "Add the PythonModuleGeneration module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:59
#: announcements/kde-frameworks-5.29.0.php:79
#: announcements/kde-frameworks-5.30.0.php:69
#: announcements/kde-frameworks-5.32.0.php:62
#: announcements/kde-frameworks-5.33.0.php:59
#: announcements/kde-frameworks-5.35.0.php:67
#: announcements/kde-frameworks-5.38.0.php:61
#: announcements/kde-frameworks-5.39.0.php:65
#: announcements/kde-frameworks-5.41.0.php:75
msgid "KActivitiesStats"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:62
msgid "Ignoring link status when sorting UsedResources and LinkedResources model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:68
msgid "[CSS] reverse changes done by doxygen 1.8.12"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:69
msgid "Add doxygenlayout file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:70
msgid "Update way of defining group names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:76
msgid "Make sure we can do more than one request"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:77
msgid "Make sure we get to know about progress by reading the program output"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:83
msgid "Make sure we don't break compilation with past broken units"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:84
msgid "Don't be fatal on File field not being properly parsed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:90
msgid "Display bad url"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:91
msgid "Load user avatars from AccountsServicePath if it exists (bug 370362)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:97
msgid "[QtQuickRendererSettings] Fix default to be empty instead of \"false\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:103
msgid "Make the France flag actually use all the pixmap"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:109
msgid "Fix 'checkXML5 generates html files in workdir for valid docbooks' (bug 371987)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:115
msgid "Support non integer scale factors in kiconengine (bug 366451)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:121
msgid "Disabled spamming the console output with 'waiting for' messages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:127
msgid "imageformats/kra.h - overrides for KraPlugin capabilities() and create()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:133
msgid "Fix HTTP date format sent by kio_http to always use the C locale (bug 372005)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:134
msgid "KACL: fix memory leaks detected by ASAN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:135
msgid "Fix memory leaks in KIO::Scheduler, detected by ASAN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:136
msgid "Removed duplicate clear button (bug 369377)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:137
msgid "Fix editing autostart entries when /usr/local/share/applications doesn't exist (bug 371194)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:138
msgid "[KOpenWithDialog] Hide TreeView header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:139
msgid "Sanitize the symlink name buffer size (bug 369275)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:140
msgid "Properly finish DropJobs when triggered is not emitted (bug 363936)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:141
msgid "ClipboardUpdater: fix another crash on Wayland (bug 359883)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:142
msgid "ClipboardUpdater: fix crash on Wayland (bug 370520)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:143
msgid "Support non integer scale factors in KFileDelegate (bug 366451)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:144
msgid "kntlm: Distinguish between NULL and empty domain"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:145
msgid "Don't show overwrite dialog if file name is empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:146
msgid "kioexec: use friendly filenames"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:147
msgid "Fix focus ownership if url is changed before showing the widget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:148
msgid "Major performance improvement when turning previews off in the file dialog (bug 346403)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:154
#: announcements/kde-frameworks-5.30.0.php:242
msgid "Add python bindings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:160
msgid "Export FunctionObjectImp, used by khtml's debugger"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:166
msgid "Separate sort roles and filters"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:167
msgid "Make it possible to query installed entries"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:173
msgid "Don't deref an object we haven't referenced when notification has no action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:174
msgid "KNotification will no longer crash when using it in a QGuiApplication and no notification service is running (bug 370667)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:175
msgid "Fix crashes in NotifyByAudio"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:178
#: announcements/kde-frameworks-5.29.0.php:202
#: announcements/kde-frameworks-5.30.0.php:199
#: announcements/kde-frameworks-5.31.0.php:163
#: announcements/kde-frameworks-5.32.0.php:147
#: announcements/kde-frameworks-5.34.0.php:162
#: announcements/kde-frameworks-5.36.0.php:142
#: announcements/kde-frameworks-5.37.0.php:157
#: announcements/kde-frameworks-5.38.0.php:188
#: announcements/kde-frameworks-5.39.0.php:180
#: announcements/kde-frameworks-5.40.0.php:150
#: announcements/kde-frameworks-5.41.0.php:227
#: announcements/kde-frameworks-5.42.0.php:238
msgid "KPackage Framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:181
msgid "Make sure we're looking both for json and desktop metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:182
msgid "Guard against Q_GLOBAL_STATIC being destroyed at app shutdown"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:183
msgid "Fix dangling pointer in KPackageJob (bug 369935)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:184
msgid "Remove discovery associated to a key when removing a definition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:185
msgid "Generate the icon into the appstream file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:191
msgid "Use ulog-helper on FreeBSD instead of utempter"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:192
msgid "search harder for utempter using basic cmake prefix as well"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:193
msgid "workaround find_program ( utempter ...) failure(s)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:194
msgid "use ECM path to find utempter binary, more reliable than simple cmake prefix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:206
msgid "Breeze Dark: Darken current-line background color for better readability (bug 371042)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:207
msgid "Sorted Dockerfile instructions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:208
msgid "Breeze (Dark): Make comments a bit lighter for better readability (bug 371042)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:209
msgid "Fix CStyle and C++/boost indenters when automatic brackets enabled (bug 370715)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:210
msgid "Add modeline 'auto-brackets'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:211
msgid "Fix inserting text after end of file (rare case)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:212
msgid "Fix invalid xml highlighting files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:213
msgid "Maxima: Remove hard-coded colors, fix itemData Label"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:214
msgid "Add OBJ, PLY and STL syntax definitions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:215
msgid "Add syntax highlighting support for Praat"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:221
msgid "New Thermal and Electrical Units and Unit Convenience Function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:227
msgid "If Gpgmepp is not found, try to use KF5Gpgmepp"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:228
msgid "Use Gpgmepp from GpgME-1.7.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:234
#: announcements/kde-frameworks-5.28.0.php:277
msgid "Improved relocatability of CMake export"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:235
msgid "[tools] Fix generation of wayland_pointer_p.h"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:236
msgid "[tools] Generate eventQueue methods only for global classes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:237
msgid "[server] Fix crash on updating focused keyboard surface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:238
msgid "[server] Fix possible crash on creation of DataDevice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:239
msgid "[server] Ensure we have a DataSource on the DataDevice in setSelection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:240
msgid "[tools/generator] Improve resource destruction on server side"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:241
msgid "Add request to have focus in a PlasmaShellSurface of Role Panel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:242
msgid "Add auto-hiding panel support to PlasmaShellSurface interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:243
msgid "Support passing generic QIcon through PlasmaWindow interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:244
msgid "[server] Implement the generic window property in QtSurfaceExtension"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:245
msgid "[client] Add methods to get ShellSurface from a QWindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:246
msgid "[server] Send pointer events to all wl_pointer resources of a client"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:247
msgid "[server] Don't call wl_data_source_send_send if DataSource is unbound"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:248
msgid "[server] Use deleteLater when a ClientConnection gets destroyed (bug 370232)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:249
msgid "Implement support for the relative pointer protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:250
msgid "[server] Cancel previous selection from SeatInterface::setSelection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:251
msgid "[server] Send key events to all wl_keyboard resources of a client"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:257
msgid "move kcharselect-generate-datafile.py to src subdir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:258
msgid "Import kcharselect-generate-datafile.py script with history"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:259
msgid "Remove outdated section"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:260
msgid "Add Unicode copyright and permission notice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:261
msgid "Fix warning: Missing override"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:262
msgid "Add symbol SMP blocks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:263
msgid "Fix \"See also\" references"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:264
msgid "Add missing Unicode blocks; improve ordering (bug 298010)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:265
msgid "add character categories to the data file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:266
msgid "update the Unicode categories in the data file generation script"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:267
msgid "adjust the data file generation file to be able to parse the unicode 5.2.0 data files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:268
msgid "forward port fix for generating translations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:269
msgid "let the script to generate the data file for kcharselect also write a translation dummy"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:270
msgid "Add the script to generate the data file for KCharSelect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:271
msgid "new KCharSelect application (using kcharselect widget from kdelibs now)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:278
msgid "Add support for desktopFileName to NETWinInfo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:284
msgid "Allow using new style connect in KActionCollection::add<a href=\"\">Action</a>"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:297
msgid "Fix moc error due to Q_ENUMS being used in a namespace, with Qt branch 5.8"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:303
msgid "make sure OSD doesn't have Dialog flag (bug 370433)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:304
msgid "set context properties before reloading the qml (bug 371763)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:305
msgid "Don't reparse the metadata file if it's already loaded"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:306
msgid "Fix crash in qmlplugindump when no QApplication is available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:307
msgid "Don't show \"Alternatives\" menu by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:308
msgid "New bool to use activated signal as toggle of expanded (bug 367685)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:309
msgid "Fixes for building plasma-framework with Qt 5.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:310
msgid "[PluginLoader] Use operator&lt;&lt; for finalArgs instead of initializer list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:311
msgid "use kwayland for shadows and dialog positioning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:312
msgid "Remaining missing icons and network improvements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:313
msgid "Move availableScreenRect/Region up to AppletInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:314
msgid "Don't load containment actions for embedded containments (system trays)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:315
msgid "Update applet alternatives menu entry visibility on demand"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:321
msgid "Fix unstable ordering of query results yet again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:322
msgid "Add a CMake option to switch between HAL and UDisks managers on FreeBSD"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:323
msgid "Make UDisks2 backend compile on FreeBSD (and, possibly, other UNIXes)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.28.0.php:324
msgid "Windows: Don't display error dialogs (bug 371012)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:4
msgid "Release of KDE Frameworks 5.29.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:16
msgid ""
" \n"
"December 12, 2016. KDE today announces the release\n"
"of KDE Frameworks 5.29.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:38
msgid "New framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:49
msgid "Performance improvements when writing (4 * speedup for writing out data)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:55
msgid "Make BINARY_ICONS_RESOURCE ON by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:56
msgid "add vnd.rar mime for shared-mime-info 1.7 (bug 372461)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:57
msgid "add claws icon (bug 371914)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:58
msgid "add gdrive icon instead of a generic cloud icon (bug 372111)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:59
msgid "fix bug \"list-remove-symbolic use wrong image\" (bug 372119)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:60
msgid "other additions and improvements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:66
msgid "Skip Python bindings test if PyQt isn't installed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:67
msgid "Only add the test if python is found"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:68
msgid "Reduce the CMake minimum required"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:69
msgid "Add ecm_win_resolve_symlinks module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:75
msgid "find QDBus, needed by appstream kpackage handler"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:76
msgid "Let KPackage have dependencies from packagekit &amp; appstream"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:82
msgid "Properly sending the resource linked event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:88
msgid "Adapt to quickgit -&gt; cgit change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:89
msgid "Fix bug if group name is not defined. Can still break under bad conditions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:95
msgid "Add errorString() method to provide error info"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:101
msgid "Add timeout property (bug 363200)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:107
msgid "kconfig_compiler - generate code with overrides"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:108
msgid "Properly parse function keywords (bug 371562)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:114
msgid "Ensure menu actions get the intended MenuRole"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:120
msgid "KTextToHtml: fix bug \"[1] added at the end of a hyperlink\" (bug 343275)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:121
msgid "KUser: Only search for an avatar if loginName isn't empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:127
msgid "Align with KInit and don't use DISPLAY on Mac"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:128
msgid "Don't close all file descriptors on OS X"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:134
msgid "src/kgendesignerplugin.cpp - add overrides to generated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:140
msgid "Unsets XDG_RUNTIME_DIR in processes run with kdesu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:146
msgid "Actually find FFMpeg's libpostproc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:152
msgid "java: apply the names to the right buttons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:153
msgid "java: set names in permission dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:159
msgid "Check properly pointer inequality from dngettext (bug 372681)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:165
msgid "Allow showing icons from all categories (bug 216653)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:171
msgid "Set environment variables from KLaunchRequest when starting new process"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:177
msgid "Ported to categorized logging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:178
msgid "Fix compilation against WinXP SDK"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:179
msgid "Allow uppercase checksums matching in Checksums tab (bug 372518)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:180
msgid "Never stretch the last (=date) column in the file dialog (bug 312747)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:181
msgid "Import and update kcontrol docbooks for code in kio from kde-runtime master"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:182
msgid "[OS X] make KDE's trash use the OS X trash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:183
msgid "SlaveBase: add documentation about event loops and notifications and kded modules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:189
msgid "Add new archive management option (subdir) to knsrc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:190
msgid "Consume the new error signals (set job errors)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:191
msgid "Handle oddity regarding files disappearing when just created"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:192
msgid "Actually install the core headers, with CamelCases"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:198
msgid "[KStatusNotifierItem] Save / restore widget position during hide / restore it window (bug 356523)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:199
msgid "[KNotification] Allow annotating notifications with URLs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:205
msgid "keep installing metadata.desktop (bug 372594)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:206
msgid "manually load metadata if absolute path is passed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:207
msgid "Fix potential failure if package is not appstream compatible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:208
msgid "Let KPackage know about X-Plasma-RootPath"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:209
msgid "Fix generating the metadata.json file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:215
msgid "More utempter path searching (including /usr/lib/utempter/)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:216
msgid "Add library path so utempter binary is found in Ubuntu 16.10"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:222
msgid "Prevent Qt warnings about an unsupported clipboard mode on Mac"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:223
msgid "Use syntax definitions from KF5::SyntaxHighlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:229
msgid "Don't replace window icons with the result of a failed lookup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:235
msgid "[client] Fix nullptr dereference in ConfinedPointer and LockedPointer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:236
msgid "[client] Install pointerconstraints.h"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:237
msgid "[server] Fix regression in SeatInterface::end/cancelPointerPinchGesture"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:238
msgid "Implementation of PointerConstraints protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:239
msgid "[server] Reduce overhead of pointersForSurface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:240
msgid "Return SurfaceInterface::size in global compositor space"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:241
msgid "[tools/generator] Generate enum FooInterfaceVersion on server side"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:242
msgid "[tools/generator] Wrap wl_fixed request args in wl_fixed_from_double"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:243
msgid "[tools/generator] Generate implementation of client side requests"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:244
msgid "[tools/generator] Generate client side resource factories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:245
msgid "[tools/generator] Generate callbacks and listener on client side"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:246
msgid "[tools/generator] Pass this as q pointer to Client::Resource::Private"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:247
msgid "[tools/generator] Generate Private::setup(wl_foo *arg) on client side"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:248
msgid "Implementation of PointerGestures protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:254
msgid "Prevent crashing on Mac"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:255
msgid "Don't replace icons with the result of a failed lookup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:256
msgid "KMessageWidget: fix layout when wordWrap is enabled without actions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:257
msgid "KCollapsibleGroupBox: don't hide widgets, override focus policy instead"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:263
msgid "[KWindowInfo] Add pid() and desktopFileName()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:269
msgid "Add application-vnd.rar icon (bug 372461)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:275
msgid "Check for metadata validity in settingsFileChanged (bug 372651)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:276
msgid "Don't flip tabbar layout if vertical"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:277
msgid "Remove radialGradient4857 (bug 372383)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:278
msgid "[AppletInterface] Never pull focus away from fullRepresentation (bug 372476)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:279
msgid "Fix SVG icon ID prefix (bug 369622)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:285
msgid "winutils_p.h: Restore compatibility with WinXP SDK"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:291
msgid "Also search for hunspell-1.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:294
#: announcements/kde-frameworks-5.30.0.php:293
#: announcements/kde-frameworks-5.31.0.php:237
#: announcements/kde-frameworks-5.32.0.php:228
#: announcements/kde-frameworks-5.33.0.php:206
#: announcements/kde-frameworks-5.34.0.php:244
#: announcements/kde-frameworks-5.35.0.php:222
#: announcements/kde-frameworks-5.36.0.php:201
#: announcements/kde-frameworks-5.37.0.php:265
#: announcements/kde-frameworks-5.38.0.php:263
#: announcements/kde-frameworks-5.39.0.php:263
#: announcements/kde-frameworks-5.40.0.php:247
#: announcements/kde-frameworks-5.41.0.php:330
#: announcements/kde-frameworks-5.42.0.php:351
msgid "Syntax Highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:297
msgid "Normalize XML license attribute values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:298
msgid "Sync syntax definitions from ktexteditor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.29.0.php:299
msgid "Fix folding region merging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.3.0.php:4
msgid "Release of KDE Frameworks 5.3.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.3.0.php:16
msgid ""
" \n"
"October 07, 2014. KDE today announces the release\n"
"of KDE Frameworks 5.3.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.3.0.php:38
msgid ""
"\n"
"<h3>KActivities</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Added DBus interface to load plugins at runtime</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KArchive</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add convenience method KArchive::file()</li>"
"\n"
"<li>Compilation fixes for MSVC</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KBookmarks</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix encoding issue in KIO places dialog (bug 337642)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCMUtils</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix initial size of KCMultiDialog (bugs 337494, 325897)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCompletion</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fixed size hint and positioning of clear button in highDpi mode</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KConfig</h3>"
"\n"
"\n"
"<ul>\n"
"<li>KConfigLoader: fix sharing of KSharedConfig objects</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KConfigWidgets</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Now provides the kf5_entry.desktop files it needs for KLanguageButton</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCoreAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Kdelibs4Migration: allow distributions to set KDE4_DEFAULT_HOME_POSTFIX\n"
"so that the kde4 home is found properly.</li>"
"\n"
"<li>Compilation fixes for MSVC and gcc 4.5</li>"
"\n"
"<li>Turn KFormat into a Q_GADGET so we can expose its properties to QML indirectly</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KEmoticons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add unicode characters to Glass emoticon theme</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KGuiAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Make KFontUtils::adaptFontSize be a bit more exact</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KI18n</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Remove leftover Perl dependency</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KIO</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Now includes kio_trash </li>"
"\n"
"<li>Add new KIO job, KIO::fileSystemFreeSpace, that allows you to get a filesystem's total and available space.</li>"
"\n"
"<li>kshorturifilter: Remove redundant forward slashes from the beginning of an URI</li>"
"\n"
"<li>Add searchprovider definitions for the qwant search engine</li>"
"\n"
"<li>File dialog: fix relative paths being turned into HTTP URLs</li>"
"\n"
"<li>Fix thumbnails for mimetype groups.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KJS</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Implement Math.Clz32</li>"
"\n"
"<li>U+0000 through U+001F is not allowed as char, but as escaped unicode sequence (bug 338970)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNotifications</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Avoid infinite recursion in KStatusNotifierItem / QSystemTray.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KService</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Many many fixes to KPluginInfo</li>"
"\n"
"<li>Add functions to convert between lists KPluginMetaData and KPluginInfo</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KTextEditor</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Multiple memory leaks fixed</li>"
"\n"
"<li>Avoid auto-completion to interfere with search/replace text (bug 339130), and more autocompletion fixes</li>"
"\n"
"<li>Many fixes to the VIM mode</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWidgetAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>KPageListView: fixes for high-dpi mode</li>"
"\n"
"<li>KPageWidget: margin fixes</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWindowSystem</h3>"
"\n"
"\n"
"<ul>\n"
"<li>NETWinInfo now provides convenient wrapper for WM_PROTOCOLS.</li>"
"\n"
"<li>NETWinInfo now provides convenient wrapper for input and urgency hints of WM_HINTS property.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Solid</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New freedesktop backend, not yet default but due to replace the upower/udev/systemd backends</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Extra-cmake-modules</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New module ECMGeneratePkgConfigFile, for frameworks to install a pkgconfig file.</li>"
"\n"
"<li>New option ECM_ENABLE_SANITIZERS, to enable clang sanitizers. Example: ECM_ENABLE_SANITIZERS='address;undefined'</li>"
"\n"
"<li>New option BUILD_COVERAGE, to enable code coverage.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Frameworkintegration</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fixed for compilation with Qt 5.4</li>"
"\n"
"<li>Fixed a few standard shortcuts</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.3.0.php:205
msgid "The complete source code for KDE Frameworks %1 may be <a href='http://download.kde.org/stable/frameworks/%1/'>freely downloaded</a>. Instructions on compiling and installing KDE Frameworks %1 are available from the <a href='/info/kde-frameworks-%1.php'>KDE Frameworks %1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:4
msgid "Release of KDE Frameworks 5.30.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:16
msgid ""
" \n"
"January 14, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.30.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:41
msgid "add Haguichi icons from Stephen Brandt (thanks)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:42
msgid "finalize calligra icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:43
msgid "add cups icon thanks colin (bug 373126)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:44
#: announcements/kde-frameworks-5.31.0.php:213
msgid "update kalarm icon (bug 362631)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:45
msgid "add krfb app icon (bug 373362)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:46
msgid "add r mimetype support (bug 371811)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:47
msgid "and more"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:53
msgid "appstreamtest: handle non-installed programs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:54
msgid "Enable colored warnings in ninja's output"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:55
msgid "Fix missing :: in API docs to trigger code styling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:56
msgid "Ignore host libs/includes/cmakeconfig files in Android toolchain"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:57
msgid "Document usage of gnustl_shared with Android toolchain"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:58
msgid "Never use -Wl,--no-undefined on Mac (APPLE)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:64
msgid "Improve KPackage KNSHandler"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:65
msgid "Search for the more precise required version of AppstreamQt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:66
msgid "Add KNewStuff support for KPackage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:72
msgid "Make compile with -fno-operator-names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:73
msgid "Do not fetch more linked resources when one of them goes away"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:74
msgid "Added model role to retrieve the list of linked activities for a resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:80
msgid "add Android to the list of available platforms"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:81
msgid "include ObjC++ source files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:87
msgid "Generate an instance with KSharedConfig::Ptr for singleton and arg"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:88
msgid "kconfig_compiler: Use nullptr in generated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:94
msgid "Hide the \"Show Menu Bar\" action if all the menubars are native"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:95
msgid "KConfigDialogManager: drop kdelibs3 classes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:101
msgid "Return stringlist/boolean types in KPluginMetaData::value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:102
msgid "DesktopFileParser: Honor ServiceTypes field"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:108
msgid "Add python bindings for KDBusAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:114
msgid "Introduce org.kde.kconfig QML import with KAuthorized"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:120
msgid "kdoctools_install: match the full path for the program (bug 374435)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:126
msgid "[runtime] Introduce a KGLOBALACCEL_TEST_MODE env variable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:132
msgid "Add Python bindings for KGuiAddons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:138
msgid "Set plugin data so that the Embeddable Image Viewer works"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:144
msgid "Inform QIconLoader also when the desktop icon theme is changed (bug 365363)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:150
msgid "Take X-KDE-RunOnDiscreteGpu property into account when starting app using klauncher"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:156
msgid "KIO::iconNameForUrl will now return special icons for xdg locations like the user's Pictures folder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:157
msgid "ForwardingSlaveBase: fix passing of Overwrite flag to kio_desktop (bug 360487)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:158
msgid "Improve and export KPasswdServerClient class, the client API for kpasswdserver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:159
msgid "[KPropertiesDialog] Kill \"Place in system tray\" option"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:160
msgid "[KPropertiesDialog] Don't change \"Name\" of \"Link\" .desktop files if file name is read-only"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:161
msgid "[KFileWidget] Use urlFromString instead of QUrl(QString) in setSelection (bug 369216)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:162
msgid "Add option to run an app on a discrete graphics card to KPropertiesDialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:163
msgid "terminate DropJob properly after dropping to an executable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:164
msgid "Fix logging category usage on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:165
msgid "DropJob: emit started copy job after creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:166
msgid "Add support for calling suspend() on a CopyJob before it gets started"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:167
msgid "Add support for suspending jobs immediately, at least for SimpleJob and FileCopyJob"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:173
msgid "Update proxies for recently realised class of bugs (layoutChanged handling)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:174
msgid "Make it possible for KConcatenateRowsProxyModel to work in QML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:175
msgid "KExtraColumnsProxyModel: Persist model indexes after emitting layoutChange, not before"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:176
msgid "Fix assert (in beginRemoveRows) when deselecting an empty child of a selected child in korganizer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:182
msgid "Don't focus progress windows (bug 333934)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:188
msgid "[GHNS Button] Hide when KIOSK restriction applies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:189
msgid "Fix set up of the ::Engine when created with an absolute config file path"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:195
msgid "Add a manual test for Unity launchers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:196
msgid "[KNotificationRestrictions] Let user can specify restriction reason string"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:202
msgid "[PackageLoader] Don't access invalid KPluginMetadata (bug 374541)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:203
msgid "fix description for option -t in man page"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:204
msgid "Improve error message"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:205
msgid "Fix the help message for --type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:206
msgid "Improve installation process of KPackage bundles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:207
msgid "Install a kpackage-generic.desktop file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:208
msgid "Exclude qmlc files from installation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:209
msgid "Don't list separately plasmoids from metadata.desktop and .json"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:210
msgid "Additional fix for packages with different types but same ids"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:211
msgid "Fix cmake failure when two packages with different type have same id"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:217
msgid "Call the new checkAmbiguousShortcuts() from MainWindow::createShellGUI"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:223
msgid "KSycoca: don't follow symlink to directories, it creates a risk of recursion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:229
msgid "Fix: Forward dragging text results in wrong selection (bug 374163)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:235
msgid "Specify minimum required GpgME++ version 1.7.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:236
msgid "Revert \"If Gpgmepp is not found, try to use KF5Gpgmepp\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:243
msgid "Add KToolTipWidget, a tooltip that contains another widget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:244
msgid "Fix KDateComboBox checks for valid entered dates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:245
msgid "KMessageWidget: use darker red color when type is Error (bug 357210)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:251
msgid "Warn on startup about ambiguous shortcuts (with an exception for Shift+Delete)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:252
msgid "MSWin and Mac have similar autosave windowsize behaviour"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:253
msgid "Display application version in about dialog header (bug 372367)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:259
msgid "sync with breeze icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:265
#: announcements/kde-frameworks-5.31.0.php:219
msgid "Fix the renderType properties for various components"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:266
msgid "[ToolTipDialog] Use KWindowSystem::isPlatformX11() which is cached"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:267
msgid "[Icon Item] Fix updating implicit size when icon sizes change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:268
msgid "[Dialog] Use setPosition / setSize instead of setting everything individually"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:269
msgid "[Units] Make iconSizes property constant"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:270
msgid "There is now a global \"Units\" instance reducing memory consumption and creation time of SVG items"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:271
msgid "[Icon Item] Support non-square icons (bug 355592)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:272
msgid "search/replace old hardcoded types from plasmapkg2 (bug 374463)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:273
msgid "Fix X-Plasma-Drop* types (bug 374418)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:274
msgid "[Plasma ScrollViewStyle] Show scroll bar background only on hover"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:275
msgid "Fix #374127 misplacement of popups from dock wins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:276
msgid "Deprecate Plasma::Package API in PluginLoader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:277
msgid "Recheck which representation we should using in setPreferredRepresentation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:278
msgid "[declarativeimports] Use QtRendering on phone devices"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:279
msgid "consider an empty panel always \"applets loaded\" (bug 373836)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:280
msgid "Emit toolTipMainTextChanged if it changes in response to a title change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:281
msgid "[TextField] Allow disabling reveal password button through KIOSK restriction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:282
msgid "[AppletQuickItem] Support launch error message"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:283
msgid "Fix logic for arrow handling in RTL locales (bug 373749)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:284
msgid "TextFieldStyle: Fix implicitHeight value so the text cursor is centered"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:290
msgid "cmake: look for hunspell-1.6 as well"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:296
msgid "Fix highlighting of Makefile.inc by adding priority to makefile.xml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:297
msgid "Highlight SCXML files as XML"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:298
msgid "makefile.xml: many improvements, too long to list here"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.30.0.php:299
msgid "python syntax: added f-literals and improved string handling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:4
msgid "Release of KDE Frameworks 5.31.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:16
msgid ""
" \n"
"February 11, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.31.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:45
msgid "add support for display_name in categories"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:51
msgid "too many icon changes to list them here"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:57
msgid "Enable -Wsuggest-override for g++ &gt;= 5.0.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:58
msgid "Pass -fno-operator-names when supported"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:59
msgid "ecm_add_app_icon : ignore SVG files silently when unsupported"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:60
msgid "Bindings: Many fixes and improvements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:66
msgid "Support some of the KNSCore questions using notifications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:72
msgid "Fix KCompressionDevice (seeking) to work with Qt &gt;= 5.7"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:78
msgid "Update most of the examples, drop outdated ones"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:84
msgid "Fix linking on Windows: don't link kentrymaptest to KConfigCore"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:90
msgid "Do nothing in ShowMenubarActionFilter::updateAction if there are no menubars"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:96
msgid "Fix Bug 363427 - unsafe characters incorrectly parsed as part of URL (bug 363427)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:97
msgid "kformat: Make it possible to properly translate relative dates (bug 335106)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:98
msgid "KAboutData: Document that bug email address can also be a URL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:104
msgid "[IconDialog] Set proper icons group"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:105
msgid "[QuickViewSharedEngine] Use setSize instead of setWidth/setHeight"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:111
#: announcements/kde-frameworks-5.37.0.php:106
msgid "Sync KDE4Defaults.cmake from kdelibs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:112
msgid "Fix HAVE_TRUNC cmake check"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:118
msgid "KEmoticons: use DBus to notify running processes of changes made in the KCM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:119
msgid "KEmoticons: major performance improvement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:125
msgid "KIconEngine: Center icon in requested rect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:131
msgid "Add KUrlRequester::setMimeTypeFilters"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:132
msgid "Fix parsing of directories listing on a specific ftp server (bug 375610)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:133
msgid "preserve group/owner on file copy (bug 103331)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:134
msgid "KRun: deprecate runUrl() in favor of runUrl() with RunFlags"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:135
msgid "kssl: Ensure user certificate directory has been created before use (bug 342958)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:141
msgid "Apply filter to proxy immediately"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:147
msgid "Make it possible to adopt resources, mostly for system-wide settings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:148
msgid "Don't fail when moving to the temp directory when installing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:149
msgid "Deprecate the security class"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:150
msgid "Don't block when running the post-install command (bug 375287)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:151
msgid "[KNS] Take into account the distribution type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:152
msgid "Don't ask if we're getting the file in /tmp"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:158
msgid "Re-add logging notifications to files (bug 363138)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:159
msgid "Mark non-persistent notifications as transient"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:160
msgid "Support \"default actions\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:166
msgid "Don't generate appdata if it's marked as NoDisplay"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:167
msgid "Fix listing when the requested path is absolute"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:168
msgid "fix handling of archives with a folder in them (bug 374782)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:174
msgid "fix minimap rendering for HiDPI envs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:180
msgid "Add methods to hide the reveal password action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:181
msgid "KToolTipWidget: don't take ownership of the content widget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:182
msgid "KToolTipWidget: hide immediately if content gets destroyed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:183
msgid "Fix focus override in KCollapsibleGroupBox"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:184
msgid "Fix warning when destructing a KPixmapSequenceWidget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:185
msgid "Install also CamelCase forward headers for classes from multi-class headers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:186
msgid "KFontRequester: Find the nearest match for a missing font (bug 286260)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:192
msgid "Allow Tab as being modified by Shift (bug 368581)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:198
msgid "Bug reporter: Allow a URL (not just an email address) for custom reporting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:199
msgid "Skip empty shortcuts on ambiguity check"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:205
msgid "[Containment Interface] No need for values() as contains() looks up keys"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:206
msgid "Dialog: Hide when focus changes to ConfigView with hideOnWindowDeactivate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:207
msgid "[PlasmaComponents Menu] Add maximumWidth property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:208
msgid "Missing icon when connected to openvpn via bluetooth network (bug 366165)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:209
msgid "Make sure we display enabled ListItem on hover"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:210
msgid "make all heights in the calendar header to be even (bug 375318)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:211
msgid "fix color styling in network plasma icon (bug 373172)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:212
msgid "Set wrapMode to Text.WrapAnywhere (bug 375141)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:214
msgid "correctly forward status from applets to containment (bug 372062)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:215
msgid "Use KPlugin to load Calendar plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:216
msgid "use the highlight color for selected text (bug 374140)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:217
msgid "[Icon Item] Round size we want to load a pixmap in"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:218
msgid "portrait prop is not relevant when there is no text (bug 374815)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:225
msgid "Work round DBus property fetching bug (bug 345871)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:226
msgid "Treat no passphrase as Solid::UserCanceled error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:232
msgid "Added Greek trigram data file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:233
msgid "Fix segfault in trigrams generation and expose MAXGRAMS constant in the header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:234
msgid "Look for non-versioned libhunspell.so, should be more future proof"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.31.0.php:240
msgid "C++ highlighting: update to Qt 5.8"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:4
msgid "Release of KDE Frameworks 5.32.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:16
msgid ""
" \n"
"March 11, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.32.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:41
msgid "Implement nested tags"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:47
msgid "Added icons for Plasma Vault"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:48
msgid "Renamed icons for encrypted and decrypted folders"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:49
msgid "Add torrents icon 22px"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:50
msgid "Add nm-tray icons (bug 374672)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:51
msgid "color-management: removed undefined links (bug 374843)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:52
msgid "system-run is now an action until &lt;= 32px and 48px an app icon (bug 375970)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:58
msgid "Detect inotify"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:59
msgid "Revert \"Automatically mark classes with pure virtual functions as /Abstract/.\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:65
msgid "Allow to plan ahead and set the order for an item not yet in the list"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:71
msgid "Fix Potential leak of memory pointed to by 'limitedDev'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:77
msgid "Fixed potential crash in QML KCMs when application palette changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:83
msgid "KConfig: stop exporting and installing KConfigBackend"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:89
msgid "KColorScheme: default to application scheme if set by KColorSchemeManager (bug 373764)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:90
msgid "KConfigDialogManager: get change signal from metaObject or special property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:91
msgid "Fix KCModule::setAuthAction error checking"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:97
msgid "Exclude (6) from emoticons recognition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:98
msgid "KDirWatch: fix memory leak on destruction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:104
msgid "Fix bug in kfiledialog.cpp that causes crashing when native widgets are used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:110
#: announcements/kde-frameworks-5.33.0.php:104
msgid "meinproc5: link to the files, not to the library (bug 377406)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:111
msgid "Remove the KF5::XsltKde static library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:112
msgid "Export a proper shared library for KDocTools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:113
msgid "Port to categorized logging and clean includes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:114
msgid "Add function to extract a single file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:115
msgid "Fail the build early if xmllint is not available (bug 376246)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:121
msgid "New maintainer for kfilemetadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:122
msgid "[ExtractorCollection] Use mimetype inheritance to return plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:123
msgid "add a new property DiscNumber for audio files from multi-disc albums"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:129
msgid "Cookies KCM: disable \"delete\" button when there is no current item"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:130
msgid "kio_help: Use the new shared library exported by KDocTools"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:131
msgid "kpac: Sanitize URLs before passing them to FindProxyForURL (security fix)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:132
msgid "Import remote ioslave from plasma-workspace"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:133
msgid "kio_trash: implement renaming of toplevel files and dirs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:134
msgid "PreviewJob: Remove maximum size for local files by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:135
msgid "DropJob: allow to add application actions on an open menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:136
msgid "ThumbCreator: deprecate DrawFrame, as discussed in https://git.reviewboard.kde.org/r/129921/"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:142
msgid "Add support for flatpak portals"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:143
msgid "Send desktopfilename as part of notifyByPopup hints"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:144
msgid "[KStatusNotifierItem] Restore minimized window as normal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:150
msgid "Finish support for opening compressed packages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:156
msgid "Remember file type set by user over sessions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:157
msgid "Reset filetype when opening url"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:158
msgid "Added getter for word-count configuration value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:159
msgid "Consistent conversion from/to cursor to/from coordinates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:160
msgid "Update file type on save only if path changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:161
msgid "Support for EditorConfig configuration files (for details: http://editorconfig.org/)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:162
msgid "Add FindEditorConfig to ktexteditor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:163
msgid "Fix: emmetToggleComment action doesn't work (bug 375159)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:164
msgid "Use sentence style capitalization with label texts of edit fields"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:165
msgid "Reverse meaning of :split, :vsplit to match vi and Kate actions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:166
msgid "Use C++11 log2() instead of log() / log(2)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:167
msgid "KateSaveConfigTab: put spacer behind last group on Advanced tab, not inside"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:168
msgid "KateSaveConfigTab: Remove wrong margin around content of Advanced tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:169
msgid "Borders config subpage: fix scrollbar visibility combobox being off-placed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:175
msgid "KToolTipWidget: hide tooltip in enterEvent if hideDelay is zero"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:176
msgid "Fix KEditListWidget losing the focus on click of buttons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:177
msgid "Add decomposition of Hangul Syllables into Hangul Jamo"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:178
msgid "KMessageWidget: fix behaviour on overlapping calls of animatedShow/animatedHide"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:184
msgid "Don't use KConfig keys with backslashes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:190
msgid "Sync introspections and generated files with NM 1.6.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:191
msgid "Manager: Fix emitting deviceAdded twice when NM restarts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:197
msgid "set default hints when repr doesn't export Layout.* (bug 377153)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:198
msgid "possible to set expanded=false for a containment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:199
msgid "[Menu] Improve available space correction for openRelative"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:200
msgid "move setImagePath logic into updateFrameData() (bug 376754)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:201
msgid "IconItem: Add roundToIconSize property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:202
msgid "[SliderStyle] Allow providing a \"hint-handle-size\" element"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:203
msgid "Connect all connections to action in QMenuItem::setAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:204
msgid "[ConfigView] Honor KIOSK Control Module restrictions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:205
msgid "Fix disabling the spinner animation when Busy indicator has no opacity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:206
msgid "[FrameSvgItemMargins] Don't update on repaintNeeded"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:207
msgid "Applet icons for the Plasma Vault"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:208
msgid "Migrate AppearAnimation and DisappearAnimation to Animators"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:209
msgid "Align bottom edge to top edge of visualParent in the TopPosedLeftAlignedPopup case"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:210
msgid "[ConfigModel] Emit dataChanged when a ConfigCategory changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:211
msgid "[ScrollViewStyle] Evaluate frameVisible property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:212
msgid "[Button Styles] Use Layout.fillHeight instead of parent.height in a Layout (bug 375911)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:213
msgid "[ContainmentInterface] Also align containment context menu to panel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:216
#: announcements/kde-frameworks-5.41.0.php:304
#: announcements/kde-frameworks-5.42.0.php:327
msgid "Prison"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:219
msgid "Fix min qt version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:225
msgid "Floppy disks now show up as \"Floppy Disk\" instead of \"0 B Removable Media\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:231
msgid "Add more keyword. Disable spellchecking for keywords"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:232
msgid "Add more keyword"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:233
msgid "Add *.RHTML file extension to Ruby on Rails highlighting (bug 375266)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:234
msgid "Update SCSS and CSS syntax highlight (bug 376005)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:235
msgid "less highlighting: Fix single line comments starting new regions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.32.0.php:236
msgid "LaTeX highlighting: fix alignat environment (bug 373286)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:4
msgid "Release of KDE Frameworks 5.33.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:16
msgid ""
" \n"
"April 08, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.33.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:41
msgid "Added description for commands (balooctl)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:42
msgid "Search also in symlinked directories (bug 333678)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:48
msgid "Provide device type for Low Energy devices"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:54
msgid "Specify qml-root-path as the share directory in the prefix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:55
msgid "Fix ecm_generate_pkgconfig_file compatibility with new cmake"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:56
msgid "Only register APPLE_* options if(APPLE)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:62
msgid "Added presets to the testing application"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:63
msgid "Properly moving items to the desired position"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:64
msgid "Syncing reordering to other model instances"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:65
msgid "If the order is not defined, sort the entries by the id"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:71
msgid "[Meta] Change maintainer in setup.py"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:77
msgid "Backend for Mac"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:78
msgid "Add support for killing a KAuth::ExecuteJob"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:84
msgid "Sanitize shortcut list on read/write from kdeglobals"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:85
msgid "Avoid useless reallocs by removing squeeze call on temporary buffer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:91
msgid "KDBusService: Add accessor for the dbus service name we registered"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:97
msgid "With Qt &gt;= 5.8 use the new API to set scene graph backend"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:98
msgid "Don't set acceptHoverEvents in DragArea as we don't use them"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:110
msgid "Make PlainTextExtractor match \"text/plain\" again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:116
msgid "Error page, correctly load the image (with a real URL)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:122
msgid "Make remote file:// URL redirect to smb:// work again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:123
msgid "Keep query encoding when HTTP Proxy is used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:124
msgid "Updated user agents (Firefox 52 ESR, Chromium 57)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:125
msgid "Handle/truncate url display string assigned to job description. Prevents large data: urls from being included in UI notifications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:126
msgid "Add KFileWidget::setSelectedUrl() (bug 376365)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:127
msgid "Fix KUrlRequester save mode by adding setAcceptMode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:133
msgid "Mention the new QSFPM::setRecursiveFiltering(true) which makes KRecursiveFilterProxyModel obsolete"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:139
msgid "Do not remove queued notifications when the fd.o service starts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:140
msgid "Mac platform adaptations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:146
msgid "API dox: fix missing note to call setXMLFile with KParts::MainWindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:152
msgid "Fix 'Not found: \"\"' terminal messages"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:158
msgid "Expose additional internal View's functionality to the public API"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:159
msgid "Save a lot of allocation for setPen"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:160
msgid "Fix ConfigInterface of KTextEditor::Document"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:161
msgid "Added font and on-the-fly-spellcheck options in ConfigInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:167
msgid "Add support for wl_shell_surface::set_popup and popup_done"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:173
msgid "Support building against a qt without a11y enabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:174
msgid "Fix wrong size hint when animatedShow is called with hidden parent (bug 377676)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:175
msgid "Fix characters in KCharSelectTable getting elided"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:176
msgid "Enable all planes in kcharselect test dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:182
msgid "WiredSetting: return autonegotiate even when it's disabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:183
msgid "Prevent signals in glib2 be defined by Qt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:184
msgid "WiredSetting: Speed and duplex can be set only when auto-negotiation is off (bug 376018)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:185
msgid "Auto-negotiate value for wired setting should be false"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:191
msgid "[ModelContextMenu] Use Instantiator instead of Repeater-and-reparent-hack"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:192
msgid "[Calendar] Shrink and elide week names like is done with day delegate (bug 378020)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:193
msgid "[Icon Item] Make \"smooth\" property actually do something"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:194
msgid "Set implicit size from source size for image/SVG URL sources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:195
msgid "add a new property in containment, for an edit mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:196
msgid "correct maskRequestedPrefix when no prefix is used (bug 377893)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:197
msgid "[Menu] Harmonize openRelative placement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:198
msgid "Most (context) menus have accelerators (Alt+letter shortcuts) now (bug 361915)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:199
msgid "Plasma controls based on QtQuickControls2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:200
msgid "Handle applyPrefixes with an empty string (bug 377441)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:201
msgid "actually delete old theme caches"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:202
msgid "[Containment Interface] Trigger context menus on pressing \"Menu\" key"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:203
msgid "[Breeze Plasma Theme] Improve action-overlay icons (bug 376321)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:209
msgid "TOML: Fix highlighting of string escape sequences"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:210
msgid "Update Clojure syntax highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:211
msgid "A few updates to OCaml syntax"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:212
msgid "Hightlight *.sbt files as scala code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.33.0.php:213
msgid "Also use the QML highlighter for .qmltypes files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:4
msgid "Release of KDE Frameworks 5.34.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:16
msgid ""
" \n"
"May 13, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.34.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:41
msgid "balooctl, baloosearch, balooshow: Fix order of QCoreApplication object creation (bug 378539)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:47
msgid "Add icons for hotspot (https://github.com/KDAB/hotspot)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:48
msgid "Better version control system icons (bug 377380)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:49
msgid "Add plasmate icon (bug 376780)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:50
msgid "Update microphone-sensitivity icons (bug 377012)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:51
#: announcements/kde-frameworks-5.34.0.php:221
msgid "Raise default for 'Panel' icons to 48"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:57
msgid "Sanitizers: Don't use GCC-like flags for e.g. MSVC"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:58
msgid "KDEPackageAppTemplates: documentation improvements"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:59
msgid "KDECompilerSettings: Pass -Wvla &amp; -Wdate-time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:60
msgid "Support older qmlplugindump versions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:61
msgid "Introduce ecm_generate_qmltypes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:62
msgid "Allow projects to include the file twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:63
msgid "Fix rx that matches project names out of the git uri"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:64
msgid "Introduce fetch-translations build command"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:65
msgid "Use -Wno-gnu-zero-variadic-macro-arguments more"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:71
msgid "We are using only Tier 1 frameworks, so move us to Tier 2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:72
msgid "Removed KIO from the deps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:78
msgid "Security fix: verify that whoever is calling us is actually who he says he is"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:84
msgid "Fix relativePath calculation in KDesktopFile::locateLocal() (bug 345100)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:90
msgid "Set the icon for the Donate action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:91
msgid "Relax constraints for processing QGroupBoxes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:97
msgid "Don't set ItemHasContents in DropArea"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:98
msgid "Don't accept hover events in the DragArea"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:104
msgid "Workaround for MSVC and catalog loading"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:105
msgid "Solve a visibility conflict for meinproc5 (bug 379142)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:106
msgid "Quote few other variables with path (avoid issues with spaces)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:107
msgid "Quote few variables with path (avoid issues with spaces)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:108
msgid "Temporarily disable the local doc on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:109
msgid "FindDocBookXML4.cmake, FindDocBookXSL.cmake - search in homebrew installations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:115
msgid "makes KArchive be optional and do not build extractors needing it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:116
msgid "fix duplicated symbols compilation error with mingw on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:122
msgid "build: Remove KService dependency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:128
msgid "fix basename handling of po files (bug 379116)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:129
msgid "Fix ki18n bootstrapping"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:135
msgid "Don't even try to create icons with empty sizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:141
msgid "KDirSortFilterProxyModel: bring back natural sorting (bug 343452)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:142
msgid "Fill UDS_CREATION_TIME with the value of st_birthtime on FreeBSD"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:143
msgid "http slave: send error page after authorization failure (bug 373323)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:144
msgid "kioexec: delegate upload to a kded module (bug 370532)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:145
msgid "Fix KDirlister Gui Test setting URL scheme twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:146
msgid "Delete kiod modules on exit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:147
msgid "Generate a moc_predefs.h file for KIOCore (bug 371721)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:148
msgid "kioexec: fix support for --suggestedfilename"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:154
msgid "Allow multiple categories with the same name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:155
msgid "KNewStuff: Show file's size information in grid delegate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:156
msgid "If an entry's size is known, show it in the list view"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:157
msgid "Register and declare KNSCore::EntryInternal::List as a metatype"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:158
msgid "Don't fall through the switch. Double entries? No please"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:159
msgid "always close the downloaded file after downloading"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:165
msgid "Fix include path in KF5PackageMacros.cmake"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:166
msgid "Ignore warnings during appdata generation (bug 378529)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:172
msgid "Template: Change toplevel template category to \"Plasma\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:178
msgid "KAuth integration in document saving - vol. 2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:179
msgid "Fix assertion when applying code folding that changes cursor position"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:180
msgid "Use non-deprecated &lt;gui&gt; root element in ui.rc file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:181
msgid "Add scroll-bar-marks also to the built-in search&amp;replace"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:182
msgid "KAuth integration in document saving"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:188
msgid "Validate surface is valid when sending TextInput leave event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:194
msgid "KNewPasswordWidget: don't hide visibility action in plaintext mode (bug 378276)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:195
msgid "KPasswordDialog: don't hide visibility action in plaintext mode (bug 378276)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:196
msgid "Fix KActionSelectorPrivate::insertionIndex()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:202
msgid "kcm_useraccount is dead, long live user_manager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:203
msgid "Reproducible builds: drop version from XMLGUI_COMPILING_OS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:204
msgid "Fix: DOCTYPE name must match root element type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:205
msgid "Fix wrong usage of ANY in kpartgui.dtd"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:206
msgid "Use non-deprecated &lt;gui&gt; root element"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:207
msgid "API dox fixes: replace 0 with nullptr or remove where not applied"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:213
msgid "Fix crash when retrieving active connection list (bug 373993)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:214
msgid "Set default value for auto-negotiation based on running NM version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:220
msgid "Add icon for hotspot (https://github.com/KDAB/hotspot)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:227
msgid "reload icon when usesPlasmaTheme changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:228
msgid "Install Plasma Components 3 so they can be used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:229
msgid "Introduce units.iconSizeHints.* to provide user-configurable icon size hints (bug 378443)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:230
msgid "[TextFieldStyle] Fix textField is not defined error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:231
msgid "Update the ungrabMouse hack for Qt 5.8"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:232
msgid "Guard against Applet not loading AppletInterface (bug 377050)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:233
msgid "Calendar: Use correct language for month and day names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:234
msgid "Generate plugins.qmltypes files for the plugins we install"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:235
msgid "if the user did set an implicit size, keep it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:241
msgid "Add include that is needed in msys2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:247
msgid "Add Arduino extension"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.34.0.php:248
msgid "LaTeX: Fix Incorrect termination of \\iffalse comments (bug 378487)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:4
msgid "Release of KDE Frameworks 5.35.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:16
msgid ""
" \n"
"June 10, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.35.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:41
msgid "Improve error notification"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:47
msgid "Pass an explicit list of arguments. This prevents QProcess from trying to handle our space containing path through a shell"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:48
msgid "Fix property changes being missed immediately after an object is added (bug 377405)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:54
msgid "update awk mime as it's a script language (bug 376211)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:60
msgid "restore hidden-visibility testing with Xcode 6.2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:61
msgid "ecm_qt_declare_logging_category(): more unique include guard for header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:62
msgid "Add or improve \"Generated. Don't edit\" messages and make consistent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:63
msgid "Add a new FindGperf module"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:64
msgid "Change default pkgconfig install path for FreeBSD"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:70
msgid "Fix kactivities-stats into tier3"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:76
msgid "Do not consider keyword Q_REQUIRED_RESULT"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:82
msgid "Verify that whoever is calling us is actually who he says he is"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:88
msgid "Generate gperf output at build time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:94
msgid "Ensure proper per thread seeding in KRandom"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:95
msgid "Do not watch QRC's paths (bug 374075)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:101
msgid "Don't include the pid in the dbus path when on flatpak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:107
msgid "Consistently emit MouseEventListener::pressed signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:108
msgid "Don't leak MimeData object (bug 380270)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:114
msgid "Handle having spaces in the path to CMAKE_SOURCE_DIR"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:120
msgid "Fix: Qt5::DBus is only privately used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:126
msgid "use /usr/bin/env to locate python2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:132
msgid "Generate kentities gperf output at build time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:133
msgid "Generate doctypes gperf output at build time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:139
msgid "Extend Programmer's Guide with notes about influence of setlocale()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:145
msgid "Addressed an issue where certain elements in applications (e.g. Dolphin's file view) would become inaccessible in high-dpi multi-screen setup (bug 363548)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:146
msgid "[RenameDialog] Enforce plain text format"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:147
msgid "Identify PIE binaries (application/x-sharedlib) as executable files (bug 350018)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:148
msgid "core: expose GETMNTINFO_USES_STATVFS in config header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:149
msgid "PreviewJob: skip remote directories. Too expensive to preview (bug 208625)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:150
msgid "PreviewJob: clean up empty temp file when get() fails (bug 208625)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:151
msgid "Speed up detail treeview display by avoiding too many column resizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:157
msgid "Use a single QNAM (and a disk cache) for HTTP jobs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:158
msgid "Internal cache for provider data on initialisation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:164
msgid "Fix KSNIs being unable to register service under flatpak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:165
msgid "Use application name instead of pid when creating SNI dbus service"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:171
msgid "Do not export symbols from private libraries"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:172
msgid "Fix symbol exporting for KF5PeopleWidgets and KF5PeopleBackend"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:173
msgid "limit #warning to GCC"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:179
msgid "Replace kwalletd4 after migration has finished"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:180
msgid "Signal completion of migration agent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:181
msgid "Only start timer for migration agent if necessary"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:182
msgid "Check for unique application instance as early as possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:188
msgid "Add requestToggleKeepAbove/below"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:189
msgid "Keep QIcon::fromTheme in main thread"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:190
msgid "Remove pid changedSignal in Client::PlasmaWindow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:191
msgid "Add pid to plasma window management protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:197
msgid "KViewStateSerializer: Fix crash when view is destroyed before state serializer (bug 353380)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:203
msgid "Better fix for NetRootInfoTestWM in path with spaces"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:209
msgid "Set main window as parent of stand-alone popup menus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:210
msgid "When building menu hierarchies, parent menus to their containers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:216
msgid "Add VLC tray icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:217
msgid "Plasmoid templates: use the image which is part of the package (again)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:218
msgid "Add template for Plasma QML Applet with QML extension"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:219
msgid "Recreate plasmashellsurf on exposed, destroy on hidden"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:225
msgid "Haskell: highlight \"julius\" quasiquoter using Normal##Javascript rules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.35.0.php:226
msgid "Haskell: enable hamlet highlighting for \"shamlet\" quasiquoter too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:4
msgid "Release of KDE Frameworks 5.36.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:16
msgid ""
" \n"
"July 08, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.36.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:45
#: announcements/kde-frameworks-5.36.0.php:86
msgid "Use FindInotify.cmake to decide whether inotify is available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:51
msgid "Do not depend on bash unnecessarily, and do not validate icons by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:57
msgid "FindQHelpGenerator: avoid picking up Qt4 version"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:58
msgid "ECMAddQch: fail hard if needed tools are not present, to avoid surprises"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:59
msgid "Drop perl as dep for ecm_add_qch, not needed/used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:60
msgid "Scan the whole install folder for qml dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:61
msgid "New: ECMAddQch, for generating qch &amp; doxygen tag files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:62
msgid "Fix KDEInstallDirsTest.relative_or_absolute_usr, avoid Qt paths being used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:68
msgid "Check error status after every PolKitAuthority usage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:74
msgid "Emit errors when keditbookmarks is missing (bug 303830)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:80
msgid "Fix for CMake 3.9"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:92
msgid "KKeySequenceItem: make it possible to record Ctrl+Num+1 as a shortcut"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:93
msgid "Start drag with press and hold on touch events (bug 368698)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:94
msgid "Don't rely on QQuickWindow delivering QEvent::Ungrab as mouseUngrabEvent (as it no longer does in Qt 5.8+) (bug 380354)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:100
msgid "Search for KEmoticons, which is a dependency per the CMake config.cmake.in (bug 381839)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:106
msgid "Add an extractor using qtmultimedia"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:112
#: announcements/kde-frameworks-5.37.0.php:125
msgid "Make sure that the tsfiles target is generated"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:118
msgid "More details about deploying icon themes on Mac &amp; MSWin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:119
msgid "Change panel icon size default to 48"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:125
msgid "[KNewFileMenu] Hide \"Link To Device\" menu if it would be empty (bug 381479)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:126
msgid "Use KIO::rename instead of KIO::moveAs in setData (bug 380898)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:127
msgid "Fix drop menu position on Wayland"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:128
msgid "KUrlRequester: Set NOTIFY signal to textChanged() for text property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:129
msgid "[KOpenWithDialog] HTML-escape file name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:130
msgid "KCoreDirLister::cachedItemForUrl: don't create the cache if it didn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:131
msgid "Use \"data\" as filename when copying data urls (bug 379093)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:137
msgid "Fix incorrect error detection for missing knsrc files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:138
msgid "Expose and use Engine's page size variable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:139
msgid "Make it possible to use QXmlStreamReader to read a KNS registry file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:145
msgid "Added kpackage-genericqml.desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:151
msgid "Fix cpu usage spiking after showing vi command bar (bug 376504)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:152
msgid "Fix jumpy scrollbar-dragging when mini-map is enabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:153
msgid "Jump to the clicked scrollbar position when minim-map is enabled (bug 368589)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:159
msgid "Update kcharselect-data to Unicode 10.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:165
msgid "KKeySequenceWidget: make it possible to record Ctrl+Num+1 as a shortcut (bug 183458)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:166
msgid "Revert \"When building menu hyerarchies, parent menus to their containers\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:167
msgid "Revert \"use transientparent directly\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:173
msgid "WiredSetting: wake on lan properties were backported to NM 1.0.6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:174
msgid "WiredSetting: metered property was backported to NM 1.0.6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:175
msgid "Add new properties to many settings classes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:176
msgid "Device: add device statistics"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:177
msgid "Add IpTunnel device"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:178
msgid "WiredDevice: add information about required NM version for s390SubChannels property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:179
msgid "TeamDevice: add new config property (since NM 1.4.0)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:180
msgid "Wired device: add s390SubChannels property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:181
msgid "Update introspections (NM 1.8.0)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:187
msgid "Make sure size is final after showEvent"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:188
msgid "Fix vlc tray icon margins and color scheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:189
msgid "Set Containments to have focus within the view (bug 381124)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:190
msgid "generate the old key before updating enabledborders (bug 378508)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:191
msgid "show show password button also if empty text (bug 378277)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:192
msgid "Emit usedPrefixChanged when prefix is empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:198
msgid "cmake: build udisks2 backend on FreeBSD only when enabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:204
msgid "Highlight .julius files as JavaScript"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:205
msgid "Haskell: Add all language pragmas as keywords"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:206
msgid "CMake: OR/AND not highlighted after expr in () (bug 360656)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:207
msgid "Makefile: Remove invalid keyword entries in makefile.xml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:208
msgid "indexer: Improve error reporting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:209
msgid "HTML syntax file version update"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:210
msgid "Angular modifiers in HTML attributes added"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:211
msgid "Update test reference data following the changes of the previous commit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:212
msgid "Bug 376979 - angle brackets in doxygen comments break syntax highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:215
#: announcements/kde-frameworks-5.37.0.php:303
#: announcements/kde-frameworks-5.39.0.php:283
#: announcements/kde-frameworks-5.40.0.php:253
msgid "ThreadWeaver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.36.0.php:218
msgid "Work-around MSVC2017 compiler bug"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:4
msgid "Release of KDE Frameworks 5.37.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:16
msgid ""
" \n"
"August 13, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.37.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:38
msgid "New framework: kirigami, a set of QtQuick plugins to build user interfaces based on the KDE UX guidelines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:43
msgid "update .h and .h++ colors (bug 376680)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:44
msgid "remove ktorrent small monochrome icon (bug 381370)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:45
msgid "bookmarks is an action icon not a folder icon (bug 381383)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:46
msgid "update utilities-system-monitor (bug 381420)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:52
msgid "Add --gradle to androiddeployqt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:53
msgid "Fix install apk target"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:54
msgid "Fix usage of query_qmake: differ between calls expecting qmake or not"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:55
msgid "Add API dox for KDEInstallDirs' KDE_INSTALL_USE_QT_SYS_PATHS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:56
msgid "Add a metainfo.yaml to make ECM a proper framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:57
msgid "Android: scan for qml files in the source dir, not in the install dir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:63
msgid "emit runningActivityListChanged on activity creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:69
msgid "Escape HTML from search query"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:75
msgid "Add Conan files, as a first experiment to Conan support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:81
msgid "Allow to build KConfig without Qt5Gui"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:82
msgid "Standard shortcuts: use Ctrl+PageUp/PageDown for prev/next tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:88
msgid "Remove unused init() declaration from K_PLUGIN_FACTORY_DECLARATION_WITH_BASEFACTORY_SKEL"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:89
msgid "New spdx API on KAboutLicense to get SPDX license expressions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:90
msgid "kdirwatch: Avoid potential crash if d-ptr destroyed before KDirWatch (bug 381583)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:91
msgid "Fix display of formatDuration with rounding (bug 382069)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:97
msgid "fix plasmashell unsetting QSG_RENDER_LOOP"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:103
msgid "Fix 'Deprecated hint for KUrl::path() is wrong on Windows' (bug 382242)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:104
msgid "Update kdelibs4support to use the target based support provided by kdewin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:105
msgid "Mark constructors as deprecated too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:112
msgid "Add support for the new widget kpasswordlineedit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:118
msgid "Support SVG too (bug 355872)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:124
msgid "Allow loading i18n catalogs from arbitrary locations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:131
msgid "Only require Qt5X11Extras when we actually need it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:137
msgid "Use proper feature flag to include kill(2)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:143
msgid "Add new method urlSelectionRequested to KUrlNavigator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:144
msgid "KUrlNavigator: expose the KUrlNavigatorButton that received a drop event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:145
msgid "Stash without asking the user with a Copy/Cancel popup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:146
msgid "Ensure KDirLister updates items whose target URL has changed (bug 382341)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:147
msgid "Make advanced options of \"open with\" dialog collabsible and hidden by default (bug 359233)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:153
msgid "Give a parent to KMoreToolsMenuFactory menus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:154
msgid "When requesting from the cache, report all entries at bulk"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:160
msgid "kpackagetool now can output appstream data to a file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:161
msgid "adopt new KAboutLicense::spdx"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:167
msgid "Reset url in closeUrl()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:168
msgid "Add template for a simple kpart-based application"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:169
#: announcements/kde-frameworks-5.37.0.php:230
msgid "Drop usage of KDE_DEFAULT_WINDOWFLAGS"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:175
msgid "Handle fine-grained wheel event in zooming"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:176
msgid "Add template for a ktexteditor plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:177
msgid "copy permissions from original file on save copy (bug 377373)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:178
msgid "perhaps avoid stringbuild crash (bug 339627)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:179
msgid "fix problem with * adding for lines outside of comments (bug 360456)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:180
msgid "fix save as copy, it missed to allow overwriting the destination file (bug 368145)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:181
msgid "Command 'set-highlight': Join args with space"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:182
msgid "fix crash on view destruction because of non-deterministic cleanup of objects"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:183
msgid "Emit signals from icon border when no mark was clicked"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:184
msgid "Fix crash in vi input mode (sequence: \"o\" \"Esc\" \"O\" \"Esc\" \".\") (bug 377852)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:185
msgid "Use mutually exclusive group in Default Mark Type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:191
msgid "Mark MPa and PSI as common units"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:197
msgid "Use CMAKE_INSTALL_BINDIR for dbus service generation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:203
msgid "Destroy all kwayland objects created by registry when it is destroyed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:204
msgid "Emit connectionDied if the QPA is destroyed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:205
msgid "[client] Track all created ConnectionThreads and add API to access them"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:206
msgid "[server] Send text input leave if focused surface gets unbound"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:207
msgid "[server] Send pointer leave if focused surface gets unbound"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:208
msgid "[client] Properly track enteredSurface in Keyboard"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:209
msgid "[server] Send keyboard leave when client destroys the focused surface (bug 382280)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:210
msgid "check Buffer validity (bug 381953)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:216
msgid "Extract lineedit password widget =&gt; new class KPasswordLineEdit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:217
msgid "Fixed a crash when searching with accessibility support enabled (bug 374933)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:218
msgid "[KPageListViewDelegate] Pass widget to drawPrimitive in drawFocus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:224
msgid "Remove header reliance on QWidget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:236
msgid "Adding support to ipv*.route-metric"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:237
msgid "Fix undefined NM_SETTING_WIRELESS_POWERSAVE_FOO enums (bug 382051)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:243
msgid "[Containment Interface] always emit contextualActionsAboutToShow for containment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:244
msgid "Treat Button/ToolButton labels as plaintext"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:245
msgid "Don't perform wayland specific fixes when on X (bug 381130)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:246
msgid "Add KF5WindowSystem to link interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:247
msgid "Declare AppManager.js as pragma library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:248
msgid "[PlasmaComponents] Remove Config.js"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:249
msgid "default to plain text for labels"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:250
msgid "Load translations from KPackage files if bundled (bug 374825)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:251
msgid "[PlasmaComponents Menu] Don't crash on null action"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:252
msgid "[Plasma Dialog] Fix flag conditions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:253
msgid "update akregator system tray icon (bug 379861)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:254
msgid "[Containment Interface] Keep containment in RequiresAttentionStatus while context menu is open (bug 351823)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:255
msgid "Fix tab bar layout key handling in RTL (bug 379894)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:261
msgid "Allow to build Sonnet without Qt5Widgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:262
msgid "cmake: rewrite FindHUNSPELL.cmake to use pkg-config"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:268
msgid "Allow to build KSyntaxHighlighter without Qt5Gui"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:269
msgid "Add cross-compilation support for the highlighting indexer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:270
msgid "Themes: Remove all unused metadata (license, author, read-only)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:271
msgid "Theme: Remove license and author fields"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:272
msgid "Theme: Derive read-only flag from file on disk"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:273
msgid "Add syntax highlighting for YANG data modeling language"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:274
msgid "PHP: Add PHP 7 keywords (bug 356383)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:275
msgid "PHP: Clean up PHP 5 information"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:276
msgid "fix gnuplot, make leading/trailing spaces fatal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:277
msgid "fix 'else if' detection, we need to switch context, add extra rule"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:278
msgid "indexer checks for leading/trailing whitespaces in XML highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:279
msgid "Doxygen: Add Doxyfile highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:280
msgid "add missing standard types to C highlighting and update to C11 (bug 367798)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:281
msgid "Q_PI D =&gt; Q_PID"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:282
msgid "PHP: Improve highlighting of variables in curly braces in double quotes (bug 382527)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:283
msgid "Add PowerShell highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:284
msgid "Haskell: Add file extension .hs-boot (bootstrap module) (bug 354629)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:285
msgid "Fix replaceCaptures() to work with more than 9 captures"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:286
msgid "Ruby: Use WordDetect instead of StringDetect for full word matching"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:287
msgid "Fix incorrect highlighting for BEGIN and END in words such as \"EXTENDED\" (bug 350709)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:288
msgid "PHP: Remove mime_content_type() from list of deprecated functions (bug 371973)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:289
msgid "XML: Add XBEL extension/mimetype to xml highlighting (bug 374573)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:290
msgid "Bash: Fix incorrect highlighting for command options (bug 375245)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:291
msgid "Perl: Fix heredoc highlighting with leading spaces in the delimiter (bug 379298)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:292
msgid "Update SQL (Oracle) syntax file (bug 368755)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:293
msgid "C++: Fix '-' is not a part of UDL String (bug 380408)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:294
msgid "C++: printf format specifies: add 'n' and 'p', remove 'P' (bug 380409)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:295
msgid "C++: Fix char value have the color of the strings (bug 380489)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:296
msgid "VHDL: Fix highlighting error when using brackets and attributes (bug 368897)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:297
msgid "zsh highlighting: Fix math expression in a substring expression (bug 380229)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:298
msgid "JavaScript Highlighting: Add support for E4X xml extension (bug 373713)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:299
msgid "Remove \"*.conf\" extension rule"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:300
msgid "Pug/Jade syntax"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.37.0.php:306
msgid "Add missing export to QueueSignals"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:4
msgid "Release of KDE Frameworks 5.38.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:16
msgid ""
" \n"
"September 09, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.38.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:44
msgid "Fix directory based search"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:50
msgid "Set CMAKE_*_OUTPUT_5.38 to run tests without installing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:51
msgid "Include a module for finding qml imports as runtime dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:57
msgid "Return high-resolution line edit clear icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:58
msgid "Fix accepting dialogs with ctrl+return when buttons are renamed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:64
msgid "Refactor of the query which combines linked and used resources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:65
msgid "Reloading the model when the resource gets unlinked"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:66
msgid "Fixed the query when merging linked and used resources"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:72
#: announcements/kde-frameworks-5.38.0.php:80
msgid "Fix labels of DeleteFile/RenameFile actions (bug 382450)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:73
msgid "kconfigini: Strip leading whitespace when reading entry values (bug 310674)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:79
msgid "Deprecate KStandardAction::Help and KStandardAction::SaveOptions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:81
msgid "Use \"document-close\" as icon for KStandardAction::close"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:87
msgid "DesktopFileParser: add fallback lookup in \":/kservicetypes5/*\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:88
msgid "Add support for uninstalled plugins in kcoreaddons_add_plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:89
msgid "desktopfileparser: Fix non-compliant key/value parsing (bug 310674)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:95
msgid "support X-KDE-OnlyShowOnQtPlatforms"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:101
msgid "CMake: Fix target name shortening when build dir has special characters (bug 377573)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:102
msgid "Add CC BY-SA 4.0 International and set it as default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:108
msgid "KGlobalAccel: port to KKeyServer's new method symXModXToKeyQt, to fix numpad keys (bug 183458)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:114
msgid "klauncher: fix appId matching for flatpak apps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:120
msgid "Port the webshortcuts KCM from KServiceTypeTrader to KPluginLoader::findPlugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:121
msgid "[KFilePropsPlugin] Locale-format totalSize during calculation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:122
msgid "KIO: fix long-standing memory leak on exit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:123
msgid "Add mimetype filtering capabilities to KUrlCompletion"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:124
msgid "KIO: port the URI filter plugins from KServiceTypeTrader to json+KPluginMetaData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:125
msgid "[KUrlNavigator] Emit tabRequested when place in menu is middle-clicked (bug 304589)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:126
msgid "[KUrlNavigator] Emit tabRequested when places selector is middle-clicked (bug 304589)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:127
msgid "[KACLEditWidget] Allow double clicking to edit entry"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:128
msgid "[kiocore] Fix the logic error in previous commit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:129
msgid "[kiocore] Check that klauncher is running or not"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:130
msgid "Really rate-limit INF_PROCESSED_SIZE messages (bug 383843)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:131
msgid "Don't clear Qt's SSL CA certificate store"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:132
msgid "[KDesktopPropsPlugin] Create destination directory if it doesn't exist"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:133
msgid "[File KIO slave] Fix applying special file attributes (bug 365795)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:134
msgid "Remove busy loop check in TransferJobPrivate::slotDataReqFromDevice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:135
msgid "make kiod5 an \"agent\" on Mac"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:136
msgid "Fix proxy KCM not loading manual proxies correctly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:139
#: announcements/kde-frameworks-5.39.0.php:138
#: announcements/kde-frameworks-5.40.0.php:113
#: announcements/kde-frameworks-5.41.0.php:205
#: announcements/kde-frameworks-5.42.0.php:199
msgid "Kirigami"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:142
msgid "hide scrollbars when useless"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:143
msgid "Add basic example for adjusting column width draggable handle"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:144
msgid "ider layers in handles positioning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:145
msgid "fix handle placing when overlaps the last page"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:146
msgid "don't show fake handle on the last column"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:147
msgid "don't store stuff in the delegates (bug 383741)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:148
msgid "as we already set keyNavigationEnabled, set wraps as well"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:149
msgid "better left-alignment for the back button (bug 383751)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:150
msgid "don't take into account the header 2 times when scrolling (bug 383725)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:151
msgid "never wrap the header labels"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:152
msgid "address FIXME: remove resetTimer (bug 383772)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:153
msgid "don't scroll away applicationheader in non mobile"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:154
msgid "Add a property to hide the PageRow separator matching AbstractListItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:155
msgid "fix scrolling with originY and bottomtotop flow"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:156
msgid "Get rid of warnings about setting both pixel and point sizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:157
msgid "don't trigger reachable mode on inverted views"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:158
msgid "take page footer into account"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:159
msgid "add a slightly more complex example of a chat app"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:160
msgid "more failsafe to find the right footer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:161
msgid "Check item validity before using it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:162
msgid "Honour layer position for isCurrentPage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:163
msgid "use an animation instead of an animator (bug 383761)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:164
msgid "leave needed space for the page footer, if possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:165
msgid "better dimmer for applicationitem drawers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:166
msgid "background dimming for applicationitem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:167
msgid "fix properly back button margins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:168
msgid "proper margins for back button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:169
msgid "less warnings in ApplicationHeader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:170
msgid "don't use plasma scaling for icon sizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:171
msgid "new look for handles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:179
msgid "Initialize the \"Pause\" button state in the widget tracker"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:185
msgid "Don't block starting notification service (bug 382444)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:191
msgid "refactor kpackagetool away from stringy options"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:197
msgid "Clear previous actions on update"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:198
msgid "Add remote runners over DBus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:204
msgid "Port Document/View scripting API to QJSValue-based solution"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:205
msgid "Show icons in icon border context menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:206
msgid "Replace KStandardAction::PasteText with KStandardAction::Paste"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:207
msgid "Support fractional scaling in generating the sidebar preview"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:208
msgid "Switch from QtScript to QtQml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:214
msgid "Treat input RGB buffers as premultiplied"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:215
msgid "Update SurfaceInterface outputs when an output global gets destroyed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:216
msgid "KWayland::Client::Surface track output destruction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:217
msgid "Avoid sending data offers from an invalid source (bug 383054)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:223
msgid "simplify setContents by letting Qt do more of the work"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:224
msgid "KSqueezedTextLabel: Add isSqueezed() for convenience"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:225
msgid "KSqueezedTextLabel: Small improvements to API docs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:226
msgid "[KPasswordLineEdit] Set focus proxy to line edit (bug 383653)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:227
msgid "[KPasswordDialog] Reset geometry property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:233
msgid "KKeyServer: fix handling of KeypadModifier (bug 183458)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:239
msgid "Save up a bunch of stat() calls on application start"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:240
msgid "Fix KHelpMenu position on Wayland (bug 384193)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:241
msgid "Drop broken mid-button click handling (bug 383162)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:242
msgid "KUndoActions: use actionCollection to set the shortcut"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:248
msgid "[ConfigModel] Guard against adding a null ConfigCategory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:249
msgid "[ConfigModel] Allow programmatically adding and removing ConfigCategory (bug 372090)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:250
msgid "[EventPluginsManager] Expose pluginPath in model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:251
msgid "[Icon Item] Don't needlessly unset imagePath"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:252
msgid "[FrameSvg] Use QPixmap::mask() instead of deprecated convoluted way via alphaChannel()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:253
msgid "[FrameSvgItem] Create margins/fixedMargins object on demand"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:254
msgid "fix check state for menu items"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:255
msgid "Force Plasma style for QQC2 in applets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:256
msgid "Install the PlasmaComponents.3/private folder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:257
msgid "Drop remains of \"locolor\" themes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:258
msgid "[Theme] Use KConfig SimpleConfig"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:259
msgid "Avoid some unnecessary theme content lookups"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:260
msgid "ignore spurious resize events to empty sizes (bug 382340)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:266
msgid "Add syntax definition for Adblock Plus filter lists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:267
msgid "Rewrite the Sieve syntax definition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:268
msgid "Add highlighting for QDoc configuration files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:269
msgid "Add highlight definition for Tiger"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:270
msgid "Escape hyphen in rest.xml regular expressions (bug 383632)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:271
msgid "fix: plaintext is highlighted as powershell"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:272
msgid "Add syntax highlighting for Metamath"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:273
msgid "Rebased Less syntax highlighting on SCSS one (bug 369277)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:274
msgid "Add Pony highlighting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.38.0.php:275
msgid "Rewrite the email syntax definition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:4
msgid "Release of KDE Frameworks 5.39.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:16
msgid ""
" \n"
"October 14, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.39.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:41
msgid "Only match real MIME types, not e.g. \"raw CD image\" (bug 364884)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:42
msgid "Remove pf.path() from container before the reference got screwed up by it.remove()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:43
msgid "Fix tags KIO-slave protocol description"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:44
msgid "Consider markdown files to be Documents"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:50
msgid "add overflow-menu icon (bug 385171)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:56
msgid "Fix python bindings compilation after 7af93dd23873d0b9cdbac192949e7e5114940aa6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:62
msgid "Make KStandardGuiItem::discard match QDialogButtonBox::Discard"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:68
msgid "Changed the default query limit to zero"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:69
msgid "Added the option to enable model tester"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:75
msgid "Make KCMultiDialog scrollable (bug 354227)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:81
msgid "Deprecate KStandardShortcut::SaveOptions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:87
msgid "Deprecate KStandardAction::PasteText and KPasteTextAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:93
msgid "desktoptojson: Improve legacy service type detection heuristic (bug 384037)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:99
msgid "Relicense to LGPL2.1+"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:100
msgid "Added openService() method to KRunProxy"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:106
msgid "fix crash when more than one instances of ExtractorCollection are destructed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:112
msgid "Revert \"KGlobalAccel: port to KKeyServer's new method symXModXToKeyQt, to fix numpad keys\" (bug 384597)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:118
msgid "add a method to reset the custom palette"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:119
msgid "use qApp-&gt;palette() when no custom one is set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:120
msgid "allocate the proper buffer size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:121
msgid "allow to set a custom palette instead of colorSets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:122
msgid "expose the colorset for the stylesheet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:128
msgid "Windows: Fix 'klauncher uses absolute compile time install path for finding kioslave.exe'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:134
msgid "kioexec: Watch the file when it has finished copying (bug 384500)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:135
msgid "KFileItemDelegate: Always reserve space for icons (bug 372207)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:141
msgid "don't instantiate Theme file in BasicTheme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:142
msgid "add a new Forward button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:143
msgid "less contrast to the sheet scrollbar background"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:144
msgid "more reliable insert and remove from overflow menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:145
msgid "better context icon rendering"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:146
msgid "more careful to center the action button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:147
msgid "use iconsizes for action buttons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:148
msgid "pixel perfect icon sizes on desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:149
msgid "selected effect to fake handle icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:150
msgid "fix color of handles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:151
msgid "better color for the main action button"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:152
msgid "fix context menu for desktop style"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:153
msgid "better \"more\" menu for the toolbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:154
msgid "a proper menu for the intermediate pages context menu"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:155
msgid "add a text field which should bring up a keypad"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:156
msgid "don't crash when launched with non existent styles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:157
msgid "ColorSet concept in Theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:158
msgid "simplify wheel management (bug 384704)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:159
msgid "new example app with desktop/mobile main qml files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:160
msgid "ensure currentIndex is valid"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:161
msgid "Generate the appstream metadata of the gallery app"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:162
msgid "Look for QtGraphicalEffects, so packagers don't forget it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:163
msgid "Don't include the control over the bottom decoration (bug 384913)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:164
msgid "lighter coloring when listview has no activeFocus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:165
msgid "some support for RTL layouts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:166
msgid "Disable shortcuts when an action is disabled"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:167
msgid "create the whole plugin structure in the build directory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:168
msgid "fix accessibility for the gallery main page"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:169
msgid "If plasma isn't available, KF5Plasma isn't either. Should fix the CI error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:175
msgid "Require Kirigami 2.1 instead of 1.0 for KNewStuffQuick"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:176
msgid "Properly create KPixmapSequence"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:177
msgid "Don't complain the knsregistry file is not present before it's useful"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:183
msgid "kpackage: bundle a copy of servicetypes/kpackage-generic.desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:184
msgid "kpackagetool: bundle a copy of servicetypes/kpackage-generic.desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:190
msgid "KPartsApp template: fix install location of kpart desktop file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:196
msgid "Ignore default mark in icon border for single selectable mark"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:197
msgid "Use QActionGroup for input mode selection"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:198
msgid "Fix missing spell check bar (bug 359682)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:199
msgid "Fix the fall-back \"blackness\" value for unicode &gt; 255 characters (bug 385336)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:200
msgid "Fix trailing space visualization for RTL lines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:206
msgid "Only send OutputConfig sendApplied / sendFailed to the right resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:207
msgid "Don't crash if a client (legally) uses deleted global contrast manager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:208
msgid "Support XDG v6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:214
msgid "KAcceleratorManager: set icon text on actions to remove CJK markers (bug 377859)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:215
msgid "KSqueezedTextLabel: Squeeze text when changing indent or margin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:216
msgid "Use edit-delete icon for destructive discard action (bug 385158)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:217
msgid "Fix Bug 306944 - Using the mousewheel to increment/decrement the dates (bug 306944)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:218
msgid "KMessageBox: Use question mark icon for question dialogs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:219
msgid "KSqueezedTextLabel: Respect indent, margin and frame width"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:225
msgid "Fix KToolBar repaint loop (bug 377859)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:231
msgid "Fix org.kde.plasma.calendar with Qt 5.10"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:232
msgid "[FrameSvgItem] Iterate child nodes properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:233
msgid "[Containment Interface] Don't add containment actions to applet actions on desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:234
msgid "Add new component for the greyed out labels in Item Delegates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:235
msgid "Fix FrameSVGItem with the software renderer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:236
msgid "Don't animate IconItem in software mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:237
msgid "[FrameSvg] Use new-style connect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:238
msgid "possibility to set an attached colorscope to not inherit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:239
msgid "Add extra visual indicator for Checkbox/Radio keyboard focus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:240
msgid "don't recreate a null pixmap"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:241
msgid "Pass item to rootObject() since it's now a singleton (bug 384776)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:242
msgid "Don't list tab names twice"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:243
msgid "don't accept active focus on tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:244
msgid "register revision 1 for QQuickItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:245
msgid "[Plasma Components 3] Fix RTL in some widgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:246
msgid "Fix invalid id in viewitem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:247
msgid "update mail notification icon for better contrast (bug 365297)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:250
msgid "qqc2-desktop-style"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:259
msgid "[solid/fstab] Add support for x-gvfs style options in fstab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:260
msgid "[solid/fstab] Swap vendor and product properties, allow i18n of description"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:266
msgid "Fix invalid itemData references of 57 highlighting files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:267
msgid "Add support for custom search paths for application-specific syntax and theme definitions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:268
msgid "AppArmor: fix DBus rules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:269
msgid "Highlighting indexer: factor out checks for smaller while loop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:270
msgid "ContextChecker: support '!' context switching and fallthroughContext"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:271
msgid "Highlighting indexer: check existence of referenced context names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:272
msgid "Relicense qmake highlighting to MIT license"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:273
msgid "Let qmake highlighting win over Prolog for .pro files (bug 383349)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:274
msgid "Support clojure's \"@\" macro with brackets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:275
msgid "Add syntax highlighting for AppArmor Profiles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:276
msgid "Highlighting indexer: Catch invalid a-Z/A-z ranges in regexps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:277
msgid "Fixing incorrectly capitalized ranges in regexps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:278
msgid "add missing reference files for tests, looks ok, I think"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:279
msgid "Added Intel HEX file support for the Syntax highlighting database"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:280
msgid "Disable spell checking for strings in Sieve scripts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.39.0.php:286
msgid "Fix memory leak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.4.0.php:4
msgid "Release of KDE Frameworks 5.4.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.4.0.php:16
msgid ""
" \n"
"November 06, 2014. KDE today announces the release\n"
"of KDE Frameworks 5.4.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.4.0.php:38
msgid ""
"\n"
"<h3>Attica</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix build with Qt 5.4</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KArchive</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add support for rcc files</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KAuth</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix install dir when using KDE_INSTALL_USE_QT_SYS_PATHS</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCMUtils</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix KPluginSelector not adding non .desktop file plugins</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KConfigWidgets</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix URL in KHelpClient::invokeHelp</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCoreAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Various build fixes (QNX, Ubuntu 14.04)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KDeclarative</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Optimize IconItem in QIconItem in memory and speed</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KIO</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New job KIO::mkpath()</li>"
"\n"
"<li>New job KIO::PasteJob, handles pasting+dropping URLs and data; KIO::paste replaces KIO::pasteClipboard</li>"
"\n"
"<li>New function KIO::pasteActionText, to handle the paste action</li>"
"\n"
"<li>When clicking on a script or desktop file in a file manager, let the user choose between executing and vieweing as text</li>"
"\n"
"<li>KUrlRequester: fixing handling of start directory</li>"
"\n"
"<li>Offer also overwrite option when copying multiple files and there is a conflict (regression compared to kdelibs4)</li>"
"\n"
"<li>KDirLister: do not kill+restart running update jobs.</li>"
"\n"
"<li>KDirLister: don't emit refreshItems for items that haven't changed.</li>"
"\n"
"<li>Prevent incorrect disk full error messages on mounts where we cannot determine the amount of free space.</li>"
"\n"
"<li>Fix running the file type editor</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNewStuff</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Many small fixes and cleanups</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNotifications</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add support for custom icons (convenience method KNotification::Event with icon name)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KTextEditor</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Implement \"go to last editing position\" action</li>"
"\n"
"<li>Guard against a possibly broken code folding state on disk</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWallet</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Emit 'walletListDirty' signal when the 'kwalletd' directory is deleted</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWidgetsAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New function KMimeTypeEditor::editMimeType(), to launch keditfiletype5</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KXmlGui</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Now supports finding ui files in resources (default location: :/kxmlgui5/&lt;componentname&gt;)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Plasma frameworks</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fixes in the Dialog QML component size and position</li>"
"\n"
"<li>fixes in the Slider and ProgressBar QML components</li>"
"\n"
"<li>new icons</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Solid</h3>"
"\n"
"\n"
"<ul>\n"
"<li>[not communicated]</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Buildsystem changes</h3>"
"\n"
"\n"
"<ul>\n"
"<li>New modules FindWaylandScanner and FindQtWaylandScanner, including macros ecm_add_qtwayland_client_protocol and ecm_add_qtwayland_server_protocol</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Frameworkintegration</h3>"
"\n"
"\n"
"<ul>\n"
"<li>implement support for setting custom labels in file dialogs</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.4.0.php:180
#: announcements/kde-frameworks-5.6.0.php:214
msgid "The complete source code for KDE Frameworks %1 may be <a href='http://download.kde.org/stable/frameworks/%1/'>freely downloaded</a>. Instructions on compiling and installing KDE Frameworks %1 are available from the <a href='/info/kde-frameworks-%2.php'>KDE Frameworks %1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:4
msgid "Release of KDE Frameworks 5.40.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:16
msgid ""
" \n"
"November 11, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.40.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:41
msgid "Consider DjVu files to be documents (bug 369195)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:42
msgid "Fix spelling so WPS Office presentations are recognized correctly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:48
msgid "add folder-stash for the stash Dolphin toolbar icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:54
msgid "Fix potential mem leak. Fix logic"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:60
msgid "no margins for qml modules from qwidget side"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:61
msgid "Initialize variables (found by coverity)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:67
msgid "Fix icon of KStandardAction::MoveToTrash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:73
msgid "fix URL detection with double urls like \"http://www.foo.bar&lt;http://foo.bar/&gt;\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:74
#: announcements/kde-frameworks-5.40.0.php:207
msgid "Use https for KDE urls"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:80
msgid "full docu for disableSessionManagement() replacement"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:81
msgid "Make kssl compile against OpenSSL 1.1.0 (bug 370223)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:87
msgid "Fix display name of Generator property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:93
msgid "KGlobalAccel: fix support numpad keys (again)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:99
msgid "Correct installation of start_kdeinit when DESTDIR and libcap are used together"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:105
msgid "Fix display of remote:/ in the qfiledialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:106
msgid "Implement support for categories on KfilesPlacesView"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:107
msgid "HTTP: fix error string for the 207 Multi-Status case"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:108
msgid "KNewFileMenu: clean up dead code, spotted by Coverity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:109
msgid "IKWS: Fix possible infinite loop, spotted by Coverity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:110
msgid "KIO::PreviewJob::defaultPlugins() function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:116
msgid "syntax working on older Qt 5.7 (bug 385785)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:117
msgid "stack the overlaysheet differently (bug 386470)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:118
msgid "Show the delegate highlighted property as well when there's no focus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:119
msgid "preferred size hints for the separator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:120
msgid "correct Settings.isMobile usage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:121
msgid "Allow applications to be somewhat convergent on a desktop-y system"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:122
msgid "Make sure the content of the SwipeListItem doesn't overlap the handle (bug 385974)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:123
msgid "Overlaysheet's scrollview is always ointeractive"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:124
msgid "Add categories in gallery desktop file (bug 385430)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:125
msgid "Update the kirigami.pri file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:126
msgid "use the non installed plugin to do the tests"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:127
msgid "Deprecate Kirigami.Label"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:128
msgid "Port gallery example use of Labels to be consistently QQC2"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:129
msgid "Port Kirigami.Controls uses of Kirigami.Label"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:130
msgid "make the scrollarea interactive on touch events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:131
msgid "Move the git find_package call to where it's used"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:132
msgid "default to transparent listview items"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:138
msgid "Remove PreferCache from network requests"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:139
msgid "Don't detach shared pointers to private data when setting previews"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:140
msgid "KMoreTools: Update and fix desktopfiles (bug 369646)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:146
msgid "Remove check for SNI hosts when chosing whether to use legacy mode (bug 385867)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:147
msgid "Only check for legacy system tray icons if we're going to make one (bug 385371)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:153
msgid "use the non installed service files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:159
msgid "Initialize values"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:160
msgid "Initialize some pointer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:166
msgid "API dox: fix wrong names of methods and args, add missing \\since"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:167
msgid "Avoid (certain) crashes while executing QML scripts (bug 385413)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:168
msgid "Avoid a QML crash triggered by C style indentation scripts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:169
msgid "Increase size of trailing mark"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:170
msgid "fix some indenters from indenting on random characters"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:171
msgid "Fix deprecation warning"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:177
msgid "Initialize value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:183
msgid "[client] Drop the checks for platformName being \"wayland\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:184
msgid "Don't duplicate connect to wl_display_flush"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:185
msgid "Wayland foreign protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:191
msgid "fix createKMessageBox focus widget inconsistency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:192
msgid "more compact password dialog (bug 381231)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:193
msgid "Set KPageListView width properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:199
msgid "KKeyServer: fix handling of Meta+Shift+Print, Alt+Shift+arrowkey etc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:200
msgid "Support flatpak platform"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:201
msgid "Use KWindowSystem's own platform detection API instead of duplicated code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:213
msgid "8021xSetting: domain-suffix-match is defined in NM 1.2.0 and newer"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:214
msgid "Support \"domain-suffix-match\" in Security8021xSetting"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:220
msgid "manually draw the circle arc"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:221
msgid "[PlasmaComponents Menu] Add ungrabMouseHack"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:222
msgid "[FrameSvg] Optimize updateSizes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:223
msgid "Don't position a Dialog if it's of type OSD"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:226
#: announcements/kde-frameworks-5.41.0.php:310
#: announcements/kde-frameworks-5.42.0.php:333
msgid "QQC2StyleBridge"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:229
msgid "Improve compilation as a static plugin"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:230
msgid "make the radiobutton a radiobutton"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:231
msgid "use qstyle to paint the Dial"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:232
msgid "use a ColumnLayout for menus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:233
msgid "fix Dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:234
msgid "remove invalid group property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:235
msgid "Fix formatting of the md file so it matches the other modules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:236
msgid "behavior of combobox closer to qqc1"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:237
msgid "workaround for QQuickWidgets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:243
msgid "Add assignByDictionnary method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:244
msgid "Signal if we are able to assign dictionary"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:250
msgid "Makefile: fix regexpr matching in \"CXXFLAGS+\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.40.0.php:256
msgid "CMake cleanup: Don't hardcode -std=c++0x"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:4
msgid "Release of KDE Frameworks 5.41.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:16
msgid ""
" \n"
"December 10, 2017. KDE today announces the release\n"
"of KDE Frameworks 5.41.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:41
msgid "Strip down and re-write the baloo tags KIO slave (bug 340099)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:47
msgid "Do not leak rfkill file descriptors (bug 386886)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:53
msgid "Add missing icon sizes (bug 384473)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:54
msgid "add install and uninstall icons for discover"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:60
msgid "Add the description tag to the generated pkgconfig files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:61
msgid "ecm_add_test: Use proper path sep on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:62
msgid "Add FindSasl2.cmake to ECM"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:63
msgid "Only pass the ARGS thing when doing Makefiles"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:64
msgid "Add FindGLIB2.cmake and FindPulseAudio.cmake"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:65
msgid "ECMAddTests: set QT_PLUGIN_PATH so locally built plugins can be found"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:66
msgid "KDECMakeSettings: more docu about the layout of the build dir"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:72
msgid "Support downloading the 2nd or 3rd download link from a KNS product (bug 385429)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:78
msgid "Start fixing libKActivitiesStats.pc: (bug 386933)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:84
msgid "Fix race that starts kactivitymanagerd multiple times"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:90
msgid "Allow to only build the kauth-policy-gen code generator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:91
msgid "Add a note about calling the helper from multithreaded applications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:97
msgid "Do not show edit bookmarks action if keditbookmarks is not installed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:98
msgid "Port from deprecated KAuthorized::authorizeKAction to authorizeAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:104
msgid "keyboard navigation in and out QML kcms"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:110
msgid "Do not crash when setting new line edit on an editable combo box"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:111
msgid "KComboBox: Return early when setting editable to previous value"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:112
msgid "KComboBox: Reuse the existing completion object on new line edit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:118
msgid "Don't look for /etc/kderc every single time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:124
msgid "Update default colors to match new colors in D7424"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:130
msgid "Input validation of SubJobs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:131
msgid "Warn about errors when parsing json files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:132
msgid "Install mimetype definitions for kcfg/kcfgc/ui.rc/knotify &amp; qrc files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:133
msgid "Add a new function to measure the length by text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:134
msgid "Fix KAutoSave bug on file with white space in it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:140
msgid "Make it compile on windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:141
msgid "make it compile with QT_NO_CAST_FROM_ASCII/QT_NO_CAST_FROM_BYTEARRAY"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:142
msgid "[MouseEventListener] Allow accepting mouse event"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:143
msgid "use a single QML engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:149
msgid "kded: remove dbus calls to ksplash"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:155
msgid "Update Brasilian Portuguese translation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:156
#: announcements/kde-frameworks-5.41.0.php:157
msgid "Update Russian translation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:158
msgid "Update customization/xsl/ru.xml (nav-home was missing)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:164
msgid "KEmoticons: port plugins to JSON and add support for loading with KPluginMetaData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:165
msgid "Do not leak symbols of pimpl classes, protect with Q_DECL_HIDDEN"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:171
msgid "The usermetadatawritertest requires Taglib"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:172
msgid "If the property value is null, remove the user.xdg.tag attribute (bug 376117)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:173
msgid "Open files in TagLib extractor readonly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:179
msgid "Group some blocking dbus calls"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:180
msgid "kglobalacceld: Avoid loading an icon loader for no reason"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:181
msgid "generate correct shortcut strings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:187
msgid "KUriFilter: filter out duplicate plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:188
msgid "KUriFilter: simplify data structures, fix memory leak"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:189
msgid "[CopyJob] Don't start all over after having removed a file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:190
msgid "Fix creating a directory via KNewFileMenu+KIO::mkpath on Qt 5.9.3+ (bug 387073)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:191
msgid "Created an auxiliary function 'KFilePlacesModel::movePlace'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:192
msgid "Expose KFilePlacesModel 'iconName' role"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:193
msgid "KFilePlacesModel: Avoid unnecessary 'dataChanged' signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:194
msgid "Return a valid bookmark object for any entry in KFilePlacesModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:195
msgid "Create a 'KFilePlacesModel::refresh' function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:196
msgid "Create 'KFilePlacesModel::convertedUrl' static function"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:197
msgid "KFilePlaces: Created 'remote' section"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:198
msgid "KFilePlaces: Add a section for removable devices"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:199
msgid "Added baloo urls into places model"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:200
msgid "Fix KIO::mkpath with qtbase 5.10 beta 4"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:201
msgid "[KDirModel] Emit change for HasJobRole when jobs change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:202
msgid "Change label \"Advanced options\" &gt; \"Terminal options\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:208
msgid "Offset the scrollbar by the header size (bug 387098)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:209
msgid "bottom margin based on actionbutton presence"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:210
msgid "don't assume applicationWidnow() to be available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:211
msgid "Don't notify about value changes if we are still in the constructor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:212
msgid "Replace the library name in the source"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:213
msgid "support colors in more places"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:214
msgid "color icons in toolbars if needed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:215
msgid "consider icon colors in the main action buttons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:216
msgid "start for an \"icon\" grouped property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:222
msgid "Revert \"Detach before setting the d pointer\" (bug 386156)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:223
msgid "do not install development tool to aggregate desktop files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:224
msgid "[knewstuff] Do not leak ImageLoader on error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:230
msgid "Properly do strings in the kpackage framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:231
msgid "Don't try to generate metadata.json if there's no metadata.desktop"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:232
msgid "fix kpluginindex caching"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:233
msgid "Improve error output"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:239
msgid "Fix VI-Mode buffer commands"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:240
msgid "prevent accidental zooming"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:246
msgid "Port from QDom to QXmlStreamReader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:247
msgid "Use https for downloading currency exchange rates"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:253
msgid "Expose wl_display_set_global_filter as a virtual method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:254
msgid "Fix kwayland-testXdgShellV6"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:255
msgid "Add support for zwp_idle_inhibit_manager_v1 (bug 385956)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:256
msgid "[server] Support inhibiting the IdleInterface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:262
msgid "Avoid inconsistent passworddialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:263
msgid "Set enable_blur_behind hint on demand"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:264
msgid "KPageListView: Update width on font change"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:270
msgid "[KWindowEffectsPrivateX11] Add reserve() call"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:276
msgid "Fix translation of toolbar name when it has i18n context"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:282
msgid "The #warning directive is not universal and in particular is NOT supported by MSVC"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:283
msgid "[IconItem] Use ItemSceneHasChanged rather than connect on windowChanged"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:284
msgid "[Icon Item] Explicitly emit overlaysChanged in the setter rather than connecting to it"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:285
msgid "[Dialog] Use KWindowSystem::isPlatformX11()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:286
msgid "Reduce the amount of spurious property changes on ColorScope"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:287
msgid "[Icon Item] Emit validChanged only if it actually changed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:288
msgid "Suppress unnecessary scroll indicators if the flickable is a ListView with known orientation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:289
msgid "[AppletInterface] Emit change signals for configurationRequired and -Reason"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:290
msgid "Use setSize() instead of setProperty width and height"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:291
msgid "Fixed an issue where PlasmaComponents Menu would appear with broken corners (bug 381799)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:292
msgid "Fixed an issue where context menus would appear with broken corners (bug 381799)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:293
msgid "API docs: add deprecation notice found in the git log"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:294
msgid "Synchronize the component with the one in Kirigami"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:295
msgid "Search all KF5 components as such instead as separate frameworks"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:296
msgid "Reduce spurious signal emissions (bug 382233)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:297
msgid "Add signals indicating if a screen was added or removed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:298
msgid "install Switch stuff"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:299
msgid "Don't rely in includes of includes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:300
msgid "Optimize SortFilterModel role names"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:301
msgid "Remove DataModel::roleNameToId"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:307
msgid "Add Aztec code generator"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:313
msgid "determine QQC2 version at build time (bug 386289)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:314
msgid "by default, keep the background invisible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:315
msgid "add a background in ScrollView"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:321
msgid "Faster UDevManager::devicesFromQuery"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:327
msgid "Make it possible to crosscompile sonnet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:333
msgid "Add PKGUILD to bash syntax"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:334
msgid "JavaScript: include standard mime types"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:335
msgid "debchangelog: add Bionic Beaver"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:336
msgid "Update SQL (Oracle) syntax file (bug 386221)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:337
msgid "SQL: move detecting comments before operators"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.41.0.php:338
msgid "crk.xml: added &lt;?xml&gt; header line"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:4
msgid "Release of KDE Frameworks 5.42.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:16
msgid ""
" \n"
"January 13, 2018. KDE today announces the release\n"
"of KDE Frameworks 5.42.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:41
msgid "Fixes for cmake 3.10+ AUTOMOC warnings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:42
msgid "More widespread use of categorized logging, to turn off debug output by default (use kdebugsetting to re-enable it)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:48
msgid "balooctl status: process all arguments"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:49
msgid "Fix multiple word tag queries"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:50
msgid "Simplify rename conditions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:51
msgid "Fix incorrect UDSEntry display name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:57
msgid "Fix icon name \"weather-none\" -&gt; \"weather-none-available\" (bug 379875)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:58
msgid "remove Vivaldi icon cause the origin app icon fits perfect with breeze (bug 383517)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:59
msgid "add Some missing mimes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:60
msgid "Breeze-icons add document-send icon (bug 388048)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:61
msgid "update album artist icon"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:62
msgid "add labplot-editlayout support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:63
msgid "remove duplicates and update dark theme"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:64
msgid "add gnumeric breeze-icon support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:70
msgid "Use readelf to find project dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:71
msgid "Introduce INSTALL_PREFIX_SCRIPT to easily set up prefixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:77
msgid "avoid crash in kactivities if no dbus connection is available"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:83
msgid "API docs: explain how to use KWindowConfig from a dialog constructor"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:84
msgid "Deprecate KDesktopFile::sortOrder()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:85
msgid "Fix the result of KDesktopFile::sortOrder()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:91
msgid "Extend CMAKE_AUTOMOC_MACRO_NAMES also for own build"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:92
msgid "Match license keys by spdx"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:98
msgid "Fix absolute path detection for cmake 3.5 on Linux"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:99
msgid "Add cmake function 'kdbusaddons_generate_dbus_service_file'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:105
msgid "Qml controls for kcm creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:111
msgid "Use cmake function 'kdbusaddons_generate_dbus_service_file' from kdbusaddons to generate dbus service file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:112
msgid "Add used property to service file definition"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:118
msgid "Inform the user if the module can not be registered with org.kde.kded5 and exit with error"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:119
msgid "Mingw32 compile fix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:125
msgid "add entity for Michael Pyne"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:126
msgid "add entities for Martin Koller to contributor.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:127
msgid "fix debian entry"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:128
msgid "add entity Debian to general.entities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:129
msgid "add entity kbackup, it was imported"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:130
msgid "add entity latex, we have already 7 entities in different index.docbooks in kf5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:136
msgid "Add scheme (file://). It's necessary when we use it in qml and we added all"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:142
msgid "remove extractor based on QtMultimedia"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:143
msgid "Check for Linux instead of TagLib and avoid building the usermetadatawritertest on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:144
msgid "Restore # 6c9111a9 until a successful build and link without TagLib is possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:145
msgid "Remove the taglib dependency, caused by a left-over include"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:151
msgid "Finally allow to disable debug output by using categorized logging"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:157
msgid "do not treat ts-pmap-compile as executable"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:158
msgid "Fix a memory leak in KuitStaticData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:159
msgid "KI18n: fix a number of double lookups"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:165
msgid "Remove impossible to reach code"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:171
msgid "Properly parse dates in cookies when running in non-English locale (bug 387254)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:172
msgid "[kcoredirlister] Fix sub path creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:173
msgid "Reflect trash state in iconNameForUrl"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:174
msgid "Forward QComboBox signals instead of QComboBox lineedit signals"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:175
msgid "Fixed webshortcuts showing their file path instead of their human-readable name"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:176
msgid "TransferJob: fix for when the readChannelFinished has already been emitted before start is called() (bug 386246)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:177
msgid "Fix crash, presumably since Qt 5.10? (bug 386364)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:178
msgid "KUriFilter: don't return an error on non-existing files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:179
msgid "Fix creation of paths"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:180
msgid "Implement a kfile dialog where we can add custom widget"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:181
msgid "Verify that qWaitForWindowActive doesn't fail"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:182
msgid "KUriFilter: port away from KServiceTypeTrader"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:183
msgid "API dox: use class names in titles of example screenshots"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:184
msgid "API dox: also deal with KIOWIDGETS export macros in QCH creation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:185
msgid "fix handling of KCookieAdvice::AcceptForSession (bug 386325)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:186
msgid "Created 'GroupHiddenRole' for KPlacesModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:187
msgid "forward socket error string to KTcpSocket"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:188
msgid "Refactor and remove duplicate code in kfileplacesview"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:189
msgid "Emit 'groupHiddenChanged' signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:190
msgid "Refactoring the hidding/showing animation use within KFilePlacesView"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:191
msgid "User can now hide an entire places group from KFilePlacesView (bug 300247)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:192
msgid "Hidding place groups implementation in KFilePlacesModel (bug 300247)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:193
msgid "[KOpenWithDialog] Remove redundant creation of KLineEdit"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:194
msgid "Add undo support to BatchRenameJob"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:195
msgid "Add BatchRenameJob to KIO"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:196
msgid "Fix doxygen code block not ending with endcode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:202
msgid "keep the flickable interactive"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:203
msgid "proper prefix for icons as well"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:204
msgid "fix form sizing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:205
msgid "read wheelScrollLines from kdeglobals if existing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:206
msgid "add a prefix for kirigami files to avoid conflicts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:207
msgid "some static linking fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:208
msgid "move plasma styles to plasma-framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:209
msgid "Use single quotes for matching characters + QLatin1Char"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:210
msgid "FormLayout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:216
msgid "Offer QWindow API for KJobWidgets:: decorators"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:222
msgid "Limit request cache size"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:223
msgid "Require the same internal version as you're building"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:224
msgid "Prevent global variables from been using after freeing"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:230
msgid "[KStatusNotifierItem] Don't \"restore\" widget position on its first show"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:231
msgid "Use positions of legacy systray icons for Minimize/Restore actions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:232
msgid "Handle positions of LMB clicks on legacy systray icons"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:233
msgid "do not make the context menu a Window"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:234
msgid "Add explanatory comment"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:235
msgid "Lazy-instanciate and lazy-load KNotification plugins"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:241
msgid "invalidate the runtime cache on install"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:242
msgid "experimental support for rcc files loading in kpackage"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:243
msgid "compile against Qt 5.7"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:244
msgid "Fix up package indexing and add runtime caching"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:245
msgid "new KPackage::fileUrl() method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:251
msgid "[RunnerManager] Don't mess with ThreadWeaver thread count"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:257
msgid "Fix wildcard matching for modelines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:258
msgid "Fix a regression caused by changing backspace key behavior"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:259
msgid "port to non-deprecated API like already used at other place (bug 386823)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:260
msgid "Add missing include for std::array"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:261
msgid "MessageInterface: Add CenterInView as additional position"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:262
msgid "QStringList initializer list cleanup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:268
msgid "Use correct service executable path for installing kwalletd dbus service on Win32"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:274
msgid "Fix naming inconsistency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:275
msgid "Create interface for passing server decoration palettes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:276
msgid "Explicitly include std::bind functions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:277
msgid "[server] Add a method IdleInterface::simulateUserActivity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:278
msgid "Fix regression caused by backward compatibility support in data source"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:279
msgid "Add support for version 3 of data device manager interface (bug 386993)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:280
msgid "Scope exported/imported objects to the test"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:281
msgid "Fix error in WaylandSurface::testDisconnect"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:282
msgid "Add explicit AppMenu protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:283
msgid "Fix exclude generated file from automoc feature"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:289
msgid "Fix crash in setMainWindow on wayland"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:295
msgid "API dox: make doxygen cover session related macros &amp; functions again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:296
msgid "Disconnect shortcutedit slot on widget destruction (bug 387307)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:302
msgid "802-11-x: support for PWD EAP method"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:308
msgid "[Air theme] Add task bar progress graphic (bug 368215)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:309
msgid "Templates: remove stray * from license headers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:310
msgid "make packageurlinterceptor as noop as possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:311
msgid "Revert \"Don't tear down renderer and other busy work when Svg::setImagePath is invoked with the same arg\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:312
msgid "move kirigami plasma styles here"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:313
msgid "disappearing scrollbars on mobile"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:314
msgid "reuse KPackage instance between PluginLoader and Applet"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:315
msgid "[AppletQuickItem] Only set QtQuick Controls 1 style once per engine"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:316
msgid "Don't set a window icon in Plasma::Dialog"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:317
msgid "[RTL] - align properly the selected text for RTL (bug 387415)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:318
#: announcements/kde-frameworks-5.42.0.php:321
msgid "Initialize scale factor to the last scale factor set on any instance"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:319
msgid "Revert \"Initialize scale factor to the last scale factor set on any instance\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:320
msgid "Don't update when the underlying FrameSvg is repaint-blocked"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:322
msgid "Move if check inside #ifdef"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:323
msgid "[FrameSvgItem] Don't create unnecessary nodes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:324
msgid "Don't tear down renderer and other busy work when Svg::setImagePath is invoked with the same arg"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:330
msgid "Also look for qrencode with debug suffix"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:336
msgid "simplify and don't try to block mouse events"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:337
msgid "if no wheel.pixelDelta, use global wheel scroll lines"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:338
msgid "desktop tabbars have different widths for each tab"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:339
msgid "ensure a non 0 size hint"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:345
msgid "Don't export internal helper executables"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:346
msgid "Sonnet: fix wrong language for suggestions in mixed-language texts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:347
msgid "Remove ancient and broken workaround"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:348
msgid "Don't cause circular linking on Windows"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:354
msgid "Highlighting indexer: Warn about context switch fallthroughContext=\"#stay\""
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:355
msgid "Highlighting indexer: Warn about empty attributes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:356
msgid "Highlighting indexer: Enable errors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:357
msgid "Highlighting indexer: report unused itemDatas and missing itemDatas"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:358
msgid "Prolog, RelaxNG, RMarkDown: Fix highlighting issues"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:359
msgid "Haml: Fix invalid and unused itemDatas"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:360
msgid "ObjectiveC++: Remove duplicate comment contexts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:361
msgid "Diff, ObjectiveC++: Cleanups and fix highlighting files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:362
msgid "XML (Debug): Fix incorrect DetectChar rule"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:363
msgid "Highlighting Indexer: Support cross-hl context checking"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:364
msgid "Revert: Add GNUMacros to gcc.xml again, used by isocpp.xml"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:365
msgid "email.xml: add *.email to the extensions"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:366
msgid "Highlighting Indexer: Check for infinite loops"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:367
msgid "Highlighting Indexer: Check for empty context names and regexps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:368
msgid "Fix referencing of non-existing keyword lists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:369
msgid "Fix simple cases of duplicate contexts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:370
msgid "Fix duplicate itemDatas"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:371
msgid "Fix DetectChar and Detect2Chars rules"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:372
msgid "Highlighting Indexer: Check keyword lists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:373
msgid "Highlighting Indexer: Warn about duplicate contexts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:374
msgid "Highlighting Indexer: Check for duplicate itemDatas"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:375
msgid "Highlighting indexer: Check DetectChar and Detect2Chars"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.42.0.php:376
msgid "Validate that for all attributes an itemData exists"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.5.0.php:4
msgid "Release of KDE Frameworks 5.5.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.5.0.php:16
msgid ""
" \n"
"December 11, 2014. KDE today announces the release\n"
"of KDE Frameworks 5.5.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.5.0.php:34
msgid ""
"\n"
"\n"
"<h3>Attica</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Use all of QT_PLUGIN_PATH paths rather than just QLibraryInfo path to look for plugins</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KActivities</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix plugin loading with KDE_INSTALL_USE_QT_SYS_PATHS ON</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCMUtils</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Restore KStandardGuiItems to get consistent icons and tooltips</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCodecs</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Introduce KEmailAddress class for email validation</li>"
"\n"
"<li>Use more robust implementation of MIME codecs taken from the KMime library</li>"
"\n"
"<li>Add KCodecs::encodeRFC2047String()</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCompletion</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix PageUp/Down actions in the completion popup box</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCoreAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add KTextToHTML class for plaintext->HTML conversion</li>"
"\n"
"<li>Add KPluginMetaData::metaDataFileName()</li>"
"\n"
"<li>Allow to read KPluginMetaData from .desktop files</li>"
"\n"
"<li>Kdelibs4Migration now gives priority to distro-provided KDE4_DEFAULT_HOME</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KDeclarative</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Use Qt's method of blocking for component completion rather than our own</li>"
"\n"
"<li>Make it possible to delay initialization of object incubated from QmlObject</li>"
"\n"
"<li>Add guard when trying to access root object before component is complete</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KEmoticons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add KEmoticonsIntegrationPlugin for KTextToHTML from KCoreAddons</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KHTML</h3>"
"\n"
"\n"
"<ul>\n"
"<li>A number of forward-ported fixes from kdelibs, no API changes.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KIO</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix Size columns being empty in the KFileWidget detailed views</li>"
"\n"
"<li>Do not drop ASN passed to KRun when executing desktop files</li>"
"\n"
"<li>Fix passing of DESKTOP_STARTUP_ID to child process in kioexec</li>"
"\n"
"<li>Fix compilation with Qt 5.2, which also fixes a race condition</li>"
"\n"
"<li>KFileItem: cleanup overlay icon usage </li>"
"\n"
"<li>Implement back/forward side mouse buttons to navigate in the history</li>"
"\n"
"<li>Allow user to cancel out of the certificate accept duration dialog box.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KJobWidgets</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix compilation with Qt 5.2.0</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNewStuff</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Also allow absolute filepaths for configfile parameter.</li>"
"\n"
"<li>Fix compilation on Windows</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNotifications</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Make KNotificationPlugin a public class</li>"
"\n"
"<li>KPassivePopup - Set default hide delay</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KRunner</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add a simple cli tool to run a query on all runners</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KService</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix KPluginTrader::query() for old JSON</li>"
"\n"
"<li>Deprecate kservice_desktop_to_json for kcoreaddons_desktop_to_json</li>"
"\n"
"<li>Implement KPluginTrader::query() using KPluginLoader::findPlugins()</li>"
"\n"
"<li>Fix KPluginInfo::entryPath() being empty when not loaded from .desktop</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KTextEditor</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix bug #340212: incorrect soft-tabs alignment after beginning-of-line</li>"
"\n"
"<li>Add libgit2 compile-time check for threads support</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWidgetsAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add class KSplitterCollapserButton, a button which appears on the side of</li>"
"\n"
" a splitter handle and allows easy collapsing of the widget on the opposite side\n"
"<li>Support monochrome icon themes (such as breeze)</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWindowSystem</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add KStartupInfo::createNewStartupIdForTimestamp</li>"
"\n"
"<li>Add support for more multimedia keys</li>"
"\n"
"<li>Add support for initial mapping state of WM_HINTS</li>"
"\n"
"<li>Drop incorrect warnings when using KXMessages without QX11Info</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Plasma Framework</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix compilation with Qt 5.2.0</li>"
"\n"
"<li>Fix the platformstatus kded module</li>"
"\n"
"<li>Migrate BusyIndicator, ProgressBar to QtQuick.Controls</li>"
"\n"
"<li>Add thumbnailAvailable property to PlasmaCore.WindowThumbnail</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Solid</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix warning: No such signal org::freedesktop::UPower::Device...</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Extra cmake modules</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Set CMAKE_INSTALL_SYSCONFDIR to /etc when CMAKE_INSTALL_PREFIX is /usr (instead of /usr/etc)</li>"
"\n"
"<li>Enable -D_USE_MATH_DEFINES on Windows</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Frameworkintegration</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Implement standardButtonText().</li>"
"\n"
"<li>Fix restoring the view mode and sizes in the file dialog</li>"
"\n"
"</ul>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.5.0.php:219
msgid "The complete source code for KDE Frameworks %1 may be <a href='http://download.kde.org/Attic/frameworks/%1/'>freely downloaded</a>. Instructions on compiling and installing KDE Frameworks %1 are available from the <a href='/info/kde-frameworks-%2.php'>KDE Frameworks %1 Info Page</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.6.0.php:4
msgid "Release of KDE Frameworks 5.6.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.6.0.php:16
msgid ""
" \n"
"January 08, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.6.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.6.0.php:38
msgid ""
"\n"
"<p>Two new frameworks in this release: KPackage and NetworkManagerQt</p>"
"\n"
"\n"
"<h3>KActivities</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Introducing the ActivityInfo QML object</li>"
"\n"
"<li>Linking now supports special values alongside activity ids. Supported values:\n"
"<em>* - :global - links to all activities\n"
"*</em> - :current - links to the current activity</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCoreAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>KDirWatch can now watch /dev/shm as well (bug 314982)</li>"
"\n"
"<li>KDELibs4Migration now always returns an absolute path</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KCrash</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix build on FreeBSD</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Kdelibs4Support</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add Lithuania to the list of Euro countries</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KdeSU</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix build on OSX and on FreeBSD</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KHtml</h3>"
"\n"
"\n"
"<ul>\n"
"<li>6 bug fixes forward-ported from kdelibs4.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KIO</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add support for .hidden files, for users to hide some files from views. (feature 246260)</li>"
"\n"
"<li>New method KRun::runService, like KRun::run but returns the PID of the newly started process.</li>"
"\n"
"<li>kioexec: fixed many porting bugs, to make it work again</li>"
"\n"
"<li>KRun::run: fixed porting bug, to make it work again in the case where KProcess is used directly</li>"
"\n"
"<li>KRun: make klauncher runtime dependency optional</li>"
"\n"
"<li>Fix compilation on MSVC</li>"
"\n"
"<li>Performance: decrease memory consumption of UDSEntry</li>"
"\n"
"<li>Actions in popupmenus: in case of multiple mimetypes selected, services that support all mimetypes\n"
"are now added to the menu.</li>"
"\n"
"<li>New job: KIO::DropJob <em>KIO::drop(QDropEvent</em> ev, QUrl destUrl). Replaces KonqOperations::doDrop.</li>"
"\n"
"<li>Restart directory watcher after a failed delete operation</li>"
"\n"
"<li>Fix false warning about X-KDE-Protocols unused in desktop files without that field.</li>"
"\n"
"<li>Merge various settings modules (KCMs) related to kio, into the kio framework.</li>"
"\n"
"<li>When copying/moving out the trash, make the files writable.</li>"
"\n"
"<li>KIO::file_move now does the chmod on the destination file before emitting result.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KNotifications</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Remove NotifyBySound. NotifyByAudio implements the \"Sound\" notification already</li>"
"\n"
"<li>Fix crash accessing dangling pointer in NotifyByPopup</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KRunner</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Do not detect anything with a '.' as a NetworkLocation (porting bug, bug 340140).\n"
"One can also uses a decimal point in a calculator.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KService</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix build on MSVC.</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KTextEditor</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix build on MSVC.</li>"
"\n"
"<li>vimode bugfixes</li>"
"\n"
"<li>add syntax file for Oracle PL/SQL</li>"
"\n"
"<li>ppd highlighting: better support for multiline values</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWidgetsAddons</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add runtime style element extension convenience functions for widgets: KStyleExtensions</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>KWindowSystem</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Add OnScreenDisplay window type</li>"
"\n"
"<li>Fix build on FreeBSD</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Plasma-framework</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Let month menu navigate in current year (bug 342327)</li>"
"\n"
"<li>Expose new OnScreenDisplay window type in Dialog</li>"
"\n"
"<li>Migrate Plasma::Package to KPackage</li>"
"\n"
"<li>Fix labels not picking up changes to font settings at runtime</li>"
"\n"
"<li>Fix text not properly updating its color when switching themes (especially dark&lt;-->light)</li>"
"\n"
"<li>Fix placeholder text in textfields being too strong when using a light theme</li>"
"\n"
"<li>Set visibility on mainItem to match Dialog</li>"
"\n"
"<li>Load IconItem immediately upon componentComplete()</li>"
"\n"
"<li>Use the same text colour for comboboxes as buttons</li>"
"\n"
"<li>Performance improvements (less config-file reparsing, use shared config...)</li>"
"\n"
"<li>roundToIconSize(0) now returns 0</li>"
"\n"
"<li>Give undo notifications a title</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Solid</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Enable fstab and upower backends on FreeBSD</li>"
"\n"
"<li>Power: Add aboutToSuspend signal</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Buildsystem changes</h3>"
"\n"
"\n"
"<ul>\n"
"<li>"
"<p>ECM's KDEInstallDirs now supports KDE_INSTALL_* variables, which should\n"
"be used in preference to the CMAKE_INSTALL_* variables or the older\n"
"KDELibs4-compatible variables. The older forms of the variables are still\n"
"supported (and kept in sync) unless KDE_INSTALL_DIRS_NO_DEPRECATED\n"
"or KDE_INSTALL_DIRS_NO_CMAKE_VARIABLES are set to TRUE. See the\n"
"documentation for more details.</p>"
"</li>"
"\n"
"<li>"
"<p>Add COMPATIBILITY argument to ecm_setup_version().\n"
"Lots of libraries will want to use SameMajorVersion to make sure\n"
"searching for version 1 of a library doesn't give you version 2, for\n"
"example.</p>"
"</li>"
"\n"
"<li>"
"<p>Fix ECMQueryQmake when Qt5Core is missing.</p>"
"</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Additional buildsystem changes in Extra-Cmake-Modules 1.6.1</h3>"
"\n"
"\n"
"<ul>\n"
"<li>"
"<p>Fix building projects that use both GNUInstallDirs and KDEInstallDirs in\n"
"different subdirectories by not unsetting cache variables in KDEInstallDirs.</p>"
"</li>"
"\n"
"<li>"
"<p>Fix KDE_INSTALL_TARGETS_DEFAULT_ARGS value on OSX.</p>"
"</li>"
"\n"
"</ul>"
"\n"
"\n"
"<h3>Frameworkintegration</h3>"
"\n"
"\n"
"<ul>\n"
"<li>Fix handling of palette change events (bug 336813)</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:4
msgid "Release of KDE Frameworks 5.7.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:16
msgid ""
" \n"
"February 14, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.7.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:38
msgid ""
"\n"
"<h3>General</h3>"
"\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:43
msgid "A number of fixes for compiling with the upcoming Qt 5.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:49
msgid "Fixed starting and stopping activities"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:50
msgid "Fixed activity preview showing wrong wallpaper occasionally"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:56
msgid "Create temporary files in the temp dir rather than in the current directory"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:62
msgid "Fixed generation of KAuth DBus helper service files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:68
msgid "Fixed assert when dbus paths contain a '.'"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:74
msgid "Added support for CP949 to KCharsets"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:80
msgid "kconf_update no longer processes *.upd file from KDE SC 4. Add \"Version=5\" to top of the upd file for updates that should be applied to Qt5/KF5 applications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:81
msgid "Fixed KCoreConfigSkeleton when toggling a value with saves in between"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:87
msgid "KRecentFilesAction: fixed menu entry order (so it matches the kdelibs4 order)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:93
msgid "KAboutData: Call addHelpOption and addVersionOption automatically, for convenience and consistency"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:94
msgid "KAboutData: Bring back \"Please use http://bugs.kde.org to report bugs.\" when no other email/url is set"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:95
msgid "KAutoSaveFile: allStaleFiles() now works as expected for local files, fixed staleFiles() too"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:96
msgid "KRandomSequence now uses int's internally and exposes int-api for 64-bit unambiguity"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:97
msgid "Mimetype definitions: *.qmltypes and *.qmlproject files also have the text/x-qml mime type"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:98
msgid "KShell: make quoteArgs quote urls with QChar::isSpace(), unusual space characters were not handled properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:99
msgid "KSharedDataCache: fix creation of directory containing the cache (porting bug)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:105
msgid "Added helper method KDEDModule::moduleForMessage for writing more kded-like daemons, such as kiod"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:111
msgid "Added a plotter component"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:112
msgid "Added overload method for Formats::formatDuration taking int"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:113
msgid "New properties paintedWidth and paintedHeight added to QPixmapItem and QImageItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:114
msgid "Fixed painting QImageItem and QPixmapItem"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:117
msgid "Kded"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:120
msgid "Add support for loading kded modules with JSON metadata"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:126
msgid "Now includes the runtime component, making this a tier3 framework"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:127
msgid "Made the Windows backend work again"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:128
msgid "Re-enabled the Mac backend"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:129
msgid "Fixed crash in KGlobalAccel X11 runtime shutdown"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:135
msgid "Mark results as required to warn when API is misused"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:136
msgid "Added BUILD_WITH_QTSCRIPT buildsystem option to allow a reduced feature-set on embedded systems"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:142
msgid "OSX: load the correct shared libraries at runtime"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:143
msgid "Mingw compilation fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:149
msgid "Fixed crash in jobs when linking to KIOWidgets but only using a QCoreApplication"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:150
msgid "Fixed editing web shortcuts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:151
msgid "Added option KIOCORE_ONLY, to compile only KIOCore and its helper programs, but not KIOWidgets or KIOFileWidgets, thus reducing greatly the necessary dependencies"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:152
msgid "Added class KFileCopyToMenu, which adds Copy To / Move To\" to popupmenus"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:153
msgid "SSL-enabled protocols: added support for TLSv1.1 and TLSv1.2 protocols, remove SSLv3"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:154
msgid "Fixed negotiatedSslVersion and negotiatedSslVersionName to return the actual negotiated protocol"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:155
msgid "Apply the entered URL to the view when clicking the button that switches the URL navigator back to breadcrumb mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:156
msgid "Fixed two progress bars/dialogs appearing for copy/move jobs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:157
msgid "KIO now uses its own daemon, kiod, for out-of-process services previously running in kded, in order to reduce dependencies; currently only replaces kssld"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:158
msgid "Fixed \"Could not write to &lt;path&gt;\" error when kioexec is triggered"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:159
msgid "Fixed \"QFileInfo::absolutePath: Constructed with empty filename\" warnings when using KFilePlacesModel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:165
msgid "Fixed KRecursiveFilterProxyModel for Qt 5.5.0+, due to QSortFilterProxyModel now using the roles parameter to the dataChanged signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:171
msgid "Always reload xml data from remote urls"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:177
msgid "Documentation: mentioned the file name requirements of .notifyrc files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:178
msgid "Fixed dangling pointer to KNotification"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:179
msgid "Fixed leak of knotifyconfig"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:180
msgid "Install missing knotifyconfig header"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:186
msgid "Renamed kpackagetool man to kpackagetool5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:187
msgid "Fixed installation on case-insensitive filesystems"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:193
msgid "Fixed Kross::MetaFunction so it works with Qt5's metaobject system"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:199
msgid "Include unknown properties when converting KPluginInfo from KService"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:200
msgid "KPluginInfo: fixed properties not being copied from KService::Ptr"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:201
msgid "OS X: performance fix for kbuildsycoca4 (skip app bundles)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:207
msgid "Fixed high-precision touchpad scrolling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:208
msgid "Do not emit documentUrlChanged during reload"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:209
msgid "Do not break cursor position on document reload in lines with tabs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:210
msgid "Do not re(un)fold the first line if it was manually (un)folded"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:211
msgid "vimode: command history through arrow keys"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:212
msgid "Do not try to create a digest when we get a KDirWatch::deleted() signal"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:213
msgid "Performance: remove global initializations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:219
msgid "Fixed infinite recursion in Unit::setUnitMultiplier"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:225
msgid "Automatically detect and convert old ECB wallets to CBC"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:226
msgid "Fixed the CBC encryption algorithm"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:227
msgid "Ensured wallet list gets updated when a wallet file gets removed from disk"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:228
msgid "Remove stray &lt;/p&gt; in user-visible text"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:234
msgid "Use kstyleextensions to specify custom control element for rendering kcapacity bar when supported, this allow the widget to be styled properly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:235
msgid "Provide an accessible name for KLed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:241
msgid "Fixed NETRootInfo::setShowingDesktop(bool) not working on Openbox"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:242
msgid "Added convenience method KWindowSystem::setShowingDesktop(bool)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:243
msgid "Fixes in icon format handling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:244
msgid "Added method NETWinInfo::icccmIconPixmap provides icon pixmap from WM_HINTS property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:245
msgid "Added overload to KWindowSystem::icon which reduces roundtrips to X-Server"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:246
msgid "Added support for _NET_WM_OPAQUE_REGION"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:249
msgid "NetworkmanagerQt"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:252
msgid "Do not print a message about unhandled \"AccessPoints\" property"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:253
msgid "Added support for NetworkManager 1.0.0 (not required)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:254
msgid "Fixed VpnSetting secrets handling"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:255
msgid "Added class GenericSetting for connections not managed by NetworkManager"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:256
msgid "Added property AutoconnectPriority to ConnectionSettings"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:262
msgid "Fixed errorneously opening a broken context menu when middle clicking Plasma popup"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:263
msgid "Trigger button switch on mouse wheel"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:264
msgid "Never resize a dialog bigger than the screen"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:265
msgid "Undelete panels when applet gets undeleted"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:266
msgid "Fixed keyboard shortcuts"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:267
msgid "Restore hint-apply-color-scheme support"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:268
msgid "Reload the configuration when plasmarc changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:269
msgid "..."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:275
msgid "Added energyFull and energyFullDesign to Battery"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:278
#: announcements/kde-frameworks-5.8.0.php:173
msgid "Buildsystem changes (extra-cmake-modules)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:281
msgid "New ECMUninstallTarget module to create an uninstall target"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:282
msgid "Make KDECMakeSettings import ECMUninstallTarget by default"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:283
msgid "KDEInstallDirs: warn about mixing relative and absolute installation paths on the command line"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:284
msgid "Added ECMAddAppIcon module to add icons to executable targets on Windows and Mac OS X"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:285
msgid "Fixed CMP0053 warning with CMake 3.1"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:286
msgid "Do not unset cache variables in KDEInstallDirs"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:292
msgid "Fix updating of single click setting at runtime"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:293
msgid "Multiple fixes to the systemtray integration"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:294
msgid "Only install color scheme on toplevel widgets (to fix QQuickWidgets)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.7.0.php:295
msgid "Update XCursor settings on X11 platform"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:4
msgid "Release of KDE Frameworks 5.8.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:16
msgid ""
" \n"
"March 13, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.8.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:38
msgid "New frameworks:"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:40
msgid "KPeople, provides access to all contacts and the people who hold them"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:41
msgid "KXmlRpcClient, interaction with XMLRPC services"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:47
msgid "A number of build fixes for compiling with the upcoming Qt 5.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:53
msgid "Resources scoring service is now finalized"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:59
msgid "Stop failing on ZIP files with redundant data descriptors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:65
msgid "Restore KCModule::setAuthAction"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:71
msgid "KPluginMetadata: add support for Hidden key"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:77
msgid "Prefer exposing lists to QML with QJsonArray"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:78
msgid "Handle non default devicePixelRatios in images"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:79
msgid "Expose hasUrls in DeclarativeMimeData"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:80
msgid "Allow users to configure how many horizontal lines are drawn"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:86
msgid "Fix the build on MacOSX when using Homebrew"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:87
msgid "Better styling of media objects (images, ...) in documentation"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:88
msgid "Encode invalid chars in paths used in XML DTDs, avoiding errors"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:94
msgid "Activation timestamp set as dynamic property on triggered QAction."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:100
msgid "Fix QIcon::fromTheme(xxx, someFallback) would not return the fallback"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:106
msgid "Make PSD image reader endianess-agnostic."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:112
msgid "Deprecate UDSEntry::listFields and add the UDSEntry::fields method which returns a QVector without costly conversion."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:113
msgid "Sync bookmarkmanager only if change was by this process (bug 343735)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:114
msgid "Fix startup of kssld5 dbus service"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:115
msgid "Implement quota-used-bytes and quota-available-bytes from RFC 4331 to enable free space information in http ioslave."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:121
msgid "Delay the audio init until actually needed"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:122
msgid "Fix notification config not applying instantly"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:123
msgid "Fix audio notifications stopping after first file played"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:129
msgid "Add optional dependency on QtSpeech to reenable speaking notifications."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:135
msgid "KPluginInfo: support stringlists as properties"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:141
msgid "Add word count statistics in statusbar"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:142
msgid "vimode: fix crash when removing last line in Visual Line mode"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:148
msgid "Make KRatingWidget cope with devicePixelRatio"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:154
msgid "KSelectionWatcher and KSelectionOwner can be used without depending on QX11Info."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:155
msgid "KXMessages can be used without depending on QX11Info"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:161
msgid "Add new properties and methods from NetworkManager 1.0.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:167
msgid "Fix plasmapkg2 for translated systems"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:168
msgid "Improve tooltip layout"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:169
msgid ""
"Make it possible to let plasmoids to load scripts outside the plasma package\n"
"..."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.8.0.php:176
msgid "Extend ecm_generate_headers macro to also support CamelCase.h headers"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:4
msgid "Release of KDE Frameworks 5.9.0"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:16
msgid ""
" \n"
"April 10, 2015. KDE today announces the release\n"
"of KDE Frameworks 5.9.0.\n"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:38
msgid "New module: ModemManagerQt (Qt wrapper for ModemManager API)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:40
msgid "Note that Plasma-NM 5.2.x needs a patch in order to build and work with this version of ModemManagerQt. <a href='%1'>plasma-nm patch</a>."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:42
msgid "Alternatively, upgrade to Plasma-NM 5.3 Beta when upgrading to ModemManagerQt 5.9.0."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:47
msgid "Implemented forgetting a resource"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:48
msgid "Build fixes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:49
msgid "Added a plugin to register events for KRecentDocument notifications"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:55
msgid "Respect KZip::extraField setting also when writing central header entries"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:56
msgid "Remove two erroneous asserts, happening when disk is full, bug 343214"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:62
msgid "Fix build with Qt 5.5"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:68
msgid "Use new json-based plugin system. KCMs are searched under kcms/. For now a desktop file still needs to be installed under kservices5/ for compatibility"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:69
msgid "Load and wrap the QML-only version of kcms if possible"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:75
msgid "Fix assert when using KSharedConfig in a global object destructor."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:76
msgid "kconfig_compiler: add support for CategoryLoggingName in *.kcfgc files, to generate qCDebug(category) calls."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:82
msgid "preload the global Qt catalog when using i18n()"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:88
msgid "KIconDialog can now be shown using the regular QDialog show() and exec() methods"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:89
msgid "Fix KIconEngine::paint to handle different devicePixelRatios"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:95
msgid "Enable KPropertiesDialog to show free space information of remote file systems as well (e.g. smb)"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:96
msgid "Fix KUrlNavigator with high DPI pixmaps"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:97
msgid "Make KFileItemDelegate handle non default devicePixelRatio in animations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:103
msgid "KRecursiveFilterProxyModel: reworked to emit the right signals at the right time"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:104
msgid "KDescendantsProxyModel: Handle moves reported by the source model."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:105
msgid "KDescendantsProxyModel: Fix behavior when a selection is made while resetting."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:106
msgid "KDescendantsProxyModel: Allow constructing and using KSelectionProxyModel from QML."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:112
msgid "Propagate error code to JobView DBus interface"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:118
msgid "Added an event() version that takes no icon and will use a default one"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:119
msgid "Added an event() version that takes StandardEvent eventId and QString iconName"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:125
msgid "Allow extending action metadata by using predefined types"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:126
msgid "Fix model not being properly updated after removing a contact from Person"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:132
msgid "Expose to world whether KPty has been built with utempter library"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:138
msgid "Add kdesrc-buildrc highlighting file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:139
msgid "syntax: added support for binary integer literals in the PHP highlighting file"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:145
msgid "Make KMessageWidget animation smooth with high Device Pixel Ratio"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:151
msgid "Add a dummy Wayland implementation for KWindowSystemPrivate"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:152
msgid "KWindowSystem::icon with NETWinInfo not bound to platform X11."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:158
msgid "Preserve translation domain when merging .rc files"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:159
msgid "Fix runtime warning QWidget::setWindowModified: The window title does not contain a '[*]' placeholder"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:165
msgid "Install translations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:171
msgid "Fixed stray tooltips when temporary owner of tooltip disappeared or became empty"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:172
msgid "Fix TabBar not properly laid out initially, which could be observed in eg. Kickoff"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:173
msgid "PageStack transitions now use Animators for smoother animations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:174
msgid "TabGroup transitions now use Animators for smoother animations"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:175
msgid "Make Svg,FrameSvg work qith QT_DEVICE_PIXELRATIO"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:181
msgid "Refresh the battery properties upon resume"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:184
msgid "Buildsystem changes"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:187
msgid "Extra CMake Modules (ECM) is now versioned like KDE Frameworks, therefore it is now 5.9, while it was 1.8 previously."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:188
msgid ""
"Many frameworks have been fixed to be useable without searching for their private dependencies.\n"
"I.e. applications looking up a framework only need its public dependencies, not the private ones."
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:190
msgid "Allow configuration of SHARE_INSTALL_DIR, to handle multi-arch layouts better"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:196
msgid "Fix possible crash when destroying a QSystemTrayIcon (triggered by e.g. Trojita), bug 343976"
msgstr ""
#. +> trunk
#: announcements/kde-frameworks-5.9.0.php:197
msgid "Fix native modal file dialogs in QML, bug 334963"
msgstr ""
#. +> trunk
#: announcements/kde-purism-librem5.php:113
msgid "Plasma Mobile"
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:4
msgid "Kirigami 1.1"
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:30
msgid "Monday, 26 September 2016. "
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:31
msgid "After weeks of development and two small bugfix releases, we are happy to announce the first Kirigami minor release, version 1.1."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:35
msgid "The Menu class features some changes and fixes which give greater control over the action triggered by submenus and leaf nodes in the menu tree. Submenus now know which entry is their parent, and allow the submenu's view to be reset when the application needs it to."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:39
msgid "The OverlaySheet now allows to embed ListView and GridView instances in it as well."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:43
msgid "The Drawer width now is standardized so all applications look coherent from one another and the title now elides if it doesn't fit. We also introduced the GlobalDrawer.bannerClicked signal to let applications react to banner interaction."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:46
msgid "SwipeListItem has been polished to make sure its contents can fit to the space they have and we introduced the Separator component."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:50
msgid "A nice fix for desktop Kirigami applications: The application window now has a default shortcut to close the application, depending on the system preferences, commonly Ctrl+Q."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:54
msgid "Naturally this release also contains smaller fixes and general polishing."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:58
msgid "As announced <a href=\"https://www.kde.org/announcements/plasma-5.7.95.php\">recently</a>, Plasma 5.8 will ship a revamped version of Discover based on Kirigami. As such we expect that all major distributions will ship Kirigami packages by then if they are not already doing so."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:61
msgid "Source Download"
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:63
msgid "The source code for Kirigami releases is available for download from <a href='http://download.kde.org/stable/kirigami/'>download.kde.org</a>."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:65
msgid "More information is on the <a href='https://techbase.kde.org/Kirigami'>Kirigami wiki page</a>."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:67
msgid ""
"GPG signatures are available alongside the source code for\n"
"verification. They are signed by release manager <a\n"
"href='https://sks-keyservers.net/pks/lookup?op=vindex&search=0xeaaf29b42a678c20'>Marco Martin with 0xeaaf29b42a678c20</a>."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:71 announcements/plasma-5.0.1.php:82
#: announcements/plasma-5.0.2.php:82 announcements/plasma-5.0.95.php:122
#: announcements/plasma-5.1.1.php:102 announcements/plasma-5.1.2.php:85
#: announcements/plasma-5.1.95.php:149 announcements/plasma-5.1/index.php:148
#: announcements/plasma-5.10.0.php:293 announcements/plasma-5.10.1.php:169
#: announcements/plasma-5.10.2.php:169 announcements/plasma-5.10.3.php:177
#: announcements/plasma-5.10.4.php:170 announcements/plasma-5.10.5.php:166
#: announcements/plasma-5.10.95.php:256 announcements/plasma-5.11.0.php:262
#: announcements/plasma-5.11.1.php:168 announcements/plasma-5.11.2.php:169
#: announcements/plasma-5.11.3.php:168 announcements/plasma-5.11.4.php:169
#: announcements/plasma-5.11.5.php:167 announcements/plasma-5.11.95.php:430
-#: announcements/plasma-5.2.0.php:173 announcements/plasma-5.2.1.php:97
-#: announcements/plasma-5.2.2.php:95 announcements/plasma-5.2.95.php:221
-#: announcements/plasma-5.3.0.php:245 announcements/plasma-5.3.1.php:99
-#: announcements/plasma-5.3.2.php:98 announcements/plasma-5.3.95.php:219
-#: announcements/plasma-5.4.0.php:239 announcements/plasma-5.4.1.php:100
-#: announcements/plasma-5.4.2.php:99 announcements/plasma-5.4.3.php:100
-#: announcements/plasma-5.4.95.php:207 announcements/plasma-5.5.0.php:228
-#: announcements/plasma-5.5.1.php:103 announcements/plasma-5.5.2.php:103
-#: announcements/plasma-5.5.3.php:99 announcements/plasma-5.5.4.php:96
-#: announcements/plasma-5.5.5.php:99 announcements/plasma-5.5.95.php:225
-#: announcements/plasma-5.6.0.php:251 announcements/plasma-5.6.1.php:105
-#: announcements/plasma-5.6.2.php:105 announcements/plasma-5.6.3.php:105
-#: announcements/plasma-5.6.4.php:105 announcements/plasma-5.6.5.php:104
-#: announcements/plasma-5.6.95.php:168 announcements/plasma-5.7.0.php:163
-#: announcements/plasma-5.7.1.php:106 announcements/plasma-5.7.2.php:104
-#: announcements/plasma-5.7.3.php:105 announcements/plasma-5.7.4.php:105
-#: announcements/plasma-5.7.5.php:105 announcements/plasma-5.7.95.php:237
-#: announcements/plasma-5.8.0.php:235 announcements/plasma-5.8.1.php:106
-#: announcements/plasma-5.8.2.php:104 announcements/plasma-5.8.3.php:105
-#: announcements/plasma-5.8.4.php:109 announcements/plasma-5.8.5.php:105
-#: announcements/plasma-5.8.6.php:158 announcements/plasma-5.8.7.php:160
-#: announcements/plasma-5.8.8.php:169 announcements/plasma-5.8.95.php:214
-#: announcements/plasma-5.9.0.php:210 announcements/plasma-5.9.1.php:106
-#: announcements/plasma-5.9.2.php:162 announcements/plasma-5.9.3.php:158
-#: announcements/plasma-5.9.4.php:159 announcements/plasma-5.9.5.php:161
-#: announcements/plasma-5.9.95.php:294
+#: announcements/plasma-5.12.0.php:164 announcements/plasma-5.2.0.php:173
+#: announcements/plasma-5.2.1.php:97 announcements/plasma-5.2.2.php:95
+#: announcements/plasma-5.2.95.php:221 announcements/plasma-5.3.0.php:245
+#: announcements/plasma-5.3.1.php:99 announcements/plasma-5.3.2.php:98
+#: announcements/plasma-5.3.95.php:219 announcements/plasma-5.4.0.php:239
+#: announcements/plasma-5.4.1.php:100 announcements/plasma-5.4.2.php:99
+#: announcements/plasma-5.4.3.php:100 announcements/plasma-5.4.95.php:207
+#: announcements/plasma-5.5.0.php:228 announcements/plasma-5.5.1.php:103
+#: announcements/plasma-5.5.2.php:103 announcements/plasma-5.5.3.php:99
+#: announcements/plasma-5.5.4.php:96 announcements/plasma-5.5.5.php:99
+#: announcements/plasma-5.5.95.php:225 announcements/plasma-5.6.0.php:251
+#: announcements/plasma-5.6.1.php:105 announcements/plasma-5.6.2.php:105
+#: announcements/plasma-5.6.3.php:105 announcements/plasma-5.6.4.php:105
+#: announcements/plasma-5.6.5.php:104 announcements/plasma-5.6.95.php:168
+#: announcements/plasma-5.7.0.php:163 announcements/plasma-5.7.1.php:106
+#: announcements/plasma-5.7.2.php:104 announcements/plasma-5.7.3.php:105
+#: announcements/plasma-5.7.4.php:105 announcements/plasma-5.7.5.php:105
+#: announcements/plasma-5.7.95.php:237 announcements/plasma-5.8.0.php:235
+#: announcements/plasma-5.8.1.php:106 announcements/plasma-5.8.2.php:104
+#: announcements/plasma-5.8.3.php:105 announcements/plasma-5.8.4.php:109
+#: announcements/plasma-5.8.5.php:105 announcements/plasma-5.8.6.php:158
+#: announcements/plasma-5.8.7.php:160 announcements/plasma-5.8.8.php:169
+#: announcements/plasma-5.8.95.php:214 announcements/plasma-5.9.0.php:210
+#: announcements/plasma-5.9.1.php:106 announcements/plasma-5.9.2.php:162
+#: announcements/plasma-5.9.3.php:158 announcements/plasma-5.9.4.php:159
+#: announcements/plasma-5.9.5.php:161 announcements/plasma-5.9.95.php:294
msgid "Feedback"
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:73 announcements/plasma-5.0.95.php:124
#: announcements/plasma-5.1/index.php:150 announcements/plasma-5.2.0.php:175
#: announcements/plasma-5.2.1.php:99 announcements/plasma-5.2.2.php:97
#: announcements/plasma-5.2.95.php:223 announcements/plasma-5.3.0.php:247
#: announcements/plasma-5.3.1.php:101 announcements/plasma-5.3.2.php:100
#: announcements/plasma-5.3.95.php:221 announcements/plasma-5.4.0.php:241
#: announcements/plasma-5.4.1.php:102 announcements/plasma-5.4.2.php:101
#: announcements/plasma-5.4.3.php:102 announcements/plasma-5.4.95.php:209
#: announcements/plasma-5.5.0.php:230 announcements/plasma-5.5.1.php:105
#: announcements/plasma-5.5.2.php:105 announcements/plasma-5.5.3.php:101
#: announcements/plasma-5.5.4.php:98 announcements/plasma-5.5.5.php:101
#: announcements/plasma-5.5.95.php:227 announcements/plasma-5.6.0.php:253
#: announcements/plasma-5.6.1.php:107 announcements/plasma-5.6.2.php:107
#: announcements/plasma-5.6.3.php:107 announcements/plasma-5.6.4.php:107
#: announcements/plasma-5.6.5.php:106 announcements/plasma-5.6.95.php:170
#: announcements/plasma-5.7.0.php:165 announcements/plasma-5.7.1.php:108
#: announcements/plasma-5.7.2.php:106 announcements/plasma-5.7.3.php:107
#: announcements/plasma-5.7.4.php:107 announcements/plasma-5.7.5.php:107
#: announcements/plasma-5.7.95.php:239 announcements/plasma-5.8.0.php:237
#: announcements/plasma-5.8.1.php:108 announcements/plasma-5.8.2.php:106
#: announcements/plasma-5.8.3.php:107 announcements/plasma-5.8.4.php:111
#: announcements/plasma-5.8.5.php:107 announcements/plasma-5.8.95.php:216
#: announcements/plasma-5.9.0.php:212 announcements/plasma-5.9.1.php:108
msgid "You can give us feedback and get updates on %1 or %2 or %3."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:76 announcements/plasma-5.0.95.php:127
#: announcements/plasma-5.1/index.php:153 announcements/plasma-5.10.0.php:301
#: announcements/plasma-5.10.1.php:177 announcements/plasma-5.10.2.php:177
#: announcements/plasma-5.10.3.php:185 announcements/plasma-5.10.4.php:178
#: announcements/plasma-5.10.5.php:174 announcements/plasma-5.10.95.php:264
#: announcements/plasma-5.11.0.php:270 announcements/plasma-5.11.1.php:176
#: announcements/plasma-5.11.2.php:177 announcements/plasma-5.11.3.php:176
#: announcements/plasma-5.11.4.php:177 announcements/plasma-5.11.5.php:175
-#: announcements/plasma-5.11.95.php:438 announcements/plasma-5.2.0.php:178
-#: announcements/plasma-5.2.1.php:102 announcements/plasma-5.2.2.php:100
-#: announcements/plasma-5.2.95.php:226 announcements/plasma-5.3.0.php:250
-#: announcements/plasma-5.3.1.php:104 announcements/plasma-5.3.2.php:103
-#: announcements/plasma-5.3.95.php:224 announcements/plasma-5.4.0.php:244
-#: announcements/plasma-5.4.1.php:105 announcements/plasma-5.4.2.php:104
-#: announcements/plasma-5.4.3.php:105 announcements/plasma-5.4.95.php:212
-#: announcements/plasma-5.5.0.php:233 announcements/plasma-5.5.1.php:108
-#: announcements/plasma-5.5.2.php:108 announcements/plasma-5.5.3.php:104
-#: announcements/plasma-5.5.4.php:101 announcements/plasma-5.5.5.php:104
-#: announcements/plasma-5.5.95.php:230 announcements/plasma-5.6.0.php:256
-#: announcements/plasma-5.6.1.php:110 announcements/plasma-5.6.2.php:110
-#: announcements/plasma-5.6.3.php:110 announcements/plasma-5.6.4.php:110
-#: announcements/plasma-5.6.5.php:109 announcements/plasma-5.6.95.php:173
-#: announcements/plasma-5.7.0.php:168 announcements/plasma-5.7.1.php:111
-#: announcements/plasma-5.7.2.php:109 announcements/plasma-5.7.3.php:110
-#: announcements/plasma-5.7.4.php:110 announcements/plasma-5.7.5.php:110
-#: announcements/plasma-5.7.95.php:242 announcements/plasma-5.8.0.php:240
-#: announcements/plasma-5.8.1.php:111 announcements/plasma-5.8.2.php:109
-#: announcements/plasma-5.8.3.php:110 announcements/plasma-5.8.4.php:114
-#: announcements/plasma-5.8.5.php:110 announcements/plasma-5.8.6.php:166
-#: announcements/plasma-5.8.7.php:168 announcements/plasma-5.8.8.php:177
-#: announcements/plasma-5.8.95.php:219 announcements/plasma-5.9.0.php:215
-#: announcements/plasma-5.9.1.php:111 announcements/plasma-5.9.2.php:170
-#: announcements/plasma-5.9.3.php:166 announcements/plasma-5.9.4.php:167
-#: announcements/plasma-5.9.5.php:169 announcements/plasma-5.9.95.php:302
+#: announcements/plasma-5.11.95.php:438 announcements/plasma-5.12.0.php:172
+#: announcements/plasma-5.2.0.php:178 announcements/plasma-5.2.1.php:102
+#: announcements/plasma-5.2.2.php:100 announcements/plasma-5.2.95.php:226
+#: announcements/plasma-5.3.0.php:250 announcements/plasma-5.3.1.php:104
+#: announcements/plasma-5.3.2.php:103 announcements/plasma-5.3.95.php:224
+#: announcements/plasma-5.4.0.php:244 announcements/plasma-5.4.1.php:105
+#: announcements/plasma-5.4.2.php:104 announcements/plasma-5.4.3.php:105
+#: announcements/plasma-5.4.95.php:212 announcements/plasma-5.5.0.php:233
+#: announcements/plasma-5.5.1.php:108 announcements/plasma-5.5.2.php:108
+#: announcements/plasma-5.5.3.php:104 announcements/plasma-5.5.4.php:101
+#: announcements/plasma-5.5.5.php:104 announcements/plasma-5.5.95.php:230
+#: announcements/plasma-5.6.0.php:256 announcements/plasma-5.6.1.php:110
+#: announcements/plasma-5.6.2.php:110 announcements/plasma-5.6.3.php:110
+#: announcements/plasma-5.6.4.php:110 announcements/plasma-5.6.5.php:109
+#: announcements/plasma-5.6.95.php:173 announcements/plasma-5.7.0.php:168
+#: announcements/plasma-5.7.1.php:111 announcements/plasma-5.7.2.php:109
+#: announcements/plasma-5.7.3.php:110 announcements/plasma-5.7.4.php:110
+#: announcements/plasma-5.7.5.php:110 announcements/plasma-5.7.95.php:242
+#: announcements/plasma-5.8.0.php:240 announcements/plasma-5.8.1.php:111
+#: announcements/plasma-5.8.2.php:109 announcements/plasma-5.8.3.php:110
+#: announcements/plasma-5.8.4.php:114 announcements/plasma-5.8.5.php:110
+#: announcements/plasma-5.8.6.php:166 announcements/plasma-5.8.7.php:168
+#: announcements/plasma-5.8.8.php:177 announcements/plasma-5.8.95.php:219
+#: announcements/plasma-5.9.0.php:215 announcements/plasma-5.9.1.php:111
+#: announcements/plasma-5.9.2.php:170 announcements/plasma-5.9.3.php:166
+#: announcements/plasma-5.9.4.php:167 announcements/plasma-5.9.5.php:169
+#: announcements/plasma-5.9.95.php:302
msgid "Discuss Plasma 5 on the <a href='%1'>KDE Forums Plasma 5 board</a>."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:79 announcements/plasma-5.0.95.php:130
#: announcements/plasma-5.1/index.php:156 announcements/plasma-5.2.0.php:181
#: announcements/plasma-5.2.1.php:105 announcements/plasma-5.2.2.php:103
#: announcements/plasma-5.2.95.php:229 announcements/plasma-5.3.0.php:253
#: announcements/plasma-5.3.1.php:107 announcements/plasma-5.3.2.php:106
#: announcements/plasma-5.3.95.php:227 announcements/plasma-5.4.0.php:247
#: announcements/plasma-5.4.1.php:108 announcements/plasma-5.4.2.php:107
#: announcements/plasma-5.4.3.php:108 announcements/plasma-5.4.95.php:215
#: announcements/plasma-5.5.0.php:236 announcements/plasma-5.5.1.php:111
#: announcements/plasma-5.5.2.php:111 announcements/plasma-5.5.3.php:107
#: announcements/plasma-5.5.4.php:104 announcements/plasma-5.5.5.php:107
#: announcements/plasma-5.5.95.php:233 announcements/plasma-5.6.0.php:259
#: announcements/plasma-5.6.1.php:113 announcements/plasma-5.6.2.php:113
#: announcements/plasma-5.6.3.php:113 announcements/plasma-5.6.4.php:113
#: announcements/plasma-5.6.5.php:112 announcements/plasma-5.6.95.php:176
#: announcements/plasma-5.7.0.php:171 announcements/plasma-5.7.1.php:114
#: announcements/plasma-5.7.2.php:112 announcements/plasma-5.7.3.php:113
#: announcements/plasma-5.7.4.php:113 announcements/plasma-5.7.5.php:113
#: announcements/plasma-5.7.95.php:245 announcements/plasma-5.8.0.php:243
#: announcements/plasma-5.8.1.php:114 announcements/plasma-5.8.2.php:112
#: announcements/plasma-5.8.3.php:113 announcements/plasma-5.8.4.php:117
#: announcements/plasma-5.8.5.php:113 announcements/plasma-5.8.95.php:222
#: announcements/plasma-5.9.0.php:218 announcements/plasma-5.9.1.php:114
msgid ""
"You can provide feedback direct to the developers via the <a href='%1'>#Plasma IRC channel</a>,\n"
"<a href='%2'>Plasma-devel mailing list</a> or report issues via\n"
"<a href='%3'>bugzilla</a>. If you like what the\n"
"team is doing, please let them know!"
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:84 announcements/plasma-5.0.95.php:135
#: announcements/plasma-5.1/index.php:161 announcements/plasma-5.10.0.php:306
#: announcements/plasma-5.10.1.php:182 announcements/plasma-5.10.2.php:182
#: announcements/plasma-5.10.3.php:190 announcements/plasma-5.10.4.php:183
#: announcements/plasma-5.10.5.php:179 announcements/plasma-5.10.95.php:269
#: announcements/plasma-5.11.0.php:275 announcements/plasma-5.11.1.php:181
#: announcements/plasma-5.11.2.php:182 announcements/plasma-5.11.3.php:181
#: announcements/plasma-5.11.4.php:182 announcements/plasma-5.11.5.php:180
-#: announcements/plasma-5.11.95.php:443 announcements/plasma-5.2.0.php:186
-#: announcements/plasma-5.2.1.php:110 announcements/plasma-5.2.2.php:108
-#: announcements/plasma-5.2.95.php:234 announcements/plasma-5.3.0.php:258
-#: announcements/plasma-5.3.1.php:112 announcements/plasma-5.3.2.php:111
-#: announcements/plasma-5.3.95.php:232 announcements/plasma-5.4.0.php:252
-#: announcements/plasma-5.4.1.php:113 announcements/plasma-5.4.2.php:112
-#: announcements/plasma-5.4.3.php:113 announcements/plasma-5.4.95.php:220
-#: announcements/plasma-5.5.0.php:241 announcements/plasma-5.5.1.php:116
-#: announcements/plasma-5.5.2.php:116 announcements/plasma-5.5.3.php:112
-#: announcements/plasma-5.5.4.php:109 announcements/plasma-5.5.5.php:112
-#: announcements/plasma-5.5.95.php:238 announcements/plasma-5.6.0.php:264
-#: announcements/plasma-5.6.1.php:118 announcements/plasma-5.6.2.php:118
-#: announcements/plasma-5.6.3.php:118 announcements/plasma-5.6.4.php:118
-#: announcements/plasma-5.6.5.php:117 announcements/plasma-5.6.95.php:181
-#: announcements/plasma-5.7.0.php:176 announcements/plasma-5.7.1.php:119
-#: announcements/plasma-5.7.2.php:117 announcements/plasma-5.7.3.php:118
-#: announcements/plasma-5.7.4.php:118 announcements/plasma-5.7.5.php:118
-#: announcements/plasma-5.7.95.php:250 announcements/plasma-5.8.0.php:248
-#: announcements/plasma-5.8.1.php:119 announcements/plasma-5.8.2.php:117
-#: announcements/plasma-5.8.3.php:118 announcements/plasma-5.8.4.php:122
-#: announcements/plasma-5.8.5.php:118 announcements/plasma-5.8.6.php:171
-#: announcements/plasma-5.8.7.php:173 announcements/plasma-5.8.8.php:182
-#: announcements/plasma-5.8.95.php:227 announcements/plasma-5.9.0.php:223
-#: announcements/plasma-5.9.1.php:119 announcements/plasma-5.9.2.php:175
-#: announcements/plasma-5.9.3.php:171 announcements/plasma-5.9.4.php:172
-#: announcements/plasma-5.9.5.php:174 announcements/plasma-5.9.95.php:307
+#: announcements/plasma-5.11.95.php:443 announcements/plasma-5.12.0.php:177
+#: announcements/plasma-5.2.0.php:186 announcements/plasma-5.2.1.php:110
+#: announcements/plasma-5.2.2.php:108 announcements/plasma-5.2.95.php:234
+#: announcements/plasma-5.3.0.php:258 announcements/plasma-5.3.1.php:112
+#: announcements/plasma-5.3.2.php:111 announcements/plasma-5.3.95.php:232
+#: announcements/plasma-5.4.0.php:252 announcements/plasma-5.4.1.php:113
+#: announcements/plasma-5.4.2.php:112 announcements/plasma-5.4.3.php:113
+#: announcements/plasma-5.4.95.php:220 announcements/plasma-5.5.0.php:241
+#: announcements/plasma-5.5.1.php:116 announcements/plasma-5.5.2.php:116
+#: announcements/plasma-5.5.3.php:112 announcements/plasma-5.5.4.php:109
+#: announcements/plasma-5.5.5.php:112 announcements/plasma-5.5.95.php:238
+#: announcements/plasma-5.6.0.php:264 announcements/plasma-5.6.1.php:118
+#: announcements/plasma-5.6.2.php:118 announcements/plasma-5.6.3.php:118
+#: announcements/plasma-5.6.4.php:118 announcements/plasma-5.6.5.php:117
+#: announcements/plasma-5.6.95.php:181 announcements/plasma-5.7.0.php:176
+#: announcements/plasma-5.7.1.php:119 announcements/plasma-5.7.2.php:117
+#: announcements/plasma-5.7.3.php:118 announcements/plasma-5.7.4.php:118
+#: announcements/plasma-5.7.5.php:118 announcements/plasma-5.7.95.php:250
+#: announcements/plasma-5.8.0.php:248 announcements/plasma-5.8.1.php:119
+#: announcements/plasma-5.8.2.php:117 announcements/plasma-5.8.3.php:118
+#: announcements/plasma-5.8.4.php:122 announcements/plasma-5.8.5.php:118
+#: announcements/plasma-5.8.6.php:171 announcements/plasma-5.8.7.php:173
+#: announcements/plasma-5.8.8.php:182 announcements/plasma-5.8.95.php:227
+#: announcements/plasma-5.9.0.php:223 announcements/plasma-5.9.1.php:119
+#: announcements/plasma-5.9.2.php:175 announcements/plasma-5.9.3.php:171
+#: announcements/plasma-5.9.4.php:172 announcements/plasma-5.9.5.php:174
+#: announcements/plasma-5.9.95.php:307
msgid "Your feedback is greatly appreciated."
msgstr ""
#. +> trunk
#: announcements/kirigami-1.1.php:91
msgid "KDE is a <a href='http://www.gnu.org/philosophy/free-sw.html'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='/community/donations/'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our <a href='https://relate.kde.org/civicrm/contribute/transact?id=5'>Join the Game</a> initiative. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:4
msgid "KDE Ships Release Candidate of Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:14 announcements/plasma-5.0.1.php:15
#: announcements/plasma-5.0.2.php:15 announcements/plasma-5.1.1.php:15
#: announcements/plasma-5.1.2.php:15 announcements/plasma-5.1/index.php:17
#: announcements/plasma5.0-beta2/index.php:14
msgid "Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:17
msgid ""
"July 8, 2014.\n"
"KDE has today made available the candidate for the first release of Plasma 5, the next generation desktop. This is one last chance to test for bugs and check for problems before the final release next week.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:33
msgid ""
"<a\n"
"href='http://community.kde.org/Plasma/Next/UnstablePackages'>Package\n"
"downloads</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:40
msgid ""
"Some distributions have created, or are in the process\n"
"of creating, packages, these are listed on the wiki page linked above.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:46
msgid ""
"<a\n"
"href='http://download.kde.org/unstable/plasma/%1/src/'>Source\n"
"download</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0-rc.php:53 announcements/plasma-5.0.1.php:65
#: announcements/plasma-5.0.2.php:65 announcements/plasma-5.0.95.php:105
#: announcements/plasma-5.1.1.php:85 announcements/plasma-5.1.2.php:69
#: announcements/plasma-5.1.95.php:133 announcements/plasma-5.1/index.php:131
#: announcements/plasma-5.2.0.php:157 announcements/plasma-5.2.1.php:81
#: announcements/plasma-5.2.2.php:79 announcements/plasma-5.3.1.php:83
#: announcements/plasma-5.3.2.php:82 announcements/plasma-5.3.95.php:203
#: announcements/plasma-5.4.0.php:223 announcements/plasma-5.4.1.php:84
#: announcements/plasma-5.4.2.php:83 announcements/plasma-5.4.3.php:84
#: announcements/plasma-5.4.95.php:191 announcements/plasma-5.5.0.php:212
#: announcements/plasma-5.5.1.php:87 announcements/plasma-5.5.2.php:87
#: announcements/plasma-5.5.3.php:83 announcements/plasma-5.5.4.php:80
#: announcements/plasma-5.5.5.php:83 announcements/plasma-5.5.95.php:209
#: announcements/plasma-5.6.0.php:235 announcements/plasma-5.6.1.php:89
#: announcements/plasma-5.6.2.php:89 announcements/plasma-5.6.3.php:89
#: announcements/plasma-5.6.4.php:89 announcements/plasma-5.6.5.php:88
#: announcements/plasma-5.6.95.php:152 announcements/plasma-5.7.0.php:147
#: announcements/plasma-5.7.1.php:90 announcements/plasma-5.7.2.php:88
#: announcements/plasma-5.7.3.php:89 announcements/plasma-5.7.4.php:89
#: announcements/plasma-5.7.5.php:89 announcements/plasma-5.7.95.php:221
#: announcements/plasma-5.8.0.php:219 announcements/plasma-5.8.1.php:90
#: announcements/plasma-5.8.2.php:88 announcements/plasma-5.8.3.php:89
#: announcements/plasma-5.8.4.php:93 announcements/plasma-5.8.5.php:89
#: announcements/plasma-5.8.95.php:198 announcements/plasma-5.9.0.php:194
#: announcements/plasma-5.9.1.php:90
msgid ""
"You can install Plasma 5 directly from source. KDE's\n"
"community wiki has <a\n"
"href='http://community.kde.org/Frameworks/Building'>instructions to compile it</a>.\n"
"Note that Plasma 5 does not co-install with Plasma 4, you will need\n"
"to uninstall older versions or install into a separate prefix.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:4
msgid "KDE Ships First Bugfix Release of Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:19
msgid ""
"August 12, 2014.\n"
"Today KDE releases the first bugfix update to Plasma 5. <a\n"
"href='http://kde.org/announcements/plasma5.0/index.php'>Plasma 5</a>\n"
"was released a month ago with many feature refinements and\n"
"streamlining the existing codebase of KDE's popular desktop for\n"
"developers to work on for the years to come.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:29
msgid ""
"\n"
"This release, versioned 5.0.1, adds a month's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important such as fixing text which couldn't be\n"
"translated, using the correct icons and fixing overlapping files with\n"
"KDELibs 4 software.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:40 announcements/plasma-5.0.2.php:41
#: announcements/plasma-5.0.95.php:80 announcements/plasma-5.1.1.php:59
#: announcements/plasma-5.1.2.php:43 announcements/plasma-5.1.95.php:107
#: announcements/plasma-5.1/index.php:107 announcements/plasma-5.10.0.php:266
#: announcements/plasma-5.10.1.php:142 announcements/plasma-5.10.2.php:142
#: announcements/plasma-5.10.3.php:150 announcements/plasma-5.10.4.php:143
#: announcements/plasma-5.10.5.php:139 announcements/plasma-5.10.95.php:229
#: announcements/plasma-5.11.0.php:235 announcements/plasma-5.11.1.php:141
#: announcements/plasma-5.11.2.php:142 announcements/plasma-5.11.3.php:141
#: announcements/plasma-5.11.4.php:142 announcements/plasma-5.11.5.php:140
-#: announcements/plasma-5.11.95.php:403 announcements/plasma-5.2.0.php:127
-#: announcements/plasma-5.2.1.php:56 announcements/plasma-5.2.2.php:55
-#: announcements/plasma-5.2.95.php:175 announcements/plasma-5.3.0.php:199
-#: announcements/plasma-5.3.1.php:59 announcements/plasma-5.3.2.php:58
-#: announcements/plasma-5.3.95.php:179 announcements/plasma-5.4.0.php:199
-#: announcements/plasma-5.4.1.php:60 announcements/plasma-5.4.2.php:59
-#: announcements/plasma-5.4.3.php:60 announcements/plasma-5.4.95.php:167
-#: announcements/plasma-5.5.0.php:188 announcements/plasma-5.5.1.php:63
-#: announcements/plasma-5.5.2.php:63 announcements/plasma-5.5.3.php:59
-#: announcements/plasma-5.5.4.php:56 announcements/plasma-5.5.5.php:59
-#: announcements/plasma-5.5.95.php:185 announcements/plasma-5.6.0.php:211
-#: announcements/plasma-5.6.1.php:65 announcements/plasma-5.6.2.php:65
-#: announcements/plasma-5.6.3.php:65 announcements/plasma-5.6.4.php:65
-#: announcements/plasma-5.6.5.php:64 announcements/plasma-5.6.95.php:128
-#: announcements/plasma-5.7.0.php:123 announcements/plasma-5.7.1.php:66
-#: announcements/plasma-5.7.2.php:64 announcements/plasma-5.7.3.php:65
-#: announcements/plasma-5.7.4.php:65 announcements/plasma-5.7.5.php:65
-#: announcements/plasma-5.7.95.php:197 announcements/plasma-5.8.0.php:195
-#: announcements/plasma-5.8.1.php:66 announcements/plasma-5.8.2.php:64
-#: announcements/plasma-5.8.3.php:65 announcements/plasma-5.8.4.php:69
-#: announcements/plasma-5.8.5.php:65 announcements/plasma-5.8.6.php:131
-#: announcements/plasma-5.8.7.php:133 announcements/plasma-5.8.8.php:142
-#: announcements/plasma-5.8.95.php:172 announcements/plasma-5.9.0.php:168
-#: announcements/plasma-5.9.1.php:64 announcements/plasma-5.9.2.php:135
-#: announcements/plasma-5.9.3.php:131 announcements/plasma-5.9.4.php:132
-#: announcements/plasma-5.9.5.php:134 announcements/plasma-5.9.95.php:267
+#: announcements/plasma-5.11.95.php:403 announcements/plasma-5.12.0.php:137
+#: announcements/plasma-5.2.0.php:127 announcements/plasma-5.2.1.php:56
+#: announcements/plasma-5.2.2.php:55 announcements/plasma-5.2.95.php:175
+#: announcements/plasma-5.3.0.php:199 announcements/plasma-5.3.1.php:59
+#: announcements/plasma-5.3.2.php:58 announcements/plasma-5.3.95.php:179
+#: announcements/plasma-5.4.0.php:199 announcements/plasma-5.4.1.php:60
+#: announcements/plasma-5.4.2.php:59 announcements/plasma-5.4.3.php:60
+#: announcements/plasma-5.4.95.php:167 announcements/plasma-5.5.0.php:188
+#: announcements/plasma-5.5.1.php:63 announcements/plasma-5.5.2.php:63
+#: announcements/plasma-5.5.3.php:59 announcements/plasma-5.5.4.php:56
+#: announcements/plasma-5.5.5.php:59 announcements/plasma-5.5.95.php:185
+#: announcements/plasma-5.6.0.php:211 announcements/plasma-5.6.1.php:65
+#: announcements/plasma-5.6.2.php:65 announcements/plasma-5.6.3.php:65
+#: announcements/plasma-5.6.4.php:65 announcements/plasma-5.6.5.php:64
+#: announcements/plasma-5.6.95.php:128 announcements/plasma-5.7.0.php:123
+#: announcements/plasma-5.7.1.php:66 announcements/plasma-5.7.2.php:64
+#: announcements/plasma-5.7.3.php:65 announcements/plasma-5.7.4.php:65
+#: announcements/plasma-5.7.5.php:65 announcements/plasma-5.7.95.php:197
+#: announcements/plasma-5.8.0.php:195 announcements/plasma-5.8.1.php:66
+#: announcements/plasma-5.8.2.php:64 announcements/plasma-5.8.3.php:65
+#: announcements/plasma-5.8.4.php:69 announcements/plasma-5.8.5.php:65
+#: announcements/plasma-5.8.6.php:131 announcements/plasma-5.8.7.php:133
+#: announcements/plasma-5.8.8.php:142 announcements/plasma-5.8.95.php:172
+#: announcements/plasma-5.9.0.php:168 announcements/plasma-5.9.1.php:64
+#: announcements/plasma-5.9.2.php:135 announcements/plasma-5.9.3.php:131
+#: announcements/plasma-5.9.4.php:132 announcements/plasma-5.9.5.php:134
+#: announcements/plasma-5.9.95.php:267
msgid "Live Images"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:42 announcements/plasma-5.0.2.php:43
#: announcements/plasma-5.0.95.php:82 announcements/plasma-5.1.1.php:61
#: announcements/plasma-5.1.2.php:45 announcements/plasma-5.1.95.php:109
#: announcements/plasma-5.1/index.php:109
msgid ""
"\n"
"The easiest way to try it out is the with a live image booted off a\n"
"USB disk. Images are available for development versions of <a\n"
"href='http://cdimage.ubuntu.com/kubuntu-plasma5/'>Kubuntu Plasma 5</a>.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:48 announcements/plasma-5.0.2.php:49
#: announcements/plasma-5.0.95.php:89 announcements/plasma-5.1.1.php:68
#: announcements/plasma-5.1.2.php:52 announcements/plasma-5.1.95.php:116
#: announcements/plasma-5.1/index.php:115 announcements/plasma-5.10.0.php:275
#: announcements/plasma-5.10.1.php:151 announcements/plasma-5.10.2.php:151
#: announcements/plasma-5.10.3.php:159 announcements/plasma-5.10.4.php:152
#: announcements/plasma-5.10.5.php:148 announcements/plasma-5.10.95.php:238
#: announcements/plasma-5.11.0.php:244 announcements/plasma-5.11.1.php:150
#: announcements/plasma-5.11.2.php:151 announcements/plasma-5.11.3.php:150
#: announcements/plasma-5.11.4.php:151 announcements/plasma-5.11.5.php:149
-#: announcements/plasma-5.11.95.php:412 announcements/plasma-5.2.0.php:140
-#: announcements/plasma-5.2.1.php:64 announcements/plasma-5.2.2.php:62
-#: announcements/plasma-5.2.95.php:188 announcements/plasma-5.3.0.php:212
-#: announcements/plasma-5.3.1.php:66 announcements/plasma-5.3.2.php:65
-#: announcements/plasma-5.3.95.php:186 announcements/plasma-5.4.0.php:206
-#: announcements/plasma-5.4.1.php:67 announcements/plasma-5.4.2.php:66
-#: announcements/plasma-5.4.3.php:67 announcements/plasma-5.4.95.php:174
-#: announcements/plasma-5.5.0.php:195 announcements/plasma-5.5.1.php:70
-#: announcements/plasma-5.5.2.php:70 announcements/plasma-5.5.3.php:66
-#: announcements/plasma-5.5.4.php:63 announcements/plasma-5.5.5.php:66
-#: announcements/plasma-5.5.95.php:192 announcements/plasma-5.6.0.php:218
-#: announcements/plasma-5.6.1.php:72 announcements/plasma-5.6.2.php:72
-#: announcements/plasma-5.6.3.php:72 announcements/plasma-5.6.4.php:72
-#: announcements/plasma-5.6.5.php:71 announcements/plasma-5.6.95.php:135
-#: announcements/plasma-5.7.0.php:130 announcements/plasma-5.7.1.php:73
-#: announcements/plasma-5.7.2.php:71 announcements/plasma-5.7.3.php:72
-#: announcements/plasma-5.7.4.php:72 announcements/plasma-5.7.5.php:72
-#: announcements/plasma-5.7.95.php:204 announcements/plasma-5.8.0.php:202
-#: announcements/plasma-5.8.1.php:73 announcements/plasma-5.8.2.php:71
-#: announcements/plasma-5.8.3.php:72 announcements/plasma-5.8.4.php:76
-#: announcements/plasma-5.8.5.php:72 announcements/plasma-5.8.6.php:140
-#: announcements/plasma-5.8.7.php:142 announcements/plasma-5.8.8.php:151
-#: announcements/plasma-5.8.95.php:181 announcements/plasma-5.9.0.php:177
-#: announcements/plasma-5.9.1.php:73 announcements/plasma-5.9.2.php:144
-#: announcements/plasma-5.9.3.php:140 announcements/plasma-5.9.4.php:141
-#: announcements/plasma-5.9.5.php:143 announcements/plasma-5.9.95.php:276
+#: announcements/plasma-5.11.95.php:412 announcements/plasma-5.12.0.php:146
+#: announcements/plasma-5.2.0.php:140 announcements/plasma-5.2.1.php:64
+#: announcements/plasma-5.2.2.php:62 announcements/plasma-5.2.95.php:188
+#: announcements/plasma-5.3.0.php:212 announcements/plasma-5.3.1.php:66
+#: announcements/plasma-5.3.2.php:65 announcements/plasma-5.3.95.php:186
+#: announcements/plasma-5.4.0.php:206 announcements/plasma-5.4.1.php:67
+#: announcements/plasma-5.4.2.php:66 announcements/plasma-5.4.3.php:67
+#: announcements/plasma-5.4.95.php:174 announcements/plasma-5.5.0.php:195
+#: announcements/plasma-5.5.1.php:70 announcements/plasma-5.5.2.php:70
+#: announcements/plasma-5.5.3.php:66 announcements/plasma-5.5.4.php:63
+#: announcements/plasma-5.5.5.php:66 announcements/plasma-5.5.95.php:192
+#: announcements/plasma-5.6.0.php:218 announcements/plasma-5.6.1.php:72
+#: announcements/plasma-5.6.2.php:72 announcements/plasma-5.6.3.php:72
+#: announcements/plasma-5.6.4.php:72 announcements/plasma-5.6.5.php:71
+#: announcements/plasma-5.6.95.php:135 announcements/plasma-5.7.0.php:130
+#: announcements/plasma-5.7.1.php:73 announcements/plasma-5.7.2.php:71
+#: announcements/plasma-5.7.3.php:72 announcements/plasma-5.7.4.php:72
+#: announcements/plasma-5.7.5.php:72 announcements/plasma-5.7.95.php:204
+#: announcements/plasma-5.8.0.php:202 announcements/plasma-5.8.1.php:73
+#: announcements/plasma-5.8.2.php:71 announcements/plasma-5.8.3.php:72
+#: announcements/plasma-5.8.4.php:76 announcements/plasma-5.8.5.php:72
+#: announcements/plasma-5.8.6.php:140 announcements/plasma-5.8.7.php:142
+#: announcements/plasma-5.8.8.php:151 announcements/plasma-5.8.95.php:181
+#: announcements/plasma-5.9.0.php:177 announcements/plasma-5.9.1.php:73
+#: announcements/plasma-5.9.2.php:144 announcements/plasma-5.9.3.php:140
+#: announcements/plasma-5.9.4.php:141 announcements/plasma-5.9.5.php:143
+#: announcements/plasma-5.9.95.php:276
msgid "Package Downloads"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:50 announcements/plasma-5.0.2.php:51
#: announcements/plasma-5.0.95.php:91 announcements/plasma-5.1.1.php:70
#: announcements/plasma-5.1/index.php:117
msgid ""
"Some distributions have created, or are in the process\n"
"of creating, packages listed on our wiki page.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:56 announcements/plasma-5.0.2.php:57
#: announcements/plasma-5.0.95.php:97 announcements/plasma-5.1.1.php:76
#: announcements/plasma-5.1.2.php:60 announcements/plasma-5.1.95.php:124
#: announcements/plasma-5.1/index.php:123 announcements/plasma-5.2.0.php:148
#: announcements/plasma-5.2.1.php:72 announcements/plasma-5.2.2.php:70
#: announcements/plasma-5.2.95.php:196 announcements/plasma-5.3.0.php:220
#: announcements/plasma-5.3.1.php:74 announcements/plasma-5.3.2.php:73
#: announcements/plasma-5.3.95.php:194 announcements/plasma-5.4.0.php:214
#: announcements/plasma-5.4.1.php:75 announcements/plasma-5.4.2.php:74
#: announcements/plasma-5.4.3.php:75 announcements/plasma-5.4.95.php:182
#: announcements/plasma-5.5.0.php:203 announcements/plasma-5.5.1.php:78
#: announcements/plasma-5.5.2.php:78 announcements/plasma-5.5.3.php:74
#: announcements/plasma-5.5.4.php:71 announcements/plasma-5.5.5.php:74
#: announcements/plasma-5.5.95.php:200 announcements/plasma-5.6.0.php:226
#: announcements/plasma-5.6.1.php:80 announcements/plasma-5.6.2.php:80
#: announcements/plasma-5.6.3.php:80 announcements/plasma-5.6.4.php:80
#: announcements/plasma-5.6.5.php:79 announcements/plasma-5.6.95.php:143
#: announcements/plasma-5.7.0.php:138 announcements/plasma-5.7.1.php:81
#: announcements/plasma-5.7.2.php:79 announcements/plasma-5.7.3.php:80
#: announcements/plasma-5.7.4.php:80 announcements/plasma-5.7.5.php:80
#: announcements/plasma-5.7.95.php:212 announcements/plasma-5.8.0.php:210
#: announcements/plasma-5.8.1.php:81 announcements/plasma-5.8.2.php:79
#: announcements/plasma-5.8.3.php:80 announcements/plasma-5.8.4.php:84
#: announcements/plasma-5.8.5.php:80 announcements/plasma-5.8.95.php:189
#: announcements/plasma-5.9.0.php:185 announcements/plasma-5.9.1.php:81
msgid ""
"<a\n"
"href='https://community.kde.org/Plasma/Packages'>Package\n"
"download wiki page</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:63 announcements/plasma-5.0.2.php:63
#: announcements/plasma-5.0.95.php:103 announcements/plasma-5.1.1.php:83
#: announcements/plasma-5.1.2.php:67 announcements/plasma-5.1.95.php:131
#: announcements/plasma-5.1/index.php:129 announcements/plasma-5.10.0.php:283
#: announcements/plasma-5.10.1.php:159 announcements/plasma-5.10.2.php:159
#: announcements/plasma-5.10.3.php:167 announcements/plasma-5.10.4.php:160
#: announcements/plasma-5.10.5.php:156 announcements/plasma-5.10.95.php:246
#: announcements/plasma-5.11.0.php:252 announcements/plasma-5.11.1.php:158
#: announcements/plasma-5.11.2.php:159 announcements/plasma-5.11.3.php:158
#: announcements/plasma-5.11.4.php:159 announcements/plasma-5.11.5.php:157
-#: announcements/plasma-5.11.95.php:420 announcements/plasma-5.2.0.php:155
-#: announcements/plasma-5.2.1.php:79 announcements/plasma-5.2.2.php:77
-#: announcements/plasma-5.2.95.php:203 announcements/plasma-5.3.0.php:227
-#: announcements/plasma-5.3.1.php:81 announcements/plasma-5.3.2.php:80
-#: announcements/plasma-5.3.95.php:201 announcements/plasma-5.4.0.php:221
-#: announcements/plasma-5.4.1.php:82 announcements/plasma-5.4.2.php:81
-#: announcements/plasma-5.4.3.php:82 announcements/plasma-5.4.95.php:189
-#: announcements/plasma-5.5.0.php:210 announcements/plasma-5.5.1.php:85
-#: announcements/plasma-5.5.2.php:85 announcements/plasma-5.5.3.php:81
-#: announcements/plasma-5.5.4.php:78 announcements/plasma-5.5.5.php:81
-#: announcements/plasma-5.5.95.php:207 announcements/plasma-5.6.0.php:233
-#: announcements/plasma-5.6.1.php:87 announcements/plasma-5.6.2.php:87
-#: announcements/plasma-5.6.3.php:87 announcements/plasma-5.6.4.php:87
-#: announcements/plasma-5.6.5.php:86 announcements/plasma-5.6.95.php:150
-#: announcements/plasma-5.7.0.php:145 announcements/plasma-5.7.1.php:88
-#: announcements/plasma-5.7.2.php:86 announcements/plasma-5.7.3.php:87
-#: announcements/plasma-5.7.4.php:87 announcements/plasma-5.7.5.php:87
-#: announcements/plasma-5.7.95.php:219 announcements/plasma-5.8.0.php:217
-#: announcements/plasma-5.8.1.php:88 announcements/plasma-5.8.2.php:86
-#: announcements/plasma-5.8.3.php:87 announcements/plasma-5.8.4.php:91
-#: announcements/plasma-5.8.5.php:87 announcements/plasma-5.8.6.php:148
-#: announcements/plasma-5.8.7.php:150 announcements/plasma-5.8.8.php:159
-#: announcements/plasma-5.8.95.php:196 announcements/plasma-5.9.0.php:192
-#: announcements/plasma-5.9.1.php:88 announcements/plasma-5.9.2.php:152
-#: announcements/plasma-5.9.3.php:148 announcements/plasma-5.9.4.php:149
-#: announcements/plasma-5.9.5.php:151 announcements/plasma-5.9.95.php:284
+#: announcements/plasma-5.11.95.php:420 announcements/plasma-5.12.0.php:154
+#: announcements/plasma-5.2.0.php:155 announcements/plasma-5.2.1.php:79
+#: announcements/plasma-5.2.2.php:77 announcements/plasma-5.2.95.php:203
+#: announcements/plasma-5.3.0.php:227 announcements/plasma-5.3.1.php:81
+#: announcements/plasma-5.3.2.php:80 announcements/plasma-5.3.95.php:201
+#: announcements/plasma-5.4.0.php:221 announcements/plasma-5.4.1.php:82
+#: announcements/plasma-5.4.2.php:81 announcements/plasma-5.4.3.php:82
+#: announcements/plasma-5.4.95.php:189 announcements/plasma-5.5.0.php:210
+#: announcements/plasma-5.5.1.php:85 announcements/plasma-5.5.2.php:85
+#: announcements/plasma-5.5.3.php:81 announcements/plasma-5.5.4.php:78
+#: announcements/plasma-5.5.5.php:81 announcements/plasma-5.5.95.php:207
+#: announcements/plasma-5.6.0.php:233 announcements/plasma-5.6.1.php:87
+#: announcements/plasma-5.6.2.php:87 announcements/plasma-5.6.3.php:87
+#: announcements/plasma-5.6.4.php:87 announcements/plasma-5.6.5.php:86
+#: announcements/plasma-5.6.95.php:150 announcements/plasma-5.7.0.php:145
+#: announcements/plasma-5.7.1.php:88 announcements/plasma-5.7.2.php:86
+#: announcements/plasma-5.7.3.php:87 announcements/plasma-5.7.4.php:87
+#: announcements/plasma-5.7.5.php:87 announcements/plasma-5.7.95.php:219
+#: announcements/plasma-5.8.0.php:217 announcements/plasma-5.8.1.php:88
+#: announcements/plasma-5.8.2.php:86 announcements/plasma-5.8.3.php:87
+#: announcements/plasma-5.8.4.php:91 announcements/plasma-5.8.5.php:87
+#: announcements/plasma-5.8.6.php:148 announcements/plasma-5.8.7.php:150
+#: announcements/plasma-5.8.8.php:159 announcements/plasma-5.8.95.php:196
+#: announcements/plasma-5.9.0.php:192 announcements/plasma-5.9.1.php:88
+#: announcements/plasma-5.9.2.php:152 announcements/plasma-5.9.3.php:148
+#: announcements/plasma-5.9.4.php:149 announcements/plasma-5.9.5.php:151
+#: announcements/plasma-5.9.95.php:284
msgid "Source Downloads"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:75 announcements/plasma-5.0.2.php:75
#: announcements/plasma-5.0.95.php:115 announcements/plasma-5.1.1.php:95
msgid ""
"\n"
"<a href='../info/%1.php'>Source\n"
"Info Page</a>\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.1.php:84 announcements/plasma-5.0.2.php:84
#: announcements/plasma-5.1.1.php:104 announcements/plasma-5.1.2.php:87
#: announcements/plasma-5.1.95.php:151
msgid ""
"You can provide feedback either via the <a\n"
"href='%1'>#Plasma IRC channel</a>, <a\n"
"href='%2'>Plasma-devel\n"
"mailing list</a> or report issues via <a\n"
"href='%3'>bugzilla</a>. Plasma\n"
"5 is also <a\n"
"href='%4'>discussed on the KDE\n"
"Forums</a>. Your feedback is greatly appreciated. If you like what the\n"
"team is doing, please let them know!"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.2.php:4
msgid "KDE Ships Second Bugfix Release of Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.2.php:19
msgid ""
"September 17, 2014.\n"
"Today KDE releases the second bugfix update to Plasma 5. <a\n"
"href='http://kde.org/announcements/plasma5.0/index.php'>Plasma 5</a>\n"
"was released two months ago with many feature refinements and\n"
"streamlining the existing codebase of KDE's popular desktop for\n"
"developers to work on for the years to come.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.2.php:29
msgid ""
"\n"
"This release, versioned %1, adds a month's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important such as fixing text which couldn't be\n"
"translated, using the correct icons and fixing overlapping files with\n"
"KDELibs 4 software. It also adds a month's hard work of translations to make\n"
"support in other languages even more complete.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:4
msgid "KDE Ships Beta for Plasma 5's Second Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:17
msgid "KDE Platform 4 apps now themed to fit in with Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:21
msgid ""
"September 30, 2014.\n"
"Today KDE releases the beta for the second release of Plasma 5. <a\n"
"href='http://kde.org/announcements/plasma5.0/index.php'>Plasma 5</a>\n"
"was released three months ago with many feature refinements and\n"
"streamlining the existing codebase of KDE's popular desktop for\n"
"developers to work on for the years to come.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:31
msgid ""
"\n"
"This release is for testers to find bugs before our second release of Plasma 5.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:37
msgid "Some New Features"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:41 announcements/plasma-5.1/index.php:74
msgid "Applet Switcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:44
msgid ""
"\n"
"Plasma panels have new switchers to easily swap between different widgets for the same task. You can select which application menu, clock or task manager you want with ease."
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:51
msgid "The icons-only task manager is back for those who want a clean panel."
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:55
msgid "Icons-only Task Manager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:63
msgid "A new System Settings module lets you switch between desktop themes."
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:69 announcements/plasma-5.1/index.php:45
msgid "Breeze Theme for Qt 4"
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:72 announcements/plasma-5.1/index.php:48
msgid "A new Breeze widget theme for Qt 4 lets applications written with KDE Platform 4 fit in with your Plasma 5 desktop."
msgstr ""
#. +> trunk
#: announcements/plasma-5.0.95.php:142
msgid "<p>We produce beautiful software for your computer, please we'd love you to join us improving it or helping fellow users. If you can't find the time to contribute directly do consider <a href='https://www.kde.org/community/donations/index.php#money'>sending a donation</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.1.php:4
msgid "KDE Ships November Bugfix Release of Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.1.php:19
msgid ""
"November 11, 2014.\n"
"Today KDE releases a bugfix update to Plasma 5, versioned 5.1.1. <a\n"
"href='http://kde.org/announcements/plasma-5.1/index.php'>Plasma 5.1</a>\n"
"was released in October with many feature refinements and\n"
"streamlining the existing codebase of KDE's popular desktop for\n"
"developers to work on for the years to come.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.1.php:29
msgid ""
"\n"
"This release adds a month's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
"<ul>\n"
"<li>Limiting indexing word size in Baloo.</li>"
"\n"
"<li>Don't index dots in Baloo, it's a regular expression character </li>"
"\n"
"<li>Breeze: Do not takeout margins from toolbutton before rendering text</li>"
"\n"
"<li>Breeze: cleanup tab buttons positioning</li>"
"\n"
"<li>Breeze: Fix positioning of cornerwidgets </li>"
"\n"
"<li>Notes widget: Make text color white on black note </li>"
"\n"
"<li>Clock widget: Fix fuzzy clock saying half past seven when it's half past six </li>"
"\n"
"<li>khotkeys: fix loading configuration</li>"
"\n"
"<li>kinfocenter: Set the correct version </li>"
"\n"
"<li>kcm-effects: Use Loader for the Video Item </li>"
"\n"
"<li>Oxygen: margins and RTL fixes </li>"
"\n"
"<li>Plasma Desktop: Validate timezone name before setting </li>"
"\n"
"<li>Plasma Desktop: Backport settings made in the component chooser to kdelibs 4 applications</li>"
"\n"
"<li>Plasma Desktop: make kdelibs 4 apps react to icon theme change </li>"
"\n"
"<li>Plasma Desktop: Cleanup applet configuration scrollbar handling and fix glitching alternatives dialog</li>"
"\n"
"<li>Plasma Desktop: fix emptying the trash from the context menu </li>"
"\n"
"<li>Plasma Desktop: numberous bugfixes </li>"
"\n"
"<li>Plasma Workspace: Remove shutdown option from screen locker </li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2-5.1.95-changelog.php:4
msgid "Plasma 5.2 Beta complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2-5.2.0-changelog.php:4
#: announcements/plasma-5.2.0-5.2.1-changelog.php:4
msgid "Plasma 5.2 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2.php:4
msgid "KDE Ships Plasma 5.1.2, Bugfix Release for December"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2.php:19
msgid ""
"Tuesday, 16 December 2014.\n"
"Today KDE releases a bugfix update to Plasma 5, versioned 5.1.2. <a\n"
"href='http://kde.org/announcements/plasma-5.1/index.php'>Plasma 5.1</a>\n"
"was released in October with many feature refinements and\n"
"streamlining the existing codebase of KDE's popular desktop for\n"
"developers to work on for the years to come.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2.php:29 announcements/plasma-5.2.1.php:29
#: announcements/plasma-5.2.2.php:30 announcements/plasma-5.3.2.php:38
#: announcements/plasma-5.4.1.php:39 announcements/plasma-5.4.2.php:39
#: announcements/plasma-5.4.3.php:39 announcements/plasma-5.5.3.php:39
#: announcements/plasma-5.5.4.php:38 announcements/plasma-5.5.5.php:39
#: announcements/plasma-5.6.1.php:45 announcements/plasma-5.6.3.php:45
#: announcements/plasma-5.6.4.php:45 announcements/plasma-5.6.5.php:44
#: announcements/plasma-5.8.5.php:45
msgid ""
"\n"
"This release adds a month's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2.php:54 announcements/plasma-5.1.95.php:118
#: announcements/plasma-5.2.0.php:142 announcements/plasma-5.2.1.php:66
#: announcements/plasma-5.2.2.php:64 announcements/plasma-5.2.95.php:190
#: announcements/plasma-5.3.0.php:214 announcements/plasma-5.3.1.php:68
#: announcements/plasma-5.3.2.php:67 announcements/plasma-5.3.95.php:188
#: announcements/plasma-5.4.0.php:208 announcements/plasma-5.4.1.php:69
#: announcements/plasma-5.4.2.php:68 announcements/plasma-5.4.3.php:69
#: announcements/plasma-5.4.95.php:176 announcements/plasma-5.5.0.php:197
#: announcements/plasma-5.5.1.php:72 announcements/plasma-5.5.2.php:72
#: announcements/plasma-5.5.3.php:68 announcements/plasma-5.5.4.php:65
#: announcements/plasma-5.5.5.php:68 announcements/plasma-5.5.95.php:194
#: announcements/plasma-5.6.0.php:220 announcements/plasma-5.6.1.php:74
#: announcements/plasma-5.6.2.php:74 announcements/plasma-5.6.3.php:74
#: announcements/plasma-5.6.4.php:74 announcements/plasma-5.6.5.php:73
#: announcements/plasma-5.6.95.php:137 announcements/plasma-5.7.0.php:132
#: announcements/plasma-5.7.1.php:75 announcements/plasma-5.7.2.php:73
#: announcements/plasma-5.7.3.php:74 announcements/plasma-5.7.4.php:74
#: announcements/plasma-5.7.5.php:74 announcements/plasma-5.7.95.php:206
#: announcements/plasma-5.8.0.php:204 announcements/plasma-5.8.1.php:75
#: announcements/plasma-5.8.2.php:73 announcements/plasma-5.8.3.php:74
#: announcements/plasma-5.8.4.php:78 announcements/plasma-5.8.5.php:74
#: announcements/plasma-5.8.95.php:183 announcements/plasma-5.9.0.php:179
#: announcements/plasma-5.9.1.php:75
msgid ""
"Distributions have created, or are in the process\n"
"of creating, packages listed on our wiki page.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.2.php:79 announcements/plasma-5.1.95.php:143
#: announcements/plasma-5.2.0.php:167 announcements/plasma-5.2.1.php:91
#: announcements/plasma-5.2.2.php:89 announcements/plasma-5.2.95.php:215
#: announcements/plasma-5.3.0.php:239 announcements/plasma-5.3.1.php:93
#: announcements/plasma-5.3.2.php:92 announcements/plasma-5.3.95.php:213
#: announcements/plasma-5.4.0.php:233 announcements/plasma-5.4.1.php:94
#: announcements/plasma-5.4.2.php:93 announcements/plasma-5.4.3.php:94
#: announcements/plasma-5.4.95.php:201 announcements/plasma-5.5.0.php:222
#: announcements/plasma-5.5.1.php:97 announcements/plasma-5.5.2.php:97
#: announcements/plasma-5.5.3.php:93 announcements/plasma-5.5.4.php:90
#: announcements/plasma-5.5.5.php:93 announcements/plasma-5.5.95.php:219
#: announcements/plasma-5.6.0.php:245 announcements/plasma-5.6.1.php:99
#: announcements/plasma-5.6.2.php:99 announcements/plasma-5.6.3.php:99
#: announcements/plasma-5.6.4.php:99 announcements/plasma-5.6.5.php:98
#: announcements/plasma-5.6.95.php:162 announcements/plasma-5.7.0.php:157
#: announcements/plasma-5.7.1.php:100 announcements/plasma-5.7.2.php:98
#: announcements/plasma-5.7.3.php:99 announcements/plasma-5.7.4.php:99
#: announcements/plasma-5.7.5.php:99 announcements/plasma-5.7.95.php:231
#: announcements/plasma-5.8.0.php:229 announcements/plasma-5.8.1.php:100
#: announcements/plasma-5.8.2.php:98 announcements/plasma-5.8.3.php:99
#: announcements/plasma-5.8.4.php:103 announcements/plasma-5.8.5.php:99
#: announcements/plasma-5.8.95.php:208 announcements/plasma-5.9.0.php:204
#: announcements/plasma-5.9.1.php:100
msgid ""
"\n"
"<a href='../info/%1.php'>Source Info Page</a>\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:4
msgid "KDE Ships Plasma 5.2 Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:15
msgid ""
"Tuesday, 13 January 2015.\n"
"Today KDE releases a beta for Plasma 5.2. This release adds a number\n"
"of new components and improves the existing desktop. We welcome all\n"
"testers to find and help fix the bugs before our stable release in two\n"
"weeks' time.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:25 announcements/plasma-5.2.0.php:25
#: announcements/plasma-5.2.1.php:16 announcements/plasma-5.2.2.php:16
msgid "Plasma 5.2"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:29 announcements/plasma-5.2.0.php:29
msgid "New Components"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:33 announcements/plasma-5.2.0.php:33
msgid "Dual monitor setup"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:54
msgid "Work in Progress"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:62 announcements/plasma-5.2.0.php:57
msgid "Other highlights"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:67 announcements/plasma-5.2.0.php:62
msgid "Undo desktop changes"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:74 announcements/plasma-5.2.0.php:69
#: announcements/plasma-5.2.0.php:70
msgid "Smart sorting in KRunner"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:81 announcements/plasma-5.2.0.php:76
#: announcements/plasma-5.2.0.php:77 announcements/plasma-5.2.0.php:83
msgid "New Breeze Window Decoration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1.95.php:92 announcements/plasma-5.2.0.php:92
#: announcements/plasma-5.2.0.php:93
msgid "Web browser plasmoid"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:4
msgid "Plasma 5.1 Brings Back Many Popular Features"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:21
msgid ""
"October 15, 2014.\n"
"Today, KDE releases Plasma 5.1.0, the first release containing new features since the release of Plasma 5.0 this summer. Plasma 5.1 sports a wide variety of improvements, leading to greater stability, better performance and new and improved features. Thanks to the feedback of the community, KDE developers were able to package a large number of fixes and enhancements into this release, among which more complete and higher quality artwork following the new-in-5.0 Breeze style, re-addition of popular features such as the Icon Tasks taskswitcher and improved stability and performance.\n"
"</p>"
"<p>\n"
"Those travelling regularly will enjoy better support for time zones in the panel's clock, while those staying at home a revamped clipboard manager, allowing you to easily get at your past clipboard's content. The Breeze widget style is now also available for Qt4-based applications, leading to greater consistency across applications. The work to support Wayland as display server for Plasma is still ongoing, with improved, but not complete support in 5.1. <a href=\"https://community.kde.org/Plasma/5.1_Changes\">Changes</a> throughout many default components improve accessibility for visually impaired users by adding support for screenreaders and improved keyboard navigation.\n"
"</p>"
"<p>\n"
"</p>"
"<p>\n"
"Aside from the visual improvements and the work on features, the focus of this release lies also on stability and performance improvements, with over 180 bugs resolved since 5.0 in the shell alone. Plasma 5.1 requires <a href=\"https://www.kde.org/announcements/kde-frameworks-5.3.0.php\">KDE Frameworks 5.3</a>, which brings in another great amount of fixes and performance improvements on top of the large number of fixes that have gone into Plasma 5.1. If you want to help to make more of this happen, consider <a href='https://www.kde.org/fundraisers/yearend2014'>a donation</a> to KDE, so we can support more developers getting together to make great software.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:33
msgid ""
"<a\n"
"href='https://community.kde.org/Plasma/5.1_Changes'>5.1 Changes List</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:40
msgid "Artwork and Visuals"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:50
msgid ""
"\n"
"The Breeze artwork concept, which has made its first appearance in Plasma 5.0 has seen many improvements. The icon set is now more complete. The icons in the notification area in the panel have been touched up visually. A new native widget style improves rendering of applications used in Plasma. This new native style also works for Qt 4 letting applications written with KDE Platform 4 fit in with your Plasma 5 desktop. There is a <a href=\"plasma-lookandfeel.png\">new System Settings module</a> that lets you switch between desktop themes.\n"
"</p>"
"<p>\n"
"Overall, Plasma 5.1's Look and Feel refines the experience found in 5.0 noticeably. Behind all these changes are improvements to the <a href=\"https://techbase.kde.org/Projects/Usability/HIG\">Human Interface Guidelines</a>, which have led to a more consistent overall user experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:58
msgid "New and Old Features"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:65
msgid ""
"\n"
"Plasma 5.1 brings back many features that users have grown used to from its 4.x predecessor. Popular additional widgets such as the <em>Icons-only Task Manager</em>, the <em>Notes</em> widget and the <em>System Load Viewer</em> make their re-entry. Support for multiple time zones has been added back in the panel's clock. The notifications have been visually improved, along with many bigger and smaller bug fixes.\n"
"</p>"
"<p>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:76
msgid ""
"A new feature allow you to easily switch between different widgets which share the same purpose. Changing the application launcher for example has become much easier to discover. Plasma panels have new switchers to easily swap between different widgets for the same task. You can select which application menu, clock or task manager you want with ease. The new <em>Clipboard</em> widget offers a redesigned user interface on top of Plasma's venerable clipboard manager, allowing the user to easily use the clipboard's history and preview files currently in the clipboard. Plasma's alternative launcher, <em>Kicker</em> has seen a large number of <a href=\"https://community.kde.org/Plasma/5.1_Changes#Kicker_Application_Menu\">improvements</a>, among which better accessibility and integration with the package manager.\n"
"</p>"
"<p>\n"
"Thanks to two Google Summer of Code projects, the Plasma Media Center and tablet-centric Plasma Active user experiences now have basic ports available from Git, but are not release-quality yet.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:82 announcements/plasma-5.10.95.php:199
#: announcements/plasma-5.11.0.php:205 announcements/plasma-5.5.95.php:152
#: announcements/plasma-5.6.0.php:172 announcements/plasma-5.8.95.php:145
#: announcements/plasma-5.9.0.php:141
msgid "Wayland"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:84
msgid ""
"\n"
"Further progress has been made on Wayland support. A new window manager binary 'kwin_wayland' now complements the existing 'kwin_x11', and is equipped with the ability to start a nested X server for compatibility with X11-based applications. A newly-created KWayland library provides Wayland setup information to KInfoCenter and other consumers. More work is needed and ongoing to run the Plasma workspace on Wayland; we expect this to bear fruit for end-users in 2015.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:89
msgid ""
"\n"
"<h2>Suitability and Updates</h2>"
"\n"
"<p>\n"
"Plasma 5.1 provides a core desktop with a feature set that will suffice for many users. The development team has concentrated on tools that make up the central workflows. While many features known from the Plasma 4.x series are already available in Plasma 5.1, not all of them have been ported and made available for Plasma 5 yet. As with any software release of this size, there may be bugs that make a migration to Plasma 5 hard for some users. The development team would like to hear about issues you may run into, so they can be addressed and fixed. We have compiled a <a href=\"https://community.kde.org/Plasma/5.1_Errata\">list of problems</a> we are aware of, and working on. Users can expect monthly bugfix updates. A release bringing new features and brinding back even more old features will be made in early 2015.\n"
"</p>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:98
msgid ""
"<a\n"
"href='https://community.kde.org/Plasma/5.1_Errata'>5.1 Known Bugs</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:141
msgid ""
"\n"
"<a href='../../info/%1.php'>Source\n"
"Info Page</a>\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.1/index.php:168
msgid "<p>We produce beautiful software for your computer, please we'd love you to join us improving it or helping fellow users. If you can't find the time to contribute directly do consider <a href='https://www.kde.org/fundraisers/yearend2014'>sending a donation</a>, help to make the world a better place!"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:102 announcements/plasma-5.10.1.php:101
#: announcements/plasma-5.10.2.php:101 announcements/plasma-5.10.3.php:101
#: announcements/plasma-5.10.4.php:101 announcements/plasma-5.10.5.php:101
#: announcements/plasma-5.10.95.php:104 announcements/plasma-5.11.0.php:104
#: announcements/plasma-5.11.1.php:101 announcements/plasma-5.11.2.php:101
#: announcements/plasma-5.11.3.php:101 announcements/plasma-5.11.4.php:101
#: announcements/plasma-5.11.5.php:101 announcements/plasma-5.11.95.php:104
-#: announcements/plasma-5.8.6.php:94 announcements/plasma-5.8.7.php:93
-#: announcements/plasma-5.8.8.php:101 announcements/plasma-5.9.2.php:94
-#: announcements/plasma-5.9.3.php:93 announcements/plasma-5.9.4.php:93
-#: announcements/plasma-5.9.5.php:93 announcements/plasma-5.9.95.php:101
+#: announcements/plasma-5.12.0.php:101 announcements/plasma-5.8.6.php:94
+#: announcements/plasma-5.8.7.php:93 announcements/plasma-5.8.8.php:101
+#: announcements/plasma-5.9.2.php:94 announcements/plasma-5.9.3.php:93
+#: announcements/plasma-5.9.4.php:93 announcements/plasma-5.9.5.php:93
+#: announcements/plasma-5.9.95.php:101
msgid "Release Announcements"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:102 announcements/plasma-5.10.1.php:101
#: announcements/plasma-5.10.2.php:101 announcements/plasma-5.10.3.php:101
#: announcements/plasma-5.10.4.php:101 announcements/plasma-5.10.5.php:101
#: announcements/plasma-5.11.1.php:101 announcements/plasma-5.11.2.php:101
#: announcements/plasma-5.11.3.php:101 announcements/plasma-5.11.4.php:101
-#: announcements/plasma-5.11.5.php:101 announcements/plasma-5.8.7.php:93
-#: announcements/plasma-5.8.8.php:101 announcements/plasma-5.9.2.php:94
-#: announcements/plasma-5.9.3.php:93 announcements/plasma-5.9.4.php:93
-#: announcements/plasma-5.9.5.php:93 announcements/plasma-5.9.95.php:101
+#: announcements/plasma-5.11.5.php:101 announcements/plasma-5.12.0.php:101
+#: announcements/plasma-5.8.7.php:93 announcements/plasma-5.8.8.php:101
+#: announcements/plasma-5.9.2.php:94 announcements/plasma-5.9.3.php:93
+#: announcements/plasma-5.9.4.php:93 announcements/plasma-5.9.5.php:93
+#: announcements/plasma-5.9.95.php:101
msgid "Plasma %1"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:113 announcements/plasma-5.10.1.php:114
#: announcements/plasma-5.10.2.php:114 announcements/plasma-5.10.3.php:114
#: announcements/plasma-5.10.4.php:114 announcements/plasma-5.10.5.php:114
#: announcements/plasma-5.10.95.php:117 announcements/plasma-5.11.0.php:117
#: announcements/plasma-5.11.1.php:114 announcements/plasma-5.11.2.php:114
#: announcements/plasma-5.11.3.php:114 announcements/plasma-5.11.4.php:114
#: announcements/plasma-5.11.5.php:114 announcements/plasma-5.11.95.php:118
-#: announcements/plasma-5.8.6.php:107 announcements/plasma-5.8.7.php:106
-#: announcements/plasma-5.8.8.php:114 announcements/plasma-5.9.2.php:107
-#: announcements/plasma-5.9.3.php:106 announcements/plasma-5.9.4.php:106
-#: announcements/plasma-5.9.5.php:106 announcements/plasma-5.9.95.php:114
+#: announcements/plasma-5.12.0.php:114 announcements/plasma-5.8.6.php:107
+#: announcements/plasma-5.8.7.php:106 announcements/plasma-5.8.8.php:114
+#: announcements/plasma-5.9.2.php:107 announcements/plasma-5.9.3.php:106
+#: announcements/plasma-5.9.4.php:106 announcements/plasma-5.9.5.php:106
+#: announcements/plasma-5.9.95.php:114
msgid "KDE Plasma %1"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:117
msgid "Tuesday, 30 May 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:118
msgid "Today KDE has made a new feature release of our desktop Plasma 5.10 with new features across the suite to give users an experience which lives up to our tagline: simple by default, powerful when needed."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:123 announcements/plasma-5.9.95.php:124
msgid "Panel Task Manager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:131 announcements/plasma-5.9.95.php:132
msgid "Middle Mouse Click to Group"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:134 announcements/plasma-5.9.95.php:135
msgid "Task Manager, the list of applications in the panel, has gained options for middle mouse click such as grouping and ungrouping applications."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:136 announcements/plasma-5.9.95.php:137
msgid ""
"Several other improvements here include:</p>"
"\n"
"<ul>\n"
"<li>Places jump list actions in File manager launchers (e.g. pinned Dolphin in Task Manager now lists user places)</li>"
"\n"
"<li>The icon size in vertical Task Managers is now configurable to support more common vertical panel usage patterns</li>"
"\n"
"<li>Improved app identification and pinning in Task Manager for apps that rely on StartupWMClass, perl-SDL-based apps and more</li>"
"\n"
"</ul>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:145 announcements/plasma-5.9.95.php:146
msgid "Folder View Is the New Default Desktop"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:148 announcements/plasma-5.11.95.php:285
#: announcements/plasma-5.11.95.php:287 announcements/plasma-5.9.95.php:149
msgid "Spring Loading in Folder View"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:150 announcements/plasma-5.9.95.php:151
msgid "Folder on the Desktop by Default"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:153 announcements/plasma-5.9.95.php:154
msgid "After some years shunning icons on the desktop we have accepted the inevitable and changed to Folder View as the default desktop which brings some icons by default and allows users to put whatever files or folders they want easy access to. Many other improvements have been made to the Folder View include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:154 announcements/plasma-5.9.95.php:155
msgid ""
"\n"
"<li><a href='https://blogs.kde.org/2017/01/31/plasma-510-spring-loading-folder-view-performance-work'>Spring Loading</a> in Folder View making drag and drop of files powerful and quick</li>"
"\n"
"<li>More space-saving/tighter icon grid in Folder View based on much user feedback</li>"
"\n"
"<li>Improved mouse behavior / ergonomics in Folder View for icon dnd (less surprising drop/insert location), rectangle selection (easier, less fiddly) and hover (same)</li>"
"\n"
"<li>Revamped rename user interface in Folder View (better keyboard and mouse behavior e.g. closing the editor by clicking outside, RTL fixed, etc.)</li>"
"\n"
"<li><em>Massively</em> improved performance in Folder View for initial listing and scrolling large folders, reduced memory usage</li>"
"\n"
"<li>Many other bug fixes and UI improvements in Folder View, e.g. better back button history, Undo shortcut support, clickable location in the headings, etc.</li>"
"\n"
"<li>Unified drop menu in Folder View, showing both file (Copy/Move/Link) and widget (creating a Picture widget from an image drop, etc.) drop actions</li>"
"\n"
"<li>It is now possible to resize widgets in the desktop by dragging on their edges and moving them with Alt+left-click, just like regular windows</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:167 announcements/plasma-5.9.95.php:168
msgid "New Features Everywhere"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:170 announcements/plasma-5.10.0.php:172
#: announcements/plasma-5.9.95.php:171 announcements/plasma-5.9.95.php:173
msgid "Lock Screen Now Has Music Controls"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:175 announcements/plasma-5.9.95.php:176
msgid "Software Centre Plasma Search"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:177 announcements/plasma-5.9.95.php:178
msgid "Software Centre Plasma Search offers to install apps"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:180 announcements/plasma-5.10.0.php:182
#: announcements/plasma-5.9.95.php:181 announcements/plasma-5.9.95.php:183
msgid "Audio Volume Device Menu"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:185 announcements/plasma-5.9.95.php:186
msgid ""
"There are so many other improvements throughout the desktop, here's a sample:</p>"
"\n"
"<ul>\n"
"<li>Media controls on lock screen</li>"
"\n"
"<li>Pause music on suspend</li>"
"\n"
"<li>Software Centre Plasma Search (KRunner) suggests to install non-installed apps</li>"
"\n"
"<li>File copying notifications have a context menu on previews giving access to actions such as open containing folder, copy, open with etc</li>"
"\n"
"<li>Improved plasma-windowed (enforces applet default/minimum sizes etc)</li>"
"\n"
"<li>'desktop edit mode', when opening toolbox reveals applet handles</li>"
"\n"
"<li>Performance optimizations in Pager and Task Manager</li>"
"\n"
"<li>'Often used' docs and apps in app launchers in addition to 'Recently used'</li>"
"\n"
"<li>Panel icons (buttons for popup applets, launcher applets) now follow the Icons -> Advanced -> Panel size setting in System Settings again, so they won't take up too much space, particularly useful for wide vertical panels</li>"
"\n"
"<li>Revamped password dialogs for network authentication</li>"
"\n"
"<li>The security of the lock screen architecture got reworked and simplified to ensure that your system is secured when the screen is locked. On Linux systems the lock screen is put into a sandbox through the seccomp technology.</li>"
"\n"
"<li>Plasma's window manager support for hung processes got improved. When a window is not responding any more it gets darkened to indicate that one cannot interact with it any more.</li>"
"\n"
"<li>Support for locking and unlocking the shell from the startup script, useful especially for distributions and enterprise setups</li>"
"\n"
"<li>Audio Volume applet has a handy menu on each device which you can use to set is as default or switch output to headphones.</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:205 announcements/plasma-5.9.95.php:206
msgid "Improved touch screen support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:208 announcements/plasma-5.10.0.php:210
#: announcements/plasma-5.9.95.php:209 announcements/plasma-5.9.95.php:211
msgid "Virtual keyboard on Log In and Lock Screen"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:212 announcements/plasma-5.9.95.php:213
msgid ""
"Touch Screen Support has improved in several ways:\n"
"<ul>\n"
"<li>Virtual Keyboard in lock screen\n"
"<li>Virtual Keyboard in the login screen\n"
"<li>Touch screen edge swipe gestures\n"
"<li>Left screen edge defaults to window switching\n"
"<li>Show auto-hiding panels through edge swipe gesture\n"
"</ul>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:222 announcements/plasma-5.9.95.php:223
msgid "Working for the Future with Wayland"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:223 announcements/plasma-5.9.95.php:224
msgid ""
"We have put a lot of work into porting to new graphics layer Wayland, the switch is coming but we won't recommend it until it is completely transparent to the user. There will be improved features too such as KWin now supports scaling displays by different levels if you have a HiDPI monitor and a normal DPI screen.</p>"
"\n"
"<p>Keyboard layout support in Wayland now has all the features of X11:</p>"
"\n"
"<ul>\n"
"<li>Layout switcher in the system tray</li>"
"\n"
"<li>Per layout global shortcut</li>"
"\n"
"<li>Switch layout based on a policy, either global, virtual desktop, application or per window</li>"
"\n"
"<li>IPC interface added, so that other applications can change layout.</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:235 announcements/plasma-5.9.95.php:236
msgid "Plymouth Boot Splash Selection"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:238 announcements/plasma-5.10.0.php:240
#: announcements/plasma-5.9.95.php:239 announcements/plasma-5.9.95.php:241
msgid "Plymouth KControl Module"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:243 announcements/plasma-5.9.95.php:244
msgid "A new System Settings module lets you download and select boot time splashes."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:247 announcements/plasma-5.9.95.php:248
msgid "Bundle Packages"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:250 announcements/plasma-5.9.95.php:251
msgid "Selecting a file using file chooser portal, invoking openURI portal and notification portal"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:252 announcements/plasma-5.9.95.php:253
msgid "Flatpak integration with xdg-desktop-portal-kde: selecting a file using file chooser portal, invoking openURI portal and notification portal"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:255 announcements/plasma-5.9.95.php:256
msgid "Experimental support for forthcoming new bundle package formats has been implemented. Discover software centre has gained provisional backends for Flatpak and Snappy. New plugin xdg-desktop-portal-kde has added KDE integration into Flatpak packaged applications."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:257 announcements/plasma-5.9.95.php:258
msgid "Support for GNOME’s <a href='https://odrs.gnome.org/'>Open Desktop Ratings</a>, replacing old Ubuntu popularity contest with tons of already existing reviews and comments."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:261
msgid "Full Plasma 5.10 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:268 announcements/plasma-5.10.1.php:144
#: announcements/plasma-5.10.2.php:144 announcements/plasma-5.10.3.php:152
#: announcements/plasma-5.10.4.php:145 announcements/plasma-5.10.5.php:141
#: announcements/plasma-5.10.95.php:231 announcements/plasma-5.11.0.php:237
#: announcements/plasma-5.11.1.php:143 announcements/plasma-5.11.2.php:144
#: announcements/plasma-5.11.3.php:143 announcements/plasma-5.11.4.php:144
#: announcements/plasma-5.11.5.php:142 announcements/plasma-5.11.95.php:405
-#: announcements/plasma-5.8.6.php:133 announcements/plasma-5.8.7.php:135
-#: announcements/plasma-5.8.8.php:144 announcements/plasma-5.9.2.php:137
-#: announcements/plasma-5.9.3.php:133 announcements/plasma-5.9.4.php:134
-#: announcements/plasma-5.9.5.php:136 announcements/plasma-5.9.95.php:269
+#: announcements/plasma-5.12.0.php:139 announcements/plasma-5.8.6.php:133
+#: announcements/plasma-5.8.7.php:135 announcements/plasma-5.8.8.php:144
+#: announcements/plasma-5.9.2.php:137 announcements/plasma-5.9.3.php:133
+#: announcements/plasma-5.9.4.php:134 announcements/plasma-5.9.5.php:136
+#: announcements/plasma-5.9.95.php:269
msgid "The easiest way to try it out is with a live image booted off a USB disk. Docker images also provide a quick and easy way to test Plasma."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:270 announcements/plasma-5.10.1.php:146
#: announcements/plasma-5.10.2.php:146 announcements/plasma-5.10.3.php:154
#: announcements/plasma-5.10.4.php:147 announcements/plasma-5.10.5.php:143
#: announcements/plasma-5.10.95.php:233 announcements/plasma-5.11.0.php:239
#: announcements/plasma-5.11.1.php:145 announcements/plasma-5.11.2.php:146
#: announcements/plasma-5.11.3.php:145 announcements/plasma-5.11.4.php:146
#: announcements/plasma-5.11.5.php:144 announcements/plasma-5.11.95.php:407
-#: announcements/plasma-5.8.6.php:135 announcements/plasma-5.8.7.php:137
-#: announcements/plasma-5.8.8.php:146 announcements/plasma-5.9.2.php:139
-#: announcements/plasma-5.9.3.php:135 announcements/plasma-5.9.4.php:136
-#: announcements/plasma-5.9.5.php:138 announcements/plasma-5.9.95.php:271
+#: announcements/plasma-5.12.0.php:141 announcements/plasma-5.8.6.php:135
+#: announcements/plasma-5.8.7.php:137 announcements/plasma-5.8.8.php:146
+#: announcements/plasma-5.9.2.php:139 announcements/plasma-5.9.3.php:135
+#: announcements/plasma-5.9.4.php:136 announcements/plasma-5.9.5.php:138
+#: announcements/plasma-5.9.95.php:271
msgid "Download live images with Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:271 announcements/plasma-5.10.1.php:147
#: announcements/plasma-5.10.2.php:147 announcements/plasma-5.10.3.php:155
#: announcements/plasma-5.10.4.php:148 announcements/plasma-5.10.5.php:144
#: announcements/plasma-5.10.95.php:234 announcements/plasma-5.11.0.php:240
#: announcements/plasma-5.11.1.php:146 announcements/plasma-5.11.2.php:147
#: announcements/plasma-5.11.3.php:146 announcements/plasma-5.11.4.php:147
#: announcements/plasma-5.11.5.php:145 announcements/plasma-5.11.95.php:408
-#: announcements/plasma-5.8.6.php:136 announcements/plasma-5.8.7.php:138
-#: announcements/plasma-5.8.8.php:147 announcements/plasma-5.9.2.php:140
-#: announcements/plasma-5.9.3.php:136 announcements/plasma-5.9.4.php:137
-#: announcements/plasma-5.9.5.php:139 announcements/plasma-5.9.95.php:272
+#: announcements/plasma-5.12.0.php:142 announcements/plasma-5.8.6.php:136
+#: announcements/plasma-5.8.7.php:138 announcements/plasma-5.8.8.php:147
+#: announcements/plasma-5.9.2.php:140 announcements/plasma-5.9.3.php:136
+#: announcements/plasma-5.9.4.php:137 announcements/plasma-5.9.5.php:139
+#: announcements/plasma-5.9.95.php:272
msgid "Download Docker images with Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:277 announcements/plasma-5.10.1.php:153
#: announcements/plasma-5.10.2.php:153 announcements/plasma-5.10.3.php:161
#: announcements/plasma-5.10.4.php:154 announcements/plasma-5.10.5.php:150
#: announcements/plasma-5.10.95.php:240 announcements/plasma-5.11.0.php:246
#: announcements/plasma-5.11.1.php:152 announcements/plasma-5.11.2.php:153
#: announcements/plasma-5.11.3.php:152 announcements/plasma-5.11.4.php:153
#: announcements/plasma-5.11.5.php:151 announcements/plasma-5.11.95.php:414
-#: announcements/plasma-5.8.6.php:142 announcements/plasma-5.8.7.php:144
-#: announcements/plasma-5.8.8.php:153 announcements/plasma-5.9.2.php:146
-#: announcements/plasma-5.9.3.php:142 announcements/plasma-5.9.4.php:143
-#: announcements/plasma-5.9.5.php:145 announcements/plasma-5.9.95.php:278
+#: announcements/plasma-5.12.0.php:148 announcements/plasma-5.8.6.php:142
+#: announcements/plasma-5.8.7.php:144 announcements/plasma-5.8.8.php:153
+#: announcements/plasma-5.9.2.php:146 announcements/plasma-5.9.3.php:142
+#: announcements/plasma-5.9.4.php:143 announcements/plasma-5.9.5.php:145
+#: announcements/plasma-5.9.95.php:278
msgid "Distributions have created, or are in the process of creating, packages listed on our wiki page."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:279 announcements/plasma-5.10.1.php:155
#: announcements/plasma-5.10.2.php:155 announcements/plasma-5.10.3.php:163
#: announcements/plasma-5.10.4.php:156 announcements/plasma-5.10.5.php:152
#: announcements/plasma-5.10.95.php:242 announcements/plasma-5.11.0.php:248
#: announcements/plasma-5.11.1.php:154 announcements/plasma-5.11.2.php:155
#: announcements/plasma-5.11.3.php:154 announcements/plasma-5.11.4.php:155
#: announcements/plasma-5.11.5.php:153 announcements/plasma-5.11.95.php:416
-#: announcements/plasma-5.8.6.php:144 announcements/plasma-5.8.7.php:146
-#: announcements/plasma-5.8.8.php:155 announcements/plasma-5.9.2.php:148
-#: announcements/plasma-5.9.3.php:144 announcements/plasma-5.9.4.php:145
-#: announcements/plasma-5.9.5.php:147 announcements/plasma-5.9.95.php:280
+#: announcements/plasma-5.12.0.php:150 announcements/plasma-5.8.6.php:144
+#: announcements/plasma-5.8.7.php:146 announcements/plasma-5.8.8.php:155
+#: announcements/plasma-5.9.2.php:148 announcements/plasma-5.9.3.php:144
+#: announcements/plasma-5.9.4.php:145 announcements/plasma-5.9.5.php:147
+#: announcements/plasma-5.9.95.php:280
msgid "Package download wiki page"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:285 announcements/plasma-5.10.1.php:161
#: announcements/plasma-5.10.2.php:161 announcements/plasma-5.10.3.php:169
#: announcements/plasma-5.10.4.php:162 announcements/plasma-5.10.5.php:158
#: announcements/plasma-5.10.95.php:248 announcements/plasma-5.11.0.php:254
#: announcements/plasma-5.11.1.php:160 announcements/plasma-5.11.2.php:161
#: announcements/plasma-5.11.3.php:160 announcements/plasma-5.11.4.php:161
#: announcements/plasma-5.11.5.php:159 announcements/plasma-5.11.95.php:422
-#: announcements/plasma-5.8.6.php:150 announcements/plasma-5.8.7.php:152
-#: announcements/plasma-5.8.8.php:161 announcements/plasma-5.9.2.php:154
-#: announcements/plasma-5.9.3.php:150 announcements/plasma-5.9.4.php:151
-#: announcements/plasma-5.9.5.php:153 announcements/plasma-5.9.95.php:286
+#: announcements/plasma-5.12.0.php:156 announcements/plasma-5.8.6.php:150
+#: announcements/plasma-5.8.7.php:152 announcements/plasma-5.8.8.php:161
+#: announcements/plasma-5.9.2.php:154 announcements/plasma-5.9.3.php:150
+#: announcements/plasma-5.9.4.php:151 announcements/plasma-5.9.5.php:153
+#: announcements/plasma-5.9.95.php:286
msgid "You can install Plasma 5 directly from source."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:287 announcements/plasma-5.10.1.php:163
#: announcements/plasma-5.10.2.php:163 announcements/plasma-5.10.3.php:171
#: announcements/plasma-5.10.4.php:164 announcements/plasma-5.10.5.php:160
#: announcements/plasma-5.10.95.php:250 announcements/plasma-5.11.0.php:256
#: announcements/plasma-5.11.1.php:162 announcements/plasma-5.11.2.php:163
#: announcements/plasma-5.11.3.php:162 announcements/plasma-5.11.4.php:163
#: announcements/plasma-5.11.5.php:161 announcements/plasma-5.11.95.php:424
-#: announcements/plasma-5.8.6.php:152 announcements/plasma-5.8.7.php:154
-#: announcements/plasma-5.8.8.php:163 announcements/plasma-5.9.2.php:156
-#: announcements/plasma-5.9.3.php:152 announcements/plasma-5.9.4.php:153
-#: announcements/plasma-5.9.5.php:155 announcements/plasma-5.9.95.php:288
+#: announcements/plasma-5.12.0.php:158 announcements/plasma-5.8.6.php:152
+#: announcements/plasma-5.8.7.php:154 announcements/plasma-5.8.8.php:163
+#: announcements/plasma-5.9.2.php:156 announcements/plasma-5.9.3.php:152
+#: announcements/plasma-5.9.4.php:153 announcements/plasma-5.9.5.php:155
+#: announcements/plasma-5.9.95.php:288
msgid "Community instructions to compile it"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:288 announcements/plasma-5.10.1.php:164
#: announcements/plasma-5.10.2.php:164 announcements/plasma-5.10.3.php:172
#: announcements/plasma-5.10.4.php:165 announcements/plasma-5.10.5.php:161
#: announcements/plasma-5.10.95.php:251 announcements/plasma-5.11.0.php:257
#: announcements/plasma-5.11.1.php:163 announcements/plasma-5.11.2.php:164
#: announcements/plasma-5.11.3.php:163 announcements/plasma-5.11.4.php:164
#: announcements/plasma-5.11.5.php:162 announcements/plasma-5.11.95.php:425
-#: announcements/plasma-5.8.6.php:153 announcements/plasma-5.8.7.php:155
-#: announcements/plasma-5.8.8.php:164 announcements/plasma-5.9.2.php:157
-#: announcements/plasma-5.9.3.php:153 announcements/plasma-5.9.4.php:154
-#: announcements/plasma-5.9.5.php:156 announcements/plasma-5.9.95.php:289
+#: announcements/plasma-5.12.0.php:159 announcements/plasma-5.8.6.php:153
+#: announcements/plasma-5.8.7.php:155 announcements/plasma-5.8.8.php:164
+#: announcements/plasma-5.9.2.php:157 announcements/plasma-5.9.3.php:153
+#: announcements/plasma-5.9.4.php:154 announcements/plasma-5.9.5.php:156
+#: announcements/plasma-5.9.95.php:289
msgid "Source Info Page"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:296 announcements/plasma-5.10.1.php:172
#: announcements/plasma-5.10.2.php:172 announcements/plasma-5.10.3.php:180
#: announcements/plasma-5.10.4.php:173 announcements/plasma-5.10.5.php:169
#: announcements/plasma-5.10.95.php:259 announcements/plasma-5.11.0.php:265
#: announcements/plasma-5.11.1.php:171 announcements/plasma-5.11.2.php:172
#: announcements/plasma-5.11.3.php:171 announcements/plasma-5.11.4.php:172
#: announcements/plasma-5.11.5.php:170 announcements/plasma-5.11.95.php:433
-#: announcements/plasma-5.8.6.php:161 announcements/plasma-5.8.7.php:163
-#: announcements/plasma-5.8.8.php:172 announcements/plasma-5.9.2.php:165
-#: announcements/plasma-5.9.3.php:161 announcements/plasma-5.9.4.php:162
-#: announcements/plasma-5.9.5.php:164 announcements/plasma-5.9.95.php:297
+#: announcements/plasma-5.12.0.php:167 announcements/plasma-5.8.6.php:161
+#: announcements/plasma-5.8.7.php:163 announcements/plasma-5.8.8.php:172
+#: announcements/plasma-5.9.2.php:165 announcements/plasma-5.9.3.php:161
+#: announcements/plasma-5.9.4.php:162 announcements/plasma-5.9.5.php:164
+#: announcements/plasma-5.9.95.php:297
msgid ""
"You can give us feedback and get updates on <a href='%1'><img src='%2' /></a> <a href='%3'>Facebook</a>\n"
"\t\t\tor <a href='%4'><img src='%5' /></a> <a href='%6'>Twitter</a>\n"
"\t\t\tor <a href='%7'><img src='%8' /></a> <a href='%9'>Google+</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:304 announcements/plasma-5.10.1.php:180
#: announcements/plasma-5.10.2.php:180 announcements/plasma-5.10.3.php:188
#: announcements/plasma-5.10.4.php:181 announcements/plasma-5.10.5.php:177
#: announcements/plasma-5.10.95.php:267 announcements/plasma-5.11.0.php:273
#: announcements/plasma-5.11.1.php:179 announcements/plasma-5.11.2.php:180
#: announcements/plasma-5.11.3.php:179 announcements/plasma-5.11.4.php:180
#: announcements/plasma-5.11.5.php:178 announcements/plasma-5.11.95.php:441
-#: announcements/plasma-5.8.6.php:169 announcements/plasma-5.8.7.php:171
-#: announcements/plasma-5.8.8.php:180 announcements/plasma-5.9.2.php:173
-#: announcements/plasma-5.9.3.php:169 announcements/plasma-5.9.4.php:170
-#: announcements/plasma-5.9.5.php:172 announcements/plasma-5.9.95.php:305
+#: announcements/plasma-5.12.0.php:175 announcements/plasma-5.8.6.php:169
+#: announcements/plasma-5.8.7.php:171 announcements/plasma-5.8.8.php:180
+#: announcements/plasma-5.9.2.php:173 announcements/plasma-5.9.3.php:169
+#: announcements/plasma-5.9.4.php:170 announcements/plasma-5.9.5.php:172
+#: announcements/plasma-5.9.95.php:305
msgid "You can provide feedback direct to the developers via the <a href='%1'>#Plasma IRC channel</a>, <a href='%2'>Plasma-devel mailing list</a> or report issues via <a href='%3'>bugzilla</a>. If you like what the team is doing, please let them know!"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.0.php:314 announcements/plasma-5.10.95.php:277
#: announcements/plasma-5.11.0.php:283 announcements/plasma-5.11.95.php:451
#: announcements/plasma-5.9.95.php:315
msgid "KDE is a <a href='%1'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='%2'>Supporting KDE page</a> for further information or become a KDE e.V. <a href='%3'>supporting member programme</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:118
msgid "Tuesday, 6 June 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:119 announcements/plasma-5.10.2.php:119
#: announcements/plasma-5.10.3.php:119 announcements/plasma-5.10.4.php:119
#: announcements/plasma-5.10.5.php:119 announcements/plasma-5.11.1.php:119
#: announcements/plasma-5.11.2.php:119 announcements/plasma-5.11.3.php:119
#: announcements/plasma-5.11.4.php:119 announcements/plasma-5.11.5.php:119
-#: announcements/plasma-5.8.7.php:111 announcements/plasma-5.9.3.php:111
-#: announcements/plasma-5.9.4.php:111 announcements/plasma-5.9.5.php:111
+#: announcements/plasma-5.12.0.php:119 announcements/plasma-5.8.7.php:111
+#: announcements/plasma-5.9.3.php:111 announcements/plasma-5.9.4.php:111
+#: announcements/plasma-5.9.5.php:111
msgid "Today KDE releases a %1 update to KDE Plasma 5, versioned %2"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:120 announcements/plasma-5.10.2.php:120
#: announcements/plasma-5.10.3.php:120 announcements/plasma-5.10.4.php:120
#: announcements/plasma-5.10.5.php:120 announcements/plasma-5.11.1.php:120
#: announcements/plasma-5.11.2.php:120 announcements/plasma-5.11.3.php:120
#: announcements/plasma-5.11.4.php:120 announcements/plasma-5.11.5.php:120
-#: announcements/plasma-5.8.7.php:112 announcements/plasma-5.9.3.php:112
-#: announcements/plasma-5.9.4.php:112 announcements/plasma-5.9.5.php:112
+#: announcements/plasma-5.12.0.php:120 announcements/plasma-5.8.7.php:112
+#: announcements/plasma-5.9.3.php:112 announcements/plasma-5.9.4.php:112
+#: announcements/plasma-5.9.5.php:112
msgid ""
"<a href='https://www.kde.org/announcements/plasma-%1.0.php'>Plasma %1</a>\n"
"\t\twas released in %2 with many feature refinements and new modules to complete the desktop experience."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:125 announcements/plasma-5.10.2.php:125
#: announcements/plasma-5.10.3.php:125 announcements/plasma-5.10.4.php:125
#: announcements/plasma-5.10.5.php:125 announcements/plasma-5.11.1.php:125
#: announcements/plasma-5.11.2.php:125 announcements/plasma-5.11.3.php:125
-#: announcements/plasma-5.11.4.php:125 announcements/plasma-5.8.7.php:117
-#: announcements/plasma-5.9.3.php:117 announcements/plasma-5.9.4.php:117
-#: announcements/plasma-5.9.5.php:117
+#: announcements/plasma-5.11.4.php:125 announcements/plasma-5.12.0.php:125
+#: announcements/plasma-5.8.7.php:117 announcements/plasma-5.9.3.php:117
+#: announcements/plasma-5.9.4.php:117 announcements/plasma-5.9.5.php:117
msgid "This release adds a %1 worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:129
msgid ""
"\n"
"<li>Fix screen locker incorrect behaviour after pressing enter key with empty password. <a href='https://commits.kde.org/kscreenlocker/23fa33cedfa55cbac83bbdcc514b988d721552dc'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380491'>#380491</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6091'>D6091</a></li>"
"\n"
"<li>Make QuickShare plasmoid compatible with Purpose 1.1. <a href='https://commits.kde.org/kdeplasma-addons/27efc1c2abc9c56b7161b77fc558fb77c591d4fe'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380883'>#380883</a></li>"
"\n"
"<li>Fixed crash when dropping files on desktop with KDeclarative from KDE Frameworks 5.35. <a href='https://commits.kde.org/plasma-desktop/77f1e675178ac995f7eb74c0410b5028ca1d74de'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380806'>#380806</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6088'>D6088</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:137 announcements/plasma-5.10.2.php:137
#: announcements/plasma-5.10.3.php:145 announcements/plasma-5.10.4.php:138
#: announcements/plasma-5.10.5.php:134 announcements/plasma-5.11.1.php:136
#: announcements/plasma-5.11.2.php:137 announcements/plasma-5.11.3.php:136
#: announcements/plasma-5.11.4.php:137 announcements/plasma-5.11.5.php:135
-#: announcements/plasma-5.8.6.php:126 announcements/plasma-5.8.7.php:128
-#: announcements/plasma-5.8.8.php:137 announcements/plasma-5.9.2.php:130
-#: announcements/plasma-5.9.3.php:126 announcements/plasma-5.9.4.php:127
-#: announcements/plasma-5.9.5.php:129
+#: announcements/plasma-5.12.0.php:132 announcements/plasma-5.8.6.php:126
+#: announcements/plasma-5.8.7.php:128 announcements/plasma-5.8.8.php:137
+#: announcements/plasma-5.9.2.php:130 announcements/plasma-5.9.3.php:126
+#: announcements/plasma-5.9.4.php:127 announcements/plasma-5.9.5.php:129
msgid "Full Plasma %1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.1.php:190 announcements/plasma-5.10.2.php:190
#: announcements/plasma-5.10.3.php:198 announcements/plasma-5.10.4.php:191
#: announcements/plasma-5.10.5.php:187 announcements/plasma-5.11.1.php:189
#: announcements/plasma-5.11.2.php:190 announcements/plasma-5.11.3.php:189
#: announcements/plasma-5.11.4.php:190 announcements/plasma-5.11.5.php:188
-#: announcements/plasma-5.8.6.php:179 announcements/plasma-5.8.7.php:181
-#: announcements/plasma-5.8.8.php:190 announcements/plasma-5.9.2.php:183
-#: announcements/plasma-5.9.3.php:179 announcements/plasma-5.9.4.php:180
-#: announcements/plasma-5.9.5.php:182
+#: announcements/plasma-5.12.0.php:185 announcements/plasma-5.8.6.php:179
+#: announcements/plasma-5.8.7.php:181 announcements/plasma-5.8.8.php:190
+#: announcements/plasma-5.9.2.php:183 announcements/plasma-5.9.3.php:179
+#: announcements/plasma-5.9.4.php:180 announcements/plasma-5.9.5.php:182
msgid "KDE is a <a href='%1'>Free Software</a> community that exists and grows only because of the help of many volunteers that donate their time and effort. KDE is always looking for new volunteers and contributions, whether it is help with coding, bug fixing or reporting, writing documentation, translations, promotion, money, etc. All contributions are gratefully appreciated and eagerly accepted. Please read through the <a href='%2'>Supporting KDE page</a> for further information or become a KDE e.V. supporting member through our <a href='%3'>Join the Game</a> initiative."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.2.php:118
msgid "Tuesday, 13 June 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.2.php:129
msgid ""
"\n"
"\n"
"<li>Discover: Make the PackageKit backend more resistant to crashes in PackageKit. <a href='https://commits.kde.org/discover/64c8778d4cd5180dfa13dd75fed808de9271cedc'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/376538'>#376538</a></li>"
"\n"
"<li>Plasma Networkmanager Openconnect: make sure the UI fits into the password dialog. <a href='https://commits.kde.org/plasma-nm/285c7ae37a3f6149b866dfb887bcb62ca6ce1046'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380399'>#380399</a></li>"
"\n"
"<li>Include a header for the settings page for better consistency. <a href='https://commits.kde.org/discover/bffd42fbaac59f262f6d61b8a25cbea5abb12701'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.3.php:118
msgid "Tuesday, 27 June 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.3.php:129
msgid ""
"\n"
"<li>Fix KWin draws 1px overlay on the left screen border: properly block the edge also for touch screen edges. <a href='https://commits.kde.org/kwin/6267d597311ccea26a8e70d57bd730ad13d146c2'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380476'>#380476</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6304'>D6304</a></li>"
"\n"
"\n"
"<li>Fix Buffer objects (VBO, FBO) need remapping after suspend/vt switch with NVIDIA. [platforms/x11] Add support for GLX_NV_robustness_video_memory_purge. <a href='https://commits.kde.org/kwin/97fa72ee48b7525e722822e7d7d41bb08343e337'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/344326'>#344326</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6344'>D6344</a></li>"
"\n"
"\n"
"<li>Make shadows work for windows 100% width or height. <a href='https://commits.kde.org/kwin/b7cb301deb3b191c7ff0bd04d87d6c1b93d90407'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/380825'>#380825</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6164'>D6164</a></li>"
"\n"
"\n"
"<li>Introduce KDE_NO_GLOBAL_MENU env variable to disable global menu per-app. <a href='https://commits.kde.org/plasma-integration/1ba4bca8342ac3d55bf29bdd8f622cd304e11816'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D6310'>D6310</a></li>"
"\n"
"\n"
"<li>Workaround Qt regression of no longer delivering events for the root window. <a href='https://commits.kde.org/kwin/a6dee74ee455d1da47dd5c9d55a84adbb5e1426a'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/360841'>#360841</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6258'>D6258</a></li>"
"\n"
"\n"
"<li>Fix can't control brightness. Revert 'skip the disabled backlight device'. <a href='https://commits.kde.org/powerdevil/5c57cf64b5e5c880b1a5f3a0177293f6958e1b9a'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/381114'>#381114</a>. Fixes bug <a href='https://bugs.kde.org/381199'>#381199</a></li>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.4.php:118
msgid "Tuesday, 18 July 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.4.php:129
msgid ""
"\n"
"\t\t"
"<li>[Windowed Widgets Runner] Fix launching widget. <a href='https://commits.kde.org/plasma-workspace/8c5a75341849a621462c41bb685bb46dfef129e1'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D6602'>D6602</a></li>"
"\n"
"<li>[Notifications] Check for corona to avoid crash. <a href='https://commits.kde.org/plasma-workspace/8a05294e5b3ef1df86f099edde837b8c8d28ccaf'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/378508'>#378508</a>. Phabricator Code review <a href='https://phabricator.kde.org/D6653'>D6653</a></li>"
"\n"
"<li>System Setting: Honour the NoDisplay attribute of KServices. <a href='https://commits.kde.org/systemsettings/85ed16cd422804971345bc492757fa0050b4b61d'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D6612'>D6612</a></li>"
"\n"
"\n"
"\t\t\n"
"\t\t"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.5.php:118
msgid "Tuesday, 22 August 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.5.php:129
msgid "A Plasma crash when certain taskbar applications group in a specific way"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.5.php:130
msgid "Excluding OSD's from the desktop grid kwin effect"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.5.php:131
msgid "Discover handling URL links to packages"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:104
msgid "Plasma 5.11 Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:121
msgid "Thursday, 14 Sep 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:122
msgid "Today KDE publishes a testing release of this autumn's Plasma feature release, KDE Plasma 5.11, to be released in mid-October 2017. Plasma 5.11 will bring a redesigned settings app, improved notifications, a more powerful task manager. Plasma 5.11 will be the first release to contain the new “Vault”, a system to allow the user to encrypt and open sets of documents in a secure and user-friendly way, making Plasma an excellent choice for people dealing with private and confidential information."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:127 announcements/plasma-5.11.0.php:127
msgid "New System Settings Design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:132
msgid "System Settings New Design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:135 announcements/plasma-5.11.0.php:135
msgid "The revamped System Settings user interface allows easier access to commonly used settings. It is the first step in making this often-used and complex application easier to navigate and more user-friendly. The new design is added as an option, users who prefer the older icon or tree views can move back to their preferred way of navigation."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:139 announcements/plasma-5.10.95.php:144
#: announcements/plasma-5.11.0.php:139 announcements/plasma-5.11.0.php:144
msgid "Notification History"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:147
msgid "Due to popular demand notifications optionally stores missed and expired notifications in a history. This is the first part of an ongoing effort to modernize the notification system in Plasma. This allows the user to override applications not marking their notifications as persistent, and viewing what happened in her absence. The notifications history is enabled by default for testing purposes, but may be switched off in the final 5.11 release as to provide a cleaner and uncluttered appearance out of the box. The Plasma team welcomes feedback from testers specifically about this new feature."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:151 announcements/plasma-5.11.0.php:151
msgid "Task Manager Improvements"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:156 announcements/plasma-5.11.0.php:156
msgid "Kate with Session Jump List Actions"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:159 announcements/plasma-5.11.0.php:159
msgid "Plasma's Task Manager lays the foundation for enabling applications to provide dynamic jump list actions. In Plasma 5.10, applications had to define additional actions added to their task entries statically. The new functions make it possible for applications to provide access to internal functions (such as a text editor's list of sessions, options to change application or document state, etc.), depending on what the application is currently doing. Moreover, rearranging windows in group popups is now possible, allowing the user to make the ordering of his opened applications more predictable. On top of all these changes, performance of the task manager has been improved for a smoother operation."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:163 announcements/plasma-5.11.0.php:163
msgid "Plasma Vault"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:168 announcements/plasma-5.11.0.php:168
msgid "Plasma Vault Stores Your Files Securely"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:171 announcements/plasma-5.11.0.php:171
msgid "For users who often deal with sensitive, confidential and private information, the new Plasma Vault offers strong encryption features presented in a user-friendly way. Plasma Vault allows to lock and encrypt sets of documents and hide them from prying eyes even when the user is logged in. These 'vaults' can be decrypted and opened easily. Plasma Vault extends Plasma's activities feature with secure storage."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:175 announcements/plasma-5.11.0.php:175
msgid "App Launcher Menu Improvements"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:181 announcements/plasma-5.11.0.php:181
msgid "Edit Application Entries Direct from Menu."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:186 announcements/plasma-5.11.0.php:186
msgid "Kicker without Sidebar"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:190
msgid ""
"Search results in launchers have gained features previously only available to applications listed on the menu. You no longer need to manually look for an application just to edit or uninstall it. The Kicker application launcher now hides its sidebar if no favorites are present, leading to a cleaner look. It also supports choosing an icon from the current icon theme rather than only pictures on your hard drive.\n"
"</p>"
"<p>\n"
"Folder View which became the default desktop layout in Plasma 5.10 saw many improvement based on user feedback. It supports more keyboard shortcuts, such as Ctrl+A to “Select All”, and spreads icons more uniformly across the visible area to avoid unpleasant gaps on the right and bottom edges of a screen. Moreover, startup has been sped up and interacting with icons results in significantly less disk access.\n"
"</p>"
"<p>\n"
"The different app menus now all share which applications are listed as favourites so you don't lose your settings if you decide to change your launcher.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:204 announcements/plasma-5.11.0.php:210
msgid "One app window, two monitors, two DPIs"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:207 announcements/plasma-5.11.0.php:213
msgid "Wayland is the next generation display server technology making its entry in the Linux desktop. Wayland allows for improved visual quality and less overhead while providing more security with its clearer protocol semantics. A complete Wayland session's most visible feature is probably smoother graphics, leading to a cleaner and more enjoyable user experience. Plasma's Wayland support has been long in the making, and while it isn't fully there as a replacement for X11, more and more users enjoy Wayland on a daily basis."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:209 announcements/plasma-5.11.0.php:215
msgid "A lot of work has been put into Plasma on Wayland. KWin, Plasma's Wayland compositor, can now automatically apply scaling based on the pixel density of a screen and even do so for each screen individually. This will significantly improve user experience on setups with multiple monitors, such as when a regular external monitor is connected to a modern high-resolution laptop. Moreover, legacy applications not supporting this functionality may be upscaled to remain readable."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:211 announcements/plasma-5.11.0.php:217
msgid "Work has started to allow for a completely X-free environment, starting the Xwayland compatibility layer only when an application requires it. This will eventually result in improved security and performance as well as reduced resource consumption. Furthermore, it is now possible to use ConsoleKit2 instead of logind for setting up the Wayland session, extending the number of supported platforms."
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:213 announcements/plasma-5.11.0.php:219
msgid "Additional improvements include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:215 announcements/plasma-5.11.0.php:221
msgid ""
"\n"
"<li>Application identification logic, used for e.g. pinning apps in Task Manager, has been greatly improved</li>"
"\n"
"<li>Audio indicator in Task Manager denoting an application playing sound is now available</li>"
"\n"
"<li>Restricted window move operations are now possible</li>"
"\n"
"<li>Window shortcuts can be also assigned to Wayland windows</li>"
"\n"
"<li>Window title logic has been unified between X and Wayland windows</li>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.10.95.php:224
msgid "Full Plasma 5.11 Beta changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:104
msgid "Plasma 5.11"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:121
msgid "Tuesday, 10 Oct 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:122
msgid "Today KDE publishes this autumn's Plasma feature release, KDE Plasma 5.11. Plasma 5.11 brings a redesigned settings app, improved notifications, a more powerful task manager. Plasma 5.11 is the first release to contain the new “Vault”, a system to allow the user to encrypt and open sets of documents in a secure and user-friendly way, making Plasma an excellent choice for people dealing with private and confidential information."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:132
msgid "System Settings' New Design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:147
msgid "Due to popular demand notifications optionally stores missed and expired notifications in a history. This is the first part of an ongoing effort to modernize the notification system in Plasma. This allows the user to override applications not marking their notifications as persistent, and viewing what happened in her absence."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:190
msgid ""
"Search results in launchers have gained features previously only available to applications listed on the menu. You no longer need to manually look for an application just to edit or uninstall it. The Kicker application launcher now hides its sidebar if no favorites are present, leading to a cleaner look. It also supports choosing an icon from the current icon theme rather than only pictures on your hard drive. You can now have different favorites per activity.\n"
"</p>"
"<p>\n"
"The different app menus now all share which applications are listed as favourites so you don't lose your settings if you decide to change your launcher.\n"
"</p>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:198
msgid "Folder View"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:199
msgid ""
"\n"
"Folder View, which became the default desktop layout in Plasma 5.10, saw many improvement based on user feedback. It supports more keyboard shortcuts, such as Ctrl+A to “Select All”, and spreads icons more uniformly across the visible area to avoid unpleasant gaps on the right and bottom edges of a screen. Moreover, startup has been sped up and interacting with icons results in significantly less disk access.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.0.php:230
msgid "Full Plasma 5.11 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.1.php:118
msgid "Tuesday, 17 October 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.1.php:129
msgid ""
"\n"
"<li>Fixed being unable to switch users from the Switch User screen. <a href='https://commits.kde.org/plasma-workspace/ac40f7dec47df9c48fa55d90be67ea4cbebcb09d'>Commit.</a> </li>"
"\n"
"<li>Fixed issue that caused pinned applications in task manager to erroneously shift around. <a href='https://commits.kde.org/plasma-workspace/88dbb40ddedee4740b904e9a6f57beda80013550'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/385594'>#385594</a>. Phabricator Code review <a href='https://phabricator.kde.org/D8258'>D8258</a></li>"
"\n"
"<li>Fixed application progress in task manager no longer working. <a href='https://commits.kde.org/plasma-desktop/a1a85f95bb487ac74ef2aa903ca09ae4ed2a125c'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/385730'>#385730</a>. Phabricator Code review <a href='https://phabricator.kde.org/D8327'>D8327</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.2.php:118
msgid "Thursday, 24 October 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.2.php:129
msgid ""
"\n"
"<li>Fix colours not updating in systemsettings. <a href='https://commits.kde.org/systemsettings/5f9243a8bb9f7dccc60fc1514a866095c22801b8'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D8399'>D8399</a></li>"
"\n"
"<li>Default X font DPI to 96 on wayland. <a href='https://commits.kde.org/plasma-desktop/fae658ae90bf855b391061a5332a1a964045e914'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/8287'>8287</a></li>"
"\n"
"<li>Kcm baloo: Fix extraction of folder basename for error message. <a href='https://commits.kde.org/plasma-desktop/5a8691900fea2b77ae194f509d17e7368235b4c1'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D8325'>D8325</a></li>"
"\n"
"<li>Properly access the system's GTK settings. <a href='https://commits.kde.org/kde-gtk-config/efa8c4df5b567d382317bd6f375cd1763737ff95'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/382291'>#382291</a>.</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.3.php:118
msgid "Tuesday, 7 November 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.3.php:129
msgid ""
"\n"
"<li>Sync xwayland DPI font to wayland dpi. <a href='https://commits.kde.org/plasma-workspace/a09ddff824a076b395fc7bfa801f81eaf2b8ea42'>Commit.</a> </li>"
"\n"
"<li>KDE GTK Config: Be flexible to systems without a gtkrc file in /etc. <a href='https://commits.kde.org/kde-gtk-config/952ab8f36e3c52a7ac6830ffd5b5c65f71fa0931'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/382291'>#382291</a></li>"
"\n"
"<li>Make sure we store password for all users when kwallet is disabled. <a href='https://commits.kde.org/plasma-nm/ead62e9582092709472e1e76eb3940d742ea808b'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/386343'>#386343</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.4.php:118
msgid "Tuesday, 28 November 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.4.php:129
msgid ""
"\n"
"<li>KSysGuard: Use OCS to retrieve Tabs from the KDE store. <a href='https://commits.kde.org/ksysguard/fdead6c30886e17ea0e590df2e7ddb79652fb328'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/338669'>#338669</a>. Phabricator Code review <a href='https://phabricator.kde.org/D8734'>D8734</a></li>"
"\n"
"<li>Be more explicit about Qt5::Widgets dependencies. <a href='https://commits.kde.org/plasma-desktop/1436ce4c23f8e0bc2e4a1efca73a9a436c34331a'>Commit.</a> </li>"
"\n"
"<li>Discover: Don't crash if we get into a weird state. <a href='https://commits.kde.org/discover/63fbc9bf5ef1cbf7fa4743770f032fbe342aa53f'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/385637'>#385637</a></li>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.5.php:118
msgid "Tuesday, 2 January 2018."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.5.php:125 announcements/plasma-5.8.8.php:125
msgid "This release adds %1 worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:104
msgid "Plasma 5.12 LTS Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:122
msgid "Monday, 15 Jan 2018."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:123
msgid "Plasma 5.12 LTS Beta is the second long term support release from the Plasma 5 team. We have been working hard focusing on speed and stability for this release. Boot time to desktop has been improved by reviewing the code for anything which blocks execution. The team has been triaging and fixing bugs in every aspect of the codebase, tidying up artwork, removing corner cases and ensuring cross desktop integration. For the first time we offer our Wayland integration on long term support so you can be sure we will continue to fix bugs over the coming releases."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:128
msgid "New in Plasma 5.12 LTS"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:131
msgid "Smoother and Speedier"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:133
msgid "We have been concentrating on speed and memory improvements with this long term support release. When Plasma is running it now uses less CPU and less memory than previous versions. The time it takes to start a Plasma desktop has been reduced dramatically."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:136
msgid "Plasma on Wayland Now Under LTS promise"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:141
msgid "Display Setup Now Supports Wayland"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:143
msgid "Plasma's support for running as Wayland is now more complete and is now suitable for more wide-ranged testing. It is included as Long Term Support for the first time so we will be fixing bugs in the 5.12 LTS series. New features include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:145
msgid ""
"\n"
"<li>Output resolution can be set through KScreen</li>"
"\n"
"<li>Enable/Disable outputs through KScreen</li>"
"\n"
"<li>Screen rotation</li>"
"\n"
"<li>Automatic screen rotation based on orientation sensor</li>"
"\n"
"<li>Automatic touch screen calibration</li>"
"\n"
"<li>XWayland is no longer required to run the Plasma desktop; applications only supporting X still make use of it.</li>"
"\n"
"<li>Wayland windows can be set to fullscreen</li>"
"\n"
"<li>Uses real-time scheduling policy to keep input responsive</li>"
"\n"
"<li>Automatic selection of the Compositor based on the used platform</li>"
"\n"
"<li>Starts implementing window rules</li>"
"\n"
"<li>KWin integrated Night Color removes blue light from your screen at night-time; this is a Wayland-only replacement for the great Redshift app on X</li>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:159
msgid "For those who know their Wayland internals the protocols we added are:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:161
msgid ""
"\n"
"<li>xdg_shell_unstable_v6</li>"
"\n"
"<li>xdg_foreign_unstable_v2</li>"
"\n"
"<li>idle_inhibit_unstable_v1</li>"
"\n"
"<li>server_decoration_palette</li>"
"\n"
"<li>appmenu</li>"
"\n"
"<li>wl_data_device_manager raised to version 3</li>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:170
msgid "Important change of policy: 5.12 is the last release which sees feature development in KWin on X11. With 5.13 onwards only new features relevant to Wayland are going to be added."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:172
msgid "We have put a lot of work into making Wayland support in Plasma as good as possible but there are still some missing features and issues in certain hardware configurations so we don't yet recommend it for daily use. More information on the <a href='https://community.kde.org/Plasma/Wayland_Showstoppers'>Wayland status wiki page</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:175 announcements/plasma-5.4.95.php:133
#: announcements/plasma-5.4.95.php:135 announcements/plasma-5.5.0.php:140
#: announcements/plasma-5.5.0.php:142
msgid "Discover"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:178 announcements/plasma-5.11.95.php:180
msgid "Discover's new app page"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:183
msgid ""
"\n"
"<li>Improvements in User Interface</li>"
"\n"
"<ul>\n"
"<li>Redesigned app pages to showcase great software</li>"
"\n"
"<li>Leaner headers on non-browsing sections</li>"
"\n"
"<li>More compact browsing views, so you can see more apps at once"
"<li>\n"
"<li>App screenshots are bigger and have keyboard navigation"
"<li>\n"
"<li>Installed app list sorted alphabetically"
"<li>\n"
"<li>More complete UI to configure sources</li>"
"\n"
"</ul>"
"\n"
"<li>Much greater stability</li>"
"\n"
"<li>Improvements in Snap and Flatpak support</li>"
"\n"
"<li>Support for apt:// URLs</li>"
"\n"
"<li>Distributions can enable offline updates</li>"
"\n"
"<li>Better usability on phone form factors: uses Kirigami main action, has a view specific for searching</li>"
"\n"
"<li>Integrate PackageKit global signals into notifications</li>"
"\n"
"<ul>\n"
"<li>Distro upgrade for new releases</li>"
"\n"
"<li>Reboot notification for when Discover installs or updates a package that needs a reboot</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:207
msgid "New Features"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:211 announcements/plasma-5.11.95.php:213
msgid "Weather Applet with Temperature"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:216
msgid "CPU usage in System Activity"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:218
msgid "CPU usage in System Monitor"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:221 announcements/plasma-5.11.95.php:223
msgid "Larger, horizontally-centered window shadows"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:228
msgid ""
"\n"
"<li>Night Color feature to reduce evening blue light expose</li>"
"\n"
"<li>Usability improvement for the global menu: adding a global menu panel or window decoration button enables it without needing an extra configuration step</li>"
"\n"
"<li>Accessibility fixes in KRunner: it can now be completely used with on-screen readers such as Orca</li>"
"\n"
"<li>Icon applet now uses website favicon</li>"
"\n"
"<li>Notification text selectable again including copy link feature</li>"
"\n"
"<li>Slim Kickoff application menu layout</li>"
"\n"
"<li>The weather applet can now optionally show temperature next to the weather status icon on the panel</li>"
"\n"
"<li>System Activity and System Monitor now show per-process graphs for the CPU usage</li>"
"\n"
"<li>Clock widget's text is now sized more appropriately</li>"
"\n"
"<li>Windows shadows are now horizontally centered, and larger by default</li>"
"\n"
"<li>Properties dialog now shows file metadata</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:244
msgid "What’s New Since Plasma 5.8 LTS"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:246
msgid "If you have been using our previous LTS release, Plasma 5.8, there are many new features for you to look forward to:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:249
msgid "Previews in Notifications"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:254
msgid "Preview in Notifications"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:257
msgid "The notification system gained support for interactive previews that allow you to quickly take a screenshot and drag it into a chat window, an email composer, or a web browser form. This way you never have to leave the application you’re currently working with."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:260
msgid "Task Manager Improvement"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:265
msgid "Audio Icon and Mute Button Context Menu Entry"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:268
msgid "Due to popular demand we implemented switching between windows in Task Manager using Meta + number shortcuts for heavy multi-tasking. Also new in Task Manager is the ability to pin different applications in each of your activities. And should you want to focus on one particular task, applications currently playing audio are marked with an icon similar to how it’s done in modern web browsers. Together with a button to mute the offending application, this can help you stay focused."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:271 announcements/plasma-5.8.95.php:99
#: announcements/plasma-5.9.0.php:95
msgid "Global Menus"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:276
msgid "Global Menu Screenshots, Applet and Window Decoration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:279
msgid "Global Menus have also returned. KDE's pioneering feature to separate the menu bar from the application window allows for new user interface paradigm with either a Plasma Widget showing the menu or neatly tucked away in the window title bar. Setting it up has been greatly simplified in Plasma 5.12: as soon as you add the Global Menu widget or title bar button, the required background service gets started automatically."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:282
msgid "Spring Loaded Folders"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:290
msgid "Folder View is now the default desktop layout. After some years shunning icons on the desktop we have accepted the inevitable and changed to Folder View as the default desktop which brings some icons by default and allows users to put whatever files or folders they want easy access to. For this many improvements have been made to Folder View, including <a href='https://blogs.kde.org/2017/01/31/plasma-510-spring-loading-folder-view-performance-work'>Spring Loading</a> making drag and drop of files powerful and quick, a tighter icon grid, as well as massively improved performance."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:293
msgid "Music Controls in Lock Screen"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:298
msgid "Media Controls on Lock Screen"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:301
msgid "Media controls have been added to the lock screen, which can be disabled since Plasma 5.12 for added privacy. Moreover, music will automatically pause when the system suspends."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:304
msgid "New System Settings Interface"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:309
msgid "New Look System Settings"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:312
msgid "We introduced a new System Settings user interface for easy access to commonly used settings. It is the first step in making this often-used and complex application easier to navigate and more user-friendly. The new design is added as an option, users who prefer the older icon or tree views can move back to their preferred way of navigation."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:315 announcements/plasma-5.11.95.php:320
msgid "Plasma Vaults"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:323
msgid "KDE has a focus on privacy. Our vision is: A world in which everyone has control over their digital life and enjoys freedom and privacy."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:325
msgid "For users who often deal with sensitive, confidential and private information, the new Plasma Vault offers strong encryption features presented in a user-friendly way. It allows to lock and encrypt sets of documents and hide them from prying eyes even when the user is logged in. Plasma Vault extends Plasma's activities feature with secure storage."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:329 announcements/plasma-5.8.0.php:41
msgid "Plasma's Comprehensive Features"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:331 announcements/plasma-5.8.0.php:43
msgid "Take a look at what Plasma offers, a comprehensive selection of features unparalleled in any desktop software."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:333 announcements/plasma-5.11.95.php:336
#: announcements/plasma-5.11.95.php:338 announcements/plasma-5.7.95.php:50
#: announcements/plasma-5.7.95.php:52 announcements/plasma-5.8.0.php:45
#: announcements/plasma-5.8.0.php:48 announcements/plasma-5.8.0.php:50
msgid "Desktop Widgets"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:341 announcements/plasma-5.8.0.php:53
msgid "Cover your desktop in useful widgets to keep you up to date with weather, amused with comics or helping with calculations."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:344 announcements/plasma-5.11.95.php:347
#: announcements/plasma-5.11.95.php:349 announcements/plasma-5.7.95.php:61
#: announcements/plasma-5.7.95.php:63 announcements/plasma-5.8.0.php:56
#: announcements/plasma-5.8.0.php:59 announcements/plasma-5.8.0.php:61
msgid "Get Hot New Stuff"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:352 announcements/plasma-5.8.0.php:64
msgid "Download wallpapers, window style, widgets, desktop effects and dozens of other resources straight to your desktop. We work with the new <a href=\"http://store.kde.org\">KDE Store</a> to bring you a wide selection of addons for you to install."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:355 announcements/plasma-5.11.95.php:358
#: announcements/plasma-5.11.95.php:360 announcements/plasma-5.7.95.php:72
#: announcements/plasma-5.7.95.php:74 announcements/plasma-5.8.0.php:67
#: announcements/plasma-5.8.0.php:70 announcements/plasma-5.8.0.php:72
msgid "Desktop Search"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:363 announcements/plasma-5.8.0.php:75
msgid "Plasma will let you easily search your desktop for applications, folders, music, video, files... everything you have."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:366 announcements/plasma-5.11.95.php:369
#: announcements/plasma-5.11.95.php:371 announcements/plasma-5.7.95.php:83
#: announcements/plasma-5.7.95.php:85 announcements/plasma-5.8.0.php:78
#: announcements/plasma-5.8.0.php:81 announcements/plasma-5.8.0.php:83
msgid "Unified Look"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:374 announcements/plasma-5.8.0.php:86
msgid "Plasma's default Breeze theme has a unified look across all the common programmer toolkits - Qt 4 &amp; 5, GTK 2 &amp; 3, even LibreOffice."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:377 announcements/plasma-5.11.95.php:380
#: announcements/plasma-5.11.95.php:382 announcements/plasma-5.7.95.php:94
#: announcements/plasma-5.7.95.php:96 announcements/plasma-5.8.0.php:89
#: announcements/plasma-5.8.0.php:92 announcements/plasma-5.8.0.php:94
msgid "Phone Integration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:384 announcements/plasma-5.8.0.php:96
msgid "Using KDE Connect you'll be notified on your desktop of text message, can easily transfer files, have your music silenced during calls and even use your phone as a remote control."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:387 announcements/plasma-5.11.95.php:390
#: announcements/plasma-5.11.95.php:392 announcements/plasma-5.7.95.php:104
#: announcements/plasma-5.7.95.php:106 announcements/plasma-5.8.0.php:99
#: announcements/plasma-5.8.0.php:102 announcements/plasma-5.8.0.php:104
msgid "Infinitely Customisable"
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:394 announcements/plasma-5.8.0.php:106
msgid "Plasma is simple by default but you can customise it however you like with new widgets, panels, screens and styles."
msgstr ""
#. +> trunk
#: announcements/plasma-5.11.95.php:398
msgid "Full Plasma 5.12 changelog"
msgstr ""
#. +> trunk
+#: announcements/plasma-5.12.0.php:118
+msgid "Tuesday, 06 February 2018."
+msgstr ""
+
+#. +> trunk
+#: announcements/plasma-5.12.0.php:129
+msgid "FIXME"
+msgstr ""
+
+#. +> trunk
#: announcements/plasma-5.2.0.php:4
msgid "KDE Ships Plasma 5.2"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:17
msgid ""
"Tuesday, 27 January 2015.\n"
"Today KDE releases Plasma 5.2. This release adds a number\n"
"of new components, many new features and many more bugfixes.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:35
msgid "KScreen dual monitor setup"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:38
msgid "This release of Plasma comes with some new components to make your desktop even more complete:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:40
msgid "<strong>BlueDevil</strong>: a range of desktop components to manage Bluetooth devices. It'll set up your mouse, keyboard, send &amp; receive files and you can browse for devices."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:42
msgid "<strong>KSSHAskPass</strong>: if you access computers with ssh keys but those keys have passwords this module will give you a graphical UI to enter those passwords."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:44
msgid "<strong>Muon</strong>: install and manage software and other addons for your computer."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:46
msgid "<strong>Login theme configuration (SDDM)</strong>: SDDM is now the login manager of choice for Plasma and this new System Settings module allows you to configure the theme."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:48
msgid "<strong>KScreen</strong>: getting its first release for Plasma 5 is the System Settings module to set up multiple monitor support."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:50
msgid "<strong>GTK Application Style</strong>: this new module lets you configure themeing of applications from Gnome."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:52
msgid ""
"<strong>KDecoration</strong>: this new library makes it easier and\n"
"more reliable to make themes for KWin, Plasma's window manager. It has\n"
"impressive memory, performance and stability improvements. If you are\n"
"missing a feature don't worry it'll be back in Plasma 5.3."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:59
msgid "<strong>Undo</strong> changes to Plasma desktop layout"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:63
msgid "Undo changes to desktop layout"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:66
msgid "Smarter sorting of results in <strong>KRunner</strong>, press Alt-space to easily search through your computer"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:73
msgid "<strong>Breeze window decoration</strong> theme adds a new look to your desktop and is now used by default"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:80
msgid "The artists in the visual design group have been hard at work on many new <strong>Breeze icons</strong>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:84
msgid "More Breeze Icons"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:87
msgid "They are have added a new white mouse <strong>cursor theme</strong> for Breeze."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:89
msgid "<strong>New plasma widgets</strong>: 15 puzzle, web browser, show desktop"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:96
msgid "<strong>Audio Player controls</strong> in KRunner, press Alt-Space and type next to change music track"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:98
msgid "The Kicker alternative application menu can install applications from the menu and adds menu editing features."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:100
msgid ""
"Our desktop search feature Baloo sees optimisations on\n"
"startup. It now consumes 2-3x less CPU on startup. The query parser\n"
"supports \"type\" / \"kind\" properties, so you can type \"kind:Audio\" in\n"
"krunner to filter out Audio results."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:105
msgid ""
"In the screen locker we improved the integration with\n"
"logind to ensure the screen is properly locked before suspend. The\n"
"background of the lock screen can be configured. Internally this uses\n"
"part of the Wayland protocol which is the future of the Linux\n"
"desktop."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:111
msgid ""
"There are improvements in the handling of multiple monitors. The\n"
"detection code for multiple monitors got ported to use the XRandR\n"
"extension directly and multiple bugs related to it were fixed."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:115
msgid "<strong>Default applications in Kickoff</strong> panel menu have been updated to list Instant Messaging, Kontact and Kate."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:117
msgid "There is a welcome return to the touchpad enable/disable feature for laptop keypads with these keys."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:119
msgid "Breeze will <strong>set up GTK themes</strong> on first login to match."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:121
msgid "Over 300 bugs fixed throughout Plasma modules."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:123
msgid "Plasma modules 5.2 full changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.0.php:129
msgid ""
"\n"
"The easiest way to try it out is the with a live image booted off a\n"
"USB disk. Images which use Plasma 5.2 beta are available for\n"
"development versions of <a\n"
"href='http://cdimage.ubuntu.com/kubuntu/releases/vivid/alpha-2/'>Kubuntu\n"
"Vivid Beta</a> and <a\n"
"href='http://www.dvratil.cz/2015/01/plasma-5-2-beta-available-for-fedora-testers/'>Fedora\n"
"21 remix</a>. We expect Plasma 5 to be picked up as the default\n"
"desktop in leading distributions in the coming months.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1-5.2.2-changelog.php:4
msgid "Plasma 5.2.2 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:4
msgid "KDE Ships Plasma 5.2.1, Bugfix Release for February"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:21
msgid ""
"Tuesday, 24 February 2015.\n"
"Today KDE releases a bugfix update to Plasma 5, versioned 5.2.1. <a\n"
"href='https://www.kde.org/announcements/plasma-5.2.0.php'>Plasma 5.2</a>\n"
"was released in January with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:37
msgid "Don't turn off the screen or suspend the computer when watching videos in a web browser"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:38
msgid "Fix Powerdevil from using full CPU"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:39
msgid "Show the correct prompt for a fingerprint reader swipe"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:40
msgid "Show correct connection name in Plasma Network Manager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:41
msgid "Remove kdelibs4support code in many modules"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:42
msgid "Fix crash when switching to/from Breeze widget style"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:43
msgid "In KScreen fix crash when multiple EDID requests for the same output are enqueued"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:44
msgid "In KScreen fix visual representation of output rotation"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:45
msgid "In Oxygen style improved rendering of checkbox menu item's contrast pixel, especially when selected using Strong highlight."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:46
msgid "In Plasma Desktop improve rubber band feel and consistency with Dolphin."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:47
msgid "In Plasma Desktop use smooth transformation for scaling down the user picture"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:48
msgid "When setting color scheme information for KDElibs 4, don't read from KF5 kdeglobals"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:49
msgid "Baloo KCM: Show proper icons (porting bug)"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:52
msgid "Full Plasma 5.2.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.1.php:58
msgid ""
"\n"
"The easiest way to try it out is the with a live image booted off a\n"
"USB disk. Images with Plasma 5.2 are available from <a\n"
"href='http://cdimage.ubuntu.com/kubuntu/daily-live/current/'>Kubuntu development daily builds</a>.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2-5.2.95-changelog.php:4
msgid "Plasma 5.2.95 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2-5.3.0-changelog.php:4
msgid "Plasma 5.3.0 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:4
msgid "KDE Ships Plasma 5.2.2, Bugfix Release for March"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:21
msgid ""
"Tue, 24 Mar 2015.\n"
"Today KDE releases a bugfix update to Plasma 5, versioned 5.2.2. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.2.0.php'>Plasma 5.2</a>\n"
"was released in January with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:39
msgid "Translated documentation is now available"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:40
msgid "Create gtk-3.0 directory before putting the settings file into it. <a href='http://quickgit.kde.org/?p=breeze.git&a=commit&h=8614a8245741a1282a75a36cb7c67d181ec435a0'>Commit."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:41
msgid "KScreen: fix rounding error in updateRootProperties(). <a href='http://quickgit.kde.org/?p=kscreen.git&a=commit&h=a2d488623344e968e3e65627824e7ae369247094'>Commit."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:42
msgid "KWin: Fix installation of GHNS material. <a href='http://quickgit.kde.org/?p=kwin.git&a=commit&h=9bddd0fe8a7a909e0704ce215666d4a8a23a8307'>Commit."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:43
msgid "Muon: Wait to fetch the KNS backend until we have OCS providers. <a href='http://quickgit.kde.org/?p=muon.git&a=commit&h=a644be96c4c446b904a194278f35bb0e0540aabc'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/344840'>#344840</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:44
msgid "Plasma Desktop: Extract UI messages. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&a=commit&h=12f750d497c5f2def14d89ad669057e13197b6f8'>Commit."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:45
msgid "Plasma Networkmanager: Make sure SSID will be displayed properly when using non-ASCII characters. <a href='http://quickgit.kde.org/?p=plasma-nm.git&a=commit&h=cbd1e7818471ae382fb25881c138e0228a44dac4'>Commit.</a> See bug <a href='https://bugs.kde.org/342697'>#342697</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:51
msgid "Full Plasma 5.2.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.2.php:57
msgid ""
"\n"
"The easiest way to try it out is the with a live image booted off a\n"
"USB disk. You can find a list of <a href='%1'>Live Images with Plasma 5</a> at KDE Community Wiki.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:4
msgid "KDE Ships Plasma 5.3 Beta, New Feature Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:21
msgid "Tuesday, 14 April 2015."
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:22
msgid "Today KDE releases a beta release of Plasma 5, versioned 5.2.95. \n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:28 announcements/plasma-5.2.95.php:30
msgid "Plasma 5.3 Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:33 announcements/plasma-5.3.0.php:34
msgid "Highlights"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:38 announcements/plasma-5.3.0.php:39
msgid "Inform what is blocking power saving"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:40 announcements/plasma-5.3.0.php:41
msgid "Battery applet now informs what is blocking power saving"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:42 announcements/plasma-5.3.0.php:43
msgid "Energy Usage monitor"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:44 announcements/plasma-5.3.0.php:45
msgid "New energy usage monitor"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:47 announcements/plasma-5.3.0.php:48
msgid "Enhanced Power Management"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:49 announcements/plasma-5.3.0.php:50
msgid ""
"\n"
"<li>Power management settings can be configured\n"
"differently for certain activities</li>"
"\n"
"<li>Laptop will not suspend when closing the lid while an external monitor is\n"
"connected ('cinema mode', by default, can be turned off)</li>"
"\n"
"<li>Power management inhibitions block lock screen too</li>"
"\n"
"<li>Screen brightness changes are now animated on most hardware</li>"
"\n"
"<li>No longer suspends when closing the lid while shutting down</li>"
"\n"
"<li>Support for keyboard button brightness controls on lock screen</li>"
"\n"
"<li>KInfoCenter provides statistics about energy consumption</li>"
"\n"
"<li>Battery monitor now shows which applications are currently holding a power management\n"
"inhibition for example ('Chrome is currently suppressing PM: Playing video')</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:68 announcements/plasma-5.3.0.php:69
msgid "Bluedevil"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:70 announcements/plasma-5.3.0.php:71
msgid "The new Bluedevil Applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:73 announcements/plasma-5.3.0.php:74
msgid "Better Bluetooth Capabilities"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:75 announcements/plasma-5.3.0.php:76
msgid ""
"\n"
"<li>New Bluetooth applet</li>"
"\n"
"<li>Bluedevil was ported to a new library from KDE, BluezQt</li>"
"\n"
"<li>Added support for blocking and unblocking Bluetooth</li>"
"\n"
"<li>Connected devices with Browse Files (ObexFTP) support are now displayed in the file dialog's Places panel</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:87 announcements/plasma-5.2.95.php:89
#: announcements/plasma-5.3.0.php:88 announcements/plasma-5.3.0.php:90
msgid "Configure your Touchpad"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:92 announcements/plasma-5.3.0.php:93
msgid ""
"\n"
"A <strong>touchpad configuration module</strong> has been added\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:99 announcements/plasma-5.2.95.php:101
#: announcements/plasma-5.3.0.php:100 announcements/plasma-5.3.0.php:102
msgid "Application Menu can access contacts"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:103 announcements/plasma-5.2.95.php:105
msgid "Application Menu can show recent contacts"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:108 announcements/plasma-5.3.0.php:109
msgid ""
"\n"
"Improved Plasma Widgets\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:113 announcements/plasma-5.3.0.php:114
msgid ""
"\n"
"<li>Clipboard applet gains support for showing barcodes</li>"
"\n"
"</li>"
"The Desktop and Folder View containment codebases were\n"
" unified, and have seen performance improvements</li>"
"\n"
"<li>The Recent Documents and Recent Applications sections in\n"
" Application Menu (Kicker) are now powered by KDE activities</li>"
"\n"
"<li>Comics widget returns</li>"
"\n"
"<li>System monitor plasmoids return, such as CPU Load Monitor and Hard Disk usage</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:125 announcements/plasma-5.3.0.php:126
msgid ""
"\n"
"Plasma Media Center - Tech Preview\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:130 announcements/plasma-5.2.95.php:132
#: announcements/plasma-5.3.0.php:131 announcements/plasma-5.3.0.php:133
msgid "Plasma Media Center"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:135
msgid ""
"\n"
"<strong>Plasma Media Center</strong> is added as a tech preview in this beta. It is fully stable but misses a few features compared to version 1. You can log directly into a Plasma Media Center session if you want to use it on a media device such as a television or projector or you can run it from Plasma Desktop. It will scan for videos, music and pictures on your computer to let you browse and play them.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:142 announcements/plasma-5.2.95.php:144
#: announcements/plasma-5.3.0.php:143 announcements/plasma-5.3.0.php:145
msgid "Plasma is now able to start a nested XWayland server"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:147 announcements/plasma-5.3.0.php:148
msgid "Big Steps Towards Wayland Support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:150 announcements/plasma-5.3.0.php:151
msgid ""
"\n"
"Plasma 5.3 makes a huge step towards to <strong>supporting the Wayland windowing system</strong> in addition to the default X11 windowing system. Plasma's window manager and compositor KWin is now able to start a nested XWayland server, which acts as a bridge between the old (X11) and the new (Wayland) world. X11 windows can connect to this server as if it were a normal X server, for KWin it looks like a Wayland window, though. This means that KWin learned to handle Wayland windows in this release, though full integration is only expected for Plasma 5.4.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:155 announcements/plasma-5.3.0.php:156
msgid ""
"\n"
"In addition KWin gained new output modes for Wayland allowing to start a nested KWin on X11 and to start KWin directly on a framebuffer device, which will be the fallback for the case that OpenGL and/or <a href='https://en.wikipedia.org/wiki/Direct_Rendering_Manager'>kernel mode settings</a> are not supported. A rendering backend on kernel mode settings is expected for Plasma 5.4. More information about these new backends and how to test them can be found in <a href='https://community.kde.org/KWin/Wayland'>the KWin wiki pages</a>. Please keep in mind that this is only a development preview and highly experimental new code.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:160 announcements/plasma-5.3.0.php:184
msgid "Bug Fixes Galore"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:163
msgid ""
"\n"
"348 bugs were fixed</a> giving fewer crashes and more reliable use.</p>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:170
msgid "Full Plasma 5.2.95 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:177 announcements/plasma-5.3.0.php:201
msgid ""
"\n"
"The easiest way to try out Plasma is the with a live image booted off a USB disk.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:183 announcements/plasma-5.3.0.php:207
msgid "<a href='https://community.kde.org/Plasma/Live_Images'>Plasma Live Images</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.2.95.php:205 announcements/plasma-5.3.0.php:229
msgid ""
"You can install Plasma 5 directly from source. KDE's\n"
"community wiki has <a\n"
"href='https://community.kde.org/Plasma/Building'>instructions to compile it</a>.\n"
"Note that Plasma 5 does not co-install with Plasma 4, you will need\n"
"to uninstall older versions or install into a separate prefix.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0-5.3.1-changelog.php:4
msgid "Plasma 5.3.1 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:4
msgid "KDE Ships Plasma 5.3, New Feature Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:22
msgid "Tuesday, 28 April 2015."
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:23
msgid "Today KDE releases a release of Plasma 5, versioned 5.3.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:29 announcements/plasma-5.3.0.php:31
#: announcements/plasma-5.3.1.php:24 announcements/plasma-5.3.1.php:26
#: announcements/plasma-5.3.2.php:23 announcements/plasma-5.3.2.php:25
msgid "Plasma 5.3"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:104 announcements/plasma-5.3.0.php:106
msgid "Application Menu can show recent documents"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:136
msgid ""
"\n"
"<strong>Plasma Media Center</strong> is added as a tech preview in this release. It is fully stable but misses a few features compared to version 1. You can log directly into a Plasma Media Center session if you want to use it on a media device such as a television or projector or you can run it from Plasma Desktop. It will scan for videos, music and pictures on your computer to let you browse and play them.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:162
msgid ""
"\n"
"Desktop Tweaks - Press and Hold\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:171
msgid "Press and Hold Tweak"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:174
msgid ""
"\n"
"A new Tweaks configuration option in Plasma allows you to enable or disable the desktop settings toolbox and enable a new <strong>Press and Hold</strong> mode for widget management.\n"
"In this mode, widgets can be moved after pressing and\n"
"holding anywhere on the widget, and the widget handle\n"
"will only be shown after press and hold rather than on\n"
"hover. When this mode is enabled, unlocking the desktop\n"
"will show a helpful instruction notification (which can\n"
"be dismissed forever from the popup).\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:187
msgid ""
"\n"
"393 bugs were fixed</a> giving fewer crashes and more reliable use.</p>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.0.php:194
msgid "Full Plasma 5.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1-5.3.2-changelog.php:4
msgid "Plasma 5.3.2 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:4
msgid "KDE Ships Plasma 5.3.1, Bugfix Release for May"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:30
msgid "Tuesday, 26 May 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.3.1. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.3.0.php'>Plasma 5.3</a>\n"
"was released in January with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:39
msgid ""
"\n"
"This release adds a month's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important for example:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:47
msgid ""
"\n"
"<li> <a href='https://sessellift.wordpress.com/2015/05/14/in-free-software-its-okay-to-be-imperfect-as-long-as-youre-open-and-honest-about-it/'>show desktop</a> has now been fixed</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:55
msgid "Full Plasma 5.3.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.1.php:61 announcements/plasma-5.3.2.php:60
#: announcements/plasma-5.3.95.php:181 announcements/plasma-5.4.0.php:201
#: announcements/plasma-5.4.1.php:62 announcements/plasma-5.4.2.php:61
#: announcements/plasma-5.4.3.php:62 announcements/plasma-5.4.95.php:169
#: announcements/plasma-5.5.0.php:190 announcements/plasma-5.5.1.php:65
#: announcements/plasma-5.5.2.php:65 announcements/plasma-5.5.3.php:61
#: announcements/plasma-5.5.4.php:58 announcements/plasma-5.5.5.php:61
#: announcements/plasma-5.5.95.php:187 announcements/plasma-5.6.0.php:213
#: announcements/plasma-5.6.1.php:67 announcements/plasma-5.6.2.php:67
#: announcements/plasma-5.6.3.php:67 announcements/plasma-5.6.4.php:67
#: announcements/plasma-5.6.5.php:66 announcements/plasma-5.6.95.php:130
#: announcements/plasma-5.7.0.php:125 announcements/plasma-5.7.1.php:68
#: announcements/plasma-5.7.2.php:66 announcements/plasma-5.7.3.php:67
#: announcements/plasma-5.7.4.php:67 announcements/plasma-5.7.5.php:67
#: announcements/plasma-5.7.95.php:199 announcements/plasma-5.8.0.php:197
#: announcements/plasma-5.8.1.php:68 announcements/plasma-5.8.2.php:66
#: announcements/plasma-5.8.3.php:67 announcements/plasma-5.8.4.php:71
#: announcements/plasma-5.8.5.php:67
msgid ""
"\n"
"The easiest way to try it out is with a live image booted off a\n"
"USB disk. You can find a list of <a href='%1'>Live Images with Plasma 5</a> on the KDE Community Wiki.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2-5.3.95-changelog.php:4
msgid "Plasma 5.3.95 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2-5.4.0-changelog.php:4
msgid "Plasma 5.4.0 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2.php:4
msgid "KDE Ships Plasma 5.3.2, Bugfix Release for June"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2.php:29
msgid "Tuesday, 30 June 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2.php:30
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.3.2. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.3.0.php'>Plasma 5.3</a>\n"
"was released in April with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2.php:46
msgid ""
"\n"
"<li>KWin: 'Defaults' should set the title bar double-click action to 'Maximize.'. <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=26ee92cd678b1e070a3bdebce100e38f74c921da'>Commit.</a> </li>"
"\n"
"<li>Improve Applet Alternatives dialog. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=0e90ea5fea7947acaf56689df18bbdce14e8a35f'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/345786'>#345786</a></li>"
"\n"
"<li>Make shutdown scripts work. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=96fdec6734087e54c5eee7c073b6328b6d602b8e'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.2.php:54
msgid "Full Plasma 5.3.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:4
msgid "KDE Ships Plasma 5.4 Beta Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:23 announcements/plasma-5.3.95.php:25
#: announcements/plasma-5.4.0.php:23 announcements/plasma-5.4.0.php:25
#: announcements/plasma-5.4.1.php:23 announcements/plasma-5.4.1.php:25
#: announcements/plasma-5.4.2.php:23 announcements/plasma-5.4.2.php:25
#: announcements/plasma-5.4.3.php:23 announcements/plasma-5.4.3.php:25
msgid "Plasma 5.4"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:29
msgid "Tuesday, 11 August 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:30
msgid "Today KDE releases a beta release of the new version of Plasma 5.4.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:35 announcements/plasma-5.4.0.php:35
msgid ""
"\n"
"This release of Plasma brings many nice touches for our users such as\n"
"much improved high DPI support, KRunner auto-completion and many new\n"
"beautiful Breeze icons. It also lays the ground for the future with a\n"
"tech preview of Wayland session available. We're shipping a few new\n"
"components such as an Audio Volume Plasma Widget, monitor\n"
"calibration tool and the User Manager tool comes out beta.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:48 announcements/plasma-5.4.0.php:48
msgid "Audio Volume"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:50 announcements/plasma-5.4.0.php:50
msgid "The new Audio Volume Applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:53 announcements/plasma-5.4.0.php:53
msgid "New Audio Volume Applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:55
msgid ""
"\n"
"Our new Audio Volume applet works directly with Pulseaudio, the popular\n"
"sound server for Linux, to give you full control over volume and output settings in\n"
"a beautifully designed simple interface.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:66 announcements/plasma-5.4.0.php:66
msgid "Dashboard alternative launcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:68 announcements/plasma-5.4.0.php:68
msgid "The new Dashboard alternative launcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:71 announcements/plasma-5.4.0.php:71
msgid "Application Dashboard alternative launcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:73 announcements/plasma-5.4.0.php:73
msgid ""
"\n"
"Plasma 5.4 brings an entirely new fullscreen launcher Application Dashboard in\n"
"kdeplasma-addons: Featuring all features of Application Menu it includes sophisticated scaling to\n"
"screen size and full spatial keyboard navigation.\n"
"\n"
"The new launcher allows you to easily and quickly find applications, as well as recently used or favorited documents and contacts based on your previous activity.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:86 announcements/plasma-5.4.0.php:86
msgid "New Icons"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:88 announcements/plasma-5.4.0.php:88
msgid "Just some of the new icons in this release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:92 announcements/plasma-5.4.0.php:92
msgid "Artwork Galore"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:93 announcements/plasma-5.4.0.php:93
msgid "Plasma 5.4 brings over 1400 new icons covering not only all the KDE applications, but also providing Breeze themed artwork to apps such as Inkscape, Firefox and LibreOffice providing a more integrated, native feel."
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:105 announcements/plasma-5.4.0.php:105
msgid "KRunner history"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:107 announcements/plasma-5.4.0.php:107
msgid ""
"\n"
"KRunner now remembers your previous searches and automatically completes from the history as you type.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:116 announcements/plasma-5.4.0.php:116
msgid "Networks Graphs"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:118 announcements/plasma-5.4.0.php:118
msgid "Network Graphs"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:121 announcements/plasma-5.4.0.php:121
msgid "Useful graphs in Networks applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:123 announcements/plasma-5.4.0.php:123
msgid ""
"\n"
"The Networks applet is now able to display network traffic graphs. It also supports two new VPN plugins for connecting over SSH or SSTP."
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:128 announcements/plasma-5.4.0.php:149
msgid "Other changes and additions"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:130
msgid ""
"\n"
"<li>Much improved high DPI support</li>"
"\n"
"<li>Smaller memory footprint</li>"
"\n"
"<li>Our desktop search got new and much faster backend</li>"
"\n"
"<li>Sticky notes adds drag &amp; drop support and keyboard navigation</li>"
"\n"
"<li>Trash applet now works again with drag &amp; drop</li>"
"\n"
"<li>System tray gains quicker configurability</li>"
"\n"
"<li>Wayland tech preview (complete Plasma wayland session), driven by Plasma Mobile</li>"
"\n"
"<li>The documentation has been reviewed and updated</li>"
"\n"
"<li>Improved layout for Digital clock in slim panels</li>"
"\n"
"<li>ISO date support in Digital clock</li>"
"\n"
"<li>New easy way to switch 12h/24h clock format in Digital clock</li>"
"\n"
"<li>Week numbers in the calendar</li>"
"\n"
"<li>Any type of item can now be favorited in Application Menu (Kicker) from any view, adding support for document and Telepathy contact favorites</li>"
"\n"
"<li>Telepathy contact favorites show the contact photo and a realtime presence status badge</li>"
"\n"
"<li>Improved focus and activation handling between applets and containment on the desktop</li>"
"\n"
"<li>Various small fixes in Folder View: Better default sizes, fixes for mouse interaction issues, text label wrapping</li>"
"\n"
"<li>The Task Manager now tries harder to preserve the icon it derived for a launcher by default</li>"
"\n"
"<li>It's possible to add launchers by dropping apps on the Task Manager again</li>"
"\n"
"<li>It's now possible to configure what happens when middle-clicking a task button in the Task Manager: Nothing, window close, or launching a new instance of the same app</li>"
"\n"
"<li>The Task Manager will now sort column-major if the user forces more than one row; many users expected and prefer this sorting as it causes less task button moves as windows come and go</li>"
"\n"
"<li>Improved icon and margin scaling for task buttons in the Task Manager</li>"
"\n"
"<li>Various small fixes in the Task Manager: Forcing columns in vertical instance now works, touch event handling now works on all systems, fixed a visual issue with the group expander arrow</li>"
"\n"
"<li>Provided the Purpose framework tech preview is available, the QuickShare Plasmoid can be used, making it easy to share files on many web services.</li>"
"\n"
"<li>Monitor configuration tool added</li>"
"\n"
"<li>kwallet-pam is added to open your wallet on login</li>"
"\n"
"<li>User Manager now syncs contacts to KConfig settings and the User Account module has gone away</li>"
"\n"
"<li>Performance improvements to Application Menu (Kicker)</li>"
"\n"
"\n"
"<li>Various small fixes to Application Menu (Kicker): Hiding/unhiding\n"
"apps is more reliable, alignment fixes for top panels, 'Add to\n"
"Desktop' against a Folder View containment is more reliable,\n"
"better behavior in the KActivities-based Recent models</li>"
"\n"
"\n"
"<li>Support for custom menu layouts (through kmenuedit) and menu separator items in Application Menu (Kicker)</li>"
"\n"
"\n"
"<li>Folder View has improved mode when in panel (<a href=\"https://blogs.kde.org/2015/06/04/folder-view-panel-popups-are-list-views-again\">blog</a>)</li>"
"\n"
"<li>Dropping a folder on the Desktop containment will now offer creating a Folder View again</li>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.3.95.php:175
msgid "Full Plasma 5.4 beta changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0-5.4.1-changelog.php:4
msgid "Plasma 5.4.1 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:4
msgid "KDE Ships Plasma 5.4.0, Feature Release for August"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:29
msgid "Tuesday, 25 August 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:30
msgid "Today KDE releases a feature release of the new version of Plasma 5.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:55
msgid ""
"\n"
"Our new Audio Volume applet works directly with PulseAudio, the popular\n"
"sound server for Linux, to give you full control over volume and output settings in\n"
"a beautifully designed simple interface.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:129
msgid "Wayland Technology Preview"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:131
msgid ""
"\n"
"\n"
"With Plasma 5.4 the first technology preview of a Wayland session is\n"
"released. On systems with free graphics drivers it is possible to run\n"
"Plasma using KWin, Plasma's Wayland compositor and X11 window manager,\n"
"through <a href=\"https://en.wikipedia.org/wiki/Direct_Rendering_Manager\">kernel mode settings</a>. The\n"
"currently supported feature set is driven by the needs for the \n"
"<a href=\"https://dot.kde.org/2015/07/25/plasma-mobile-free-mobile-platform\">\n"
"Plasma Mobile project</a>\n"
"and more desktop oriented features are not yet fully implemented. The\n"
"current state does not yet allow to use it as a replacement for Xorg\n"
"based desktop, but allows to easily test it, contribute and watch tear\n"
"free videos. Instructions on how to start Plasma on Wayland can be\n"
"found in the <a href='https://community.kde.org/KWin/Wayland#Start_a_Plasma_session_on_Wayland'>KWin wiki pages</a>.\n"
"Wayland support will improve in future releases with the aim to get to a stable release soon.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:151
msgid ""
"\n"
"<li>Much improved high DPI support</li>"
"\n"
"<li>Smaller memory footprint</li>"
"\n"
"<li>Our desktop search got new and much faster backend</li>"
"\n"
"<li>Sticky notes adds drag &amp; drop support and keyboard navigation</li>"
"\n"
"<li>Trash applet now works again with drag &amp; drop</li>"
"\n"
"<li>System tray gains quicker configurability</li>"
"\n"
"<li>The documentation has been reviewed and updated</li>"
"\n"
"<li>Improved layout for Digital clock in slim panels</li>"
"\n"
"<li>ISO date support in Digital clock</li>"
"\n"
"<li>New easy way to switch 12h/24h clock format in Digital clock</li>"
"\n"
"<li>Week numbers in the calendar</li>"
"\n"
"<li>Any type of item can now be favorited in Application Menu (Kicker) from any view, adding support for document and Telepathy contact favorites</li>"
"\n"
"<li>Telepathy contact favorites show the contact photo and a realtime presence status badge</li>"
"\n"
"<li>Improved focus and activation handling between applets and containment on the desktop</li>"
"\n"
"<li>Various small fixes in Folder View: Better default sizes, fixes for mouse interaction issues, text label wrapping</li>"
"\n"
"<li>The Task Manager now tries harder to preserve the icon it derived for a launcher by default</li>"
"\n"
"<li>It's possible to add launchers by dropping apps on the Task Manager again</li>"
"\n"
"<li>It's now possible to configure what happens when middle-clicking a task button in the Task Manager: Nothing, window close, or launching a new instance of the same app</li>"
"\n"
"<li>The Task Manager will now sort column-major if the user forces more than one row; many users expected and prefer this sorting as it causes less task button moves as windows come and go</li>"
"\n"
"<li>Improved icon and margin scaling for task buttons in the Task Manager</li>"
"\n"
"<li>Various small fixes in the Task Manager: Forcing columns in vertical instance now works, touch event handling now works on all systems, fixed a visual issue with the group expander arrow</li>"
"\n"
"<li>Provided the Purpose framework tech preview is available, the QuickShare Plasmoid can be used, making it easy to share files on many web services.</li>"
"\n"
"<li>Monitor configuration tool added</li>"
"\n"
"<li>kwallet-pam is added to open your wallet on login</li>"
"\n"
"<li>User Manager now syncs contacts to KConfig settings and the User Account module has gone away</li>"
"\n"
"<li>Performance improvements to Application Menu (Kicker)</li>"
"\n"
"\n"
"<li>Various small fixes to Application Menu (Kicker): Hiding/unhiding\n"
"apps is more reliable, alignment fixes for top panels, 'Add to\n"
"Desktop' against a Folder View containment is more reliable,\n"
"better behavior in the KActivities-based Recent models</li>"
"\n"
"\n"
"<li>Support for custom menu layouts (through kmenuedit) and menu separator items in Application Menu (Kicker)</li>"
"\n"
"\n"
"<li>Folder View has improved mode when in panel (<a href=\"https://blogs.kde.org/2015/06/04/folder-view-panel-popups-are-list-views-again\">blog</a>)</li>"
"\n"
"<li>Dropping a folder on the Desktop containment will now offer creating a Folder View again</li>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.0.php:195
msgid "Full Plasma 5.4 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1-5.4.2-changelog.php:4
msgid "Plasma 5.4.2 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1.php:4
msgid "KDE Ships Plasma 5.4.1, bugfix Release for September"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1.php:30
msgid "Tuesday, 08 September 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.4.1. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.4.php'>Plasma 5.4</a>\n"
"was released in August with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1.php:47
msgid ""
"\n"
"<li> Fixes for compilation with GCC 5</li>"
"\n"
"<li>Autostart desktop files no longer saved to the wrong location</li>"
"\n"
"<li>On Muon Make sure the install button has a size.</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.1.php:56
msgid "Full Plasma 5.4.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2-5.4.3-changelog.php:4
msgid "Plasma 5.4.3 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2.php:4
msgid "KDE Ships Plasma 5.4.2, bugfix Release for October"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2.php:30
msgid "Tuesday, 06 October 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.4.2. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.4.0.php'>Plasma 5.4</a>\n"
"was released in August with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2.php:47
msgid ""
"\n"
"<li><a href=\"https://kdeonlinux.wordpress.com/2015/09/15/breeze-is-finished/\">Many new Breeze icons</a>.</li>"
"\n"
"<li>Support absolute libexec path configuration, fixes binaries invoked by KWin work again on e.g. Fedora. <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=85b35157943ab4e7ea874639a4c714a10feccc00'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/353154'>#353154</a>. Code review <a href='https://git.reviewboard.kde.org/r/125466'>#125466</a></li>"
"\n"
"<li>Set tooltip icon in notifications applet. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=3f8fbd3d4a6b9aafa6bbccdd4282d2538018a7c6'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/125193'>#125193</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.2.php:55
msgid "Full Plasma 5.4.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3-5.4.95-changelog.php:4
msgid "Plasma 5.4.95 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3-5.5.0-changelog.php:4
msgid "Plasma 5.5.0 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3.php:4
msgid "KDE Ships Plasma 5.4.3, bugfix Release for November"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3.php:30
msgid "Tuesday, 10 November 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.4.3. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.4.0.php'>Plasma 5.4</a>\n"
"was released in August with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3.php:47
msgid ""
"\n"
"<li>Update the KSplash background to the 5.4 wallpaper. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=467d997d8ad534d42b779719cec03a8cbfb66162'>Commit.</a> </li>"
"\n"
"<li>Muon fixes PackageKit details display. <a href='http://quickgit.kde.org/?p=muon.git&amp;a=commit&amp;h=f110bb31d0599fda5478d035bdaf5ce325419ca6'>Commit.</a> </li>"
"\n"
"<li>Fix crash when exiting kscreen kcm in systemsettings. <a href='http://quickgit.kde.org/?p=kscreen.git&amp;a=commit&amp;h=4653c287f844f2cb19379ff001ca76d7d9e3a2a1'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/344651'>#344651</a>. Code review <a href='https://git.reviewboard.kde.org/r/125734'>#125734</a></li>"
"\n"
"<li><a href='http://blog.martin-graesslin.com/blog/2015/10/looking-at-some-crashers-fixed-this-week/'>Several crashes fixed in KWin</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.3.php:56
msgid "Full Plasma 5.4.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:4
msgid "KDE Ships Plasma 5.5 Beta Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:23 announcements/plasma-5.4.95.php:25
#: announcements/plasma-5.5.0.php:25 announcements/plasma-5.5.0.php:27
#: announcements/plasma-5.5.1.php:23 announcements/plasma-5.5.1.php:25
#: announcements/plasma-5.5.2.php:23 announcements/plasma-5.5.2.php:25
#: announcements/plasma-5.5.3.php:23 announcements/plasma-5.5.3.php:25
#: announcements/plasma-5.5.4.php:23 announcements/plasma-5.5.4.php:25
#: announcements/plasma-5.5.5.php:23 announcements/plasma-5.5.5.php:25
msgid "Plasma 5.5"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:30
msgid "Thursday, 19 November 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:31
msgid "Today KDE releases a beta of next month's new feature update, Plasma 5.5.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:35 announcements/plasma-5.5.0.php:42
msgid ""
"We have been working hard over the last four months\n"
"to smooth off the rough edges, add useful new workflows, make\n"
"Plasma even more beautiful and build the foundations for the future."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:46 announcements/plasma-5.5.0.php:53
msgid "Updated Breeze Plasma Theme"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:48 announcements/plasma-5.5.0.php:55
msgid "The Breeze Plasma widget theme has been updated to make it more consistent."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:50 announcements/plasma-5.5.0.php:57
msgid "While the Breeze icons theme adds new icons and updates the existing icon set to improve the visual design."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:52 announcements/plasma-5.5.0.php:59
msgid "Plasma Widget Explorer"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:54 announcements/plasma-5.5.0.php:61
msgid "The Plasma Widget explorer now supports a two column view with new widget icons for Breeze, Breeze Dark and Oxygen"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:56 announcements/plasma-5.5.0.php:63
msgid "Expanded Feature Set in Application Launcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:58 announcements/plasma-5.5.0.php:65
msgid "Context menus in Application Launcher ('Kickoff') can now list documents recently opened in an application, allow editing the application's menu entry and adding the application to the panel, Task Manager or desktop. Favorites now supports documents, directories and system actions or they can be created from search results. These features (and some others) were previously available only in the alternative Application Menu ('Kicker') and have now become available in the default Application Launcher by sharing the backend between both launchers."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:63 announcements/plasma-5.4.95.php:65
#: announcements/plasma-5.5.0.php:70 announcements/plasma-5.5.0.php:72
msgid "Color Picker Plasma Applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:67 announcements/plasma-5.5.0.php:74
msgid "New Applets in Plasma Addons"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:68 announcements/plasma-5.5.0.php:75
msgid "Color Picker"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:70 announcements/plasma-5.5.0.php:77
msgid "Not only have we restored support for the Color Picker applet, we've given it an entire new UI refresh to fit in with Plasma 5."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:72 announcements/plasma-5.5.0.php:79
msgid "The color picker applet lets you pick a color from anywhere on the screen and automatically copies its color code to the clipboard in a variety of formats (RGB, Hex, Qt QML rgba, LaTeX)."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:77 announcements/plasma-5.4.95.php:79
#: announcements/plasma-5.5.0.php:84 announcements/plasma-5.5.0.php:86
msgid "User Switcher Plasma Applet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:81 announcements/plasma-5.5.0.php:88
msgid "User Switcher"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:83 announcements/plasma-5.5.0.php:90
msgid ""
"\n"
"User switching has been updated and improved and is now accessible from the Application Launcher, the new User Switcher applet and in the lock screen. It shows the user's full name and user set avatar. This is very useful for offices with shared desks. More info in <a href='http://blog.broulik.de/2015/10/polish-polish-polish-5-5-edition/'>the developer blog</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:87 announcements/plasma-5.5.0.php:94
msgid "Disk Quota"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:88 announcements/plasma-5.5.0.php:95
msgid "Plasma 5.5 sees a new applet designed for business environments or universities. This applet will show you usage assessed not around the real disk usage, but your allowed quota by your system administrator."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:90 announcements/plasma-5.5.0.php:97
msgid "Activity Pager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:91 announcements/plasma-5.5.0.php:98
msgid "Done for users whose use case of activities partly overlaps with virtual desktops: it looks like a pager, it behaves like a pager but uses activities instead of virtual desktops. This gives a quick glimpse of what activities are running and how many windows are associated to each activity."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:96 announcements/plasma-5.5.0.php:103
msgid "Legacy Systray Icons"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:98 announcements/plasma-5.5.0.php:105
msgid "Legacy System Tray Icons"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:100 announcements/plasma-5.5.0.php:107
msgid "Restored Legacy Icons in System Tray Support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:102 announcements/plasma-5.5.0.php:109
msgid "In response to feedback, we've rewritten support for legacy applications not using the <a href='http://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/'>StatusNotifier</a> standard for system tray icons."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:104 announcements/plasma-5.5.0.php:111
msgid "Bug Stats"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:106 announcements/plasma-5.5.0.php:113
msgid "In the run up to the Plasma 5.5 beta an incredible <a href='https://goo.gl/mckdTF'>over 1,000 bugs were fixed</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:108 announcements/plasma-5.5.0.php:115
msgid "OpenGL ES Support in KWin"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:109 announcements/plasma-5.5.0.php:116
msgid "Support for switching to OpenGL ES in KWin returns. So far only switching through an environment variable and restarting KWin is supported. Set environment variable KWIN_COMPOSE to 'O2ES' to force the OpenGL ES backend. Please note that OpenGL ES is not supported by all drivers. Because of that it's not exposed through a configuration mechanism. Please consider it as an expert mode."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:114 announcements/plasma-5.4.95.php:116
#: announcements/plasma-5.5.0.php:121 announcements/plasma-5.5.0.php:123
msgid "Screen Locker"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:118 announcements/plasma-5.5.0.php:125
msgid "Wayland Progress:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:120 announcements/plasma-5.5.0.php:127
msgid "With Plasma 5.5 a basic Wayland session is provided. Wayland is the successor of the dated X11 windowing system providing a modern approach. The system is more secure (e.g. key loggers are no longer trivial to implement) and follows the paradigm of 'every frame perfect' which makes screen tearing very difficult. With Plasma 5.4 the KDE community already provided a technology preview based on the feature set of the Phone project. With Plasma 5.5 this is now extended with more 'desktop style' usages. Important features like move/resize of windows is now supported as well as many integration features for the desktop shell. This allows for usage by early adopters, though we need to point out that it is not yet up to the task of fully replacing an X session. We encourage our more technical users to give it a try and report as many bugs as you can find."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:122 announcements/plasma-5.5.0.php:129
msgid "A new <a href='http://vizzzion.org/blog/2015/11/screen-management-in-wayland/'>screen management protocol</a> has been created for configuring the connected screens of a Wayland session."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:124 announcements/plasma-5.5.0.php:131
msgid "Also added are some protocols for controlling KWin effects in Wayland such as window background blur and windows minimize animation"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:126 announcements/plasma-5.5.0.php:133
msgid "Plasma on Wayland session now features secure screen locking, something never fully achievable with X. Read more about fixing this 11 year old bug on the <a href='https://bhush9.github.io/2015/11/17/screenlocker-in-wayland/'>screenlocker integration developer blog</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:128 announcements/plasma-5.5.0.php:135
msgid "Please also see the list of <a href='https://community.kde.org/Plasma/5.5_Errata#KWin_Wayland'>known issues with Wayland on the Errata page</a>."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:136 announcements/plasma-5.5.0.php:143
msgid "New Discover design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:137 announcements/plasma-5.5.0.php:144
msgid "With the help of the KDE Visual Design Group we came up with a new design that will improve the usability of our software installer."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:142 announcements/plasma-5.4.95.php:144
#: announcements/plasma-5.5.0.php:158 announcements/plasma-5.5.0.php:160
msgid "File Indexer Status"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:146 announcements/plasma-5.5.0.php:162
msgid "Info Center"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:147 announcements/plasma-5.5.0.php:163
msgid "A status module for the file indexer was added."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:149 announcements/plasma-5.5.0.php:165
msgid "Plasma Networkmanager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:150 announcements/plasma-5.5.0.php:166
msgid "There have <a href='https://grulja.wordpress.com/2015/11/08/upcoming-news-in-plasma-5-5/'>been several improvements</a> to our network manager applet. WPA/WPA2 Enterprise validation was added, it uses a new password field widget and OpenVPN has more options."
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:155
msgid "Full Plasma 5.4.95 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:158 announcements/plasma-5.5.0.php:179
msgid "Known Issues"
msgstr ""
#. +> trunk
#: announcements/plasma-5.4.95.php:160 announcements/plasma-5.5.0.php:181
msgid ""
"Please see the <a\n"
"href='https://community.kde.org/Plasma/5.5_Errata'>Plasma 5.5 Errata\n"
"page</a> for some of the highest profile issues including some significant problems\n"
"caused by Intel drivers.</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0-5.5.1-changelog.php:4
msgid "Plasma 5.5.1 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:4
msgid "KDE Ships Plasma 5.5 Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:31
msgid "Tuesday, 8 December 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:32
msgid "Today KDE releases a feature update to its desktop software, Plasma 5.5.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:39
msgid "Video of Plasma 5.5 highlights"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:149 announcements/plasma-5.5.0.php:151
msgid "Noto Font"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:152
msgid "New Default Font"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:153
msgid "Our default font has switched to <a href='https://www.google.com/get/noto/'>Noto</a> a beautiful and free font which aims to support all languages with a harmonious look and feel."
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:168
msgid "Wallpapers"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:170
msgid ""
"We have a new selection of <a href='https://kdeonlinux.wordpress.com/2015/11/13/wallpaper-contribution-for-plasma-5-5/'>wonderful wallpapers</a>\n"
"from RJ Quiralta, Martin Klapetek, Timothée Giet, Dmitri Popov, Maciej Wiklo and Risto S for the Plasma 5.5 release."
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.0.php:176
msgid "Full Plasma 5.5.0 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1-5.5.2-changelog.php:4
msgid "Plasma 5.5.2 complete changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:4
msgid "KDE Ships Plasma 5.5.1, bugfix Release for December"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:30
msgid "Tuesday, 15 December 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.5.1. \n"
"<a href='https://www.kde.org/announcements/plasma-5.5.0.php'>Plasma 5.5</a>\n"
"was released in last week with many feature refinements and new\n"
"modules to complete the desktop experience. We are experimenting with\n"
"a new release schedule with bugfix releases started out frequent and\n"
"becoming less frequent. The first two bugfix releases come out in the\n"
"weeks following the initial release and future ones at larger\n"
"increments.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:43 announcements/plasma-5.5.2.php:43
#: announcements/plasma-5.7.1.php:45 announcements/plasma-5.7.2.php:45
#: announcements/plasma-5.8.1.php:45 announcements/plasma-5.8.2.php:45
#: announcements/plasma-5.9.1.php:45
msgid ""
"\n"
"This release adds a week's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:51
msgid ""
"\n"
"<li>Freeze on Plasma/Wayland startup fixed (unblock signals in child processes). <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=14b9046ad2ae7d4b9e3ffda996b2112fae3690c4'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/356580'>#356580</a>. Code review <a href='https://git.reviewboard.kde.org/r/126361'>#126361</a></li>"
"\n"
"<li>KWin: Windows don't lose their 'active state' while being moved.</li>"
"\n"
"<li>Many fixes in full screen launcher application dashboard.</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.1.php:59
msgid "Full Plasma 5.5.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2-5.5.3-changelog.php:4
msgid "Plasma 5.5.3 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2.php:4
msgid "KDE Ships Plasma 5.5.2, bugfix Release for December"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2.php:30
msgid "Tuesday, 22 December 2015. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.5.2. \n"
"<a href='https://www.kde.org/announcements/plasma-5.5.0.php'>Plasma 5.5</a>\n"
"was released a couple of weeks ago with many feature refinements and new\n"
"modules to complete the desktop experience. We are experimenting with\n"
"a new release schedule with bugfix releases started out frequent and\n"
"becoming less frequent. The first two bugfix releases come out in the\n"
"weeks following the initial release and future ones at larger\n"
"increments.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2.php:51
msgid ""
"\n"
"<li>Task Manager: behave properly in popups again. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=8e4431a2c05ba12ffb8c771c1ea0c842ec18453b'>Commit.</a> </li>"
"\n"
"<li>KWin: fix build with Qt 5.6. <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=05c542ad602a114751f34ac9d03597f11e95470f'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/126234'>#126234</a></li>"
"\n"
"<li>Make initial default panel thickness scale with DPI. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=eed2f0206184a5066038a6dea7402f24634fb72e'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/126363'>#126363</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.2.php:59
msgid "Full Plasma 5.5.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3-5.5.4-changelog.php:4
msgid "Plasma 5.5.4 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3.php:4
msgid "KDE Ships Plasma 5.5.3, Bugfix Release for January"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3.php:30
msgid "Tuesday, 6 January 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.5.3. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.5.0.php'>Plasma 5.5</a>\n"
"was released in December with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3.php:47
msgid ""
"\n"
"<li>Fix icon hover effect breaking after Dashboard was used. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=c35aa318d417b4fcb5b36324635de6b8e76cbaf1'>Commit.</a> </li>"
"\n"
"<li>Use Oxygen sound instead of sound from kdelibs4's kde-runtime. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=4cac96f7834b63ced12618475afd37644ab9e243'>Commit.</a> </li>"
"\n"
"<li>[notifications] Refactor the screen handling code to fix 'Notification Settings wrong default display for notifications and notifaction position'. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=0c6b354b7e22297544f1d37608d6fdcd777c4d52'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/126408'>#126408</a>. See bug <a href='https://bugs.kde.org/353966'>#353966</a>. See bug <a href='https://bugs.kde.org/356461'>#356461</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.3.php:55
msgid "Full Plasma 5.5.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4-5.5.5-changelog.php:4
msgid "Plasma 5.5.5 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4.php:4
msgid "KDE Ships Plasma 5.5.4, bugfix Release for January"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4.php:29
msgid "Tuesday, 26 January 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4.php:30
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.5.4. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.5.0.php'>Plasma 5.5</a>\n"
"was released in December with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4.php:46
msgid ""
"\n"
"<li>Many improvements and refactoring to notification positioning making them appear in the right place for multi-screen use.</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.4.php:52
msgid "Full Plasma 5.5.4 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5-5.5.95-changelog.php:4
msgid "Plasma 5.5.95 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5-5.6.0-changelog.php:4
msgid "Plasma 5.6.0 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5.php:4
msgid "KDE Ships Plasma 5.5.5, bugfix Release for March"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5.php:30
msgid "Tuesday, 01 March 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5.php:31
msgid ""
"Today KDE releases a bugfix update to Plasma 5, versioned 5.5.5. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.5.0.php'>Plasma 5.5</a>\n"
"was released in December with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5.php:47
msgid ""
"\n"
"<li>Fix Turning all screens off while the lock screen is shown can result in the screen being unlocked when turning a screen on again. <a href='https://www.kde.org/info/security/advisory-20160209-1.txt'>CVE-2016-2312</a>.\n"
"<li>[User Switcher] Fix session switching when automatic screen locking is enabled. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=7a0096ba99d7a71ae9f45d7c0011d0ebb1eae23d'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/356945'>#356945</a></li>"
"\n"
"<li>Fix entries staying highlighted after context menu closes. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=9e0a7e991dbfc862a72f21f4662e280aff8ab317'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/356018'>#356018</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.5.php:55
msgid "Full Plasma 5.5.5 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:4
msgid "KDE Plasma 5.6 Beta Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:23 announcements/plasma-5.6.0.php:29
#: announcements/plasma-5.6.1.php:29 announcements/plasma-5.6.2.php:29
#: announcements/plasma-5.6.3.php:29 announcements/plasma-5.6.4.php:29
#: announcements/plasma-5.6.5.php:29
msgid "Plasma 5.6"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:25 announcements/plasma-5.6.0.php:31
#: announcements/plasma-5.6.1.php:31 announcements/plasma-5.6.2.php:31
#: announcements/plasma-5.6.3.php:31 announcements/plasma-5.6.4.php:31
#: announcements/plasma-5.6.5.php:31
msgid "KDE Plasma 5.6"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:30
msgid "Wednesday, 02 March 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:31
msgid "Today KDE releases a beta update to its desktop software, Plasma 5.6.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:36 announcements/plasma-5.6.0.php:42
msgid ""
"\n"
"This release of Plasma brings many improvements to the task manager, KRunner, activities, and Wayland support as well as a much more refined look and feel.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:43 announcements/plasma-5.6.0.php:49
msgid ""
"\n"
"Slicker Plasma Theme\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:50 announcements/plasma-5.5.95.php:52
#: announcements/plasma-5.6.0.php:56 announcements/plasma-5.6.0.php:58
msgid "Breeze Color Scheme Support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:56 announcements/plasma-5.6.0.php:62
msgid ""
"\n"
"The default Plasma theme, Breeze, now follows the application color scheme allowing for a more personalized experience. A new 'Breeze Light' together with 'Breeze Dark' theme can be used to bring back the previous behavior. Additionally, tooltip animations have become more subtle.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:63 announcements/plasma-5.6.0.php:69
msgid ""
"\n"
"Supercharged Task Manager\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:70 announcements/plasma-5.5.95.php:72
#: announcements/plasma-5.6.0.php:76 announcements/plasma-5.6.0.php:78
msgid "Copy Progress"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:76 announcements/plasma-5.6.0.php:82
msgid ""
"\n"
"Multitasking has just become easier. The much improved task manager in Plasma 5.6 now displays progress of tasks, such as downloading or copying files.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:84 announcements/plasma-5.5.95.php:87
#: announcements/plasma-5.6.0.php:90 announcements/plasma-5.6.0.php:93
msgid "Media Controls"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:89 announcements/plasma-5.6.0.php:95
msgid "Media Controls in Panel and Tooltips"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:93 announcements/plasma-5.6.0.php:99
msgid ""
"\n"
"Moreover, hovering a music or video player shows beautiful album art and media controls, so you never have to leave the application you're currently working with. Our media controller applet that shows up during playback also received some updates, notably support for multiple players running simultaneously.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:99 announcements/plasma-5.6.0.php:119
msgid ""
"\n"
"Not only did we improve interacting with running applications, starting applications gets in your way less, too. Using Jump Lists you can launch an application and jump, hence the name, to a specific task right away. This feature is also present in the application launchers.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:107 announcements/plasma-5.6.0.php:127
msgid ""
"\n"
"Smoother Widgets\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:117 announcements/plasma-5.6.0.php:137
msgid "Folderview in Panel"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:119 announcements/plasma-5.6.0.php:139
msgid "KRunner's Smoother look and Folderview in Panel"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:123 announcements/plasma-5.6.0.php:143
msgid ""
"\n"
"There are many refinements to the overall visuals of Plasma in this release. KRunner gained support for drag and drop and lost separator lines to look smoother while icons on the desktop traded the solid label background for a chic drop shadow. Users that place a folder applet in their panel can enjoy improved drag and drop, support for the back button on a mouse as well as choosing between list and icon view. On the more technical side, many small fixes to hi-dpi scaling have found their way into this release.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:132 announcements/plasma-5.5.95.php:134
#: announcements/plasma-5.6.0.php:152 announcements/plasma-5.6.0.php:154
msgid "Weather Widget"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:138 announcements/plasma-5.6.0.php:158
msgid ""
"\n"
"Another feature returns from the old days, the weather widget.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:145 announcements/plasma-5.6.0.php:165
msgid ""
"\n"
"On the road to Wayland\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:154 announcements/plasma-5.6.0.php:174
msgid "Plasma using Wayland"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:158 announcements/plasma-5.6.0.php:178
msgid ""
"\n"
"With Plasma 5.5 for the first time we shipped a Wayland session for you to try out. While we still do not recommend using Wayland as a daily driver, we've made some significant advances:</p>"
"<ul>\n"
"<li> Window decorations are now supported for Wayland clients giving you a beautiful and unified user experience\n"
" "
"<li> Input handling gained all features you've come to know and love from the X11 world, including 'Focus follows mouse', Alt + mouse button to move and resize windows, etc</li>"
"\n"
" "
"<li> Different keyboard layouts and layout switching</li>"
"\n"
" \n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:169 announcements/plasma-5.6.0.php:189
msgid ""
"\n"
"Tech Preview System Integration Themes\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:175 announcements/plasma-5.6.0.php:195
msgid ""
"\n"
"We are trialing a tech preview of Breeze themes for Plymouth and Grub, so Plasma can give you a complete system experience from the moment you turn your computer on.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.5.95.php:181
msgid "Full Plasma 5.5.95 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0-5.6.1-changelog.php:4
msgid "Plasma 5.6.1 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:4
msgid "KDE Plasma 5.6 Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:23 announcements/plasma-5.6.1.php:23
#: announcements/plasma-5.6.2.php:23 announcements/plasma-5.6.3.php:23
#: announcements/plasma-5.6.4.php:23 announcements/plasma-5.6.5.php:23
msgid "KDE Plasma 5.6 Video"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:36
msgid "Tuesday, 22 March 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:37
msgid "Today KDE releases a feature-packed new version of its desktop user interface, Plasma 5.6.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:107 announcements/plasma-5.6.0.php:109
msgid "Jump List Using Firefox"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:113 announcements/plasma-5.6.0.php:115
msgid "Jump List Using Steam"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:201
msgid ""
"\n"
"Also previewed in simple systemtray, an experimental systemtray replacement. Plasma Media Center remains in tech preview but work is ongoing for Plasma 5.7.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.0.php:207
msgid "Full Plasma 5.6.0 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1-5.6.2-changelog.php:4
msgid "Plasma 5.6.2 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1.php:4
msgid "KDE Plasma 5.6.1, Bugfix Release for April"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1.php:36
msgid "Tuesday, 29 March 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.6.1. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.6.0.php'>Plasma 5.6</a>\n"
"was released in March with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1.php:53
msgid ""
"\n"
"<li>Fix drawing QtQuickControls ComboBox popups</li>"
"\n"
"<li>Fix untranslatable string in Activities KCM.</li>"
"\n"
"<li>Show ratings in Discover Packagekit backend</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.1.php:61
msgid "Full Plasma 5.6.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2-5.6.3-changelog.php:4
msgid "Plasma 5.6.3 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:4
msgid "KDE Plasma 5.6.2, bugfix Release for April"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:36
msgid "Tuesday, 05 April 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.6.2. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.6.0.php'>Plasma 5.6</a>\n"
"was released in March with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:45
msgid ""
"\n"
"This release adds another week's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:53
msgid ""
"\n"
"<li>Weather plasmoid, bbcukmet. Update to BBC's new json-based search and modified xml. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=84fe5785bd1520f17a801cfe2e263c8ba872b273'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/330773'>#330773</a></li>"
"\n"
"<li>Breeze and Oxygen widget themes: Add isQtQuickControl function and make it work with Qt 5.7. <a href='http://quickgit.kde.org/?p=oxygen.git&amp;a=commit&amp;h=f59ae8992d18718d596fd332389b3fe98ff21a10'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/127533'>#127533</a></li>"
"\n"
"<li>[calendar] Fix calendar applet not clearing selection when hiding. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=d3beb0b647a543436d3d23ab82b39a2f98a384be'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/127456'>#127456</a>. Fixes bug <a href='https://bugs.kde.org/360683'>#360683</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.2.php:61
msgid "Full Plasma 5.6.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3-5.6.4-changelog.php:4
msgid "Plasma 5.6.4 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3.php:4
msgid "KDE Plasma 5.6.3, bugfix Release for April"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3.php:36
msgid "Tuesday, 19 April 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.6.3. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.6.0.php'>Plasma 5.6</a>\n"
"was released in March with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3.php:53
msgid ""
"\n"
"<li>KWin: Fix crash on repainting an invalid sizes decoration. The first ever KWin bug fix which is combined with an X11 integration test. <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=0df4406c2cf8df56f90a7a006eb911775a120886'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/361551'>#361551</a></li>"
"\n"
"<li>Fix hover effect on desktop in pager. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=7a66cb7d63a505da0e630361dd8ae9377d0ba0d6'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/361392'>#361392</a></li>"
"\n"
"<li>Use actual installation information to infer popularity. <a href='http://quickgit.kde.org/?p=discover.git&amp;a=commit&amp;h=204497cdaef32839776e25f04ba73cc8227bbfa4'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.3.php:61
msgid "Full Plasma 5.6.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4-5.6.5-changelog.php:4
msgid "Plasma 5.6.5 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4.php:4
msgid "KDE Plasma 5.6.4, bugfix Release for May"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4.php:36
msgid "Tuesday, 10 May 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.6.4. \n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.6.0.php'>Plasma 5.6</a>\n"
"was released in March with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4.php:53
msgid ""
"\n"
"<li>Make sure kcrash is initialized for discover. <a href='http://quickgit.kde.org/?p=discover.git&amp;a=commit&amp;h=63879411befc50bfd382d014ca2efa2cd63e0811'>Commit.</a> </li>"
"\n"
"<li>Build Breeze Plymouth and Breeze Grub tars from correct branch</li>"
"\n"
"<li>[digital-clock] Fix display of seconds with certain locales. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=a7a22de14c360fa5c975e0bae30fc22e4cd7cc43'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/127623'>#127623</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.4.php:61
msgid "Full Plasma 5.6.4 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5-5.6.95-changelog.php:4
msgid "Plasma 5.6.95 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5-5.7.0-changelog.php:4
msgid "Plasma 5.7.0 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5.php:4
msgid "KDE Plasma 5.6.5, bugfix Release for June"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5.php:35
msgid "Tuesday, 14 June 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5.php:36
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.6.5.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.6.0.php'>Plasma 5.6</a>\n"
"was released in March with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5.php:52
msgid ""
"\n"
"<li>Don't let the delegate overflow the view. <a href='http://quickgit.kde.org/?p=discover.git&amp;a=commit&amp;h=1b5ce678c3dc7094d883a0b2b3bbd612207acce8'>Commit.</a> </li>"
"\n"
"<li>Battery icon no longer errorneously reports an empty battery if computer has none. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=a19fcfaf90db8ebc6e704917448ccfde7ae0ae59'>Commit.</a> See bug <a href='https://bugs.kde.org/362924'>#362924</a></li>"
"\n"
"<li>Create ~/.local/share/mime/packages/ if it doesn't exist. <a href='http://quickgit.kde.org/?p=kde-cli-tools.git&amp;a=commit&amp;h=c2aa2a46d51793d26dc6e93e60b5933cb1193e56'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/356237'>#356237</a>. Code review <a href='https://git.reviewboard.kde.org/r/128055'>#128055</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.5.php:60
msgid "Full Plasma 5.6.5 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:4
msgid "KDE Plasma 5.7 Beta Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:24 announcements/plasma-5.6.95.php:26
#: announcements/plasma-5.7.0.php:28 announcements/plasma-5.7.0.php:30
#: announcements/plasma-5.7.1.php:31 announcements/plasma-5.7.2.php:31
#: announcements/plasma-5.7.3.php:31 announcements/plasma-5.7.4.php:31
#: announcements/plasma-5.7.5.php:31
msgid "KDE Plasma 5.7"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:31
msgid "Thursday, 16 June 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:32
msgid "Today KDE releases a beta update to its desktop software, Plasma 5.7.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:40 announcements/plasma-5.6.95.php:42
msgid "Unified Startup Design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:50 announcements/plasma-5.6.95.php:52
#: announcements/plasma-5.7.0.php:75 announcements/plasma-5.7.0.php:77
msgid "Icons Tint to Match Highlight"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:61 announcements/plasma-5.6.95.php:63
#: announcements/plasma-5.7.0.php:46 announcements/plasma-5.7.0.php:48
msgid "Jump List Actions in KRunner"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:71 announcements/plasma-5.6.95.php:73
#: announcements/plasma-5.7.0.php:56 announcements/plasma-5.7.0.php:58
msgid "Agenda Items in Calendar"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:81 announcements/plasma-5.6.95.php:83
#: announcements/plasma-5.7.0.php:66 announcements/plasma-5.7.0.php:68
msgid "Dragging Application to Audio Device"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:103 announcements/plasma-5.6.95.php:105
#: announcements/plasma-5.7.0.php:97 announcements/plasma-5.7.0.php:99
msgid "Betty the Fuzzpig Tests Plasma Wayland"
msgstr ""
#. +> trunk
#: announcements/plasma-5.6.95.php:124
msgid "Full Plasma 5.6.95 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.0-5.7.1-changelog.php:4
msgid "Plasma 5.7.1 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.0.php:4
msgid "KDE Plasma 5.7 Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.0.php:35
msgid "Tuesday, 5 July 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.0.php:36
msgid "Today KDE releases an update to its desktop software, Plasma 5.7.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.0.php:118
msgid "Full Plasma 5.7.0 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1-5.7.2-changelog.php:4
msgid "Plasma 5.7.2 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:4
msgid "KDE Plasma 5.7.1, bugfix Release for July"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:23 announcements/plasma-5.7.2.php:23
#: announcements/plasma-5.7.3.php:23 announcements/plasma-5.7.4.php:23
#: announcements/plasma-5.7.5.php:23
msgid "KDE Plasma 5.7 Video"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:29 announcements/plasma-5.7.2.php:29
#: announcements/plasma-5.7.3.php:29 announcements/plasma-5.7.4.php:29
#: announcements/plasma-5.7.5.php:29
msgid "Plasma 5.7"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:36
msgid "Tuesday, 12 July 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.7.1.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.7.0.php'>Plasma 5.7</a>\n"
"was released in July with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:53
msgid ""
"\n"
"<li>Fix shadow rendering calculations. <a href='http://quickgit.kde.org/?p=kwin.git&amp;a=commit&amp;h=62d09fad123d9aab5afcff0f27d109ef7c6c18ba'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/365097'>#365097</a> 'Krunner has broken shadow / corners'</li>"
"\n"
"<li>Make the systray work with scripting shell again. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=6adba6315275f4ef6ebf8879c851830c268f7a51'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.1.php:62
msgid "Full Plasma 5.7.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2-5.7.3-changelog.php:4
msgid "Plasma 5.7.3 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2.php:4
msgid "KDE Plasma 5.7.2, bugfix Release for July"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2.php:36
msgid "Tuesday, 19 July 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.7.2.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.7.0.php'>Plasma 5.7</a>\n"
"was released in July with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2.php:53
msgid ""
"\n"
"<li>Breeze fixed kdelibs4 compilation. <a href='http://quickgit.kde.org/?p=breeze.git&amp;a=commit&amp;h=47a397ebef7a636497e75a8da81afffbffa30dda'>Commit.</a> </li>"
"\n"
"<li>Fix startup-to-window matchup based on AppName. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=1fd011ae918d241140dcbbcddf7bde2d06f1b608'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.2.php:60
msgid "Full Plasma 5.7.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3-5.7.4-changelog.php:4
msgid "Plasma 5.7.4 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:4
msgid "KDE Plasma 5.7.3, bugfix Release for August"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:36
msgid "Tuesday, 2 August 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.7.3.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.7.0.php'>Plasma 5.7</a>\n"
"was released in July with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:45
msgid ""
"\n"
"This release adds two weeks' worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:53
msgid ""
"\n"
"<li>Fixed first time initialization. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=89cb478eb205e5586751311594f2dcf4ec447199'>Commit.</a> </li>"
"\n"
"<li>Speed up loading KCM with FileDialog lazy loading. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=60e970472a5ed7cb3a7e58419fe42d80412a32d7'>Commit.</a> </li>"
"\n"
"<li>Don't try to load layout before kactivitymanagerd starts. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=f7ef6ee87b8957bebc976b6fc9e0df279cea05f1'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.3.php:61
msgid "Full Plasma 5.7.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4-5.7.5-changelog.php:4
msgid "Plasma 5.7.5 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:4
msgid "KDE Plasma 5.7.4, bugfix Release for August"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:36
msgid "Tuesday, 23 August 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.7.4.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.7.0.php'>Plasma 5.7</a>\n"
"was released in August with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:45
msgid ""
"\n"
"This release adds three weeks' worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:53
msgid ""
"\n"
"<li>Fixed dragging items bug in Kickoff</li>"
"\n"
"<li>Mouse settings being applied in kdelibs4 applications</li>"
"\n"
"<li>Improved handling of screen CRTC information</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.4.php:61
msgid "Full Plasma 5.7.4 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5-5.7.95-changelog.php:4
msgid "Plasma 5.7.95 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5-5.8.0-changelog.php:4
msgid "Plasma 5.8.0 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:4
msgid "KDE Plasma 5.7.5, bugfix Release for September"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:36
msgid "Tuesday, 13 September 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.7.5.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.7.0.php'>Plasma 5.7</a>\n"
"was released in July with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:45
msgid ""
"\n"
"This release adds month' worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:53
msgid ""
"\n"
"<li>Plasma Workspace: Fix some status notifier items not appearing. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=df4387a21f6eb5ede255ea148143122ae4d5ae9c'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/366283'>#366283</a>. Fixes bug <a href='https://bugs.kde.org/367756'>#367756</a></li>"
"\n"
"<li>SDDM Config - Fix themes list with SDDM 0.14. <a href='http://quickgit.kde.org/?p=sddm-kcm.git&amp;a=commit&amp;h=d4ca70001222c5b0a9f699c4639c891a6a5c0c05'>Commit.</a> Code review <a href='https://git.reviewboard.kde.org/r/128815'>#128815</a></li>"
"\n"
"<li>Make sure people are not trying to sneak invisible characters on the kdesu label. <a href='http://quickgit.kde.org/?p=kde-cli-tools.git&amp;a=commit&amp;h=5eda179a099ba68a20dc21dc0da63e85a565a171'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.5.php:61
msgid "Full Plasma 5.7.5 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:4
msgid "KDE at 20: Plasma 5.8 LTS Beta. Here for the Long Term."
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:30 announcements/plasma-5.8.0.php:28
#: announcements/plasma-5.8.0.php:30
msgid "KDE Plasma 5.8 LTS"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:32
msgid "KDE Plasma 5.8 LTS Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:37
msgid "Thursday, 15 September 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:38
msgid "Today KDE releases a beta of its first Long Term Support edition of its flagship desktop software, Plasma. This marks the point where the developers and designers are happy to recommend Plasma for the widest possible audience be they enterprise or non-techy home users. If you tried a KDE desktop previously and have moved away, now is the time to re-assess, Plasma is simple by default, powerful when needed.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:115 announcements/plasma-5.7.95.php:117
#: announcements/plasma-5.8.0.php:110 announcements/plasma-5.8.0.php:113
#: announcements/plasma-5.8.0.php:115
msgid "Unified Boot to Shutdown Artwork"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:126 announcements/plasma-5.7.95.php:128
#: announcements/plasma-5.8.0.php:121 announcements/plasma-5.8.0.php:124
#: announcements/plasma-5.8.0.php:126
msgid "Right-to-Left Language Support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:136 announcements/plasma-5.7.95.php:138
#: announcements/plasma-5.8.0.php:134 announcements/plasma-5.8.0.php:136
msgid "Context Menu Media Controls"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:148 announcements/plasma-5.7.95.php:150
#: announcements/plasma-5.8.0.php:146 announcements/plasma-5.8.0.php:148
msgid "Global Shortcuts Setup"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:161 announcements/plasma-5.7.95.php:163
#: announcements/plasma-5.8.0.php:159 announcements/plasma-5.8.0.php:161
msgid "Plasma Discover's new UI"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:178 announcements/plasma-5.7.95.php:180
#: announcements/plasma-5.8.0.php:176 announcements/plasma-5.8.0.php:178
msgid "Plasma on Wayland Now with GTK+ support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.7.95.php:193
msgid "Full Plasma 5.7.95 LTS changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0-5.8.1-changelog.php:4
msgid "Plasma 5.8.1 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:4
msgid "KDE at 20: Plasma 5.8 LTS. Here for the Long Term."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:35
msgid "Tuesday, 4 October 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:36
msgid "Today KDE releases its first Long Term Support edition of its flagship desktop software, Plasma. This marks the point where the developers and designers are happy to recommend Plasma for the widest possible audience be they enterprise or non-techy home users. If you tried a KDE desktop previously and have moved away, now is the time to re-assess, Plasma is simple by default, powerful when needed.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:109
msgid "New in Plasma 5.8"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:118
msgid "This release brings an all-new login screen design giving you a complete Breeze startup to shutdown experience. The layout has been tidied up and is more suitable for workstations that are part of a domain or company network. While it is much more streamlined, it also allows for greater customizability: for instance, all Plasma wallpaper plugins, such as slideshows and animated wallpapers, can now be used on the lock screen."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:128
msgid "Support for Semitic right-to-left written languages, such as Hebrew and Arabic, has been greatly improved. Contents of panels, the desktop, and configuration dialogs are mirrored in this configuration. Plasma’s sidebars, such as widget explorer, window switcher, activity manager, show up on the right side of the screen."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:131
msgid "Improved Applets"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:138
msgid "The virtual desktop switcher (“Pager”) and window list applets have been rewritten, using the new task manager back-end we introduced in Plasma 5.7. This allows them to use the same dataset as the task manager and improves their performance while reducing memory consumption. The virtual desktop switcher also acquired an option to show only the current screen in multi-screen setups and now shares most of its code with the activity switcher applet."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:140
msgid "Task manager gained further productivity features in this release. Media controls that were previously available in task manager tooltips only are now accessible in the context menus as well. In addition to bringing windows to the front during a drag and drop operation, dropping files onto task manager entries themselves will now open them in the associated application. Lastly, the popup for grouped windows can now be navigated using the keyboard and text rendering of its labels has been improved."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:143
msgid "Simplified Global Shortcuts"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:151
msgid "Global shortcuts configuration has been simplified to focus on the most common task, that is launching applications. Building upon the jump list functionality added in previous releases, global shortcuts can now be configured to jump to specific tasks within an application."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:153
msgid "Thanks to our Wayland effort, we can finally offer so-called “modifier-only shortcuts”, enabling you to open the application menu by just pressing the Meta key. Due to popular demand, this feature also got backported to the X11 session."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:156
msgid "Other improvements"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:164
msgid "This release sees many bugfixes in multi-screen support and, together with Qt 5.6.1, should significantly improve your experience with docking stations and projectors."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:166
msgid "KWin, Plasma’s window manager, now allows compositing through llvmpipe, easing the deployment on exotic hardware and embedded devices. Now that there is a standardized and widely-used interface for applications to request turning off compositing, the “Unredirect Fullscreen” option has been removed. It often lead to stability issues and because of that was already disabled for many drivers."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:168
msgid "Now that <a href='https://dot.kde.org/2016/08/10/kdes-kirigami-ui-framework-gets-its-first-public-release'>Kirigami</a>, our set of versatile cross-platform UI components, has been released, we’re pleased to bring you a revamped version of Plasma Discover based on Kirigami."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:170
msgid "We have new default fonts, the Noto font from Google covers all scripts available in the Unicode standard while our new monospace font Hack is perfect for coders and terminal users."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:173
msgid "We’re in Wayland!"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:181
msgid "Plasma on Wayland has come a long way in the past months. While our long term support promise does not apply to the fast-evolving Wayland stack, we think it is ready to be tested by a broader audience. There will still be minor glitches and missing features, but we are now at a point where we can ask you to give it a try and report bugs. Notable improvements in this release include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:183
msgid "Support for xdg-shell, i.e. GTK+ applications are now supported"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:184
msgid "Much improved touch screen support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:185
msgid "Support for touchpad gestures – the infrastructure is there, there aren't any gestures by default yet"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:186
msgid "The “Sliding Popups” effect is now supported"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:187
msgid "Clipboard contents are synced between X11 and Wayland applications"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.0.php:191
msgid "Full Plasma 5.8.0 LTS changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1-5.8.2-changelog.php:4
msgid "Plasma 5.8.2 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:4
msgid "KDE Plasma 5.8.1, Bugfix Release for October"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:23 announcements/plasma-5.8.2.php:23
#: announcements/plasma-5.8.3.php:23 announcements/plasma-5.8.4.php:23
#: announcements/plasma-5.8.5.php:23
msgid "KDE Plasma 5.8 Video"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:29 announcements/plasma-5.8.2.php:29
#: announcements/plasma-5.8.3.php:29 announcements/plasma-5.8.4.php:29
#: announcements/plasma-5.8.5.php:29
msgid "Plasma 5.8"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:31 announcements/plasma-5.8.2.php:31
#: announcements/plasma-5.8.3.php:31 announcements/plasma-5.8.4.php:31
#: announcements/plasma-5.8.5.php:31
msgid "KDE Plasma 5.8"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:36
msgid "Tuesday, 11 October 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.8.1.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma 5.8</a>\n"
"was released in October with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:53
msgid ""
"\n"
"<li>Fix modifier-only-shortcut after using Alt+Tab</li>"
"\n"
"<li>Support for EGL_KHR_platform_x11</li>"
"\n"
"<li>Fix crash when moving panel between two windows</li>"
"\n"
"<li>Many Wayland fixes, e.g. resize-only-borders</li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.1.php:62
msgid "Full Plasma 5.8.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2-5.8.3-changelog.php:4
msgid "Plasma 5.8.3 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2.php:4
msgid "KDE Plasma 5.8.2, Bugfix Release for October"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2.php:36
msgid "Tuesday, 18 October 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2.php:37
msgid ""
"Today KDE releases a Bugfix update to KDE Plasma 5, versioned 5.8.2.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma 5.8</a>\n"
"was released in October with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2.php:53
msgid ""
"\n"
"<li>Fix 'Default' color scheme. <a href='http://quickgit.kde.org/?p=plasma-desktop.git&amp;a=commit&amp;h=613194c293b63004af5fc43762b92bd421ddf5b6'>Commit.</a> </li>"
"\n"
"<li>Restore all panel properties. <a href='http://quickgit.kde.org/?p=plasma-workspace.git&amp;a=commit&amp;h=aea33cddb547cc2ba98be5dd45dc7562b32b4b9a'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/368074'>#368074</a>. Fixes bug <a href='https://bugs.kde.org/367918'>#367918</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.2.php:60
msgid "Full Plasma 5.8.2 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3-5.8.4-changelog.php:4
msgid "Plasma 5.8.4 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:4
msgid "KDE Plasma 5.8.3, Bugfix Release for November"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:36
msgid "Tuesday, 1 November 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:37
msgid ""
"Today KDE releases a Bugfix update to KDE Plasma 5, versioned 5.8.3.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma 5.8</a>\n"
"was released in October with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:45
msgid ""
"\n"
"This release adds two week's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:53
msgid ""
"\n"
"<li>User Manager: do not ask for root permissions when it's unnecessary. <a href='http://quickgit.kde.org/?p=user-manager.git&amp;a=commit&amp;h=a666712102be7ef4dd48202cc2411921fc4d392b'>Commit.</a> </li>"
"\n"
"<li>PowerDevil no longer crashes on logout. <a href='http://quickgit.kde.org/?p=powerdevil.git&amp;a=commit&amp;h=70177b065389db8cc822dbe88b3cdd383cd1d4cc'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/371127'>#371127</a></li>"
"\n"
"<li>Mute volume when decreasing volume to zero. <a href='http://quickgit.kde.org/?p=plasma-pa.git&amp;a=commit&amp;h=6366791aaa5077e2c553b25c5d10c6029412a95c'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.3.php:61
msgid "Full Plasma 5.8.3 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4-5.8.5-changelog.php:4
msgid "Plasma 5.8.5 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:4
msgid "KDE Plasma 5.8.4, Bugfix Release for November"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:36
msgid "Tuesday, 22 November 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:37
msgid ""
"Today KDE releases a Bugfix update to KDE Plasma 5, versioned 5.8.4.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma 5.8</a>\n"
"was released in October with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:45
msgid ""
"\n"
"This release adds three week's worth of new\n"
"translations and fixes from KDE's contributors. The bugfixes are\n"
"typically small but important and include:\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:53
msgid ""
"\n"
"<li>Many bug fixes for multi screen support such as:</li>"
"\n"
"<ul>\n"
"<li>Load screenpool at the same time as we connect to screenchanged signals. <a href='http://commits.kde.org/plasma-workspace/7154fb681adc73c482e862febc7ad008f77058dd'>Commit.</a> See bug <a href='https://bugs.kde.org/372099'>#372099</a>. See bug <a href='https://bugs.kde.org/371858'>#371858</a>. See bug <a href='https://bugs.kde.org/371819'>#371819</a>. See bug <a href='https://bugs.kde.org/371734'>#371734</a></li>"
"\n"
"<li>Avoid connecting to screen changed signals twice. <a href='http://commits.kde.org/plasma-workspace/8a472f17ce11f3b79d740cdc21096d82b8683f3d'>Commit.</a> See bug <a href='https://bugs.kde.org/372099'>#372099</a>. See bug <a href='https://bugs.kde.org/371858'>#371858</a>. See bug <a href='https://bugs.kde.org/371819'>#371819</a>. See bug <a href='https://bugs.kde.org/371734'>#371734</a></li>"
"\n"
"</ul>"
"\n"
"<li>Make screenshots visible when there's only one screenshot too. <a href='http://commits.kde.org/discover/3297fe6026edebb8db72bb179289bee844c26ae3'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/371724'>#371724</a></li>"
"\n"
"<li>Disable Qt's high DPI scaling on shutdown/switch user dialogs. <a href='http://commits.kde.org/plasma-workspace/4b2abc581c6b3e7a4c2f1f893d47fad5d3806aca'>Commit.</a> See bug <a href='https://bugs.kde.org/366451'>#366451</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.4.php:65
msgid "Full Plasma 5.8.4 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5-5.8.95-changelog.php:4
msgid "Plasma 5.8.95 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5-5.9.0-changelog.php:4
msgid "Plasma 5.9.0 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5.php:4
msgid "KDE Plasma 5.8.5, Bugfix Release for December"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5.php:36
msgid "Tuesday, 27 December 2016. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5.php:37
msgid ""
"Today KDE releases a Bugfix update to KDE Plasma 5, versioned 5.8.5.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma 5.8</a>\n"
"was released in October with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5.php:53
msgid ""
"\n"
"<li>Notice when the only screen changes. <a href='https://commits.kde.org/plasma-workspace/f7b170de9fd9c4075fee324d33212b0d69909ba4'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/373880'>#373880</a></li>"
"\n"
"<li>Revert 'Do not ask for root permissions when it's unnecessary', it caused problems with adding a new user. <a href='https://commits.kde.org/user-manager/f2c69db182fb20453e671359e90a3bc6de40c7b0'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/373276'>#373276</a></li>"
"\n"
"<li>Fix compilation with Qt 5.8. <a href='https://commits.kde.org/plasma-integration/6b405fead515df417514c9aa9bb72cfa5372d2e7'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.5.php:61
msgid "Full Plasma 5.8.5 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:94
msgid "Plasma %1 LTS"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:111
msgid "Tuesday, 21 February 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:112
msgid "Today KDE releases a Bugfix update to KDE Plasma %1, versioned %2."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:113
msgid "<a href='%1'>Plasma %2</a> was released in October with many feature refinements and new modules to complete the desktop experience."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:117
msgid "This release adds a two months' worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:121
msgid "Avoid a crash on Kwin decoration KCM teardown. <a href='%1'>Commit.</a> See bug <a href='%2'>%3</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:122
msgid "[Folder View] Fix right click erroneously opening files. <a href='%1'>Commit.</a> Fixes bug <a href='%2'>%3</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.6.php:123
msgid "Fix regression in which the Save dialog appears as an Open dialog. <a href='%1'>Commit.</a> Code review <a href='%2'>%3</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.7.php:110
msgid "Tuesday, 23 May 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.7.php:121
msgid ""
"\n"
"<li>User Manager: Make sure the new avatar is always saved. <a href='https://commits.kde.org/user-manager/826e41429917f6c1534e84e8b7821b8b53675910'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/350836'>#350836</a>. Phabricator Code review <a href='https://phabricator.kde.org/D5779'>D5779</a></li>"
"\n"
"<li>[Logout Screen] Show suspend button only if supported. <a href='https://commits.kde.org/plasma-workspace/8bc32846a5a41fa67c106045c43bb8c4af7e7e6f'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/376601'>#376601</a></li>"
"\n"
"<li>[Weather] Fix term used for thunderstorm in bbcukmet data db. <a href='https://commits.kde.org/plasma-workspace/12a82fcba5672ee6b4473dfc6d0a84280a2bfbbb'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.8.php:118
msgid "Wednesday, 25 October 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.8.php:119
msgid "Today KDE releases an %1 update to KDE Plasma 5, versioned %2"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.8.php:120
msgid ""
"<a href='https://www.kde.org/announcements/plasma-5.8.0.php'>Plasma %1</a>\n"
"\t\twas released in %2 with many feature refinements and new modules to complete the desktop experience."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.8.php:129
msgid ""
"\n"
"<li>Fix crash when using Discover during updates. <a href='https://commits.kde.org/discover/aa12b3c822354e0f526dccff7f1c52c26fb35073'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/370906'>#370906</a></li>"
"\n"
"<li>Try to read CPU clock from cpufreq/scaling_cur_freq instead of /proc/cpuinfo. <a href='https://commits.kde.org/ksysguard/cbaaf5f4ff54e20cb8ec782737e04d540085e6af'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/382561'>#382561</a>. Phabricator Code review <a href='https://phabricator.kde.org/D8153'>D8153</a></li>"
"\n"
"<li>DrKonqi crash handler: make attaching backtraces to existing bug reports work. <a href='https://commits.kde.org/plasma-workspace/774a23fc0a7c112f86193ee6e07947fee6282ef4'>Commit.</a> </li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:4
msgid "Plasma 5.9 Beta Kicks off 2017 in Style."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:31 announcements/plasma-5.8.95.php:33
msgid "KDE Plasma 5.9 Beta"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:38
msgid "Thursday, 12 January 2017. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:39
msgid "Today KDE releases the beta of this year’s first Plasma feature update, Plasma 5.9. While this release brings many exciting new features to your desktop, we'll continue to provide bugfixes to Plasma 5.8 LTS.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:45 announcements/plasma-5.9.0.php:41
msgid "Be even more productive"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:48 announcements/plasma-5.8.95.php:50
#: announcements/plasma-5.9.0.php:44 announcements/plasma-5.9.0.php:46
msgid "Spectacle screenshot notifications can now be dragged into e-mail composers (including web mail)"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:53 announcements/plasma-5.9.0.php:49
msgid "In our ongoing effort to make you more productive with Plasma we added interactive previews to our notifications. This is most noticeable when you take a screenshot using Spectacle's global keyboard shortcuts (Shift+Print Scr): you can drag the resulting file from the notification popup directly into a chat window, an email composer or a web browser form, without ever having to leave the application you're currently working with. Drag and drop was improved throughout the desktop, with new drag and drop functionality to add widgets directly to the system tray. Widgets can also be added directly from the full screen Application Dashboard launcher."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:58 announcements/plasma-5.8.95.php:60
#: announcements/plasma-5.9.0.php:54 announcements/plasma-5.9.0.php:56
msgid "Icon Widget Properties"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:62 announcements/plasma-5.9.0.php:58
msgid "The icon widget that is created for you when you drag an application or document onto your desktop or a panel sees the return of a settings dialog: you can now change the icon, label text, working directory, and other properties. Its context menu now also sports an 'Open with' section as well as a link to open the folder the file it points to is located in."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:67 announcements/plasma-5.8.95.php:69
#: announcements/plasma-5.9.0.php:63 announcements/plasma-5.9.0.php:65
msgid "Muting from Panel Task Manager"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:72 announcements/plasma-5.9.0.php:68
msgid "Due to popular demand we implemented switching between windows in Task Manager using Meta + number shortcuts for heavy multi-tasking. Also new in Task Manager is the ability to pin different applications in each of your activities. And should you rather want to focus on one particular task, applications currently playing audio are marked in Task Manager similar to how it’s done in modern web browsers. Together with a button to mute the offending application, this can help you stay focused."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:77 announcements/plasma-5.8.95.php:79
#: announcements/plasma-5.9.0.php:73 announcements/plasma-5.9.0.php:75
msgid "Search Actions"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:81 announcements/plasma-5.9.0.php:77
msgid "The Quick Launch applet now supports jump list actions, bringing it to feature parity with the other launchers in Plasma. KRunner actions, such as “Run in Terminal” and “Open containing folder” are now also shown for the KRunner-powered search results in the application launchers."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:83 announcements/plasma-5.9.0.php:79
msgid "A new applet was added restoring an earlier KDE 4 feature of being able to group multiple widgets together in a single widget operated by a tabbed interface. This allows you to quickly access multiple arrangements and setups at your fingertips."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:86 announcements/plasma-5.9.0.php:82
msgid "More streamlined visuals"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:94 announcements/plasma-5.9.0.php:90
msgid "New Breeze Scrollbar Design"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:96 announcements/plasma-5.9.0.php:92
msgid "Improvements have been made to the look and feel of the Plasma Desktop and its applications. Scroll bars in the Breeze style, for instance, have transitioned to a more compact and beautiful design, giving our applications a sleek and modern look."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:102 announcements/plasma-5.8.95.php:104
#: announcements/plasma-5.9.0.php:98 announcements/plasma-5.9.0.php:100
msgid "Global Menus in a Plasma Widget"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:106 announcements/plasma-5.8.95.php:108
#: announcements/plasma-5.9.0.php:102 announcements/plasma-5.9.0.php:104
msgid "Global Menus in the Window Bar"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:110 announcements/plasma-5.9.0.php:106
msgid "Global Menus have returned. KDE's pioneering feature to separate the menu bar from the application window allows for new user interface paradigm with either a Plasma Widget showing the menu or neatly tucked away in the window bar."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:115 announcements/plasma-5.9.0.php:111
msgid "Neater Task Manager Tooltips"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:117 announcements/plasma-5.9.0.php:113
msgid "Neat Task Manager Tooltips"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:119 announcements/plasma-5.9.0.php:115
msgid "Task Manager tooltips have been redesigned to provide more information while being significantly more compact. Folder View is now able to display file emblems which are used, for example, to indicate symlinks. Overall user experience when navigating and renaming files has been greatly improved."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:122 announcements/plasma-5.9.0.php:118
msgid "More powerful Look and Feel import & export"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:126 announcements/plasma-5.9.0.php:122
msgid "Look and Feel Themes"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:128 announcements/plasma-5.9.0.php:124
msgid "The global Look and Feel desktop themes now support changing the window decoration as well – the 'lookandfeelexplorer' theme creation utility will export your current window decoration to the theme you create."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:130 announcements/plasma-5.9.0.php:126
msgid "If you install, from the KDE store, themes that depend on other artwork packs also present on the KDE store (such as Plasma themes and Icon themes) they will be automatically downloaded, in order to give you the full experience intended by the theme creator."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:133 announcements/plasma-5.9.0.php:129
msgid "New network configuration module"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:138 announcements/plasma-5.8.95.php:140
#: announcements/plasma-5.9.0.php:134 announcements/plasma-5.9.0.php:136
msgid "Network Connections Configuration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:142 announcements/plasma-5.9.0.php:138
msgid "A new configuration module for network connections has been added to System Settings, using QML and bringing a new fresh look. Design of the module is inspired by our network applet, while the configuration functionality itself is based on the previous Connection Editor. This means that although it features a new design, functionality remains using the proven codebase."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:149 announcements/plasma-5.8.95.php:151
#: announcements/plasma-5.9.0.php:145 announcements/plasma-5.9.0.php:147
msgid "Plasma with Wayland Can Now Take Screenshots and Pick Colors"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:155 announcements/plasma-5.9.0.php:151
msgid "Pointer Gesture Support"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:157 announcements/plasma-5.9.0.php:153
msgid "Touchpad Configuration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:159 announcements/plasma-5.9.0.php:155
msgid "Wayland Touchpad Configuration"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:162 announcements/plasma-5.9.0.php:158
msgid "Wayland has been an ongoing transitional task, getting closer to feature completion with every release. This release makes it even more accessible for enthusiastic followers to try Wayland and start reporting any bugs they might find. Notable improvements in this release include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:163 announcements/plasma-5.9.0.php:159
msgid "An ability to take screenshots or use a color picker. Fullscreen users will be pleased at borderless maximized windows."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:164 announcements/plasma-5.9.0.php:160
msgid "Pointers can now be confined by applications, gestures are supported (see video right) and relative motions used by games were added. Input devices were made more configurable and now save between sessions. There is also a new settings tool for touchpads."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:165 announcements/plasma-5.9.0.php:161
msgid "Using the Breeze style you can now drag applications by clicking on an empty area of the UI just like in X. When running X applications the window icon will show up properly on the panel. Panels can now auto-hide. Custom color schemes can be set for windows, useful for accessibility."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:168
msgid "Full Plasma 5.8.95 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:174 announcements/plasma-5.9.0.php:170
#: announcements/plasma-5.9.1.php:66
msgid ""
"\n"
"The easiest way to try it out is with a live image booted off a\n"
"USB disk. You can find a list of <a href='%1'>Live Images with Plasma 5</a> on the KDE Community Wiki."
msgstr ""
#. +> trunk
#: announcements/plasma-5.8.95.php:178 announcements/plasma-5.9.0.php:174
#: announcements/plasma-5.9.1.php:70
msgid ""
"\n"
"<a href='%1'>Docker images</a> also provide a quick and easy way to test Plasma."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0-5.9.1-changelog.php:4
msgid "Plasma 5.9.1 Complete Changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0.php:4
msgid "Plasma 5.9 Kicks off 2017 in Style."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0.php:27 announcements/plasma-5.9.0.php:29
#: announcements/plasma-5.9.1.php:31
msgid "KDE Plasma 5.9"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0.php:34
msgid "Tuesday, 31 January 2017. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0.php:35
msgid "Today KDE releases this year’s first Plasma feature update, Plasma 5.9. While this release brings many exciting new features to your desktop, we'll continue to provide bugfixes to Plasma 5.8 LTS.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.0.php:164
msgid "Full Plasma 5.9.0 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:4
msgid "KDE Plasma 5.9.1, Bugfix Release"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:23
msgid "KDE Plasma 5.9 Video"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:29
msgid "Plasma 5.9"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:36
msgid "Tuesday, 7 February 2017. "
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:37
msgid ""
"Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.9.1.\n"
"<a\n"
"href='https://www.kde.org/announcements/plasma-5.9.0.php'>Plasma 5.9</a>\n"
"was released in January with many feature refinements and new modules to complete the desktop experience.\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:53
msgid ""
"\n"
"<li>Fix i18n extraction: xgettext doesn't recognize single quotes. <a href='https://commits.kde.org/plasma-desktop/8c174b9c1e0b1b1be141eb9280ca260886f0e2cb'>Commit.</a> </li>"
"\n"
"<li>Set wallpaper type in SDDM config. <a href='https://commits.kde.org/sddm-kcm/19e83b28161783d570bde2ced692a8b5f2236693'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/370521'>#370521</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.1.php:60
msgid "Full Plasma 5.9.1 changelog"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:8
msgid "KDE Plasma 5.9.2, bugfix Release for February"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:111
msgid "Tuesday, 14 February 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:112
msgid "Today KDE releases a bugfix update to KDE Plasma 5, versioned %1."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:113
msgid "<a href='%1'>Plasma %2</a> was released in January with many feature refinements and new modules to complete the desktop experience."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:118
msgid "This release adds a two week's worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include:"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:123
msgid "Fix crash in Screen Locker KCM on teardown. <a href='%1'>Commit.</a> See bug <a href='%2'>%3</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.2.php:126
msgid "Fix Discover Appstream Support: make sure we don't show warnings unless it's absolutely necessary. <a href='%1'>Commit.</a>"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.3.php:110
msgid "Tuesday, 28 February 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.4.php:110
msgid "Tuesday, 21 March 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.4.php:121
msgid ""
"<li>Discover: Fix enabling/disabling sources. <a href='https://commits.kde.org/discover/7bdaa6d2f478be5422d4ef002518f2eabb1961dc'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/377327'>#377327</a></li>"
"\n"
"<li>[Kicker] Fix highlighting favorites. <a href='https://commits.kde.org/plasma-desktop/db297ab5acb93f88c238778e8682effe3032bf4f'>Commit.</a> See bug <a href='https://bugs.kde.org/377652'>#377652</a>. Phabricator Code review <a href='https://phabricator.kde.org/D5064'>D5064</a></li>"
"\n"
"<li>System Settings: Set the correct desktop file name when in a KDE session. <a href='https://commits.kde.org/systemsettings/f61f9d8c100fe94471b1a8f23ac905e9311b7436'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D5006'>D5006</a></li>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.5.php:110
msgid "Tuesday, 25 April 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.5.php:121
msgid ""
"\n"
"<li>Plastik window decoration now supports global menu. <a href='https://commits.kde.org/kwin/3e0ddba683ca68cb50b403cb3893fa2fc9d2d737'>Commit.</a> See bug <a href='https://bugs.kde.org/375862'>#375862</a>. Phabricator Code review <a href='https://phabricator.kde.org/D5131'>D5131</a></li>"
"\n"
"<li>Media Controller can now properly handle and seek long tracks (&gt; 30 minutes). <a href='https://commits.kde.org/plasma-workspace/550860f6366cc99d3f0ff19f74fd3fc3d1bfc0ad'>Commit.</a> Fixes bug <a href='https://bugs.kde.org/377623'>#377623</a></li>"
"\n"
"<li>Sort the themes in decoration KCM. <a href='https://commits.kde.org/kwin/f5a43877a9ea6ddad9eaa8d7498c8ea518c29c81'>Commit.</a> Phabricator Code review <a href='https://phabricator.kde.org/D5407'>D5407</a></li>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.95.php:118
msgid "Monday, 15 May 2017."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.95.php:119
msgid "Today KDE has made a testing release of our desktop Plasma 5.10 with new features across the suite to give users an experience which lives up to our tagline: simple by default, powerful when needed."
msgstr ""
#. +> trunk
#: announcements/plasma-5.9.95.php:262
msgid "Full Plasma 5.10 Beta changelog"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:6
msgid "Plasma 2 Technology Preview and Plasma Media Center 1.2.0"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:32
msgid ""
"December 20, 2013. The KDE Community is proud to announce two milestones of the Plasma Workspaces.\n"
"<ul>\n"
" "
"<li><strong><a href=\"http://dot.kde.org/2013/12/20/plasma-2-technology-preview\">Plasma 2 Technology Preview</a></strong> -- A first glance at the evolution of the Plasma Workspaces</li>"
"\n"
" "
"<li><strong><a href=\"http://dot.kde.org/2013/12/20/plasma-media-center-12-released-time-christmas\">Plasma Media Center 1.2.0</a></strong> -- Many new features and improvements in Plasma's Media Center user experience.</li>"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:39
msgid "Plasma 2 Technology Preview"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:40
msgid "KDE's Plasma Team presents a first glance at the evolution of the Plasma Workspaces. <strong>Plasma 2 Technology Preview</strong> demonstrates the current development status. The Plasma 2 user interfaces are built using QML and run on top of a fully hardware accelerated graphics stack using Qt5, QtQuick 2 and an OpenGL(-ES) scenegraph. Plasma 2's converged workspace shell allows you to run and switch between user interfaces for different form factors, and makes the workspace adaptable to the given target device. The workspace demonstrated in this technology preview is Plasma Desktop, an incremental evolution to known desktop and laptop paradigms. The user experience aims at keeping existing workflows intact, while providing incremental visual and interactive improvements. <a href=\"http://dot.kde.org/2013/12/20/plasma-2-technology-preview\">More info...</a>"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:45
msgid "Plasma Media Center 1.2.0"
msgstr ""
#. +> trunk
#: announcements/plasma2tp/index.php:46
msgid "The KDE community has a Christmas gift for you! We are happy to announce the release of KDE's <strong>Plasma Media Center 1.2.0</strong> - your first stop for media and entertainment created by the Elves at KDE. We have designed it to provide an easy and comfortable way to watch your videos, browse your photo collection and listen to your music, all in one place. New in Plasma Media Center 1.2.0 is improved navigation in music mode, fetching of album covers, picture previews while browsing folders, support for multiple playlist, improved key bindings and new artwork. <a href=\"http://dot.kde.org/2013/12/20/plasma-media-center-12-released-time-christmas\">More info...</a>"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:4
msgid "KDE Ships Second Beta of Next Generation Plasma Workspace"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:17
msgid ""
"\n"
"\n"
"June 10, 2014.\n"
"KDE today releases the <a\n"
"href='http://www.kde.org/announcements/plasma5.0-beta2/'>second\n"
"Beta version of the next-generation Plasma workspace</a>. The Plasma\n"
"team would like to ask the wider Free Software community to test this\n"
"release and give any feedback. Plasma 5 provides a visually\n"
"updated core desktop experience that will be easy and familiar for current users of\n"
"KDE workspaces or alternative Free Software or proprietary offerings. Plasma 5 is <a\n"
"href='http://techbase.kde.org/Schedules/Plasma/5.0_Release_Schedule'>planned\n"
"to be released</a> in early July.\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:32
msgid "<h2>Changes in Plasma 5</h2>"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:35
msgid "Plasma 5 is an evolutionary release of the popular desktop workspace. While it aims at keeping existing workflows intact, there are some significant improvements worth mentioning.\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:41
msgid ""
"\n"
"The new Breeze theme, which is still in its infancy, welcomes the user with a <strong>cleaner, modernized user interface</strong>, which improves contrast and reduces visual clutter throughout the workspace. Stronger reliance on typography, and vertical lists instead of horizontal ones go together with flatter UI elements and improved contrast to improve the ease of use. Breeze being a new artwork concept, it is only starting to show its face. A theme for the workspace components is already available, theming of traditional widgets is under way, and the work on a new icon theme has commenced. The migration to a fully Breeze-themed workspace will be a gradual one, with its first signs showing up in Plasma 5.0.\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:46
msgid ""
"\n"
"Plasma 5 brings a <strong>greater level of flexibility and consistency</strong> to core components of the desktop. The widget explorer, window and <a href=\"http://ivan.fomentgroup.org/blog/2014/06/07/the-future-of-activity-switching/\">activity switcher</a> now share a common interaction scheme through the use of the new-in-Plasma-5 Look and Feel package, which allows swapping these parts of the user experience in and out as a whole. The Plasma 5 workspace shell is able to load and switch between user experience for a given target device, introducing a truely convergent workspace shell. The workspace demonstrated in this pre-release is\n"
"Plasma Desktop. It represents an evolution of known desktop and laptop\n"
"paradigms. A <a href=\"http://plasma-active.org\">tablet-centric</a> and <a href=\"http://community.kde.org/Plasma/Plasma_Media_Center\">mediacenter</a> user experience are under development as alternatives. While Plasma 5 will feel familiar, users will notice a more\n"
"modern workspace."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:53
msgid "New lockscreen in Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:59
msgid ""
"Since the <a href=\"https://www.kde.org/announcements/announce-plasma-next-beta1.php\">first beta release</a>, a wide range of\n"
"changes has been made. In the workspace components itself, more than 150 bugs have been fixed, with many fixes across the stack. Plasma 5.0 Beta 2 has increased the minimal Qt dependency to 5.3, in order to require a number of improvements which have been made upstream in Qt. Some missing functions, which were lacking proper solutions have been restored. The developer team has also settled on a version number scheme where the first release will be version 5.0 and the family is called Plasma 5."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:64
msgid "Plasma 5 runs on top of a <strong>fully hardware-accelerated graphics stack</strong>, using Qt 5, QML 2 and an OpenGL(-ES) scenegraph to deliver graphics onto the users' screens. This allows the rendering to be faster, more efficient, less power-hungry and enables a smoother user experience by freeing up resources of the system processor. Plasma 5 completes the migration of the workspace to Qt Quick that has begun in earlier releases.\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:67
msgid ""
"Plasma 5 is the first complex codebase to transition\n"
"to <a href='http://dot.kde.org/2013/09/25/frameworks-5'>KDE Frameworks\n"
"5</a>, which is a modular evolution of the KDE development platform\n"
"into leaner, less interdependent libraries."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:78
msgid "Networking Setup in Plasma 5"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:80
msgid ""
"As a Beta release, this pre-release is not suitable\n"
"for production use. It is meant as a base for testing and gathering\n"
"feedback to ensure that the initial stable release of Plasma 5 in July\n"
"will be a smooth ride for everybody involved and lay a stable\n"
"foundation for future versions. Plasma 5 is intended for end users,\n"
"but will not provide feature parity with the latest 4.x release, which\n"
"will come in follow-up version. The team is concentrating on the\n"
"core desktop features first, instead of trying to transplant every\n"
"single feature into the new workspaces. The feature set presented in\n"
"Plasma 5.0 will suffice for most users, though some might miss a button\n"
"here and there. This is not because the Plasma team wants to remove\n"
"features, but simply that not everything has been done yet. Of course,\n"
"everybody is encouraged to help bringing Plasma back to its original\n"
"feature set and beyond."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:97
msgid ""
"<strong>Stability</strong> is not yet up to the level\n"
"where the developers want Plasma 5. With a substantial new toolkit\n"
"stack below come exciting new crashes and problems that need time to\n"
"be shaken out."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:102
msgid ""
"<strong>Performance</strong> of Plasma 5 is heavily\n"
"dependent on specific hardware and software configurations and usage\n"
"patterns. While it has great potential, it takes time to wrangle this\n"
"out of it and the underlying stack is not entirely ready for this\n"
"either. In some scenarios, Plasma 5 will display the buttery\n"
"smooth performance it is capable off - while at other times, it will\n"
"be hampered by various shortcomings. These can and will be addressed,\n"
"however, much is dependent on components like Qt, Mesa and hardware\n"
"drivers lower in the stack. Again, this will need time, as fixes made\n"
"elsewhere in the software stack might be released by the time the first Plasma 5\n"
"version becomes available."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:114
msgid ""
"<strong>Polish</strong> is a major benefit of Qt Quick 2, as\n"
"it allows seamless usage of OpenGL(-ES), much more precise positioning and\n"
"many other abilities. At the same time, the immaturity of Qt Quick\n"
"Controls, the brand new successor to the 15+ year old Qt Widgets\n"
"technology, brings some rough edges yet to be smoothed out."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:124
msgid ""
"The easiest way to try it out is the <a\n"
"href='http://neon.blue-systems.com/live-iso/'>Neon 5 ISO</a>,\n"
"a live OS image updated with the latest builds straight from\n"
"source."
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:129
msgid ""
"Some distributions have created, or are in the process\n"
"of creating, packages; for an overview of Beta 2 packages, see <a\n"
"href='http://community.kde.org/Plasma/Next/UnstablePackages'>our\n"
"unstable packages wiki page</a>"
msgstr ""
#. +> trunk
#: announcements/plasma5.0-beta2/index.php:134
msgid ""
"<a\n"
"href='http://download.kde.org/unstable/plasma/4.97.0/src/'>Source\n"
"download</a>. You can install Plasma 5 directly from source. KDE's\n"
"community wiki has <a\n"
"href='http://community.kde.org/Frameworks/Building'>instructions</a>.\n"
"Note that Plasma 5 does not co-install with Plasma 4.x, you will need\n"
"to uninstall older versions or install into a separate prefix."
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:4
msgid "New Plasma brings a cleaner interface on top of a new graphics stack"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:29
msgid "Plasma 5.0"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:39
msgid ""
"\n"
"\n"
"July 15, 2014.\n"
"KDE proudly announces the immediate availability of Plasma 5.0, providing a visually updated core desktop experience that is easy to use and familiar to the user. Plasma 5.0 introduces a new major version of KDE&#x27;s workspace offering. The new Breeze artwork concept introduces cleaner visuals and improved readability. Central work-flows have been streamlined, while well-known overarching interaction patterns are left intact. Plasma 5.0 improves support for high-DPI displays and ships a converged shell, able to switch between user experiences for different target devices. Changes under the hood include the migration to a new, fully hardware-accelerated graphics stack centered around an OpenGL(ES) scenegraph. Plasma is built using Qt 5 and Frameworks 5.\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:46
msgid ""
"\n"
"Major changes in this new version include:\n"
"\n"
"<li>\n"
"<strong>An updated and modernized, cleaner visual and interactive user experience</strong><br />"
"\n"
"The new Breeze theme is a high-contrast, flat theme for the workspace. It is available in light and dark variants. Simpler and more monochromatic graphics assets and typography-centered layouts offer a clean and visually clear user experience.\n"
"</li>"
"\n"
"\n"
"<li>\n"
"<strong>Smoother graphics performance thanks to an updated graphics stack</strong>\n"
"<br />"
"\n"
"Plasma&#x27;s user interfaces are rendered on top of an OpenGL or OpenGL ES scenegraph, offloading many of the computational-intensive rendering tasks. This allows for higher framerates and smoother graphics display while freeing up resources of the main system processor.\n"
"</li>"
"\n"
"</ul>"
"\n"
"\n"
"<div align='center'>\n"
"<iframe width='640' height='360' src='http://www.youtube.com/embed/c8JYt_xkJuY' frameborder='0' allowfullscreen></iframe>\n"
"</div>\n"
"\n"
"<br>"
"Other user-visible changes are:<br>"
"\n"
"\n"
"<ul>\n"
"<li><strong>Converged shell</strong><br />"
"\n"
"The &quot;converged Plasma shell&quot; that loads up the desktop in Plasma 5.0 can be extended with other user experiences. This lays the base for a converged user experience bringing up a suitable UI for a given target device. User experiences can be switched dynamically at runtime, allowing, based on hardware events such as plugging in a keyboard and a mouse.\n"
"</li>"
"\n"
"\n"
"<li>\n"
"<strong>Modernized launchers</strong><br />"
"\n"
"The application launchers&#x27; user interfaces have been reworked. Among the changes are a visually redesigned Kickoff application launcher, a newly included, more menu-like launcher, called Kicker and a new, QtQuick-based interface for KRunner.</li>"
"<br>"
"\n"
"\n"
"<li>\n"
"<strong>Workflow improvements in the notification area</strong><br />"
"\n"
"The notification area has been cleaned up, and sports a more integrated look now. Less popup windows and quicker transitions between for example power management and networks settings lead to a more distraction-free interaction pattern and greater visual coherence.\n"
"</li>"
"\n"
"\n"
"<li>\n"
"<strong>Better support for high-density (high-DPI) displays</strong><br />"
"\n"
"Support for high-density displays has been improved. Many parts of the UI now take the physical size of the display into account. This leads to better usability and display on screens with very small pixels, such as Retina displays.\n"
"</li>"
"\n"
"\n"
"</ul>"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:90
msgid ""
"\n"
"\n"
"The <a href='http://youtu.be/4n2dthDSGkc'>Plasma 5.0 Visual Feature Guide</a> provides a tour around the updated desktop.<br />"
"\n"
"\n"
"<div align='center'>\n"
"<iframe width='640' height='360' src='http://www.youtube.com/embed/4n2dthDSGkc' frameborder='0' allowfullscreen></iframe>\n"
"</div>\n"
"\n"
"<h2>Breeze Artwork Improves Visual clarity</h2>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:102
msgid ""
"\n"
"\n"
"The new Breeze theme, which is still in its infancy, welcomes the user with a <strong>cleaner, modernized user interface</strong>, which improves contrast and reduces visual clutter throughout the workspace. Stronger reliance on typography eases the recognition of UI elements. These changes go together with flatter default theming and improved contrast to improve visual clarity further. Breeze being a new artwork concept, is only starting to show its face. A theme for the workspace components is already available, theming of traditional widgets is under way, and the work on a new icon theme has commenced. The migration to a fully Breeze-themed workspace will be a gradual one, with its first signs showing up in Plasma 5.0.<br />"
"\n"
"Plasma 5 brings a <strong>greater level of flexibility and consistency</strong> to core components of the desktop. The widget explorer, window and activity switcher now share a common interaction scheme. More reliance on vertical instead of horizontal lists provides better usability. Moving the window switcher to the side of the screen shifts the user&#x27;s focus towards the applications and documents, clearing the stage for the task at hand.\n"
"\n"
"<h2>Converging User Experience</h2>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:111
msgid ""
"\n"
"\n"
"\n"
"The new-in-Plasma-5 &quot;Look and Feel&quot; mechanism allows swapping out parts like the task and activity switchers, lock and login screen and the &quot;Add Widgets&quot; dialog. This allows for greater consistency across central workflows, improves clarity within similar interaction patterns and changing related interaction patterns across the workspace at once.<br>"
"On top of that, the Plasma 5 shell is able to load and switch between user experiences for a given target device, introducing a truly convergent workspace shell. The workspace demonstrated in this release is Plasma Desktop. It represents an evolution of known desktop and laptop paradigms. A tablet-centric and mediacenter user experience are under development as alternatives. While Plasma 5.0 will feel familiar, users will notice a more modern and consistent, cleaner workspace experience.\n"
"\n"
"<h2>Fully Hardware-Accelerated Graphics Stack</h2>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:120
msgid ""
"\n"
"\n"
"\n"
"Plasma 5 completes the migration of the Plasma workspace to QtQuick. Qt 5&#x27;s QtQuick 2 uses a hardware-accelerated OpenGL(ES) scenegraph to compose and render graphics on the screen. This allows offloading computationally expensive graphics rendering tasks onto the GPU which frees up resources on the system&#x27;s main processing unit, is faster and more power-efficient.<br />"
"\n"
"Internal changes in the graphics compositor and underlying Frameworks prepare support for running on Wayland, which is planned for an upcoming release.\n"
"\n"
"<h2>Suitability and Updates</h2>"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:130
msgid ""
"\n"
"\n"
"\n"
"Plasma 5.0 provides a core desktop with a feature set that will suffice for many users. The development team has concentrated on tools that make up the central workflows. As such, not all features from the Plasma 4.x series are available yet, many of them planned to return with a subsequent release. As with any software release of this size, there will be bugs that make a migration to Plasma 5 hard, if not impossible for some users. The development team would like to hear about such issues, so they can be addressed and fixed. We have compiled a list of <a href='https://community.kde.org/Plasma/5.0_Errata'>known issues</a>. Users can expect monthly bugfix updates, and a release bringing new features and more old ones back in the autumn 2014.<br />"
"\n"
"\n"
"\n"
"With a substantial new toolkit stack below some exciting new crashes and problems that need time to be shaken out are to be expected in a first stable release. Especially graphics performance is heavily dependent on specific hardware and software configurations and usage patterns. While it has great potential, it takes time to wrangle this out of it. The underlying stack may not be entirely ready for this either. In many scenarios, Plasma 5.0 will display the buttery smooth performance it is capable of - while at other times, it may be hampered by various shortcomings. These can and will be addressed, however, much is dependent on components like Qt, Mesa and hardware drivers lower in the stack.\n"
"\n"
"\n"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:146
msgid ""
"Before installation, it is recommended to read the list of <a\n"
"href='https://community.kde.org/Plasma/5.0_Errata'>known issues</a>."
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:154
msgid ""
"\n"
"\n"
"The easiest way to try it out is the <a\n"
"href='http://files.kde.org/snapshots/neon5-latest.iso.mirrorlist'>Neon 5 ISO</a>,\n"
"a live OS image updated with the latest builds straight from\n"
"source."
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:161
msgid ""
"Some distributions have created, or are in the process\n"
"of creating, packages; for an overview of 5.0 packages, see <a\n"
"href='http://community.kde.org/Plasma/Packages'>our\n"
"distribution packages wiki page</a>"
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:166
msgid ""
"<a\n"
"href='../../info/plasma-5.0.0.php'>Source\n"
"download</a>. You can install Plasma 5.0 directly from source. KDE's\n"
"community wiki has <a\n"
"href='http://community.kde.org/Frameworks/Building'>instructions for compiling it</a>.\n"
"Note that Plasma 5 does not co-install with Plasma 4.x, you will need\n"
"to uninstall older versions or install into a separate prefix."
msgstr ""
#. +> trunk
#: announcements/plasma5.0/index.php:176
msgid ""
"You can provide feedback either via the <a\n"
"href='irc://#plasma@freenode.net'>#Plasma IRC channel</a>, <a\n"
"href='https://mail.kde.org/mailman/listinfo/plasma-devel'>Plasma-devel\n"
"mailing list</a> or report issues via <a\n"
"href='https://bugs.kde.org/enter_bug.cgi?product=plasmashell&format=guided'>bugzilla</a>. Plasma\n"
"5 is also <a\n"
"href='http://forum.kde.org/viewforum.php?f=289'>discussed on the KDE\n"
"Forums</a>. Your feedback is greatly appreciated. If you like what the\n"
"team is doing, please let them know!"
msgstr ""
#. +> trunk
#: community/donations/index.php:53
msgid "Your donation is smaller than %1€. This means that most of your donation\\nwill end up in processing fees. Do you want to continue?"
msgstr ""
#. +> trunk
#: contact/about_kde.inc:9
msgid "About KDE"
msgstr ""
#. +> trunk
#: contact/about_kde.inc:12
msgid ""
"KDE is an international technology team that creates free \n"
"and open source software for desktop and portable computing. Among \n"
"KDE's products are a modern desktop system for Linux and UNIX platforms, \n"
"comprehensive office productivity and groupware suites and hundreds of \n"
"software titles in many categories including Internet and web \n"
"applications, multimedia, entertainment, educational, graphics and \n"
"software development. KDE software is translated into more than 60 \n"
"languages and is built with ease of use and modern accessibility \n"
"principles in mind. KDE's full-featured applications run natively on\n"
"Linux, BSD, Solaris, Windows and Mac OS X."
msgstr ""
#. +> trunk
#: contact/about_kde.inc:28
msgid "Trademark Notices."
msgstr ""
#. +> trunk
#: contact/about_kde.inc:29
msgid ""
"KDE<sup>&#174;</sup> and the K Desktop Environment<sup>&#174;</sup> logo are \n"
" registered trademarks of KDE e.V."
msgstr ""
#. +> trunk
#: contact/about_kde.inc:32
msgid "Linux is a registered trademark of Linus Torvalds."
msgstr ""
#. +> trunk
#: contact/about_kde.inc:34
msgid ""
"UNIX is a registered trademark of The Open Group in the United States and\n"
" other countries."
msgstr ""
#. +> trunk
#: contact/about_kde.inc:37
msgid ""
"All other trademarks and copyrights referred to in this announcement are\n"
" the property of their respective owners."
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:11
msgid "Africa"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:17
msgid "Cape Town"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:19
msgid "South-Africa"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:20 contact/press_contacts.inc:42
#: contact/press_contacts.inc:56 contact/press_contacts.inc:66
#: contact/press_contacts.inc:76
msgid "Phone: %1"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:25
msgid "Asia"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:30
msgid "Maharashtra."
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:31
msgid "India 410206"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:37
msgid "Europe"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:40
msgid "6543 ZE Nijmegen"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:41
msgid "The Netherlands"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:51
msgid "North America"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:54
msgid "Brighton, MA 02135"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:55
msgid "U.S.A"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:61
msgid "Oceania"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:64
msgid "Eltham VIC 3095"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:65
msgid "Australia"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:71
msgid "South America"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:74
msgid "Salvador, BA 41650-195"
msgstr ""
#. +> trunk
#: contact/press_contacts.inc:75
msgid "Brazil"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:9
msgid "Make the World a Better Place! - KDE End of Year 2014 Fundraising"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:26 fundraisers/yearend2016/index.php:26
msgid "Date"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:26 fundraisers/yearend2016/index.php:26
msgid "Amount"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:26 fundraisers/yearend2016/index.php:26
#: fundraisers/yearend2016/index.php:56
msgid "Donor Name"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:30 fundraisers/yearend2016/index.php:30
#: fundraisers/yearend2016/index.php:73 fundraisers/yearend2016/index.php:76
msgid "Anonymous donation"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:108 fundraisers/yearend2016/index.php:124
msgid "%1 raised"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:126 fundraisers/yearend2014/index.php:129
#: fundraisers/yearend2016/index.php:148
msgid "Donate"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:127
msgid ""
"We will notify Facebook of your<br>"
"donation for campaign analytics."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:133 fundraisers/yearend2016/index.php:151
msgid "Show my name on the <a href='%1'>donor list</a>"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:139
msgid "The KDE End of Year 2014 Fundraiser has finished. Thank you everybody who supported us in this fundraiser. Go to the <a href='%1'>KDE donation page</a> if you want to support us further.</b>"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:142 fundraisers/yearend2016/index.php:165
msgid "Also available in: "
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:146
msgid "As we approach the end of the year we begin the season of giving. What would suit the holiday better than giving to the entire world?"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:150
msgid "Here is a unique way to give back to KDE allowing us to keep giving free software to humankind."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:154 fundraisers/yearend2016/index.php:177
msgid "KDE is committed to improving technology and software to make the world a better place. We produce great quality free software that everyone is free to use or modify without any cost or restriction."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:223
msgid "We want to bring the solutions we are offering to the next step. By participating in this fundraiser, you'll be part of the improvements we'll put into our educational software, so kids can have better tools for school; our office suite, so we have the best tools for the workplace; and our desktop so we can all experience a fun and productive experience when interacting with our computers."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:227 fundraisers/yearend2016/index.php:249
msgid "Donating to KDE is not for you, it is for the entire world."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:231
msgid "As a way to say thank you, starting with %1 we will send a KDE themed postcard to any given address. You will get an extra card for every additional %2 donation. Get cards for yourself and for your family and friends to show them you care for freedom. It's the perfect way to spread the festive cheer and donate to your favorite project at the same time."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:241
msgid "For those of you that are very generous and donate more than %1 we want to thank you by being the guides to our cities. We would like to spend an evening showing you the more interesting spots in the cities we live in, have a chat about KDE, life and everything. At the moment this offer extends to the following cities:"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:254
msgid "This campaign will end on January 15th 2015."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:257 fundraisers/yearend2016/index.php:281
msgid "Where Your Donations Go"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:259 fundraisers/yearend2016/index.php:283
msgid "Last year KDE spent about %1 on travel and accomodation of more than 100 contributors for various sprints throughout the year."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:263
msgid "<a href='%1'>Sprints</a> are in person meetings and are really important for a team of hardworking volunteers around the world to focus their efforts and discuss technical matters around the project. The amount of output we get from the sprints is really worthwhile for all users of the software."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:267 fundraisers/yearend2016/index.php:291
msgid "Remaining money gets spent on our infrastructure, we have a large portfolio of servers hosting websites, code, continuous integration and a lot more. A full breakdown can be seen in our <a href='%1'>quarterly reports</a>."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:270 fundraisers/yearend2016/index.php:294
msgid "Notes:"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:272
msgid "We will use your paypal email address to contact you and ask for the addresses to send the postcards mid-November."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:273 fundraisers/yearend2016/index.php:297
msgid "You will be able to choose between the generic thank you or custom text for the postcard."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:274
msgid "The first shipment of cards will be December 1st, after that there will be a shipment every week until the end of the Fundraiser."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:275
msgid "The city guide evening will have to be coordinated with the local people, so we can find a date that suits all of us."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:279 fundraisers/yearend2016/index.php:303
msgid "If you prefer to use international bank transfers please <a href='%1'>see this page</a>."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:281 fundraisers/yearend2016/index.php:305
msgid "Please write us <a href='%1'>an email</a> so we can add you to the list of donors manually."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/index.php:284 fundraisers/yearend2016/index.php:311
msgid "List of donations"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/thanks_paypal.php:9
#: fundraisers/yearend2016/thanks_paypal.php:9
msgid "Donation received - Thank you!"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/thanks_paypal.php:14
msgid "Thank you very much for your donation to the Year End 2014 fundraiser!"
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/thanks_paypal.php:17
msgid "In case your donation qualifies for a greeting card gift we will contact you mid-November to ask for the design you want and address you want to send them to."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/thanks_paypal.php:20
#: fundraisers/yearend2016/thanks_paypal.php:20
msgid "Remember you can become a \"KDE Supporting Member\" by doing recurring donations. Learn more at <a href=\"%1\">%2/</a>."
msgstr ""
#. +> trunk
#: fundraisers/yearend2014/thanks_paypal.php:23
msgid "You can see your donation on <a href=\"%1\">the Year End 2014 fundraiser page</a>."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:9
msgid "Make the World a Better Place! - KDE End of Year 2016 Fundraising"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:56
msgid "Total Amount"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:106
msgid "* %1 art print winners will be randomly selected out of these %2 donors"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:160
msgid "The KDE End of Year 2016 Fundraiser has finished. Thank you everybody who supported us in this fundraiser. Please visit the <a href='%1'>KDE donation page</a> if you would like to support us further."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:169
msgid "As we approach the end of the year, we begin the season of giving. What would suit the holidays better than giving to the entire world?"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:173
msgid "Here is a unique way to give back to KDE, allowing us to keep giving free software to humankind."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:245
msgid "We want to bring the solutions we are offering to the next level. By participating in this fundraiser, you'll be part of the improvements we'll put into our products, for example our educational software, so kids can have better tools for school; our productivity applications, so you have the best tools for the workplace; and our desktop so we can all have a fun and productive experience when interacting with our computers."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:253
msgid "As a way to say thank you, starting with %1 we will send a KDE-themed postcard, designed by our community of artists, to an address of your choice. You will get an extra card for every additional %2 donation. Get cards for yourself and for your family and friends to show them you care for freedom. It's the perfect way to spread the festive cheer and donate to your favorite project at the same time."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:265
msgid "In addition we would like to give a special thank you to our highest donors. We are giving away 9 <b>unique</b> art prints in size A4. At our last conference, QtCon, we asked 46 prominent current and former KDE contributors (including core developers from Plasma, KDE Edu and Qt, board members, designers, community organizers, translators and more) to sign artwork created for KDE's 20th birthday. This is a one-time chance to get a nice and unique KDE print for your wall."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:274
msgid "The top 9 donors are calculated aggregating by paypal address, make sure you use the same account if you donate multiple times."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:278
msgid "This campaign will end on December 31st 2016 at 23:59 UTC."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:287
msgid "<a href='%1'>Sprints</a> are in person meetings and are really important for a team of hard-working volunteers around the world to focus their efforts and discuss technical matters around the project. The amount of output we get from the sprints is really worthwhile for all users of the software."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:296
msgid "We will use your paypal email address to contact you and ask for the addresses to send the postcards."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:298
msgid "The first shipment of cards will be December 8th, after that there will be a shipment every week until the end of the Fundraiser."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:299
msgid "If there is a tie in the last position of the top 9 donors we'll let random.org select the winner amongst the tied donors."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/index.php:308
msgid "Top 9 donors"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/thanks_paypal.php:14
msgid "Thank you very much for your donation to the Year End 2016 fundraiser!"
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/thanks_paypal.php:17
msgid "In case your donation qualifies for a greeting card gift we will contact you at the beginning of December at your paypal email address to ask for the design you want and address you want to send them to."
msgstr ""
#. +> trunk
#: fundraisers/yearend2016/thanks_paypal.php:23
msgid "You can see your donation on <a href=\"%1\">the Year End 2016 fundraiser page</a>."
msgstr ""