Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kbounce for openSUSE:Factory checked in at 2021-08-16 10:09:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kbounce (Old) and /work/SRC/openSUSE:Factory/.kbounce.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kbounce" Mon Aug 16 10:09:49 2021 rev:113 rq:911638 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kbounce/kbounce.changes 2021-07-10 00:00:51.331817070 +0200 +++ /work/SRC/openSUSE:Factory/.kbounce.new.1899/kbounce.changes 2021-08-16 10:14:59.290848880 +0200 @@ -1,0 +2,25 @@ +Fri Aug 6 09:36:25 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.08.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/21.08.0 +- No code change since 21.07.90 + +------------------------------------------------------------------- +Fri Jul 30 10:04:43 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.90 + * New feature release +- No code change since 21.07.80 + +------------------------------------------------------------------- +Sat Jul 17 20:05:48 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Documentation updates +- Only install the license files once + +------------------------------------------------------------------- Old: ---- kbounce-21.04.3.tar.xz kbounce-21.04.3.tar.xz.sig New: ---- kbounce-21.08.0.tar.xz kbounce-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kbounce.spec ++++++ --- /var/tmp/diff_new_pack.56bsyO/_old 2021-08-16 10:14:59.778848257 +0200 +++ /var/tmp/diff_new_pack.56bsyO/_new 2021-08-16 10:14:59.782848252 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kbounce -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Bounce ball game License: LGPL-2.0-or-later @@ -72,7 +72,6 @@ BuildRequires: cmake(Qt5Widgets) Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -Recommends: %{name}-lang %description Your task in KBounce (Jezz Ball) is to catch several moving balls in a @@ -108,7 +107,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license LICENSES/* %endif %changelog ++++++ kbounce-21.04.3.tar.xz -> kbounce-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/.gitignore new/kbounce-21.08.0/.gitignore --- old/kbounce-21.04.3/.gitignore 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/.gitignore 2021-08-04 23:59:15.000000000 +0200 @@ -3,3 +3,9 @@ *.kdev4 CMakeLists.txt.user* .cmake/ +/.clang-format +/compile_commands.json +.clangd +.cache +.idea +/cmake-build* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/CMakeLists.txt new/kbounce-21.08.0/CMakeLists.txt --- old/kbounce-21.04.3/CMakeLists.txt 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/CMakeLists.txt 2021-08-04 23:59:15.000000000 +0200 @@ -1,15 +1,15 @@ -cmake_minimum_required (VERSION 3.5 FATAL_ERROR) +cmake_minimum_required (VERSION 3.16 FATAL_ERROR) # KDE Application Version, managed by release script set(RELEASE_SERVICE_VERSION_MAJOR "21") -set(RELEASE_SERVICE_VERSION_MINOR "04") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MINOR "08") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kbounce VERSION ${RELEASE_SERVICE_VERSION}) -set (QT_MIN_VERSION "5.12.0") -set (KF5_MIN_VERSION "5.68.0") +set (QT_MIN_VERSION "5.15.0") +set (KF5_MIN_VERSION "5.83.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/CMakePresets.json new/kbounce-21.08.0/CMakePresets.json --- old/kbounce-21.04.3/CMakePresets.json 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/CMakePresets.json 2021-08-04 23:59:15.000000000 +0200 @@ -1,5 +1,5 @@ { - "version": 1, + "version": 2, "configurePresets": [ { "name": "dev", @@ -23,6 +23,17 @@ } }, { + "name": "unity", + "displayName": "Build with CMake unity support.", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-unity", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_UNITY_BUILD": "ON", + "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" + } + }, + { "name": "release", "displayName": "Build as release mode.", "generator": "Ninja", @@ -40,6 +51,33 @@ "CMAKE_BUILD_TYPE": "RelWithDebInfo", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON" } + }, + { + "name": "clazy", + "displayName": "clazy", + "generator": "Ninja", + "binaryDir": "${sourceDir}/build-clazy", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug" + }, + "environment": { + "CXX": "clazy", + "CCACHE_DISABLE": "ON" + } + } + ], + "buildPresets": [ + { + "name": "dev", + "configurePreset": "dev" + }, + { + "name": "clazy", + "configurePreset": "clazy", + "environment": { + "CLAZY_CHECKS" : "level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo", + "CCACHE_DISABLE" : "ON" + } } ] } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/doc/index.docbook new/kbounce-21.08.0/doc/index.docbook --- old/kbounce-21.04.3/doc/index.docbook 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/doc/index.docbook 2021-08-04 23:59:15.000000000 +0200 @@ -34,11 +34,11 @@ <legalnotice>&FDLNotice;</legalnotice> -<date>2016-05-09</date> -<releaseinfo>0.11 (Applications 16.04)</releaseinfo> +<date>2021-06-25</date> +<releaseinfo>KDE Gear 21.04</releaseinfo> <abstract> - <para>This documentation describes the game of &kbounce; version 0.11</para> + <para>This documentation describes the game of &kbounce; version 21.04</para> </abstract> @@ -50,7 +50,7 @@ <keyword>arcade</keyword> <keyword>puzzle</keyword> <keyword>balls</keyword> - <keyword>jezzball</keyword> + <keyword>JezzBall</keyword> <keyword>KBounce</keyword> </keywordset> @@ -85,7 +85,7 @@ </para> <para> -New walls are built by clicking the &LMB; in an active area of the field, at which point two walls will begin to grow in opposite directions from the square the mouse was clicked in. Only one wall in each direction may be growing on the screen at any given time. +New walls are built by clicking the &LMB; in an active area of the field, at which point one wall will begin to grow in opposite directions from the square the mouse was clicked in. Only one wall in each direction may be growing on the screen at any given time. </para> <para> @@ -308,7 +308,7 @@ <varlistentry id="game-end"> <term><menuchoice> <shortcut> -<keycombo action="simul">&Ctrl;<keycap>End</keycap></keycombo> +<keycombo action="simul">&Ctrl;&End;</keycombo> </shortcut> <guimenu>Game</guimenu> <guimenuitem>End Game</guimenuitem> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/ca/docs/kbounce/index.docbook new/kbounce-21.08.0/po/ca/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/ca/docs/kbounce/index.docbook 1970-01-01 01:00:00.000000000 +0100 +++ new/kbounce-21.08.0/po/ca/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -0,0 +1,654 @@ +<?xml version="1.0" ?> +<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [ + <!ENTITY % Catalan "INCLUDE" +> + <!ENTITY % addindex "IGNORE"> +]> + +<book id="kbounce" lang="&language;"> +<bookinfo> +<title +>El manual del &kbounce;</title> + +<authorgroup> +<author +><firstname +>Tomasz</firstname +><surname +>Boczkowski</surname +> <affiliation +><address +><email +>[email protected]</email +></address +></affiliation> +</author> +<othercredit role="reviewer" +><firstname +>Eugene</firstname +><surname +>Trounev</surname +> <contrib +>Revisor</contrib> +<affiliation +><address +>[email protected]</address +></affiliation> +</othercredit> +&traductor.Antoni.Bella; +</authorgroup> + +<copyright> +<year +>2002</year> +<holder +>&Aaron.J.Seigo;</holder> +</copyright> + +<copyright> +<year +>2007</year> +<holder +>Tomasz Boczkowski</holder> +</copyright> + +<legalnotice +>&FDLNotice;</legalnotice> + + +<date +>25 de juny de 2021</date> +<releaseinfo +>KDE Gear 21.04</releaseinfo> + +<abstract> + <para +>Aquesta documentaci?? descriu el joc &kbounce; versi?? 21.04</para> +</abstract> + + +<keywordset> + <keyword +>KDE</keyword +> <!-- do not change this! --> + <keyword +>kdegames</keyword +> <!-- do not change this! --> + <keyword +>joc</keyword +> <!-- do not change this! --> +<!-- Game genre. Use as many as necessary. Available game types are: Arcade, Board, Card, Dice, Toys, Logic, Strategy.--> + <keyword +>arcade</keyword> + <keyword +>trencaclosques</keyword> + <keyword +>boles</keyword> + <keyword +>JezzBall</keyword> + <keyword +>KBounce</keyword> +</keywordset> + +</bookinfo> + +<chapter id="introduction"> +<title +>Introducci??</title> +<note +><title +>Tipus de joc:</title +><para +>Trencaclosques, arcade</para +></note +><!-- Game genre. Use as many as necessary. Available game types are: Arcade, Board, Card, Dice, Toys, Logic, Strategy.--> + <note +><title +>Nombre de possibles jugadors:</title +><para +>Un</para +></note +><!--Number of possible players. It can be: One, Two,..., Multiplayer--> +<para +>El &kbounce; ??s un joc d'arcade per a un ??nic jugador amb elements de trencaclosques. </para> + +<para +>Es juga en un camp rodejat per murs, amb dues o m??s boles que es mouen pel camp rebotant en els murs. El jugador pot construir murs nous, reduint la mida del camp actiu. </para> + +<para +>L'objectiu del joc ??s omplir com a m??nim el 75% del camp i aix?? avan??ar cap al nivell seg??ent. </para> +</chapter> + +<chapter id="how-to-play"> +<title +>Com jugar</title> + +<para +>Al jugador se li presenta un camp rectangular en mosaic envoltat de murs. Dues o m??s boles es mouen pel camp i reboten en els murs. L'objectiu del joc ??s limitar la mida de la sala per a les boles. </para> + +<para +>La mida de l'??rea activa del camp es redueix creant murs nous que tanquen les ??rees que no contenen boles. Per a completar un nivell, el jugador haur?? de fer disminuir la mida del camp actiu en al menys un 75% dins del temps perm??s. </para> + +<para +>Els murs nous es construeixen fent clic amb el &BER; en una ??rea activa del camp, moment en qu?? un mur comen??ar?? a cr??ixer en direccions oposades des del quadrat en el qual s'ha fet clic. En qualsevol moment, nom??s pot estar creixent a la pantalla un mur en cada direcci??. </para> + +<para +>Quan el ratol?? est?? sobre el camp, el cursor es mostrar?? com un parell de fletxes apuntant en direccions oposades, ja sigui horitzontal o verticalment. Les fletxes apuntaran en la direcci?? en que creixeran els murs quan es faci clic amb el &BER;. Aquesta direcci?? es pot canviar fent clic amb el &BDR;. </para> + +<para +>Un mur nou t?? un <quote +>cap</quote +> que s'allunya del punt on s'ha fet clic amb el ratol??. Un mur no ser?? permanent fins que aquest <quote +>cap</quote +> es trobi amb un altra mur. Si una bola xoca amb qualsevol part del mur excepte el cap, abans que el cap es trobi amb un altra mur, el mur nou desapareixer?? completament i es perdr?? una vida. Si una bola xoca amb el cap en la direcci?? de creixement del mur, el mur deixar?? de cr??ixer all?? i es tornar?? permanent, sense perdre cap vida. Si una pilota xoca amb el cap des de qualsevol altra costat, la pilota rebotar?? i el mur seguir?? creixent amb normalitat. </para> +</chapter> + +<chapter id="rules_and_tips" +><title +>Les regles del joc, estrat??gies i consells</title +> <!-- do not change this! --> +<sect1 id="rules"> +<title +>Les regles del joc</title> + +<para +>El joc comen??a amb el nivell 1, en el qual dues boles es mouen pel camp. El jugador t?? dues vides i 90 segons per a completar amb ??xit el nivell. </para> + +<para +>En el nivell ??n?? hi ha ??n + 1?? boles. El jugador rep ??n + 1?? vides. Disposa de ??30 * (n + 2)?? segons per a completar-lo. </para> + +<para +>Quan una bola xoca amb una mur en creixement, el jugador perdr?? una vida. Una excepci?? ??s la col??lisi?? amb el <quote +>cap</quote +> del mur, no es perdr?? cap vida. </para> + +<para +>L'objectiu de cada nivell ??s cobrir al menys el 75% del camp amb un mur. </para> + +<para +>La p??rdua de totes les vides i excedir el temps perm??s resultar?? en el final del joc. </para> + +<para +>Si un jugador completa un nivell, rebr?? 15 punts per cada vida restant i una bonificaci?? en funci?? de la quantitat de boles i la quantitat de mosaics plens per sobre del 75%. Tamb?? avan??ar?? cap el nivell seg??ent. </para> + +</sect1> + +<sect1 id="strategy"> +<title +>Les estrat??gies i consells</title> +<itemizedlist> + +<listitem> +<para +>Molts jugadors troben que el joc es torna for??a dif??cil nom??s en el tercer o quart nivell, donada la quantitat de boles que hi ha alhora en el camp. </para> +</listitem> + +<listitem> +<para +>El truc per a jugar amb ??xit al &kbounce;, ??s construir <quote +>passadissos</quote +>. Per a construir un passad??s, comenceu un parell de murs que creixin prop d'un altre mur, i calculeu el temps perqu?? un dels murs sigui colpejat per una bola i l'altre no, i per tant es converteixi en permanent. </para> + +<screenshot> +<screeninfo +>Construint un passad??s</screeninfo> +<mediaobject> +<imageobject> +<imagedata fileref="kbounce_corridor1.png" format="PNG"/> +</imageobject> +<textobject> +<phrase +>Construint un passad??s</phrase> +</textobject> +</mediaobject> +</screenshot> + +<para +>Aix?? deixar?? un passad??s estret de nom??s uns pocs quadrats d'al??ada en el camp, envoltat per murs pels tres costats. Espereu fins que les boles rebotin a l'extrem obert del passad??s i tanqueu-lo darrere de la pilota amb un mur nou. Encara que el m??s probable ??s que perdeu una vida per cada passad??s que creeu, podeu atrapar diverses boles en un sol passad??s. </para> + +<screenshot> +<screeninfo +>Capturant les boles en un passad??s</screeninfo> +<mediaobject> +<imageobject> +<imagedata fileref="kbounce_corridor2.png" format="PNG"/> +</imageobject> +<textobject> +<phrase +>Capturant les boles en un passad??s</phrase> +</textobject> +</mediaobject> +</screenshot> +</listitem> + +<listitem> +<para +>Un ??ltim consell: Preneu-vos el vostre temps! N'hi ha molt, com es mostra a <guilabel +>Temps</guilabel +> a la part inferior de la pantalla. C??rrer nom??s us dur?? problemes! </para> +</listitem> +</itemizedlist> +</sect1> +</chapter> + +<chapter id="interface-overview"> +<title +>Resum de la interf??cie</title> + +<sect1 id="the-tool-bar"> +<title +>La barra d'eines</title> + +<para +>La barra d'eines proporciona botons per a les funcions m??s utilitzades. </para> + +<table> +<title +>Botons de la barra d'eines</title> +<tgroup cols="4"> + +<thead> +<row> +<entry +>Bot?? </entry> +<entry +>Nom </entry> +<entry +>Equivalent en el men?? </entry> +<entry +>Acci??</entry> +</row> +</thead> + +<tbody> +<row> +<entry> +<inlinemediaobject> +<imageobject> +<imagedata format="PNG" fileref="document-new.png"/> +</imageobject> +<textobject +><phrase +>El bot?? ??Partida nova??</phrase +></textobject> +</inlinemediaobject> +</entry> + +<entry> +<guiicon +>Nova</guiicon> +</entry> + +<entry> +<link linkend="game-new"> +<menuchoice +><guimenu +>Joc</guimenu +> <guimenuitem +>Nova</guimenuitem +> </menuchoice> +</link> +</entry> + +<entry +>Inicia una partida nova. Si s'est?? jugant una partida, s'esborrar?? el camp i s'establir?? el nivell a 1. </entry> +</row> + +<row> +<entry> +<inlinemediaobject> +<imageobject> +<imagedata format="PNG" fileref="media-playback-pause.png"/> +</imageobject> +<textobject> +<phrase +>El bot?? ??Pausa??</phrase +></textobject> +</inlinemediaobject> +</entry> + +<entry> +<guiicon +>Pausa</guiicon> +</entry> + +<entry> +<link linkend="game-pause"> +<menuchoice +><guimenu +>Joc</guimenu +> <guimenuitem +>Pausa</guimenuitem +></menuchoice> +</link> +</entry> + +<entry +>Posa en pausa o resumeix la partida. </entry> +</row> +</tbody> +</tgroup> +</table> +</sect1> + +<sect1 id="the-menu-items"> +<title +>Els elements del men??</title> + +<sect2> +<title +>El men?? Joc</title> + +<variablelist> +<varlistentry id="game-new"> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>N</keycap +></keycombo +></shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Nova</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Comen??a una partida nova.</action +></para> +</listitem> +</varlistentry> + +<varlistentry id="game-end"> +<term +><menuchoice +><shortcut +> <keycombo action="simul" +>&Ctrl;&End;</keycombo +> </shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Finalitza la partida</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Finalitza la partida actual.</action +></para> +</listitem> +</varlistentry> + +<varlistentry id="game-pause"> +<term +><menuchoice +><shortcut +> <keycap +>P</keycap +> </shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Pausa</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Posa en pausa o resumeix la partida.</action +></para> +</listitem> +</varlistentry> + +<varlistentry id="game-highscores"> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>H</keycap +></keycombo +></shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Mostra les puntuacions</guimenuitem +> </menuchoice +></term> +<listitem> +<para +>Obre un di??leg que mostra les diferents taules de puntuaci??. </para> +</listitem> +</varlistentry> + +<varlistentry id="game-quit"> +<term +><menuchoice +><shortcut +><keycombo action="simul" +>&Ctrl;<keycap +>Q</keycap +></keycombo +> </shortcut +> <guimenu +>Joc</guimenu +> <guimenuitem +>Surt</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Surt</action +> i tanca el &kbounce;. Si s'est?? jugant una partida, es perdr?? l'estat.</para> +</listitem> +</varlistentry> +</variablelist> +</sect2> + +<sect2 id="settings-menu"> +<title +>El men?? Arranjament</title> + +<variablelist> + +<varlistentry id="settings-sounds"> +<term +><menuchoice +><guimenu +>Arranjament</guimenu +> <guimenuitem +>Reprodueix els sons</guimenuitem +> </menuchoice +></term> +<listitem> +<para +><action +>Si est?? marcada, el &kbounce; reproduir?? els sons del joc.</action +></para> +</listitem> +</varlistentry> + +<varlistentry id="settings-difficulty"> +<term +><menuchoice +><guimenu +>Arranjament</guimenu +> <guisubmenu +>Dificultat</guisubmenu +> </menuchoice +></term> +<listitem> +<para +><action +>Selecciona una dificultat de la partida. En els nivells de dificultat m??s alts, els murs es construeixen m??s lentament, mentre que les boles es mouen m??s r??pid. Aix?? fa que sigui m??s dif??cil rodejar una ??rea en el tauler.</action +></para> +</listitem> +</varlistentry> + +</variablelist> + +<para +>De manera addicional, el &kbounce; t?? la configuraci?? comuna al &kde; i els elements dels men??s <guimenu +>Arranjament</guimenu +> i <guimenu +>Ajuda</guimenu +>. Per a obtenir m??s informaci??, llegiu les seccions sobre <ulink url="help:/fundamentals/menus.html#menus-settings" +>El men?? Arranjament</ulink +> i <ulink url="help:/fundamentals/menus.html#menus-help" +>El men?? Ajuda</ulink +> en els Fonaments del &kde;. </para> + +</sect2> + +</sect1> +</chapter> + +<chapter id="faq" +><title +>Preguntes m??s freq??ents</title +> <!-- do not change this! --> +<!--This chapter is for frequently asked questions. Please use <qandaset +> <qandaentry +> only!--> +<qandaset> +<!--Following is a standard list of FAQ questions.--> +<qandaentry> + <question +><para +>Vull canviar l'aparen??a d'aquest joc. Puc fer-ho? </para +></question> + <answer +><para +>S??. Per a canviar el tema visual del &kbounce;, podeu utilitzar l'opci?? <menuchoice +><guimenu +>Arranjament</guimenu +><guimenuitem +>Configura el &kbounce;...</guimenuitem +></menuchoice +> a la barra de men??s.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>He com??s un error. Puc desfer-lo? </para +></question> + <answer +><para +>El &kbounce; no t?? una caracter??stica <quote +>Desf??s</quote +>.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>Puc utilitzar el teclat per a jugar a aquest joc?</para +></question> + <answer +><para +>No. El &kbounce; no es pot jugar amb el teclat.</para +></answer> +</qandaentry> +<qandaentry> + <question +><para +>He de sortir del joc ara, per?? encara no he acabat. Puc desar el meu progr??s?</para +></question> + <answer +><para +>En aquest moment, el &kbounce; no t?? una caracter??stica <quote +>Desa</quote +>.</para +></answer> +</qandaentry> +</qandaset> +</chapter> + +<chapter id="configuration" +><title +>Configuraci?? del joc</title +> <!-- do not change this! --> +<para +>El di??leg de configuraci?? del &kbounce; permet seleccionar els temes visuals.</para> +<para +>Per a seleccionar un tema nou, senzillament escolliu-lo des de la llista de selecci??. Cada element de la llista mostra una petita vista pr??via a l'esquerra del nom del tema. Una selecci?? s'aplicar?? immediatament. </para> +<para +>Podeu seleccionar imatges de fons a l'atzar des d'una carpeta amb imatges definida per l'usuari. </para> +<para +>Una vegada esteu satisfet amb el tema que heu seleccionat podeu fer clic en el bot?? <guibutton +>D'acord</guibutton +>, ubicat a la part inferior d'aquest di??leg. </para> +</chapter> + +<chapter id="credits-and-license"> +<title +>Cr??dits i llic??ncia</title> + + +<para +>&kbounce;</para> + +<itemizedlist> +<listitem> +<para +>Stefan Schimanski <email +>[email protected]</email +> - Autor original</para> +</listitem> +<listitem> +<para +>Sandro Sigala <email +>[email protected]</email +> - Puntuacions m??s altes</para> +</listitem> +<listitem> +<para +>Benjamin Meyer <email +>[email protected]</email +> - Contribucions</para> +</listitem> +<listitem> +<para +>Dmitry Suzdalev <email +>[email protected]</email +></para> +</listitem> +<listitem> +<para +>Tomasz Boczkowski <email +>[email protected]</email +> - Adaptaci?? al KDE 4 i els KGameCavas</para> +</listitem> +</itemizedlist> + +<para +>Copyright de la documentaci?? 2002, &Aaron.J.Seigo; &Aaron.J.Seigo.mail;</para> +<para +>Copyright de la documentaci?? 2007, Tomasz Boczkowski <email +>[email protected]</email +></para> + +<para +>Aquest manual est?? dedicat a la mem??ria d'en Dennis E. Powell.</para> + +<para +>Traductor de la documentaci??: &credits.Antoni.Bella;</para +> &underFDL; &underGPL; </chapter> + +&documentation.index; +</book> +<!-- +Local Variables: +mode: sgml +sgml-minimize-attributes: nil +sgml-general-insert-case: lower +End: +--> + Binary files old/kbounce-21.04.3/po/ca/docs/kbounce/kbounce_corridor1.png and new/kbounce-21.08.0/po/ca/docs/kbounce/kbounce_corridor1.png differ Binary files old/kbounce-21.04.3/po/ca/docs/kbounce/kbounce_corridor2.png and new/kbounce-21.08.0/po/ca/docs/kbounce/kbounce_corridor2.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/de/docs/kbounce/index.docbook new/kbounce-21.08.0/po/de/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/de/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/de/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -71,13 +71,13 @@ <date ->2016-05-09</date> +>2021-06-25</date> <releaseinfo ->0.11 (Anwendungen 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->Dieses Handbuch beschreibt das Spiel &kbounce; in der Version 0.11</para> +>Dieses Handbuch beschreibt das Spiel &kbounce; in der Version 21.04</para> </abstract> @@ -99,7 +99,7 @@ <keyword >B??lle</keyword> <keyword ->jezzball</keyword> +>JezzBall</keyword> <keyword >KBounce</keyword> </keywordset> @@ -144,7 +144,7 @@ >Die Gr????e des aktiven Bereiches wird durch das Ziehen neuer W??nde >verringert, sofern die so abgegrenzten Bereiche keine B??lle enthalten. Eine >Ebene ist beendet, wenn es dem Spieler gelingt, die aktive Fl??che in der zur >Verf??gung stehenden Zeit um mindestens 75 % zu verringern. </para> <para ->Neue W??nde werden erzeugt, indem Sie mit der &LMBn; in den aktiven Bereich des Feldes klickt. Von dieser Stelle beginnen zwei W??nde sich in entgegengesetzte Richtungen auszudehnen. Lediglich zwei W??nde k??nnen sich zur gleichen Zeit ausdehnen. </para> +>Neue W??nde werden erzeugt, indem Sie mit der &LMBn; in den aktiven Bereich des Feldes klickt. Von dieser Stelle beginnt eine Wand sich in entgegengesetzte Richtungen auszudehnen. Lediglich eine Wand kann sich zur gleichen Zeit ausdehnen. </para> <para >Wenn sich die Maus ??ber dem Feld befindet, wechselt der Mauszeiger zu zwei >entgegengesetzten Pfeilen, entweder horizontal oder vertikal. Die Pfeile >zeigen die Richtungen an, in die sich die W??nde ausdehnen, wenn Sie mit der >&LMBn; klicken. Diese Richtung k??nnen Sie durch Klicken mit der &RMBn; >??ndern. </para> @@ -384,9 +384,7 @@ ><menuchoice ><shortcut > <keycombo action="simul" ->&Ctrl;<keycap ->Ende</keycap -> </keycombo +>&Ctrl;&End; </keycombo > </shortcut > <guimenu >Spiel</guimenu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/es/docs/kbounce/index.docbook new/kbounce-21.08.0/po/es/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/es/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/es/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -127,13 +127,13 @@ <date ->2016-05-09</date> +>2021-06-25</date> <releaseinfo ->0.11 (Aplicaciones 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->Esta documentaci??n describe el juego &kbounce; versi??n 0.11</para> +>Esta documentaci??n describe el juego &kbounce; versi??n 21.04</para> </abstract> @@ -155,7 +155,7 @@ <keyword >bolas</keyword> <keyword ->jezzball</keyword> +>JezzBall</keyword> <keyword >KBounce</keyword> </keywordset> @@ -200,7 +200,7 @@ >El tama??o del ??rea del campo se disminuye haciendo nuevas paredes que >encierran ??reas sin bolas en ellas. Para completar un nivel, el jugador debe >disminuir el tama??o del campo activo al menos un 75% en el tiempo >permitido. </para> <para ->Se pueden construir nuevas paredes pulsando con el &LMB; del rat??n en una zona activa del campo, punto en el que comenzar??n a crecer dos paredes en direcciones opuestas y partiendo del cuadrado pulsando con el rat??n. ??nicamente pueden crecer dos paredes simult??neamente en la pantalla en un momento dado. </para> +>Se pueden construir nuevas paredes pulsando con el &LMB; del rat??n en una zona activa del campo, punto en el que comenzar?? a crecer una pared en direcci??n opuesta y partiendo del cuadrado pulsando con el rat??n. ??nicamente pueden crecer dos paredes simult??neamente en la pantalla en un momento dado. </para> <para >Cuando el rat??n est?? en el campo, el cursor se muestra como un par de >flechas apuntando en direcciones opuestas, ya sea en direcci??n vertical u >horizontal. Las flechas apuntan en la direcci??n en la que crecer??n las >paredes cuando se pulse el &LMB; del rat??n. La direcci??n se puede cambiar >pulsando el &RMB;. </para> @@ -430,14 +430,12 @@ ><menuchoice ><shortcut > <keycombo action="simul" ->&Ctrl;<keycap ->Fin</keycap -> </keycombo +>&Ctrl;&End;</keycombo > </shortcut > <guimenu >Juego</guimenu > <guimenuitem ->Finalizar partida</guimenuitem +>Terminar partida</guimenuitem > </menuchoice ></term> <listitem> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/eu/kbounce.po new/kbounce-21.08.0/po/eu/kbounce.po --- old/kbounce-21.04.3/po/eu/kbounce.po 2021-07-06 07:21:12.000000000 +0200 +++ new/kbounce-21.08.0/po/eu/kbounce.po 2021-08-06 02:17:03.000000000 +0200 @@ -1,22 +1,27 @@ -# translation of kbounce.po to Basque +# Translation for kbounce.po to Euskara/Basque (eu). # Copyright (C) 2003, 2005, 2006, 2009 Free Software Foundation, Inc. +# Copyright (C) 2010-2021, This file is copyright: +# This file is distributed under the same license as the kbounce package. +# KDE euskaratzeko proiektuko arduraduna <[email protected]>. # +# Translators: # Marcos <[email protected]>, 2003. # Ion Gazta??aga <[email protected]>, 2005, 2006. # I??aki Larra??aga Murgoitio <[email protected]>, 2009. +# I??igo Salvador Azurmendi <[email protected]>, 2021. msgid "" msgstr "" "Project-Id-Version: kbounce\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-24 02:21+0100\n" -"PO-Revision-Date: 2009-06-16 12:02+0200\n" -"Last-Translator: I??aki Larra??aga Murgoitio <[email protected]>\n" -"Language-Team: Basque <[email protected]>\n" +"PO-Revision-Date: 2021-07-17 15:26+0200\n" +"Last-Translator: I??igo Salvador Azurmendi <[email protected]>\n" +"Language-Team: Basque <[email protected]>\n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 21.04.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #, kde-format @@ -32,31 +37,31 @@ #: backgroundselector.cpp:98 #, kde-format msgid "No background pictures found." -msgstr "" +msgstr "Ez da atzeko planoko irudirik aurkitu." #. i18n: ectx: property (windowTitle), widget (QWidget, KBounceBackgroundSelector) #: backgroundselector.ui:14 #, kde-format msgid "kbouncebackgroundselector" -msgstr "" +msgstr "KBouncen atzeko-plano hautatzailea" #. i18n: ectx: property (text), widget (QCheckBox, kcfg_UseRandomBackgroundPictures) #: backgroundselector.ui:24 #, kde-format msgid "Enable random pictures as background" -msgstr "" +msgstr "Gaitu ausazko irudiak atzeko-plano gisa" #. i18n: ectx: property (text), widget (QLabel, backgoundPicturePathLabel) #: backgroundselector.ui:54 #, kde-format msgid "Choose picture path:" -msgstr "" +msgstr "Hautatu irudien bide-izena:" #. i18n: ectx: property (text), widget (QLabel, label) #: backgroundselector.ui:75 #, kde-format msgid "Preview" -msgstr "" +msgstr "Aurreikuspegia" #: gamewidget.cpp:396 #, kde-format @@ -73,6 +78,8 @@ "Paused\n" " Click to resume" msgstr "" +"Etenda\n" +" Egin klik berrekiteko" #: gamewidget.cpp:402 #, kde-format @@ -100,15 +107,12 @@ msgstr "Joan %1. mailara. Gogoratu %2 bizitza eskuratzen dituzula oraingoan!" #: gamewidget.cpp:409 -#, fuzzy, kde-format -#| msgid "" -#| "Welcome to KBounce.\n" -#| " Click to start a game" +#, kde-format msgid "" "Game over.\n" " Click to start a game" msgstr "" -"Ongietorri KBounce-ra.\n" +"Jokoa amaitu da.\n" "Egin klik jokoa hasteko" #. i18n: ectx: label, entry (PlaySounds), group (Sound) @@ -129,10 +133,9 @@ msgstr "KBounce" #: main.cpp:33 -#, fuzzy, kde-format -#| msgid "KDE Bounce Ball Game" +#, kde-format msgid "Bounce Ball Game" -msgstr "KDE-ren pilota errebotatzaileen jokoa" +msgstr "Pilota errebotatzeko jokoa" #: main.cpp:35 #, kde-format @@ -140,6 +143,8 @@ "(c) 2000-2005, Stefan Schimanski\n" "(c) 2007, Tomasz Boczkowski" msgstr "" +"(c) 2000-2005, Stefan Schimanski\n" +"(c) 2007, Tomasz Boczkowski" #: main.cpp:39 #, kde-format @@ -194,12 +199,12 @@ #: main.cpp:59 #, kde-format msgid "Andreas Scherf" -msgstr "" +msgstr "Andreas Scherf" #: main.cpp:60 #, kde-format msgid "Image Background and Fixes" -msgstr "" +msgstr "Atzeko planoko irudia eta zuzenketak" #: mainwindow.cpp:30 mainwindow.cpp:200 #, kde-format @@ -237,14 +242,9 @@ msgstr "Ziur zaude martxan dagoen jokoa itxi nahi duzula?" #: mainwindow.cpp:139 mainwindow.cpp:242 -#, fuzzy, kde-format -#| msgid "" -#| "Welcome to KBounce.\n" -#| " Click to start a game" +#, kde-format msgid "Game over. Click to start a game" -msgstr "" -"Ongietorri KBounce-ra.\n" -"Egin klik jokoa hasteko" +msgstr "Jokoa amaitu da. Egin klik joko bat abiatzeko" #: mainwindow.cpp:174 #, kde-format @@ -254,7 +254,7 @@ #: mainwindow.cpp:175 #, kde-format msgid "Background" -msgstr "" +msgstr "Atzeko planoa" #~ msgid "Paused" #~ msgstr "Pausarazita" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/it/docs/kbounce/index.docbook new/kbounce-21.08.0/po/it/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/it/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/it/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -83,13 +83,13 @@ <date ->2016-05-09</date> +>2021-06-25</date> <releaseinfo ->0.11 (Applications 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->Questa documentazione descrive il gioco &kbounce;, versione 0.11</para> +>Questa documentazione descrive il gioco &kbounce;, versione 21.04</para> </abstract> @@ -111,7 +111,7 @@ <keyword >palle</keyword> <keyword ->jezzball</keyword> +>JezzBall</keyword> <keyword >KBounce</keyword> </keywordset> @@ -156,7 +156,7 @@ >La dimensione della zona attiva del campo viene ridotta costruendo nuovi muri >che isolano le zone che non contengono palle. Per completare un livello il >giocatore deve ridurre l'area della zona attiva di almeno il 75% prima >che scada il tempo. </para> <para ->I nuovi muri vengono costruiti con un clic del &LMB; nella zona attiva. A questo punto due muri incominciano a crescere in direzioni opposte, a partire dal punto dove hai fatto clic col mouse. In ogni istante ci possono essere solo due muri in costruzione. </para> +>I nuovi muri vengono costruiti con un clic del &LMB; nella zona attiva. A questo punto un muro incomincia a crescere in direzioni opposte, a partire dal punto dove hai fatto clic col mouse. In ogni istante ci pu?? essere solo un muro in costruzione per ciascuna direzione. </para> <para >Quando il mouse ?? sul campo di gioco, il cursore appare come una coppia di >frecce che puntano in direzioni opposte, in orizzontale o in verticale. Le >frecce puntano nelle direzioni in cui si svilupperebbero i muri se si >premesse il &LMB;. L'orientamento pu?? essere cambiato premendo il &RMB;. ></para> @@ -394,9 +394,7 @@ ><menuchoice ><shortcut > <keycombo action="simul" ->&Ctrl;<keycap ->Fine</keycap -></keycombo +>&Ctrl;&End;</keycombo > </shortcut > <guimenu >Partita</guimenu @@ -670,6 +668,10 @@ >Andrea Celli <email >[email protected]</email >: Traduzione della documentazione e dell'interfaccia grafica</para +><para +>Valter Mura<email +>[email protected]</email +>: Traduzione della documentazione</para > &underFDL; &underGPL; </chapter> &documentation.index; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/nl/docs/kbounce/index.docbook new/kbounce-21.08.0/po/nl/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/nl/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/nl/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -57,13 +57,13 @@ <date ->2016-05-09</date> +>2021-06-25</date> <releaseinfo ->0.11 (Applications 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->Deze documentatie beschrijft het spel &kbounce; versie 0.11</para> +>Deze documentatie beschrijft het spel &kbounce; versie 21.04</para> </abstract> @@ -85,7 +85,7 @@ <keyword >ballen</keyword> <keyword ->jezzball</keyword> +>JezzBall</keyword> <keyword >KBounce</keyword> </keywordset> @@ -130,7 +130,7 @@ >De grootte van het actieve deel van het veld wordt verkleind door nieuwe >muren te maken die de gebieden zonder ballen omsluiten. Om een niveau te >voltooien dient de speler de grootte van het actieve veld tenminste >75% te verkleinen binnen de toegestane tijd. </para> <para ->Nieuwe wanden worden gemaakt door met de &LMB; te klikken in een actief deel van het veld. Vanaf dat punt beginnen twee muren te groeien in tegengestelde richting vanuit het vierkant waarop met de muis is geklikt. Er kan maximaal ????n muur in twee richtingen op het scherm groeien. </para> +>Nieuwe wanden worden gemaakt door met de &LMB; te klikken in een actief deel van het veld. Vanaf dat punt begint ????n muur te groeien in tegengestelde richting vanuit het vierkant waarop met de muis is geklikt. Er kan maximaal ????n muur in twee richtingen op het scherm groeien. </para> <para >Als de muisaanwijzer in het veld staat, dan wordt de cursor getoond als een >pijlenpaar die beiden in tegengestelde richting wijzen, horizontaal of >verticaal. De pijlen wijzen in de richting waarin de muren zullen groeien als >er met de &LMB; is geklikt. De richting kan worden veranderd door met de >&RMB; te klikken. </para> @@ -368,9 +368,7 @@ ><menuchoice ><shortcut > <keycombo action="simul" ->&Ctrl;<keycap ->End</keycap -></keycombo +>&Ctrl;&End;</keycombo > </shortcut > <guimenu >Spel</guimenu diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/sv/docs/kbounce/index.docbook new/kbounce-21.08.0/po/sv/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/sv/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/sv/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -71,13 +71,13 @@ <date ->2016-05-09</date> +>2021-06-25</date> <releaseinfo ->0.11 (Program 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->Denna dokumentation beskriver spelet Kstuds, version 0.11</para> +>Denna dokumentation beskriver spelet Kstuds, version 21.04</para> </abstract> @@ -146,7 +146,7 @@ <para >Nya v??ggar byggs genom att klicka med <mousebutton >v??nster</mousebutton -> musknapp i ett aktivt omr??de p?? f??ltet, vilket g??r att tv?? v??ggar b??rjar v??xa fram i b??da riktningarna fr??n rutan d??r musen klickades. Bara en v??gg i vardera riktning kan v??xa p?? sk??rmen vid en given tidpunkt. </para> +> musknapp i ett aktivt omr??de p?? f??ltet, vilket g??r att en v??gg b??rjar v??xa fram i b??da riktningarna fr??n rutan d??r musen klickades. Bara en v??gg i vardera riktning kan v??xa p?? sk??rmen vid en given tidpunkt. </para> <para >N??r musen finns p?? f??ltet, visas mark??ren som ett par pilar som pekar ??t >varsitt h??ll, antingen horisontellt eller vertikalt. Pilarna pekar i >riktningen som v??ggarna kommer att v??xa fram n??r <mousebutton diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/ta/kbounce.po new/kbounce-21.08.0/po/ta/kbounce.po --- old/kbounce-21.04.3/po/ta/kbounce.po 2021-07-06 07:21:12.000000000 +0200 +++ new/kbounce-21.08.0/po/ta/kbounce.po 2021-08-06 02:17:03.000000000 +0200 @@ -1,20 +1,20 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Free Software Foundation, Inc. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# Copyright (C) 2021 Free Software Foundation, Inc. # +# Kishore G <[email protected]>, 2021. msgid "" msgstr "" "Project-Id-Version: kbounce\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-24 02:21+0100\n" -"PO-Revision-Date: 2004-08-11 08:25--800\n" -"Last-Translator: I. Felix <[email protected]>\n" -"Language-Team: KDE <[email protected]>\n" +"PO-Revision-Date: 2021-01-18 19:17+0530\n" +"Last-Translator: Kishore G <[email protected]>\n" +"Language-Team: Tamil <[email protected]>\n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 20.12.1\n" #, kde-format msgctxt "NAME OF TRANSLATORS" @@ -112,7 +112,7 @@ #: kbounceui.rc:17 #, kde-format msgid "Main Toolbar" -msgstr "" +msgstr "?????????????????? ????????????????????????????????????" #: main.cpp:31 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/uk/docs/kbounce/index.docbook new/kbounce-21.08.0/po/uk/docs/kbounce/index.docbook --- old/kbounce-21.04.3/po/uk/docs/kbounce/index.docbook 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/uk/docs/kbounce/index.docbook 2021-08-06 02:17:03.000000000 +0200 @@ -71,13 +71,13 @@ <date ->9 ???????????? 2016 ????????</date> +>25 ???????????? 2021 ????????</date> <releaseinfo ->0.11 (???????????????? 16.04)</releaseinfo> +>KDE Gear 21.04</releaseinfo> <abstract> <para ->?? ?????? ???????????????????????? ?????????????? ?????? &kbounce; ???????????? 0.11.</para> +>?? ?????? ???????????????????????? ?????????????? ?????? &kbounce; ???????????? 21.04.</para> </abstract> @@ -99,7 +99,7 @@ <keyword >????????????</keyword> <keyword ->??????????????</keyword> +>JezzBall</keyword> <keyword >KBounce</keyword> </keywordset> @@ -382,9 +382,7 @@ ><menuchoice ><shortcut > <keycombo action="simul" ->&Ctrl;<keycap ->End</keycap -></keycombo +>&Ctrl;&End;</keycombo > </shortcut > <guimenu >??????</guimenu @@ -658,8 +656,7 @@ >???????????????? ??????????????????????: ???????? ?????????????????? <email >[email protected]</email ></para -> -&underFDL; &underGPL; </chapter> +> &underFDL; &underGPL; </chapter> &documentation.index; </book> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/po/zh_CN/kbounce.po new/kbounce-21.08.0/po/zh_CN/kbounce.po --- old/kbounce-21.04.3/po/zh_CN/kbounce.po 2021-07-06 07:21:13.000000000 +0200 +++ new/kbounce-21.08.0/po/zh_CN/kbounce.po 2021-08-06 02:17:03.000000000 +0200 @@ -11,7 +11,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-24 02:21+0100\n" -"PO-Revision-Date: 2021-06-20 07:37\n" +"PO-Revision-Date: 2021-07-26 13:50\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -136,7 +136,7 @@ #: main.cpp:33 #, kde-format msgid "Bounce Ball Game" -msgstr "" +msgstr "KDE ???????????????" #: main.cpp:35 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/src/CMakeLists.txt new/kbounce-21.08.0/src/CMakeLists.txt --- old/kbounce-21.04.3/src/CMakeLists.txt 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/src/CMakeLists.txt 2021-08-04 23:59:15.000000000 +0200 @@ -1,4 +1,11 @@ -set(kbounce_SRCS +ecm_setup_version(${RELEASE_SERVICE_VERSION} + VARIABLE_PREFIX KBOUNCE + VERSION_HEADER kbounce_version.h +) + +add_executable(kbounce) + +target_sources(kbounce PRIVATE ball.cpp board.cpp gameobject.cpp @@ -8,19 +15,15 @@ renderer.cpp wall.cpp backgroundselector.cpp - kbounce.qrc -) -ecm_setup_version(${RELEASE_SERVICE_VERSION} - VARIABLE_PREFIX KBOUNCE - VERSION_HEADER kbounce_version.h + kbounce.qrc ) -kconfig_add_kcfg_files(kbounce_SRCS settings.kcfgc) +kconfig_add_kcfg_files(kbounce settings.kcfgc) -ki18n_wrap_ui(kbounce_SRCS backgroundselector.ui ) +ki18n_wrap_ui(kbounce backgroundselector.ui ) -ecm_qt_declare_logging_category(kbounce_SRCS +ecm_qt_declare_logging_category(kbounce HEADER debug.h IDENTIFIER KBOUNCE_LOG CATEGORY_NAME log_kbounce @@ -29,9 +32,7 @@ ) file(GLOB ICONS_SRCS "${CMAKE_SOURCE_DIR}/pics/*-apps-kbounce.png") -ecm_add_app_icon(kbounce_SRCS ICONS ${ICONS_SRCS}) - -add_executable(kbounce ${kbounce_SRCS}) +ecm_add_app_icon(kbounce ICONS ${ICONS_SRCS}) target_link_libraries(kbounce KF5KDEGames @@ -40,7 +41,7 @@ KF5::KIOWidgets KF5::DBusAddons KF5::Crash - Qt5::Svg + Qt::Svg ) install(TARGETS kbounce ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/src/org.kde.kbounce.appdata.xml new/kbounce-21.08.0/src/org.kde.kbounce.appdata.xml --- old/kbounce-21.04.3/src/org.kde.kbounce.appdata.xml 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/src/org.kde.kbounce.appdata.xml 2021-08-04 23:59:15.000000000 +0200 @@ -13,6 +13,7 @@ <name xml:lang="en-GB">KBounce</name> <name xml:lang="es">KBounce</name> <name xml:lang="et">KBounce</name> + <name xml:lang="eu">KBounce</name> <name xml:lang="fr">KBounce</name> <name xml:lang="gl">KBounce</name> <name xml:lang="id">KBounce</name> @@ -39,6 +40,7 @@ <summary xml:lang="en-GB">KBounce is a single player arcade game with the elements of puzzle</summary> <summary xml:lang="es">KBounce es un juego recreativo para un ??nico jugador semejante a un rompecabezas</summary> <summary xml:lang="et">KBounce on ??he m??ngijaga arkaadm??ng mitmete m??istatuse elementidega</summary> + <summary xml:lang="eu">KBounce, buruhausteko elementuak dituen jokalari-bakarreko arkupeko joko bat da.</summary> <summary xml:lang="fr">KBounce est un jeu d'arcade ?? un joueur qui int??gre des ??l??ments de puzzle</summary> <summary xml:lang="gl">KBounce ?? un xogo de arcada para un ??nico xogador cos elementos dun quebracabezas</summary> <summary xml:lang="id">KBounce adalah sebuah permainan arcade pemain tunggal dengan unsur teka-teki.</summary> @@ -67,6 +69,7 @@ <p xml:lang="en-GB">KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by wall, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of active field. The goal of the game is to fill at least 75% of the field and advance to the next level.</p> <p xml:lang="es">KBounce es un juego recreativo para un ??nico jugador semejante a un rompecabezas. Se juega en un campo, rodeado por un muro, con dos o m??s bolas que se mueven por el campo y rebotan en los muros. El jugador puede crear nuevos muros disminuyendo el tama??o del campo activo. El objetivo del juego es rellenar al menos el 75% del campo para poder avanzar al siguiente nivel.</p> <p xml:lang="et">KBounce on ??he m??ngijaga arkaadm??ng m??istatuse elementidega. Seda m??ngitakse seinaga ??mbritsetud v??ljal, kus kaks v??i enam palli liiguvad ringi seinalt tagasi p??rgates. M??ngija saab rajada uusi seinu, v??hendades nii kasutatava v??lja suurust. M??ngu sihiks on h??ivata v??hemalt 75% v??ljast ja minna edasi j??rgmisele tasemel.</p> + <p xml:lang="eu">KBounce, buruhausteko elementuak dituen jokalari-bakarreko arkupeko joko bat da. Sail batean jolasten da, hormaz inguratuta, bi pilota edo gehiago mugitzen dira hormetan punpaka. Jokalariak horma berriak eraiki ditzake, sail erabilgarriaren neurria txikiagotuz. Jokoaren helburua, gutxienez, saileko % 75 bete da eta hurrengo mailara iragatea da.</p> <p xml:lang="fr">KBounce est un jeu d'arcade ?? un seul joueur qui int??gre des ??l??ments de puzzle. Il se joue sur un champ entour?? d'un mur, au sein duquel plusieurs boules rebondissent sur les murs. Le joueur peut construire de nouveaux murs, diminuant ainsi la taille du champ. L'objectif du jeu est de combler ainsi au moins 75% du champ afin de passer au niveau suivant.</p> <p xml:lang="gl">KBounce ?? un xogo arcade para un xogador cos elementos dun quebracabezas. X??gase nun campo rodeado por unha parede e con d??as ou m??is b??las que se moven polo campo botando contra as paredes. O xogador pode constru??r novas paredes, reducindo o tama??o do campo activo. O obxectivo do xogo ?? encher polo menos o 75% do campo e avanzar ao seguinte nivel.</p> <p xml:lang="id">KBounce adalah sebuah permainan arkade pemain tunggal dengan unsur teka-teki. Ini dimainkan pada sebuah bidang, dikepung oleh dinding, dengan bola dua atau lebih yang bergerak mantul-mantul pada bidang dinding. Pemain bisa membangun dinding yang baru, mengurangi ukuran bidang yang aktif. Tujuan permainan adalah mengisi setidaknya 75% pada bidang dan maju ke level selanjutnya.</p> @@ -99,6 +102,7 @@ <caption xml:lang="en-GB">Playing KBounce</caption> <caption xml:lang="es">Jugando a KBounce</caption> <caption xml:lang="et">KBounce'i m??ngimine</caption> + <caption xml:lang="eu">KBouncekin jokatzen</caption> <caption xml:lang="fr">Partie de KBounce en cours</caption> <caption xml:lang="gl">Xogando a KBounce</caption> <caption xml:lang="id">Memainkan KBounce</caption> @@ -122,9 +126,9 @@ <project_group>KDE</project_group> <content_rating type="oars-1.1"/> <releases> + <release version="21.08.0" date="2021-08-12"/> <release version="21.04.3" date="2021-07-08"/> <release version="21.04.2" date="2021-06-10"/> <release version="21.04.1" date="2021-05-13"/> - <release version="21.04.0" date="2021-04-22"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/src/org.kde.kbounce.desktop new/kbounce-21.08.0/src/org.kde.kbounce.desktop --- old/kbounce-21.04.3/src/org.kde.kbounce.desktop 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/src/org.kde.kbounce.desktop 2021-08-04 23:59:15.000000000 +0200 @@ -87,7 +87,7 @@ GenericName[eo]=Ludo de saltadantaj pilkoj GenericName[es]=Juego de pelotas que rebotan GenericName[et]=Pallip??rgatamise m??ng -GenericName[eu]=Pilotak boteak ematen jokoa +GenericName[eu]=Punpaka dabiltzan piloten jokoa GenericName[fa]=???????? ?????? ????????????? GenericName[fi]=Pallopeli GenericName[fr]=Jeu de balles rebondissantes @@ -138,6 +138,7 @@ Comment[en_GB]=Ball Bouncing Game Comment[es]=Juego de pelotas que rebotan Comment[et]=Pallip??rgatamise m??ng +Comment[eu]=Punpaka dabiltzan piloten jokoa Comment[fi]=Pallonpomputuspeli Comment[fr]=Jeu de balles rebondissantes Comment[gl]=Xogo de b??las que botan diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/themes/default.desktop new/kbounce-21.08.0/themes/default.desktop --- old/kbounce-21.04.3/themes/default.desktop 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/themes/default.desktop 2021-08-04 23:59:15.000000000 +0200 @@ -11,6 +11,7 @@ Name[en_GB]=Egyptian Bounce Name[es]=Rebote egipcio Name[et]=Egiptuse s??ra +Name[eu]=Egiptoko punpa Name[fi]=Egyptil??inen pallopeli Name[fr]=KBounce dans un style ??gyptien Name[ga]=Egyptian Bounce @@ -55,6 +56,7 @@ Description[en_GB]=KBounce, Egyptian style. Description[es]=KBounce, estilo egipcio. Description[et]=KBounce Egiptuse stiilis. +Description[eu]=KBounce, Egiptoko estiloan. Description[fi]=Egyptil??istyylinen KBounce. Description[fr]=KBounce, th??me ??gyptien. Description[ga]=KBounce, ar n??s na n??igipteach. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/themes/geometry.desktop new/kbounce-21.08.0/themes/geometry.desktop --- old/kbounce-21.04.3/themes/geometry.desktop 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/themes/geometry.desktop 2021-08-04 23:59:15.000000000 +0200 @@ -11,7 +11,7 @@ Name[en_GB]=Strange Geometry Name[es]=Extra??a geometr??a Name[et]=Kummastav geomeetria -Name[eu]=Geometria bitixa +Name[eu]=Geometria bitxia Name[fi]=Outo geometria Name[fr]=G??om??trie ??trange Name[ga]=C??imseata Aisteach @@ -62,7 +62,7 @@ Description[en_GB]=A simple high-contrast theme for those who like it clean. Description[es]=Un tema sencillo de alto contraste que da un aspecto limpio. Description[et]=Lihtne suure kontrastiga teema neile, kellele meeldib lihtsus. -Description[eu]=Kontraste altuko gai bakun bat gauza gabriak nahi dituztenentzako. +Description[eu]=Kontraste handiko gai soil bat garbia atsegin dutenentzat. Description[fi]=Yksinkertainen suuren kontrastin teema niille, jotka pit??v??t tahrattomuudesta. Description[fr]=Un th??me tr??s contrast?? et simple pour les personnes aimant les choses nettes Description[ga]=T??ama simpl?? ardchodarsnachta do dhaoine ar mhaith leo t??ama?? glana. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kbounce-21.04.3/themes/the_beach.desktop new/kbounce-21.08.0/themes/the_beach.desktop --- old/kbounce-21.04.3/themes/the_beach.desktop 2021-07-05 21:12:13.000000000 +0200 +++ new/kbounce-21.08.0/themes/the_beach.desktop 2021-08-04 23:59:15.000000000 +0200 @@ -11,6 +11,7 @@ Name[en_GB]=The Beach Name[es]=La playa Name[et]=Rand +Name[eu]=Hondartza Name[fi]=Ranta Name[fr]=La plage Name[ga]=An Tr??
