Hello community, here is the log from the commit of package kconfigwidgets for openSUSE:Factory checked in at 2014-06-10 14:36:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kconfigwidgets (Old) and /work/SRC/openSUSE:Factory/.kconfigwidgets.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kconfigwidgets" Changes: -------- --- /work/SRC/openSUSE:Factory/kconfigwidgets/kconfigwidgets.changes 2014-05-14 20:26:47.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kconfigwidgets.new/kconfigwidgets.changes 2014-06-10 14:36:26.000000000 +0200 @@ -1,0 +2,10 @@ +Sun Jun 1 18:02:15 UTC 2014 - [email protected] + +- Update to 4.100.0 + * API improvements and cleanups + * Buildsystem fixes + * For more details please see: + http://www.kde.org/announcements/announce-frameworks5-beta3.php +- Add baselibs.conf + +------------------------------------------------------------------- Old: ---- kconfigwidgets-4.99.0.tar.xz New: ---- baselibs.conf kconfigwidgets-4.100.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kconfigwidgets.spec ++++++ --- /var/tmp/diff_new_pack.xbEVED/_old 2014-06-10 14:36:27.000000000 +0200 +++ /var/tmp/diff_new_pack.xbEVED/_new 2014-06-10 14:36:27.000000000 +0200 @@ -18,10 +18,10 @@ %define lname libKF5ConfigWidgets5 Name: kconfigwidgets -Version: 4.99.0 +Version: 4.100.0 Release: 0 BuildRequires: cmake >= 2.8.12 -BuildRequires: extra-cmake-modules >= 0.0.13 +BuildRequires: extra-cmake-modules >= 0.0.14 BuildRequires: fdupes BuildRequires: kauth-devel >= %{_kf5_version} BuildRequires: kcodecs-devel >= %{_kf5_version} @@ -39,7 +39,8 @@ License: LGPL-2.1+ Group: System/GUI/KDE Url: http://www.kde.org -Source0: kconfigwidgets-%{version}.tar.xz +Source: http://download.kde.org/unstable/frameworks/%{version}/%{name}-%{version}.tar.xz +Source1: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -50,6 +51,7 @@ Summary: Widgets for configuration dialogs Group: System/GUI/KDE Obsoletes: libKF5ConfigWidgets4 +Recommends: %lname-lang = %{version} %description -n %lname KConfigWidgets provides easy-to-use classes to create configuration dialogs, as @@ -59,7 +61,7 @@ Summary: Widgets for configuration dialogs: Build Environment Group: Development/Libraries/KDE Requires: %lname = %{version} -Requires: extra-cmake-modules >= 0.0.13 +Requires: extra-cmake-modules >= 0.0.14 Requires: kauth-devel >= %{_kf5_version} Requires: kcodecs-devel >= %{_kf5_version} Requires: kconfig-devel >= %{_kf5_version} @@ -71,6 +73,7 @@ KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. Development files. +%lang_package -n %lname %prep %setup -q @@ -82,10 +85,14 @@ %kf5_makeinstall -C build %fdupes -s %{buildroot} + %find_lang %{name}5 + %post -n %lname -p /sbin/ldconfig %postun -n %lname -p /sbin/ldconfig +%files -n %lname-lang -f %{name}5.lang + %files -n %lname %defattr(-,root,root) %doc COPYING* README* ++++++ baselibs.conf ++++++ libKF5ConfigWidgets5 kconfigwidgets-devel requires "libKF5ConfigWidgets5-<targettype> = <version>" ++++++ kconfigwidgets-4.99.0.tar.xz -> kconfigwidgets-4.100.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/CMakeLists.txt new/kconfigwidgets-4.100.0/CMakeLists.txt --- old/kconfigwidgets-4.99.0/CMakeLists.txt 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/CMakeLists.txt 2014-06-01 14:09:34.000000000 +0200 @@ -2,7 +2,7 @@ project(KConfigWidgets) -find_package(ECM 0.0.13 REQUIRED NO_MODULE) +find_package(ECM 0.0.14 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) set(REQUIRED_QT_VERSION "5.2.0") @@ -15,33 +15,31 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -set(KF5_VERSION "4.99.0") # handled by release scripts -set(KF5_DEP_VERSION "4.99.0") # handled by release scripts +set(KF5_VERSION "4.100.0") # handled by release scripts +set(KF5_DEP_VERSION "4.100.0") # handled by release scripts ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KCONFIGWIDGETS VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kconfigwidgets_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5ConfigWidgetsConfigVersion.cmake" SOVERSION 5) -if(NOT kdelibs_SOURCE_DIR) - find_package(KF5Auth ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5Codecs ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5DocTools ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5GuiAddons ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED) - find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED) -else() - set(_kdeBootStrapping TRUE) - include(${CMAKE_SOURCE_DIR}/tier2/kdoctools/KF5DocToolsMacros.cmake) - set(KDOCTOOLS_CUSTOMIZATION_DIR "${KDocTools_BINARY_DIR}/src/customization/") -endif() +find_package(KF5Auth ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5CoreAddons ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5Codecs ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5Config ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5DocTools ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5GuiAddons ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5I18n ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5WidgetsAddons ${KF5_DEP_VERSION} REQUIRED) remove_definitions(-DQT_NO_CAST_FROM_ASCII) remove_definitions(-DQT_NO_CAST_FROM_BYTEARRAY) add_definitions(-DTRANSLATION_DOMAIN=\"kconfigwidgets5\") +if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po") + ki18n_install(po) + kdoctools_install(po) +endif() add_subdirectory(docs) add_subdirectory(src) add_subdirectory(tests) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/sr/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/sr/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/sr/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/sr/kconfigwidgets5.po 2014-06-01 14:09:34.000000000 +0200 @@ -429,7 +429,10 @@ #: kstandardaction_p.h:102 #, kde-format msgid "&Configure %1..." -msgstr "&Подеси %1...|/|&Подеси $[аку %1]..." +msgstr "" +"&Подеси %1..." +"|/|" +"&Подеси $[аку %1]..." #: kstandardaction_p.h:103 msgid "Configure Tool&bars..." @@ -442,7 +445,10 @@ #: kstandardaction_p.h:109 #, kde-format msgid "%1 &Handbook" -msgstr "&Приручник за %1|/|&Приручник за $[аку %1]" +msgstr "" +"&Приручник за %1" +"|/|" +"&Приручник за $[аку %1]" #: kstandardaction_p.h:110 msgid "What's &This?" @@ -463,7 +469,10 @@ #: kstandardaction_p.h:114 #, kde-format msgid "&About %1" -msgstr "&О %1|/|&О $[дат %1]" +msgstr "" +"&О %1" +"|/|" +"&О $[дат %1]" #: kstandardaction_p.h:115 msgid "About &KDE" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/sr@ijekavian/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/sr@ijekavian/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/sr@ijekavian/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/sr@ijekavian/kconfigwidgets5.po 2014-06-01 14:09:34.000000000 +0200 @@ -428,7 +428,10 @@ #: kstandardaction_p.h:102 #, kde-format msgid "&Configure %1..." -msgstr "&Подеси %1...|/|&Подеси $[аку %1]..." +msgstr "" +"&Подеси %1..." +"|/|" +"&Подеси $[аку %1]..." #: kstandardaction_p.h:103 msgid "Configure Tool&bars..." @@ -441,7 +444,10 @@ #: kstandardaction_p.h:109 #, kde-format msgid "%1 &Handbook" -msgstr "&Приручник за %1|/|&Приручник за $[аку %1]" +msgstr "" +"&Приручник за %1" +"|/|" +"&Приручник за $[аку %1]" #: kstandardaction_p.h:110 msgid "What's &This?" @@ -462,7 +468,10 @@ #: kstandardaction_p.h:114 #, kde-format msgid "&About %1" -msgstr "&О %1|/|&О $[дат %1]" +msgstr "" +"&О %1" +"|/|" +"&О $[дат %1]" #: kstandardaction_p.h:115 msgid "About &KDE" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/sr@ijekavianlatin/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/sr@ijekavianlatin/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/sr@ijekavianlatin/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/sr@ijekavianlatin/kconfigwidgets5.po 2014-06-01 14:09:34.000000000 +0200 @@ -428,7 +428,10 @@ #: kstandardaction_p.h:102 #, kde-format msgid "&Configure %1..." -msgstr "&Podesi %1...|/|&Podesi $[aku %1]..." +msgstr "" +"&Podesi %1..." +"|/|" +"&Podesi $[aku %1]..." #: kstandardaction_p.h:103 msgid "Configure Tool&bars..." @@ -441,7 +444,10 @@ #: kstandardaction_p.h:109 #, kde-format msgid "%1 &Handbook" -msgstr "&Priručnik za %1|/|&Priručnik za $[aku %1]" +msgstr "" +"&Priručnik za %1" +"|/|" +"&Priručnik za $[aku %1]" #: kstandardaction_p.h:110 msgid "What's &This?" @@ -462,7 +468,10 @@ #: kstandardaction_p.h:114 #, kde-format msgid "&About %1" -msgstr "&O %1|/|&O $[dat %1]" +msgstr "" +"&O %1" +"|/|" +"&O $[dat %1]" #: kstandardaction_p.h:115 msgid "About &KDE" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/sr@latin/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/sr@latin/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/sr@latin/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/sr@latin/kconfigwidgets5.po 2014-06-01 14:09:34.000000000 +0200 @@ -428,7 +428,10 @@ #: kstandardaction_p.h:102 #, kde-format msgid "&Configure %1..." -msgstr "&Podesi %1...|/|&Podesi $[aku %1]..." +msgstr "" +"&Podesi %1..." +"|/|" +"&Podesi $[aku %1]..." #: kstandardaction_p.h:103 msgid "Configure Tool&bars..." @@ -441,7 +444,10 @@ #: kstandardaction_p.h:109 #, kde-format msgid "%1 &Handbook" -msgstr "&Priručnik za %1|/|&Priručnik za $[aku %1]" +msgstr "" +"&Priručnik za %1" +"|/|" +"&Priručnik za $[aku %1]" #: kstandardaction_p.h:110 msgid "What's &This?" @@ -462,7 +468,10 @@ #: kstandardaction_p.h:114 #, kde-format msgid "&About %1" -msgstr "&O %1|/|&O $[dat %1]" +msgstr "" +"&O %1" +"|/|" +"&O $[dat %1]" #: kstandardaction_p.h:115 msgid "About &KDE" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/uk/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/uk/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/uk/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/uk/kconfigwidgets5.po 2014-06-01 14:09:34.000000000 +0200 @@ -725,7 +725,7 @@ #~ msgid "Password must be at least 1 character long" #~ msgid_plural "Password must be at least %1 characters long" -#~ msgstr[0] "Довжина пароля повинна бути щонайменше %1 символ" +#~ msgstr[0] "Довжина пароля повинна бути щонайменше один символ" #~ msgstr[1] "Довжина пароля повинна бути щонайменше %1 символи" #~ msgstr[2] "Довжина пароля повинна бути щонайменше %1 символів" #~ msgstr[3] "Довжина пароля повинна бути щонайменше один символ" @@ -4136,7 +4136,7 @@ #~ msgid "1 match found." #~ msgid_plural "%1 matches found." -#~ msgstr[0] "Знайдено %1 відповідний варіант." +#~ msgstr[0] "Знайдено 1 відповідний варіант." #~ msgstr[1] "Знайдено %1 відповідних варіанта." #~ msgstr[2] "Знайдено %1 відповідних варіантів." #~ msgstr[3] "Знайдено 1 відповідний варіант." @@ -4384,7 +4384,7 @@ #~ msgid "but your pattern only defines 1 capture." #~ msgid_plural "but your pattern only defines %1 captures." -#~ msgstr[0] "в той час, як взірець визначає тільки %1 захоплення." +#~ msgstr[0] "в той час, як взірець визначає тільки одне захоплення." #~ msgstr[1] "в той час, як взірець визначає тільки %1 захоплення." #~ msgstr[2] "в той час, як взірець визначає тільки %1 захоплень." #~ msgstr[3] "в той час, як взірець визначає тільки одне захоплення." @@ -6381,7 +6381,7 @@ #~ msgid_plural "" #~ "The shortcut '%2' conflicts with the following key combinations:\n" #~ msgstr[0] "" -#~ "Клавіатурне скорочення «%2» суперечить наступним комбінаціям клавіш:\n" +#~ "Клавіатурне скорочення «%2» суперечить наступній комбінації клавіш:\n" #~ msgstr[1] "" #~ "Клавіатурне скорочення «%2» суперечить наступним комбінаціям клавіш:\n" #~ msgstr[2] "" @@ -6392,7 +6392,7 @@ #~ msgctxt "%1 is the number of shortcuts with which there is a conflict" #~ msgid "Conflict with Registered Global Shortcut" #~ msgid_plural "Conflict with Registered Global Shortcuts" -#~ msgstr[0] "Конфлікт з зареєстрованими загальними скороченнями" +#~ msgstr[0] "Конфлікт з зареєстрованим загальним скороченням" #~ msgstr[1] "Конфлікт з зареєстрованими загальними скороченнями" #~ msgstr[2] "Конфлікт з зареєстрованими загальними скороченнями" #~ msgstr[3] "Конфлікт з зареєстрованим загальним скороченням" @@ -6400,7 +6400,7 @@ #~ msgctxt "%1 is the number of conflicts" #~ msgid "Shortcut Conflict" #~ msgid_plural "Shortcut Conflicts" -#~ msgstr[0] "Конфлікти скорочень" +#~ msgstr[0] "Конфлікт скорочень" #~ msgstr[1] "Конфлікти скорочень" #~ msgstr[2] "Конфлікти скорочень" #~ msgstr[3] "Конфлікт скорочень" @@ -7097,7 +7097,7 @@ #~ msgid "&Send File" #~ msgid_plural "&Send Files" -#~ msgstr[0] "&Надіслати файли" +#~ msgstr[0] "&Надіслати файл" #~ msgstr[1] "&Надіслати файли" #~ msgstr[2] "&Надіслати файли" #~ msgstr[3] "&Надіслати файл" @@ -7707,7 +7707,7 @@ #~ msgid "&Show Blocked Popup Window" #~ msgid_plural "&Show %1 Blocked Popup Windows" -#~ msgstr[0] "&Показати %1 заблокований вигульк" +#~ msgstr[0] "&Показати заблокований вигульк" #~ msgstr[1] "&Показати %1 заблоковані вигульки" #~ msgstr[2] "&Показати %1 заблокованих вигульків" #~ msgstr[3] "&Показати заблокований вигульк" @@ -8775,7 +8775,7 @@ #~ msgid "Loading one preview" #~ msgid_plural "Loading %1 previews" -#~ msgstr[0] "Завантаження %1 ескізу" +#~ msgstr[0] "Завантаження ескізу" #~ msgstr[1] "Завантаження %1 ескізів" #~ msgstr[2] "Завантаження %1 ескізів" #~ msgstr[3] "Завантаження ескізу" @@ -8898,14 +8898,14 @@ #~ msgctxt "fan as in supporter" #~ msgid "1 fan" #~ msgid_plural "%1 fans" -#~ msgstr[0] "%1 прихильник" +#~ msgstr[0] "1 прихильник" #~ msgstr[1] "%1 прихильники" #~ msgstr[2] "%1 прихильників" #~ msgstr[3] "1 прихильник" #~ msgid "1 download" #~ msgid_plural "%1 downloads" -#~ msgstr[0] "%1 звантаження" +#~ msgstr[0] "1 звантаження" #~ msgstr[1] "%1 звантаження" #~ msgstr[2] "%1 звантажень" #~ msgstr[3] "1 звантаження" @@ -8957,7 +8957,7 @@ #~ msgid_plural "" #~ "The server does not recognize any of the categories to which you are " #~ "trying to upload: %2" -#~ msgstr[0] "Серверу невідомі категорії вашого вивантаження: %2" +#~ msgstr[0] "Серверу невідома категорія вашого вивантаження: %2" #~ msgstr[1] "Серверу невідома категорія ваших вивантажень: %2" #~ msgstr[2] "Серверу невідома категорія ваших вивантажень: %2" #~ msgstr[3] "Серверу невідома категорія вашого вивантаження: %2" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kconfigwidgets-4.99.0/po/x-test/kconfigwidgets5.po new/kconfigwidgets-4.100.0/po/x-test/kconfigwidgets5.po --- old/kconfigwidgets-4.99.0/po/x-test/kconfigwidgets5.po 2014-05-05 02:16:25.000000000 +0200 +++ new/kconfigwidgets-4.100.0/po/x-test/kconfigwidgets5.po 1970-01-01 01:00:00.000000000 +0100 @@ -1,465 +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. -# -# -msgid "" -msgstr "" -"Project-Id-Version: kconfigwidgets5\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2014-04-27 20:57+0000\n" -"PO-Revision-Date: 2014-04-27 21:05+0000\n" -"Last-Translator: transxx.py program <[email protected]>\n" -"Language-Team: KDE Test Language <[email protected]>\n" -"Language: x-test\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -msgctxt "NAME OF TRANSLATORS" -msgid "Your names" -msgstr "xxYour namesxx" - -msgctxt "EMAIL OF TRANSLATORS" -msgid "Your emails" -msgstr "xxYour emailsxx" - -#: kcmodule.cpp:153 -msgid "You will be asked to authenticate before saving" -msgstr "xxYou will be asked to authenticate before savingxx" - -#: kcmodule.cpp:157 -msgid "You are not allowed to save the configuration" -msgstr "xxYou are not allowed to save the configurationxx" - -#: kcodecaction.cpp:90 -msgctxt "Encodings menu" -msgid "Default" -msgstr "xxDefaultxx" - -#: kcodecaction.cpp:98 -msgctxt "Encodings menu" -msgid "Autodetect" -msgstr "xxAutodetectxx" - -#: klanguagebutton.cpp:194 -msgid "without name" -msgstr "xxwithout namexx" - -#: krecentfilesaction.cpp:78 -msgid "No Entries" -msgstr "xxNo Entriesxx" - -#: krecentfilesaction.cpp:82 -msgid "Clear List" -msgstr "xxClear Listxx" - -#: kstandardaction.cpp:88 -msgctxt "go back" -msgid "&Back" -msgstr "xx&Backxx" - -#: kstandardaction.cpp:95 -msgctxt "go forward" -msgid "&Forward" -msgstr "xx&Forwardxx" - -#: kstandardaction.cpp:102 -msgctxt "home page" -msgid "&Home" -msgstr "xx&Homexx" - -#: kstandardaction.cpp:105 -msgctxt "show help" -msgid "&Help" -msgstr "xx&Helpxx" - -#: kstandardaction.cpp:514 kstandardaction_p.h:96 -msgid "Show &Menubar" -msgstr "xxShow &Menubarxx" - -#: kstandardaction.cpp:520 -msgid "Show Menubar<p>Shows the menubar again after it has been hidden</p>" -msgstr "" -"xxShow Menubar<p>Shows the menubar again after it has been hidden</p>xx" - -#: kstandardaction.cpp:538 kstandardaction_p.h:98 -msgid "Show St&atusbar" -msgstr "xxShow St&atusbarxx" - -#: kstandardaction.cpp:541 -msgid "" -"Show Statusbar<p>Shows the statusbar, which is the bar at the bottom of the " -"window used for status information.</p>" -msgstr "" -"xxShow Statusbar<p>Shows the statusbar, which is the bar at the bottom of " -"the window used for status information.</p>xx" - -#: kstandardaction_p.h:41 -msgid "&New" -msgstr "xx&Newxx" - -#: kstandardaction_p.h:41 -msgid "Create new document" -msgstr "xxCreate new documentxx" - -#: kstandardaction_p.h:42 -msgid "&Open..." -msgstr "xx&Open...xx" - -#: kstandardaction_p.h:42 -msgid "Open an existing document" -msgstr "xxOpen an existing documentxx" - -#: kstandardaction_p.h:43 -msgid "Open &Recent" -msgstr "xxOpen &Recentxx" - -#: kstandardaction_p.h:43 -msgid "Open a document which was recently opened" -msgstr "xxOpen a document which was recently openedxx" - -#: kstandardaction_p.h:44 -msgid "&Save" -msgstr "xx&Savexx" - -#: kstandardaction_p.h:44 -msgid "Save document" -msgstr "xxSave documentxx" - -#: kstandardaction_p.h:45 -msgid "Save &As..." -msgstr "xxSave &As...xx" - -#: kstandardaction_p.h:45 -msgid "Save document under a new name" -msgstr "xxSave document under a new namexx" - -#: kstandardaction_p.h:46 -msgid "Re&vert" -msgstr "xxRe&vertxx" - -#: kstandardaction_p.h:46 -msgid "Revert unsaved changes made to document" -msgstr "xxRevert unsaved changes made to documentxx" - -#: kstandardaction_p.h:47 -msgid "&Close" -msgstr "xx&Closexx" - -#: kstandardaction_p.h:47 -msgid "Close document" -msgstr "xxClose documentxx" - -#: kstandardaction_p.h:48 -msgid "&Print..." -msgstr "xx&Print...xx" - -#: kstandardaction_p.h:48 -msgid "Print document" -msgstr "xxPrint documentxx" - -#: kstandardaction_p.h:49 -msgid "Print Previe&w" -msgstr "xxPrint Previe&wxx" - -#: kstandardaction_p.h:49 -msgid "Show a print preview of document" -msgstr "xxShow a print preview of documentxx" - -#: kstandardaction_p.h:50 -msgid "&Mail..." -msgstr "xx&Mail...xx" - -#: kstandardaction_p.h:50 -msgid "Send document by mail" -msgstr "xxSend document by mailxx" - -#: kstandardaction_p.h:51 -msgid "&Quit" -msgstr "xx&Quitxx" - -#: kstandardaction_p.h:51 -msgid "Quit application" -msgstr "xxQuit applicationxx" - -#: kstandardaction_p.h:53 -msgid "&Undo" -msgstr "xx&Undoxx" - -#: kstandardaction_p.h:53 -msgid "Undo last action" -msgstr "xxUndo last actionxx" - -#: kstandardaction_p.h:54 -msgid "Re&do" -msgstr "xxRe&doxx" - -#: kstandardaction_p.h:54 -msgid "Redo last undone action" -msgstr "xxRedo last undone actionxx" - -#: kstandardaction_p.h:55 -msgid "Cu&t" -msgstr "xxCu&txx" - -#: kstandardaction_p.h:55 -msgid "Cut selection to clipboard" -msgstr "xxCut selection to clipboardxx" - -#: kstandardaction_p.h:56 -msgid "&Copy" -msgstr "xx&Copyxx" - -#: kstandardaction_p.h:56 -msgid "Copy selection to clipboard" -msgstr "xxCopy selection to clipboardxx" - -#: kstandardaction_p.h:57 kstandardaction_p.h:58 -msgid "&Paste" -msgstr "xx&Pastexx" - -#: kstandardaction_p.h:57 kstandardaction_p.h:58 -msgid "Paste clipboard content" -msgstr "xxPaste clipboard contentxx" - -#: kstandardaction_p.h:59 -msgid "C&lear" -msgstr "xxC&learxx" - -#: kstandardaction_p.h:60 -msgid "Select &All" -msgstr "xxSelect &Allxx" - -#: kstandardaction_p.h:61 -msgid "Dese&lect" -msgstr "xxDese&lectxx" - -#: kstandardaction_p.h:62 -msgid "&Find..." -msgstr "xx&Find...xx" - -#: kstandardaction_p.h:63 -msgid "Find &Next" -msgstr "xxFind &Nextxx" - -#: kstandardaction_p.h:64 -msgid "Find Pre&vious" -msgstr "xxFind Pre&viousxx" - -#: kstandardaction_p.h:65 -msgid "&Replace..." -msgstr "xx&Replace...xx" - -#: kstandardaction_p.h:67 -msgid "&Actual Size" -msgstr "xx&Actual Sizexx" - -#: kstandardaction_p.h:67 -msgid "View document at its actual size" -msgstr "xxView document at its actual sizexx" - -#: kstandardaction_p.h:68 -msgid "&Fit to Page" -msgstr "xx&Fit to Pagexx" - -#: kstandardaction_p.h:68 -msgid "Zoom to fit page in window" -msgstr "xxZoom to fit page in windowxx" - -#: kstandardaction_p.h:69 -msgid "Fit to Page &Width" -msgstr "xxFit to Page &Widthxx" - -#: kstandardaction_p.h:69 -msgid "Zoom to fit page width in window" -msgstr "xxZoom to fit page width in windowxx" - -#: kstandardaction_p.h:70 -msgid "Fit to Page &Height" -msgstr "xxFit to Page &Heightxx" - -#: kstandardaction_p.h:70 -msgid "Zoom to fit page height in window" -msgstr "xxZoom to fit page height in windowxx" - -#: kstandardaction_p.h:71 -msgid "Zoom &In" -msgstr "xxZoom &Inxx" - -#: kstandardaction_p.h:72 -msgid "Zoom &Out" -msgstr "xxZoom &Outxx" - -#: kstandardaction_p.h:73 -msgid "&Zoom..." -msgstr "xx&Zoom...xx" - -#: kstandardaction_p.h:73 -msgid "Select zoom level" -msgstr "xxSelect zoom levelxx" - -#: kstandardaction_p.h:74 -msgid "&Redisplay" -msgstr "xx&Redisplayxx" - -#: kstandardaction_p.h:74 -msgid "Redisplay document" -msgstr "xxRedisplay documentxx" - -#: kstandardaction_p.h:76 -msgid "&Up" -msgstr "xx&Upxx" - -#: kstandardaction_p.h:76 -msgid "Go up" -msgstr "xxGo upxx" - -#: kstandardaction_p.h:81 -msgid "&Previous Page" -msgstr "xx&Previous Pagexx" - -#: kstandardaction_p.h:81 -msgid "Go to previous page" -msgstr "xxGo to previous pagexx" - -#: kstandardaction_p.h:82 -msgid "&Next Page" -msgstr "xx&Next Pagexx" - -#: kstandardaction_p.h:82 -msgid "Go to next page" -msgstr "xxGo to next pagexx" - -#: kstandardaction_p.h:83 -msgid "&Go To..." -msgstr "xx&Go To...xx" - -#: kstandardaction_p.h:84 -msgid "&Go to Page..." -msgstr "xx&Go to Page...xx" - -#: kstandardaction_p.h:85 -msgid "&Go to Line..." -msgstr "xx&Go to Line...xx" - -#: kstandardaction_p.h:86 -msgid "&First Page" -msgstr "xx&First Pagexx" - -#: kstandardaction_p.h:86 -msgid "Go to first page" -msgstr "xxGo to first pagexx" - -#: kstandardaction_p.h:87 -msgid "&Last Page" -msgstr "xx&Last Pagexx" - -#: kstandardaction_p.h:87 -msgid "Go to last page" -msgstr "xxGo to last pagexx" - -#: kstandardaction_p.h:88 -msgid "&Back" -msgstr "xx&Backxx" - -#: kstandardaction_p.h:88 -msgid "Go back in document" -msgstr "xxGo back in documentxx" - -#: kstandardaction_p.h:89 -msgid "&Forward" -msgstr "xx&Forwardxx" - -#: kstandardaction_p.h:89 -msgid "Go forward in document" -msgstr "xxGo forward in documentxx" - -#: kstandardaction_p.h:91 -msgid "&Add Bookmark" -msgstr "xx&Add Bookmarkxx" - -#: kstandardaction_p.h:92 -msgid "&Edit Bookmarks..." -msgstr "xx&Edit Bookmarks...xx" - -#: kstandardaction_p.h:94 -msgid "&Spelling..." -msgstr "xx&Spelling...xx" - -#: kstandardaction_p.h:94 -msgid "Check spelling in document" -msgstr "xxCheck spelling in documentxx" - -#: kstandardaction_p.h:96 -msgid "Show or hide menubar" -msgstr "xxShow or hide menubarxx" - -#: kstandardaction_p.h:97 -msgid "Show &Toolbar" -msgstr "xxShow &Toolbarxx" - -#: kstandardaction_p.h:97 -msgid "Show or hide toolbar" -msgstr "xxShow or hide toolbarxx" - -#: kstandardaction_p.h:98 -msgid "Show or hide statusbar" -msgstr "xxShow or hide statusbarxx" - -#: kstandardaction_p.h:99 -msgid "F&ull Screen Mode" -msgstr "xxF&ull Screen Modexx" - -#: kstandardaction_p.h:100 -msgid "&Save Settings" -msgstr "xx&Save Settingsxx" - -#: kstandardaction_p.h:101 -msgid "Configure S&hortcuts..." -msgstr "xxConfigure S&hortcuts...xx" - -#: kstandardaction_p.h:102 -#, kde-format -msgid "&Configure %1..." -msgstr "xx&Configure %1...xx" - -#: kstandardaction_p.h:103 -msgid "Configure Tool&bars..." -msgstr "xxConfigure Tool&bars...xx" - -#: kstandardaction_p.h:104 -msgid "Configure &Notifications..." -msgstr "xxConfigure &Notifications...xx" - -#: kstandardaction_p.h:109 -#, kde-format -msgid "%1 &Handbook" -msgstr "xx%1 &Handbookxx" - -#: kstandardaction_p.h:110 -msgid "What's &This?" -msgstr "xxWhat's &This?xx" - -#: kstandardaction_p.h:111 -msgid "Tip of the &Day" -msgstr "xxTip of the &Dayxx" - -#: kstandardaction_p.h:112 -msgid "&Report Bug..." -msgstr "xx&Report Bug...xx" - -#: kstandardaction_p.h:113 -msgid "Switch Application &Language..." -msgstr "xxSwitch Application &Language...xx" - -#: kstandardaction_p.h:114 -#, kde-format -msgid "&About %1" -msgstr "xx&About %1xx" - -#: kstandardaction_p.h:115 -msgid "About &KDE" -msgstr "xxAbout &KDExx" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
