diff --git a/documentation/manual/source/index.rst b/documentation/manual/source/index.rst index 6e8753f9f..6b3142384 100644 --- a/documentation/manual/source/index.rst +++ b/documentation/manual/source/index.rst @@ -18,4 +18,5 @@ Contents: bibles themes mediamanager - songs \ No newline at end of file + songs + troubleshooting diff --git a/documentation/manual/source/pics/mediamanager.png b/documentation/manual/source/pics/mediamanager.png index 245f2469b..183e0defb 100644 Binary files a/documentation/manual/source/pics/mediamanager.png and b/documentation/manual/source/pics/mediamanager.png differ diff --git a/documentation/manual/source/pics/phononcheckbox.png b/documentation/manual/source/pics/phononcheckbox.png new file mode 100644 index 000000000..2830bd8be Binary files /dev/null and b/documentation/manual/source/pics/phononcheckbox.png differ diff --git a/documentation/manual/source/pics/plugins.png b/documentation/manual/source/pics/plugins.png index b6810242b..647c1de7d 100644 Binary files a/documentation/manual/source/pics/plugins.png and b/documentation/manual/source/pics/plugins.png differ diff --git a/documentation/manual/source/troubleshooting.rst b/documentation/manual/source/troubleshooting.rst new file mode 100644 index 000000000..8f1db133d --- /dev/null +++ b/documentation/manual/source/troubleshooting.rst @@ -0,0 +1,132 @@ +=============== +Troubleshooting +=============== + +I can not play videos or other media +==================================== + +If you can not play video or audio through openlp, there are several areas that +could be an issue. First thing is to make sure you can play the media file +through your default media player. OpenLP should be able to play any file that +you can play through your default media player. + +If you can play a file through your media player but not on OpenLP it may help +to enable Phonon for multimedia playback. Go to the OpenLP configuration +:menuselection:`Settings --> Configure OpenLP...` and select the Media tab. +Make sure the check box for `Use Phonon for video playback` is checked. + +.. image:: pics/phononcheckbox.png + +Codecs +------ + +You may need to install codecs for certain files to play. Most newer versions +of Windows and OS X will support most media types. Most Linux distributions +will require a little more help to get certain media types to play. + +Microsoft Windows +^^^^^^^^^^^^^^^^^ + +Later versions of Microsoft Windows (Vista, Windows 7) generally come with +everything you need to play most media formats. If for some reason you need +additional codecs we have seen success from the Combined Community Codec Pack +(CCCP): ``_. You might also wish to check out the +K-Lite Codec Pack. If you are having issues, results do seem to vary with the +different options. What works for some may not for others, so some trial and +error may be required. + +Mac +^^^ + +If you are using a Mac. You may wish to play Windows formats. flip4mac enables +you to use popular Windows formats such as .wmv on your Mac. You can get it +here ``_. + +Ubuntu Linux (and variants) +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +If you are using Ubuntu Linux, or one of its variants (Kubuntu, Edubuntu, etc...) +it is a fairly quick and easy process to get all the codecs you need to make +things work. You will need to install two meta-packages that contain all the +multimedia codecs that you will generally need. From the Software Center install +ubuntu-restricted-extras and Kubuntu-restricted-extras, or from the terminal:: + + user@linux:~ $ sudo apt-get install ubuntu-restricted-extras kubuntu-restricted-extras + +**Note** if you are running Kubuntu there is no need to install the +ubuntu-restricted-extras meta-package + +For more information on Ubuntu and multimedia issues please check out +``_. + +Arch Linux +^^^^^^^^^^ + +The following command provides the most complete solution for codecs on Arch +Linux:: + + root@linux:~ # pacman -S gstreamer0.10-{base,good,bad,ugly}-plugins gstreamer0.10-ffmpeg + +If you need more help with Arch Linux and multimedia please see the Arch Linux +documentation at ``_. + +Debian Linux +^^^^^^^^^^^^ + +You will need to add the Debian Multimedia Repository. So add the folowing to +/etc/apt/sources.list:: + + deb http://www.debian-multimedia.org testing main non-free + +Then update the repository info:: + + root@linux:~ # apt-get update + +Then install the following packages:: + + root@linux:~ # apt-get install gstreamer0.10-ffmpeg gstreamer0.10-lame gstreamer0.10-plugins-really-bad gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly gstreamer0.10-plugins-good gstreamer0.10-x264 + +Fedora Linux +^^^^^^^^^^^^ +You will need to set up Fedora to play most media formats. This is relatively +simple using the rpmfusion repository. + +**Note** the following commands will enable a third party repository to your +system. Please check out ``_. for more information. + +To enable both the free and nonfree components for any Fedora official release +enter the following commands:: + + su -c 'yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm' + +After enabling the rpmfusion repository you will want to refresh your package +list, perform any updates and search for gstreamer-good, bad, and ugly and +install. + +Here is a good tutorial video on the rpmfusion repository +``_. + +The Media Manager appears to be missing some features +===================================================== + +If you do not see all the features listed in the Media Manager, you may need +to enable them. + +To enable the plugins navigate to :menuselection:`Settings --> Plugins` or +press `F7`. You will want to click on the plugin to the left that you want to +enable and select **active** from the drop down box to the right. + +.. image:: pics/plugins.png + +By default all plugins should be enabled during the first run wizard except the +remotes plugin, unless you specify differently. + +I can not see the book, chapter, and verse when I display scripture +=================================================================== + +The book, chapter, and verse should be displayed when you display scripture. If +you can not see this your theme probably has the text size too small for the +info to be seen. See the section of the manual on themes if you need more info +on text sizes in themes. + + diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index 33fc53827..719cb02c2 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -133,7 +133,7 @@ class Ui_AboutDialog(object): u'en_ZA': [u'Raoul "superfly" Snyman'], u'et': [u'Mattias "mahfiaz" P\xf5ldaru'], u'fr': [u'Stephan\xe9 "stbrunner" Brunner'], - u'hu': [u'Gyuris Gell\xe9t'], + u'hu': [u'Gyuris Gell\xe9rt'], u'ja': [u'Kunio "Kunio" Nakamaru'], u'nb': [u'Atle "pendlaren" Weibell', u'Frode "frodus" Woldsund'], u'nl': [u'Arjen "typovar" van Voorst'], diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 7280722a0..646c676f4 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -1,5 +1,6 @@ - + + AlertPlugin.AlertForm @@ -696,7 +697,7 @@ demand and thus an internet connection is required. <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Speciális bővítmény</strong><br />Az speciális bővítmény dalokhoz hasonló egyéni diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. + <strong>Speciális bővítmény</strong><br />Az speciális bővítmény dalokhoz hasonló egyéni diasor vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. @@ -717,7 +718,7 @@ demand and thus an internet connection is required. Edit Custom Slides - Speciális diák szerkesztése + Speciális diasor szerkesztése @@ -841,7 +842,7 @@ demand and thus an internet connection is required. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - <strong>Kép bővítmény</strong><br />A kép a bővítmény különféle képek vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a sorrendkezelőn csoportba foglalni a képeket, így könnyebbé téve képek tömeges vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diákat automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett. + <strong>Kép bővítmény</strong><br />A kép a bővítmény különféle képek vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a sorrendkezelőn csoportba foglalni a képeket, így könnyebbé téve képek tömeges vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diasort automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett. @@ -1078,7 +1079,7 @@ Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. OpenLP <version> <revision> – Nyílt forrású dalszöveg vetítő -Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítő szabad szoftver, mely használható énekek, bibliai versek, videók, képek és bemutatók (ha az OpenOffice.org, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. +Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítő szabad szoftver, mely énekek, bibliai versek, videók, képek és bemutatók (ha az OpenOffice.org, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére használható a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. Többet az OpenLP-ről: http://openlp.org/ @@ -1221,12 +1222,12 @@ Végső köszönet „Úgy szerette Isten a világot, hogy egyszülött Fiát adta oda, hogy egyetlen benne hívő se vesszen el, hanem - örök élete legyen." ‒ János 3,16 + örök élete legyen.” (Jn 3,16) És végül, de nem utolsósorban, a végső köszönet Istené, Atyánké, mert elküldte a Fiát, hogy meghaljon a kereszten, megszabadítva bennünket a bűntől. Ezért - ezt a programot ingyen készítettük neked, mert Ő + ezt a programot szabadnak és ingyenesnek készítettük, mert Ő tett minket szabaddá. @@ -1245,14 +1246,12 @@ Tinggaard, Frode Woldsund This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - Ez egy szabad szoftver; terjeszthető illetve módosítható a GNU Általános Közreadási Feltételek dokumentumában leírtak szerint -- 2. verzió --, melyet a Szabad Szoftver Alapítvány ad ki. - + Ez egy szabad szoftver; terjeszthető illetve módosítható a GNU Általános Közreadási Feltételek dokumentumában leírtak szerint - 2. verzió -, melyet a Szabad Szoftver Alapítvány ad ki. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. - Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az eladhatóságra vagy valamely célra való alkalmazhatóságra való származtatott garanciát is beleértve. További részletekért lásd a alább. - + Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az eladhatóságra vagy valamely célra való alkalmazhatóságra való származtatott garanciát is beleértve. További részletekért lásd a alább. @@ -1343,7 +1342,7 @@ Tinggaard, Frode Woldsund Start tag - Kezdő címke + Nyitó címke @@ -1358,12 +1357,12 @@ Tinggaard, Frode Woldsund Tag Id - Címke ID + ID Start HTML - Kezdő HTML + Nyitó HTML @@ -1394,7 +1393,7 @@ Tinggaard, Frode Woldsund Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alábbi dobozban található szöveg olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen merre és mit tettél, amikor a hiba történt. + Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alsó szövegdoboz olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el a bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen hol és mit tettél, amikor a hiba történt. @@ -1415,13 +1414,12 @@ Tinggaard, Frode Woldsund Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Írd le mit tettél, ami a hibát okozta -(minimum 20 karakter) + Írd le mit tettél, ami a hibához vezetett (minimum 20 karakter) Attach File - Csatolt fájl + Fájl csatolása @@ -1536,7 +1534,7 @@ Version: %s Enabling selected plugins... - Kijelölt beépülők engedélyezése… + Kijelölt bővítmények engedélyezése… @@ -1556,12 +1554,12 @@ Version: %s Activate required Plugins - Szükséges beépülők aktiválása + Igényelt bővítmények aktiválása Select the Plugins you wish to use. - Jelöld ki az alkalmazni kívánt beépülőket. + Jelöld ki az alkalmazni kívánt bővítményeket. @@ -1571,7 +1569,7 @@ Version: %s Custom Text - Egyedi szöveg + Speciális @@ -1596,17 +1594,17 @@ Version: %s Allow remote access - Távvezérlés engedélyezése + Távvezérlő Monitor Song Usage - Dalstatisztika monitorozása + Dalstatisztika Allow Alerts - Értesítések engedélyezése + Értesítések @@ -1679,7 +1677,7 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go Please wait while OpenLP is set up and your data is imported. - Várj, amíg az OpenLP beállítások érvényre jutnak és míg at adatok importálódnak. + Várj, amíg az OpenLP beállítások érvényre jutnak és míg az adatok importálódnak. @@ -1757,7 +1755,7 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go Slide loop delay: - Időzített diák késleltetése: + Időzített dia késleltetése: @@ -1818,12 +1816,12 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go OpenLP.LanguageManager - + Language Nyelv - + Please restart OpenLP to use your new language setting. A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe. @@ -1839,347 +1837,347 @@ Az Első indulás tündér további megkerüléséhez, nyomd meg a Befejezés go OpenLP.MainWindow - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Settings &Beállítások - + &Language &Nyelv - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Sorrendkezelő - + Theme Manager Témakezelő - + &New &Új - + Ctrl+N - + &Open Meg&nyitás - + Open an existing service. Meglévő sorrend megnyitása. - + Ctrl+O - + &Save &Mentés - + Save the current service to disk. Aktuális sorrend mentése lemezre. - + Ctrl+S - + Save &As... Mentés má&sként… - + Save Service As Sorrend mentése másként - + Save the current service under a new name. Az aktuális sorrend más néven való mentése. - + Ctrl+Shift+S - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + Alt+F4 - + &Theme &Téma - + &Configure OpenLP... OpenLP &beállítása… - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - + Toggle the visibility of the media manager. A médiakezelő láthatóságának átváltása. - + F8 - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - + Toggle the visibility of the theme manager. A témakezelő láthatóságának átváltása. - + F10 - + &Service Manager &Sorrendkezelő - + Toggle Service Manager Sorrendkezelő átváltása - + Toggle the visibility of the service manager. A sorrendkezelő láthatóságának átváltása. - + F9 - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - + Toggle the visibility of the preview panel. Az előnézet panel láthatóságának átváltása. - + F11 - + &Live Panel &Élő adás panel - + Toggle Live Panel Élő adás panel átváltása - + Toggle the visibility of the live panel. Az élő adás panel láthatóságának átváltása. - + F12 - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + Alt+F7 - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP További információ az OpenLP-ről - + Ctrl+F1 - + &Online Help &Online súgó - + &Web Site &Weboldal - + Use the system language, if available. Rendszernyelv használata, ha elérhető. - + Set the interface language to %s A felhasználói felület nyelvének átváltása erre: %s - + Add &Tool... &Eszköz hozzáadása… - + Add an application to the list of tools. Egy alkalmazás hozzáadása az eszközök listához. - + &Default &Alapértelmezett - + Set the view mode back to the default. Nézetmód visszaállítása az alapértelmezettre. - + &Setup &Szerkesztés - + Set the view mode to Setup. Nézetmód váltása a Beállítás módra. - + &Live &Élő adás - + Set the view mode to Live. Nézetmód váltása a Élő módra. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -2188,27 +2186,27 @@ You can download the latest version from http://openlp.org/. A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be. - + OpenLP Version Updated OpenLP verziófrissítés - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Default Theme: %s Alapértelmezett téma: %s - + Configure &Shortcuts... &Gyorsbillentyűk beállítása… @@ -2219,42 +2217,42 @@ A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be.Magyar - + Print the current Service Order. Az aktuális sorrend nyomtatása. - + Ctrl+P - + &Configure Display Tags - Megjelenítési &címkek beállítása + Megjelenítési &címkék beállítása - + &Autodetect &Automatikus felismerés - + Open &Data Folder... &Adatmappa megnyitása… - + Open the folder where songs, bibles and other data resides. A dalokat, Bibliákat és egyéb adatokat tartalmazó mappa megnyitása. - + Close OpenLP OpenLP bezárása - + Are you sure you want to close OpenLP? Biztosan bezárható az OpenLP? @@ -3158,7 +3156,7 @@ A tartalom kódolása nem UTF-8. Define the font and display characteristics for the Display text - A fő szöveg betűkészlete és a megjelenési tulajdonságai + A fő szöveg betűkészlete és megjelenési tulajdonságai @@ -3203,7 +3201,7 @@ A tartalom kódolása nem UTF-8. Define the font and display characteristics for the Footer text - A lábléc szöveg betűkészlete és a megjelenési tulajdonságai + A lábléc szöveg betűkészlete és megjelenési tulajdonságai @@ -3293,7 +3291,7 @@ A tartalom kódolása nem UTF-8. View the theme and save it replacing the current one or change the name to create a new theme - A téma előnézete és mentése. Felülírható már egy meglévő vagy egy új név megadásával új téma hozható létre + A téma előnézete és mentése: egy már meglévő téma felülírható vagy egy új név megadásával új téma hozható létre @@ -4439,7 +4437,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - Nincs kijelölve egyetlen szerző sem. Vagy válassz egy szerzőt a listából, vagy írj az új szerző mezőbe és kattints az „Szerző hozzáadása a dalhoz” gombon a szerző megjelöléséhez. + Nincs kijelölve egyetlen szerző sem. Vagy válassz egy szerzőt a listából, vagy írj az új szerző mezőbe és kattints a Hozzáadás gombra a szerző megjelöléséhez. @@ -4459,7 +4457,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - Nincs kijelölve egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezőbe és kattints a Témakör hozzáadása a dalhoz gombon a témakör megjelöléséhez. + Nincs kijelölve egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezőbe és kattints a Hozzáadás gombraa témakör megjelöléséhez.