diff --git a/src/libprs500/gui2/dialogs/config.py b/src/libprs500/gui2/dialogs/config.py
index e0c52c8b4d..b820dc2971 100644
--- a/src/libprs500/gui2/dialogs/config.py
+++ b/src/libprs500/gui2/dialogs/config.py
@@ -61,10 +61,10 @@ class ConfigDialog(QDialog, Ui_Dialog):
def accept(self):
path = qstring_to_unicode(self.location.text())
if not path or not os.path.exists(path) or not os.path.isdir(path):
- d = error_dialog(self, 'Invalid database location', 'Invalid database location '+path+'
Must be a directory.')
+ d = error_dialog(self, _('Invalid database location'), _('Invalid database location ')+path+_('
Must be a directory.'))
d.exec_()
elif not os.access(path, os.W_OK):
- d = error_dialog(self, 'Invalid database location', 'Invalid database location.
Cannot write to '+path)
+ d = error_dialog(self, _('Invalid database location'), _('Invalid database location.
Cannot write to ')+path)
d.exec_()
else:
self.database_location = os.path.abspath(path)
diff --git a/src/libprs500/gui2/dialogs/fetch_metadata.py b/src/libprs500/gui2/dialogs/fetch_metadata.py
index d502af2151..3e6be81679 100644
--- a/src/libprs500/gui2/dialogs/fetch_metadata.py
+++ b/src/libprs500/gui2/dialogs/fetch_metadata.py
@@ -94,8 +94,8 @@ class FetchMetadata(QDialog, Ui_FetchMetadata):
def fetch_metadata(self):
key = str(self.key.text())
if not key:
- error_dialog(self, 'Cannot connect',
- 'You must specify a valid access key for isndb.com')
+ error_dialog(self, _('Cannot connect'),
+ _('You must specify a valid access key for isbndb.com'))
return
else:
QSettings().setValue('isbndb.com key', QVariant(self.key.text()))
diff --git a/src/libprs500/gui2/dialogs/lrf_single.py b/src/libprs500/gui2/dialogs/lrf_single.py
index a62f2c3324..f88048993d 100644
--- a/src/libprs500/gui2/dialogs/lrf_single.py
+++ b/src/libprs500/gui2/dialogs/lrf_single.py
@@ -12,7 +12,6 @@
## You should have received a copy of the GNU General Public License along
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-import cPickle
import os, cPickle
from PyQt4.QtCore import QObject, SIGNAL, Qt, QSettings, QVariant, QByteArray
@@ -93,7 +92,7 @@ class LRFSingleDialog(QDialog, Ui_LRFSingleDialog):
d.exec_()
if len(formats) > 1:
- d = ChooseFormatDialog(window, 'Choose the format to convert into LRF', formats)
+ d = ChooseFormatDialog(window, _('Choose the format to convert into LRF'), formats)
d.exec_()
if d.result() == QDialog.Accepted:
self.selected_format = d.format()
@@ -167,8 +166,8 @@ class LRFSingleDialog(QDialog, Ui_LRFSingleDialog):
if _file:
_file = os.path.abspath(_file)
if not os.access(_file, os.R_OK):
- d = error_dialog(self.window, 'Cannot read',
- 'You do not have permission to read the file: ' + _file)
+ d = error_dialog(self.window, _('Cannot read'),
+ _('You do not have permission to read the file: ') + _file)
d.exec_()
return
cf, cover = None, None
@@ -176,14 +175,14 @@ class LRFSingleDialog(QDialog, Ui_LRFSingleDialog):
cf = open(_file, "rb")
cover = cf.read()
except IOError, e:
- d = error_dialog(self.window, 'Error reading file',
- "
There was an error reading from file:
" + _file + "
There was an error reading from file:
") + _file + "
There was an error reading from file:
" + _file + "
There was an error reading from file:
") + _file + "
Cannot upload books to device there is no more free space available '+where+ + d = error_dialog(self, _('No space on device'), + _('
Cannot upload books to device there is no more free space available ')+where+ '
\nThere was an error reading from file: Metadata will be "
"updated in the database as well as the generated LRF file."
@@ -449,12 +522,12 @@ msgstr ""
"Especifiqueu informació com ara títol i autor per al llibre. Aquesta "
"informació s'actualitza tant a la base de dades com al fitxer LRF."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:287
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:563
msgid "Metadata"
msgstr "Metadades"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
msgid ""
"Adjust the look of the generated LRF file by specifying things like font "
"sizes and the spacing between words."
@@ -462,12 +535,12 @@ msgstr ""
"Milloreu l'aparença del fitxer LRF generat, especificant la grandària de "
"lletra i l'espaiat entre paraules."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:567
msgid "Look & Feel"
msgstr "Look & Feel"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
msgid ""
"Specify the page settings like margins and the screen size of the target "
"device."
@@ -475,20 +548,24 @@ msgstr ""
"Configuració de la pàgina del dispositiu, especificant ,marges i grandària "
"de la pantalla, entre d'altres."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:571
msgid "Page Setup"
msgstr "Configuració de la pàgina"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:291
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
msgid "Fine tune the detection of chapter and section headings."
msgstr "Milloreu la detecció de capítols i seccions."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:291
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:575
msgid "Chapter Detection"
msgstr "Detecció de capítols"
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:298
+msgid "No help available"
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:558
msgid "Convert to LRF"
msgstr "Convertir a LRF"
@@ -793,6 +870,22 @@ msgstr " estreles"
msgid "Add Ta&gs: "
msgstr "Afe&geix les etiquetes: "
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:226
+msgid "Could not fetch cover. Cannot upload books to device there is no more free space available "
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:406
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:425
+msgid "Cannot edit metadata"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:406
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:425
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:508
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:568
+msgid "No books selected"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:508
+msgid "Cannot save to disk"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:558
+msgid "Not yet implemented."
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:558
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:568
+msgid "Cannot convert"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:614
+msgid "No book selected"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:614
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:623
+msgid "Cannot view"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:623
+msgid "%s is not available in LRF format. Please convert it first."
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:647
+msgid "Cannot configure"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:647
+msgid "Cannot configure while there are running jobs."
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:671
+msgid "Could not move database"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:719
+msgid "Error talking to device"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:720
+msgid ""
+"There was a temporary error talking to the device. Please unplug and "
+"reconnect the device and or reboot."
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:261
msgid "libprs500"
msgstr "libprs500"
@@ -1115,5 +1288,3 @@ msgid ""
msgstr ""
"La targeta\n"
"%s està disponible"
-
-
diff --git a/src/libprs500/translations/data.py b/src/libprs500/translations/data.py
index 9225b2bbc9..c223db6311 100644
--- a/src/libprs500/translations/data.py
+++ b/src/libprs500/translations/data.py
@@ -1 +1 @@
-translations = {'ca': '\xde\x12\x04\x95\x00\x00\x00\x00\xd5\x00\x00\x00\x1c\x00\x00\x00\xc4\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00l\r\x00\x00\x04\x00\x00\x00m\r\x00\x00\x03\x00\x00\x00r\r\x00\x00\x06\x00\x00\x00v\r\x00\x00\x0c\x00\x00\x00}\r\x00\x00\x0c\x00\x00\x00\x8a\r\x00\x00\x0f\x00\x00\x00\x97\r\x00\x00\x1a\x00\x00\x00\xa7\r\x00\x00\x1d\x00\x00\x00\xc2\r\x00\x00\x0f\x00\x00\x00\xe0\r\x00\x00\r\x00\x00\x00\xf0\r\x00\x00)\x00\x00\x00\xfe\r\x00\x00\x0b\x00\x00\x00(\x0e\x00\x00\x17\x00\x00\x004\x0e\x00\x00\n\x00\x00\x00L\x0e\x00\x00\x0c\x00\x00\x00W\x0e\x00\x00\t\x00\x00\x00d\x0e\x00\x00\x0c\x00\x00\x00n\x0e\x00\x00\x08\x00\x00\x00{\x0e\x00\x00\x14\x00\x00\x00\x84\x0e\x00\x00\x0e\x00\x00\x00\x99\x0e\x00\x00\x08\x00\x00\x00\xa8\x0e\x00\x00\x08\x00\x00\x00\xb1\x0e\x00\x00\x07\x00\x00\x00\xba\x0e\x00\x00\x0c\x00\x00\x00\xc2\x0e\x00\x00\x08\x00\x00\x00\xcf\x0e\x00\x00\x0c\x00\x00\x00\xd8\x0e\x00\x00\n\x00\x00\x00\xe5\x0e\x00\x00\x0e\x00\x00\x00\xf0\x0e\x00\x00\x03\x00\x00\x00\xff\x0e\x00\x001\x00\x00\x00\x03\x0f\x00\x00\x8c\x02\x00\x005\x0f\x00\x00x\x01\x00\x00\xc2\x11\x00\x00\x01\x00\x00\x00;\x13\x00\x00X\x00\x00\x00=\x13\x00\x00\x0b\x00\x00\x00\x96\x13\x00\x00\x0b\x00\x00\x00\xa2\x13\x00\x007\x00\x00\x00\xae\x13\x00\x004\x00\x00\x00\xe6\x13\x00\x00.\x00\x00\x00\x1b\x14\x00\x00\t\x00\x00\x00J\x14\x00\x00m\x00\x00\x00T\x14\x00\x00\x0e\x00\x00\x00\xc2\x14\x00\x00\r\x00\x00\x00\xd1\x14\x00\x00\t\x00\x00\x00\xdf\x14\x00\x00\x11\x00\x00\x00\xe9\x14\x00\x00\x04\x00\x00\x00\xfb\x14\x00\x00\x10\x00\x00\x00\x00\x15\x00\x00\x05\x00\x00\x00\x11\x15\x00\x00(\x00\x00\x00\x17\x15\x00\x00\n\x00\x00\x00@\x15\x00\x00.\x00\x00\x00K\x15\x00\x005\x00\x00\x00z\x15\x00\x00$\x00\x00\x00\xb0\x15\x00\x00\x0c\x00\x00\x00\xd5\x15\x00\x007\x00\x00\x00\xe2\x15\x00\x00\x11\x00\x00\x00\x1a\x16\x00\x00\x08\x00\x00\x00,\x16\x00\x00\x14\x00\x00\x005\x16\x00\x00R\x00\x00\x00J\x16\x00\x00!\x00\x00\x00\x9d\x16\x00\x00\x1d\x00\x00\x00\xbf\x16\x00\x00\x11\x00\x00\x00\xdd\x16\x00\x00\r\x00\x00\x00\xef\x16\x00\x00\x08\x00\x00\x00\xfd\x16\x00\x00\r\x00\x00\x00\x06\x17\x00\x00\t\x00\x00\x00\x14\x17\x00\x00\x10\x00\x00\x00\x1e\x17\x00\x00\x11\x00\x00\x00/\x17\x00\x00\x0f\x00\x00\x00A\x17\x00\x00\x14\x00\x00\x00Q\x17\x00\x00\x0e\x00\x00\x00f\x17\x00\x00\x0b\x00\x00\x00u\x17\x00\x00\x04\x00\x00\x00\x81\x17\x00\x00\x03\x00\x00\x00\x86\x17\x00\x00\x1b\x00\x00\x00\x8a\x17\x00\x00\x04\x00\x00\x00\xa6\x17\x00\x00\x01\x00\x00\x00\xab\x17\x00\x00\x05\x00\x00\x00\xad\x17\x00\x00\x15\x00\x00\x00\xb3\x17\x00\x00\x15\x00\x00\x00\xc9\x17\x00\x00\x15\x00\x00\x00\xdf\x17\x00\x00\x15\x00\x00\x00\xf5\x17\x00\x00\x1a\x00\x00\x00\x0b\x18\x00\x00\x0e\x00\x00\x00&\x18\x00\x00\x1f\x00\x00\x005\x18\x00\x00C\x00\x00\x00U\x18\x00\x00\x1f\x00\x00\x00\x99\x18\x00\x00\x05\x00\x00\x00\xb9\x18\x00\x00\x1d\x00\x00\x00\xbf\x18\x00\x00\x0e\x00\x00\x00\xdd\x18\x00\x00\x1a\x00\x00\x00\xec\x18\x00\x00\n\x00\x00\x00\x07\x19\x00\x00\x1f\x00\x00\x00\x12\x19\x00\x008\x00\x00\x002\x19\x00\x00\x1d\x01\x00\x00k\x19\x00\x00J\x00\x00\x00\x89\x1a\x00\x00#\x00\x00\x00\xd4\x1a\x00\x00\x06\x00\x00\x00\xf8\x1a\x00\x00\x07\x00\x00\x00\xff\x1a\x00\x00\x07\x00\x00\x00\x07\x1b\x00\x00\x1b\x00\x00\x00\x0f\x1b\x00\x00\x06\x00\x00\x00+\x1b\x00\x00\x0c\x00\x00\x002\x1b\x00\x00\t\x00\x00\x00?\x1b\x00\x00\x06\x00\x00\x00I\x1b\x00\x00\xdc\x01\x00\x00P\x1b\x00\x00a\x00\x00\x00-\x1d\x00\x00\x0e\x00\x00\x00\x8f\x1d\x00\x00\xa8\x00\x00\x00\x9e\x1d\x00\x00&\x00\x00\x00G\x1e\x00\x00\x03\x00\x00\x00n\x1e\x00\x00\x05\x00\x00\x00r\x1e\x00\x00\n\x00\x00\x00x\x1e\x00\x00,\x00\x00\x00\x83\x1e\x00\x00\x07\x00\x00\x00\xb0\x1e\x00\x00-\x00\x00\x00\xb8\x1e\x00\x00\x0b\x00\x00\x00\xe6\x1e\x00\x00\x07\x00\x00\x00\xf2\x1e\x00\x00\x10\x00\x00\x00\xfa\x1e\x00\x00\x08\x00\x00\x00\x0b\x1f\x00\x00y\x00\x00\x00\x14\x1f\x00\x00\t\x00\x00\x00\x8e\x1f\x00\x00\n\x00\x00\x00\x98\x1f\x00\x00\x14\x00\x00\x00\xa3\x1f\x00\x00\x04\x00\x00\x00\xb8\x1f\x00\x00\n\x00\x00\x00\xbd\x1f\x00\x00\x07\x00\x00\x00\xc8\x1f\x00\x008\x00\x00\x00\xd0\x1f\x00\x00s\x00\x00\x00\t \x00\x00\x0f\x00\x00\x00} \x00\x00\n\x00\x00\x00\x8d \x00\x00\x10\x00\x00\x00\x98 \x00\x00\x0f\x00\x00\x00\xa9 \x00\x00\x04\x00\x00\x00\xb9 \x00\x00;\x00\x00\x00\xbe \x00\x00G\x00\x00\x00\xfa \x00\x001\x00\x00\x00B!\x00\x004\x00\x00\x00t!\x00\x00H\x00\x00\x00\xa9!\x00\x00\r\x00\x00\x00\xf2!\x00\x00\xbc\x00\x00\x00\x00"\x00\x00\x08\x00\x00\x00\xbd"\x00\x00\t\x00\x00\x00\xc6"\x00\x00\x06\x00\x00\x00\xd0"\x00\x00\x1e\x00\x00\x00\xd7"\x00\x00\x13\x00\x00\x00\xf6"\x00\x00<\x00\x00\x00\n#\x00\x00\x0c\x00\x00\x00G#\x00\x00<\x00\x00\x00T#\x00\x00\x84\x00\x00\x00\x91#\x00\x00\x12\x00\x00\x00\x16$\x00\x00-\x00\x00\x00)$\x00\x00\x0c\x00\x00\x00W$\x00\x00\x0c\x00\x00\x00d$\x00\x00=\x00\x00\x00q$\x00\x00V\x00\x00\x00\xaf$\x00\x00r\x00\x00\x00\x06%\x00\x00G\x00\x00\x00y%\x00\x00\x0e\x00\x00\x00\xc1%\x00\x00\x13\x00\x00\x00\xd0%\x00\x00\x14\x00\x00\x00\xe4%\x00\x00#\x00\x00\x00\xf9%\x00\x00\x06\x00\x00\x00\x1d&\x00\x00\r\x00\x00\x00$&\x00\x00\x0b\x00\x00\x002&\x00\x00\x17\x00\x00\x00>&\x00\x00\x1b\x00\x00\x00V&\x00\x00\x1a\x00\x00\x00r&\x00\x00\x0e\x00\x00\x00\x8d&\x00\x00^\x00\x00\x00\x9c&\x00\x00\x12\x00\x00\x00\xfb&\x00\x00\x10\x00\x00\x00\x0e\'\x00\x00\x10\x00\x00\x00\x1f\'\x00\x00c\x00\x00\x000\'\x00\x007\x00\x00\x00\x94\'\x00\x00!\x00\x00\x00\xcc\'\x00\x00d\x00\x00\x00\xee\'\x00\x00\t\x00\x00\x00S(\x00\x00\x17\x00\x00\x00](\x00\x00\x16\x00\x00\x00u(\x00\x00z\x00\x00\x00\x8c(\x00\x00\x85\x00\x00\x00\x07)\x00\x00\xb6\x00\x00\x00\x8d)\x00\x00P\x00\x00\x00D*\x00\x00+\x01\x00\x00\x95*\x00\x00\x06\x00\x00\x00\xc1+\x00\x00\x07\x00\x00\x00\xc8+\x00\x00\x13\x00\x00\x00\xd0+\x00\x00\x04\x00\x00\x00\xe4+\x00\x00\x85\x00\x00\x00\xe9+\x00\x00\t\x00\x00\x00o,\x00\x000\x00\x00\x00y,\x00\x00\x9d\x00\x00\x00\xaa,\x00\x00&\x00\x00\x00H-\x00\x00v\x00\x00\x00o-\x00\x00\'\x00\x00\x00\xe6-\x00\x00"\x00\x00\x00\x0e.\x00\x00\t\x00\x00\x001.\x00\x00\x05\x00\x00\x00;.\x00\x00\x15\x00\x00\x00A.\x00\x00+\x00\x00\x00W.\x00\x00\x0b\x00\x00\x00\x83.\x00\x00\x07\x00\x00\x00\x8f.\x00\x00\x13\x00\x00\x00\x97.\x00\x00\xb4\x00\x00\x00\xab.\x00\x002\x00\x00\x00`/\x00\x00\x14\x00\x00\x00\x93/\x00\x00\x04\x00\x00\x00\xa8/\x00\x00\x07\x00\x00\x00\xad/\x00\x00\x07\x00\x00\x00\xb5/\x00\x00d\x00\x00\x00\xbd/\x00\x00\t\x00\x00\x00"0\x00\x00!\x01\x00\x00,0\x00\x00\x06\x00\x00\x00N1\x00\x00\t\x00\x00\x00U1\x00\x00\t\x00\x00\x00_1\x00\x00\x0f\x00\x00\x00i1\x00\x00\n\x00\x00\x00y1\x00\x00\x10\x00\x00\x00\x841\x00\x00$\x00\x00\x00\x951\x00\x00-\x00\x00\x00\xba1\x00\x00\x19\x00\x00\x00\xe81\x00\x00\x10\x00\x00\x00\x022\x00\x00/\x00\x00\x00\x132\x00\x00\x0b\x00\x00\x00C2\x00\x00.\x00\x00\x00O2\x00\x00\r\x00\x00\x00~2\x00\x00\x11\x00\x00\x00\x8c2\x00\x00\x08\x00\x00\x00\x9e2\x00\x00\x0b\x00\x00\x00\xa72\x00\x00\x0c\x00\x00\x00\xb32\x00\x00\x14\x00\x00\x00\xc02\x00\x00\x0c\x00\x00\x00\xd52\x00\x00\t\x00\x00\x00\xe22\x00\x00\t\x00\x00\x00\xec2\x00\x00\x07\x00\x00\x00\xf62\x00\x00\x13\x00\x00\x00\xfe2\x00\x00\n\x00\x00\x00\x123\x00\x00\x10\x00\x00\x00\x1d3\x00\x00\x0e\x00\x00\x00.3\x00\x00\x19\x00\x00\x00=3\x00\x00\x03\x00\x00\x00W3\x00\x00/\x00\x00\x00[3\x00\x00\x8f\x02\x00\x00\x8b3\x00\x00x\x01\x00\x00\x1b6\x00\x00\x01\x00\x00\x00\x947\x00\x00_\x00\x00\x00\x967\x00\x00\x0f\x00\x00\x00\xf67\x00\x00\x18\x00\x00\x00\x068\x00\x00I\x00\x00\x00\x1f8\x00\x00I\x00\x00\x00i8\x00\x00;\x00\x00\x00\xb38\x00\x00\x0f\x00\x00\x00\xef8\x00\x00m\x00\x00\x00\xff8\x00\x00\x0f\x00\x00\x00m9\x00\x00\x11\x00\x00\x00}9\x00\x00\x08\x00\x00\x00\x8f9\x00\x00\x13\x00\x00\x00\x989\x00\x00\t\x00\x00\x00\xac9\x00\x00\x18\x00\x00\x00\xb69\x00\x00\x07\x00\x00\x00\xcf9\x00\x00)\x00\x00\x00\xd79\x00\x00\x07\x00\x00\x00\x01:\x00\x007\x00\x00\x00\t:\x00\x00?\x00\x00\x00A:\x00\x00)\x00\x00\x00\x81:\x00\x00\x0f\x00\x00\x00\xab:\x00\x00R\x00\x00\x00\xbb:\x00\x00\x1e\x00\x00\x00\x0e;\x00\x00\t\x00\x00\x00-;\x00\x00 \x00\x00\x007;\x00\x00F\x00\x00\x00X;\x00\x00\x1d\x00\x00\x00\x9f;\x00\x00\x1d\x00\x00\x00\xbd;\x00\x00\x18\x00\x00\x00\xdb;\x00\x00\x0c\x00\x00\x00\xf4;\x00\x00\n\x00\x00\x00\x01<\x00\x00\r\x00\x00\x00\x0c<\x00\x00\t\x00\x00\x00\x1a<\x00\x00\x1a\x00\x00\x00$<\x00\x00\x15\x00\x00\x00?<\x00\x00\x11\x00\x00\x00U<\x00\x00\x19\x00\x00\x00g<\x00\x00\x0f\x00\x00\x00\x81<\x00\x00\n\x00\x00\x00\x91<\x00\x00\x04\x00\x00\x00\x9c<\x00\x00\x07\x00\x00\x00\xa1<\x00\x00\x1b\x00\x00\x00\xa9<\x00\x00\n\x00\x00\x00\xc5<\x00\x00\x01\x00\x00\x00\xd0<\x00\x00\x05\x00\x00\x00\xd2<\x00\x00\x19\x00\x00\x00\xd8<\x00\x00\x17\x00\x00\x00\xf2<\x00\x00\x19\x00\x00\x00\n=\x00\x00\x18\x00\x00\x00$=\x00\x00\x1e\x00\x00\x00==\x00\x00\x16\x00\x00\x00\\=\x00\x00)\x00\x00\x00s=\x00\x00V\x00\x00\x00\x9d=\x00\x00"\x00\x00\x00\xf4=\x00\x00\x06\x00\x00\x00\x17>\x00\x00$\x00\x00\x00\x1e>\x00\x00\x10\x00\x00\x00C>\x00\x00!\x00\x00\x00T>\x00\x00\x18\x00\x00\x00v>\x00\x00#\x00\x00\x00\x8f>\x00\x000\x00\x00\x00\xb3>\x00\x00%\x01\x00\x00\xe4>\x00\x00]\x00\x00\x00\n@\x00\x00.\x00\x00\x00h@\x00\x00\x06\x00\x00\x00\x97@\x00\x00\x07\x00\x00\x00\x9e@\x00\x00\x08\x00\x00\x00\xa6@\x00\x00\x1e\x00\x00\x00\xaf@\x00\x00\n\x00\x00\x00\xce@\x00\x00\x13\x00\x00\x00\xd9@\x00\x00\x11\x00\x00\x00\xed@\x00\x00\x06\x00\x00\x00\xff@\x00\x00\xf1\x01\x00\x00\x06A\x00\x00o\x00\x00\x00\xf8B\x00\x00\x12\x00\x00\x00hC\x00\x00\xc7\x00\x00\x00{C\x00\x00*\x00\x00\x00CD\x00\x00\x07\x00\x00\x00nD\x00\x00\t\x00\x00\x00vD\x00\x00\x11\x00\x00\x00\x80D\x00\x007\x00\x00\x00\x92D\x00\x00\n\x00\x00\x00\xcaD\x00\x007\x00\x00\x00\xd5D\x00\x00\x0b\x00\x00\x00\rE\x00\x00\x0e\x00\x00\x00\x19E\x00\x00\x10\x00\x00\x00(E\x00\x00\t\x00\x00\x009E\x00\x00\xa4\x00\x00\x00CE\x00\x00\x10\x00\x00\x00\xe8E\x00\x00\x16\x00\x00\x00\xf9E\x00\x00\x1a\x00\x00\x00\x10F\x00\x00\x05\x00\x00\x00+F\x00\x00\x0c\x00\x00\x001F\x00\x00\x07\x00\x00\x00>F\x00\x00D\x00\x00\x00FF\x00\x00\x96\x00\x00\x00\x8bF\x00\x00\x12\x00\x00\x00"G\x00\x00\x1b\x00\x00\x005G\x00\x00\x1e\x00\x00\x00QG\x00\x00\x1d\x00\x00\x00pG\x00\x00\x04\x00\x00\x00\x8eG\x00\x00<\x00\x00\x00\x93G\x00\x00F\x00\x00\x00\xd0G\x00\x008\x00\x00\x00\x17H\x00\x00H\x00\x00\x00PH\x00\x00T\x00\x00\x00\x99H\x00\x00\x10\x00\x00\x00\xeeH\x00\x00\xc0\x00\x00\x00\xffH\x00\x00\x0b\x00\x00\x00\xc0I\x00\x00\t\x00\x00\x00\xccI\x00\x00\n\x00\x00\x00\xd6I\x00\x00"\x00\x00\x00\xe1I\x00\x00"\x00\x00\x00\x04J\x00\x00K\x00\x00\x00\'J\x00\x00\x11\x00\x00\x00sJ\x00\x00I\x00\x00\x00\x85J\x00\x00\x94\x00\x00\x00\xcfJ\x00\x00 \x00\x00\x00dK\x00\x003\x00\x00\x00\x85K\x00\x00\x0c\x00\x00\x00\xb9K\x00\x00\x0c\x00\x00\x00\xc6K\x00\x00D\x00\x00\x00\xd3K\x00\x00c\x00\x00\x00\x18L\x00\x00\x8d\x00\x00\x00|L\x00\x00D\x00\x00\x00\nM\x00\x00\x13\x00\x00\x00OM\x00\x00\x1b\x00\x00\x00cM\x00\x00\x1e\x00\x00\x00\x7fM\x00\x00+\x00\x00\x00\x9eM\x00\x00\x05\x00\x00\x00\xcaM\x00\x00\x11\x00\x00\x00\xd0M\x00\x00(\x00\x00\x00\xe2M\x00\x00*\x00\x00\x00\x0bN\x00\x00\'\x00\x00\x006N\x00\x00*\x00\x00\x00^N\x00\x00\x10\x00\x00\x00\x89N\x00\x00d\x00\x00\x00\x9aN\x00\x00\x1a\x00\x00\x00\xffN\x00\x00\x16\x00\x00\x00\x1aO\x00\x00\x18\x00\x00\x001O\x00\x00k\x00\x00\x00JO\x00\x00;\x00\x00\x00\xb6O\x00\x00/\x00\x00\x00\xf2O\x00\x00m\x00\x00\x00"P\x00\x00\x0f\x00\x00\x00\x90P\x00\x00\x1a\x00\x00\x00\xa0P\x00\x00\x1d\x00\x00\x00\xbbP\x00\x00}\x00\x00\x00\xd9P\x00\x00\x8e\x00\x00\x00WQ\x00\x00\n\x01\x00\x00\xe6Q\x00\x00m\x00\x00\x00\xf1R\x00\x00e\x01\x00\x00_S\x00\x00\x05\x00\x00\x00\xc5T\x00\x00\x0b\x00\x00\x00\xcbT\x00\x00\x1b\x00\x00\x00\xd7T\x00\x00\t\x00\x00\x00\xf3T\x00\x00\x91\x00\x00\x00\xfdT\x00\x00\t\x00\x00\x00\x8fU\x00\x00<\x00\x00\x00\x99U\x00\x00\x9e\x00\x00\x00\xd6U\x00\x004\x00\x00\x00uV\x00\x00\x91\x00\x00\x00\xaaV\x00\x001\x00\x00\x00 For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Aquesta informaci\xc3\xb3 s\'actualitza tant a la base de dades com al fitxer LRF.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Estat\x00Etique&tes:\x00Detecci\xc3\xb3 basada en marques\x00Etiquetes\x00Etiquetes per a categoritzar el llibre (especialment \xc3\xbatil per a recerques). For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Meta-Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei aktualisiert.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00Status\x00&Etiketten:\x00Auf Etiketten basierende Ermittlung\x00Etiketten\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern. For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Les metadata seront modifi\xc3\xa9es dans la base de donn\xc3\xa9es et dans le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Statut\x00Ta&gs :\x00D\xc3\xa9tection bas\xc3\xa9e sur des tags\x00Tags\x00Tags caract\xc3\xa9risant le livre, particuli\xc3\xa8rement utile pour la recherche. For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Esta informaci\xc3\xb3n se actualiza tanto en la base de datos como en el archivo LRF.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Estat\x00Etique&tas:\x00Detecci\xc3\xb3n basada en etiquetas\x00Etiquetas\x00Etiquetas para categorizar el libr (muy \xc3\xbatil en b\xc3\xbasquedas). For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Aquesta informaci\xc3\xb3 s\'actualitza tant a la base de dades com al fitxer LRF.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Estat\x00Etique&tes:\x00Detecci\xc3\xb3 basada en marques\x00Etiquetes\x00Etiquetes per a categoritzar el llibre (especialment \xc3\xbatil per a recerques). For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. Hilfe gibt es bei libprs500.kovidgoyal.net Meta-Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei aktualisiert.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00Status\x00&Etiketten:\x00Auf Etiketten basierende Ermittlung\x00Etiketten\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern. For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. For help visit libprs500.kovidgoyal.net Les metadata seront modifi\xc3\xa9es dans la base de donn\xc3\xa9es et dans le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Statut\x00Ta&gs :\x00D\xc3\xa9tection bas\xc3\xa9e sur des tags\x00Tags\x00Tags caract\xc3\xa9risant le livre, particuli\xc3\xa8rement utile pour la recherche. For help visit libprs500.kovidgoyal.net Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Status\x00Ta&gs: \x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. For help visit libprs500.kovidgoyal.net Esta informaci\xc3\xb3n se actualiza tanto en la base de datos como en el archivo LRF.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Estat\x00Etique&tas:\x00Detecci\xc3\xb3n basada en etiquetas\x00Etiquetas\x00Etiquetas para categorizar el libr (muy \xc3\xbatil en b\xc3\xbasquedas). Metadata will be updated in the database as well as the generated LRF file."
-msgstr "Geben Sie Meta-Daten wie den Titel und den Autor des Buches an. Meta-Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei aktualisiert."
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:169
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:49
+msgid "Cannot read"
+msgstr ""
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:170
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:50
+msgid "You do not have permission to read the file: "
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:178
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:58
+msgid "Error reading file"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:59
+msgid " There was an error reading from file: Metadata will be "
+"updated in the database as well as the generated LRF file."
+msgstr ""
+"Geben Sie Meta-Daten wie den Titel und den Autor des Buches an. Meta-"
+"Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei "
+"aktualisiert."
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:287
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:563
msgid "Metadata"
msgstr "Meta-Daten"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
-msgid "Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words."
-msgstr "Aussehen der erstellten LRF Datei durch die Angabe von Schriftgrößen und Wortabständen angleichen."
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
+msgid ""
+"Adjust the look of the generated LRF file by specifying things like font "
+"sizes and the spacing between words."
+msgstr ""
+"Aussehen der erstellten LRF Datei durch die Angabe von Schriftgrößen und "
+"Wortabständen angleichen."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:567
msgid "Look & Feel"
msgstr "Look & Feel"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
-msgid "Specify the page settings like margins and the screen size of the target device."
-msgstr "Seiteneinstellungen wie Ränder und die Bildschirmgröße des Zielgeräts angeben."
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
+msgid ""
+"Specify the page settings like margins and the screen size of the target "
+"device."
+msgstr ""
+"Seiteneinstellungen wie Ränder und die Bildschirmgröße des Zielgeräts "
+"angeben."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:289
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:571
msgid "Page Setup"
msgstr "Seiteneinrichtung"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:291
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
msgid "Fine tune the detection of chapter and section headings."
msgstr "Feineinstellung der Erkennung von Kapitel- und Absatzüberschriften."
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:291
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:290
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:575
msgid "Chapter Detection"
msgstr "Ermittlung der Kapitel"
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:298
+msgid "No help available"
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:558
msgid "Convert to LRF"
msgstr "Zu LRF konvertieren"
@@ -419,8 +636,12 @@ msgstr "&Autor:"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:121
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:270
-msgid "Change the author(s) of this book. Multiple authors should be separated by a comma"
-msgstr "Autor dieses Buches ändern. Mehrere Autoren sollten durch Kommata getrennt werden"
+msgid ""
+"Change the author(s) of this book. Multiple authors should be separated by a "
+"comma"
+msgstr ""
+"Autor dieses Buches ändern. Mehrere Autoren sollten durch Kommata getrennt "
+"werden"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587
msgid "Author So&rt:"
@@ -446,8 +667,13 @@ msgstr "&Etiketten:"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:131
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:280
-msgid "Tags categorize the book. This is particularly useful while searching. "
+"p>
"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:185
+msgid " is not a valid picture"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:251
+msgid ""
+"Preprocess the file before converting to LRF. This is useful if you know "
+"that the file is from a specific source. Known sources:"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:252
+msgid "
"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:226
+msgid "Could not fetch cover"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:233
+msgid "Cannot fetch cover"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:233
+msgid "You must specify the ISBN identifier for this book."
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:265
msgid "Edit Meta Information"
msgstr "Edita la meta-informació"
@@ -943,6 +1036,14 @@ msgstr "Partició de mots"
msgid "Changes will only take affect after a restart."
msgstr "Els canvis s'ignoren fins que el re-inicieu."
+#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:163
+msgid "No matches for the search phrase %s were found."
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:163
+msgid "No matches found"
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184
msgid "LRF Viewer"
msgstr "Visualitzador LRF"
@@ -979,6 +1080,10 @@ msgstr "Obre l'eBook"
msgid "Configure"
msgstr "Configura"
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:82
+msgid "Error communicating with device"
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110
msgid "Send to main memory"
msgstr "Envia a la memòria interna"
@@ -1003,6 +1108,74 @@ msgstr "Converteix individualment"
msgid "Bulk convert"
msgstr "Converteix tots"
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:336
+msgid "No space on device"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:337
+msgid "
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina\x00Estic analitzant el fitxer LRF\x00Es necessita una contrasenya.\x00Pfad\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge que s\'utilitzar\xc3\xa0 com a miniatura\x00Cam\xc3\xad\xc2\xad al fitxer txt que cont\xc3\xa9 el comentari a desar en el fitxer LRF\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge per a utilitzar com a coberta\x00Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat.\x00Evita la inserci\xc3\xb3 autom\xc3\xa0tica de salts de p\xc3\xa0gina abans dels cap\xc3\xad\xc2\xadtols detectats.\x00P\xc3\xa0gina anterior\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00Suprimeix llibres\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00S&ans-serif:\x00Desa al disc\x00Cerca per t\xc3\xad\xc2\xadtol, autor, editorial, etiquetes, series i comentaris\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor.
Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris
Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00Serie\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Indiqueu l\'ID (identificador) del llibre\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Indiqueu els comentaris.\x00Estableix el format de la cap\xc3\xa7alera: %a es reempla\xc3\xa7a per l\'autor i %t pel t\xc3\xad\xc2\xadtol. Per defecte: %default\x00Fixa l\'espai entre paraules en punts. Per defecte: %default\x00Indique el t\xc3\xadtol. Per defecte: nom_del_fitxer.\x00Registreu-vos gratu\xc3\xaftament a ISBNdb.com per a obtenir una clau d\'acc\xc3\xa9s.\x00Grand\xc3\xa0ria (MB)\x00Clau d\'ordre per a l\'autor\x00Clau d\'ordre per al t\xc3\xad\xc2\xadtol.\x00Especifiqueu com s\'ha d\'ordenar l\'autor(s) d\'aquest llibre. Per exemple,ordena Vicent A. Estell\xc3\xa9s com a Estell\xc3\xa9s, Vicent A.\x00Especifiqueu informaci\xc3\xb3 com ara t\xc3\xad\xc2\xadtol i autor per al llibre.
Pot emprar-se qualsevol paraula o frase, separada per comes.\x00TextLabel\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Nombre m\xc3\xa0xim de nivells per a processar enlla\xc3\xa7os recursivament. El valor 0 (cero) vol dir que no s\xc3\xb3n seguits. Amb un valor negatiu, ignora les marques .\x00Fam\xc3\xad\xc2\xadlia de lletres monoespaiades per a incrustar.\x00Expressi\xc3\xb3 regular utilitzada per a detectar els t\xc3\xad\xc2\xadtols dels cap\xc3\xad\xc2\xadtols. Cerca a les marques de encap\xc3\xa7alament (h1-h6). Per defecte: %default\x00Fam\xc3\xad\xc2\xadlia de lletres sans-serif per a incrustar.\x00Fam\xc3\xad\xc2\xadlia de lletres serif per a incrustar.\x00Zeitstempel\x00T\xc3\xad\xc2\xadtol\x00Detecci\xc3\xb3 basada en el t\xc3\xad\xc2\xadtol\x00Marge superior de la p\xc3\xa0gina. Per defecte: %default px.\x00No disponible\x00Desconegut\x00Utilitza la coberta de les &metadades\x00Utilitza l\'element
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort erforderlich\x00Pfad\x00Pfad zu einer Grafik, die als Thumbnail f\xc3\xbcr diese Datei verwendet werden soll \x00Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei gespeichert wird\x00Pfad zur Datei des Umschlagbildes \x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Automatisches Einf\xc3\xbcgen von Seitenumbr\xc3\xbcchen vor ermittelten Kapiteln verhindern.\x00Vorherige Seite\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00S&ans-serif:\x00Auf HD sichern\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen
Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen
Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00W\xc3\xa4hlen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch den Titel ersetzt. Die Voreinstellung ist %default\x00W\xc3\xa4hlen Sie den Abstand in Punkt zwischen einzelnen W\xc3\xb6rtern. Die Voreinstellung ist %default\x00Geben Sie den Titel an. Voreinstellung: Dateiname.\x00Kostenloses Konto anmelden bei ISBNdb.com um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Gr\xc3\xb6\xc3\x9fe (MB)\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Meta-Daten wie den Titel und den Autor des Buches an.
Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00TextLabel\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00H\xc3\xb6chstzahl der rekursiven Verkn\xc3\xbcpfungen (Hyperlinks). Der Wert 0 bedeutet, dass Verkn\xc3\xbcpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle Elemente ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00Der regul\xc3\xa4re Ausdruck zur Ermittlung von Kapitel\xc3\xbcberschriften. Es wird nach mit (h1) - (h6) angegebenen \xc3\x9cberschriften gesucht. Voreinstellung %default\x00Serifenlose Schriftartfamilie einbetten\x00Serife Schriftartfamilie einbetten\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Benutze &Meta-Daten Umschlagbild\x00Das
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Mise en page\x00Parse le fichier LRF\x00Mot de passe n\xc3\xa9cessaire\x00Chemin\x00Chemin d\'une image qui sera utilis\xc3\xa9e comme vignette pour ces fichiers\x00Chemin d\'un fichier texte contenant les commentaires qui seront inclus dans le fichier lrf.\x00Chemin du fichier contenant l\'image \xc3\xa0 utiliser comme couverture\x00Pr\xc3\xa9processe les fichiers HTML Bean pour am\xc3\xa9liorer le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00Emp\xc3\xaache l\'insertion automatique d\'un saut de page avant chaque chapitre d\xc3\xa9tect\xc3\xa9.\x00Page pr\xc3\xa9c\xc3\xa9dente\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00Suppression du livre\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00S&ans-serif:\x00Enregistrer sur le disque\x00Recherche par titre, aueur, \xc3\xa9diteur, tags, s\xc3\xa9ries et commentaires.\x00Recherche les livres par titre ou auteur
Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires
Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00D\xc3\xa9finit l\'ID du livre\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00D\xc3\xa9finir le commentaire\x00D\xc3\xa9finit le format de l\'en-t\xc3\xaate de page. %a est remplac\xc3\xa9 par l\'auteur et %t par le titre. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit les epsaces entre les mots en pts. Par d\xc3\xa9faut : %default\x00Indiquer le titre. Par d\xc3\xa9faut : nom du fichier.\x00Enregistrez-vous gratuitement sur ISBNdb.com pour obtenir une clef d\'acc\xc3\xa8s (access key).\x00Taille (MB)\x00Cl\xc3\xa9 de tri pour l\'auteur\x00Cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit comment l\'auteur de ce livre doit \xc3\xaatre class\xc3\xa9. Par exemple, Charles Dickens peut \xc3\xaatre class\xc3\xa9 comme Dickens, Charles.\x00D\xc3\xa9finit les metadata comme le titre et l\'auteur du livre.
Cela peut \xc3\xaatre n\'importe quels mots, s\xc3\xa9par\xc3\xa9s par des virgules.\x00TextLabel\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Le nombre maximum de niveau de liens \xc3\xa0 suivre r\xc3\xa9cursivement. Une valeur \xc3\xa0 0 indique qu\'aucun lien ne sera trait\xc3\xa9. Une valeur n\xc3\xa9gative indique que les tags sont ignor\xc3\xa9s.\x00La famille de police monospace \xc3\xa0 inclure\x00L\'expression r\xc3\xa9guli\xc3\xa8re utilis\xc3\xa9e pour d\xc3\xa9tecter les titres de chapitres. Cette expression rest recherch\xc3\xa9e dans les tags d\'en-t\xc3\xaates (h1-h6). Par d\xc3\xa9faut : %default\x00La famille de police sans-serif \xc3\xa0 inclure\x00La famille de police serif \xc3\xa0 inclure\x00Horodatage\x00Titre\x00D\xc3\xa9tection bas\xc3\xa9e sur les titres\x00La marge de haut de page. Par d\xc3\xa9faut : %default points.\x00Indisponible\x00Inconnu\x00Utilise la couverture &metadata\x00Utilise l\'\xc3\xa9l\xc3\xa9ment
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Configuraci\xc3\xb3n de p\xc3\xa1gina\x00Analizando el archivo LRF\x00Se necesita contrase\xc3\xb1a.\x00Chemin\x00Ruta al archivo de imagen que se utilizar\xc3\xa1 como miniatura\x00Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF\x00Ruta al archivo de imagen a utilizar como portada\x00Preprocesa los archivos Baen HTML para mejorar el archivo LRF generado.\x00Evita la inserci\xc3\xb3n autom\xc3\xa1tica de saltos de p\xc3\xa1gina delante de los cap\xc3\xadtulos detectados.\x00P\xc3\xa1gina anterior\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00Suprimir libros\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00S&ans-serif:\x00Guardar en el disco\x00Buscar por t\xc3\xadtulo, autor, editorial, etiquetas, series y comentarios\x00Busca libros por t\xc3\xadtulo o autor.
Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris
Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00S\xc3\xa9ries\x00\xc3\x8dndice de serie.\x00Insertar el ID del libro\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Insertar comentarios.\x00Establece el formato del encabezado. %a se reemplaza por el autor y %t por el t\xc3\xad\xc2\xadtulo. Por defecto: %default\x00Fija el espacio entre palabras en puntos. Por defecto: %default\x00Insertar t\xc3\xadtulo. Por defecto: nombre_del_archivo.\x00Registraros gratuitamente en ISBNdb.com para obtenir una clave de acceso.\x00Tama\xc3\xb1o (MB)\x00Clave de orden por autor\x00Clave de orden por t\xc3\xad\xc2\xadtulo.\x00Especificar c\xc3\xb3mo ordenar el(los) autor(es) de este libro. Por ejemplo,ordena Federico Garc\xc3\xada Lorca como Lorca, Federico\x00Especificar datos como t\xc3\xadtulo y autor para el libro.
Puede utilizarse qualquier palabra o frase, separada medante comas.\x00TextLabel\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00N\xc3\xbamero m\xc3\xa1ximo de niveles para procesar enlaces recursivamente. El valor 0 (cero) indica que no se seguir\xc3\xa1n. Un valor negativo, ignora las marcas .\x00Familia de fuentes monoespaiadas a incrustar.\x00Expressi\xc3\xb3n regular utilizada para detectar los t\xc3\xadtulos de los cap\xc3\xadtulos. Busca las marcas de encabezado (h1-h6). Por defecto: %default\x00Familia de fuentes sans-serif a incrustar.\x00Familia de fuentes serif per a incrustar.\x00Horodatage\x00T\xc3\xadtulo\x00Detecci\xc3\xb3n basada en el t\xc3\xadtulo\x00Margen superior de la p\xc3\xa1gina. Por defecto: %default px.\x00No disponible\x00Desconocido\x00Utilizar la portada de los &metadatos\x00Utiliza el elemento
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina\x00Estic analitzant el fitxer LRF\x00Es necessita una contrasenya.\x00Pfad\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge que s\'utilitzar\xc3\xa0 com a miniatura\x00Cam\xc3\xad\xc2\xad al fitxer txt que cont\xc3\xa9 el comentari a desar en el fitxer LRF\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge per a utilitzar com a coberta\x00Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat.\x00Evita la inserci\xc3\xb3 autom\xc3\xa0tica de salts de p\xc3\xa0gina abans dels cap\xc3\xad\xc2\xadtols detectats.\x00P\xc3\xa0gina anterior\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00Suprimeix llibres\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00S&ans-serif:\x00Desa al disc\x00Cerca per t\xc3\xad\xc2\xadtol, autor, editorial, etiquetes, series i comentaris\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor.
Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris
Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00Serie\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Indiqueu l\'ID (identificador) del llibre\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Indiqueu els comentaris.\x00Estableix el format de la cap\xc3\xa7alera: %a es reempla\xc3\xa7a per l\'autor i %t pel t\xc3\xad\xc2\xadtol. Per defecte: %default\x00Fixa l\'espai entre paraules en punts. Per defecte: %default\x00Indique el t\xc3\xadtol. Per defecte: nom_del_fitxer.\x00Registreu-vos gratu\xc3\xaftament a ISBNdb.com per a obtenir una clau d\'acc\xc3\xa9s.\x00Grand\xc3\xa0ria (MB)\x00Clau d\'ordre per a l\'autor\x00Clau d\'ordre per al t\xc3\xad\xc2\xadtol.\x00Especifiqueu com s\'ha d\'ordenar l\'autor(s) d\'aquest llibre. Per exemple,ordena Vicent A. Estell\xc3\xa9s com a Estell\xc3\xa9s, Vicent A.\x00Especifiqueu informaci\xc3\xb3 com ara t\xc3\xad\xc2\xadtol i autor per al llibre.
Pot emprar-se qualsevol paraula o frase, separada per comes.\x00TextLabel\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Nombre m\xc3\xa0xim de nivells per a processar enlla\xc3\xa7os recursivament. El valor 0 (cero) vol dir que no s\xc3\xb3n seguits. Amb un valor negatiu, ignora les marques .\x00Fam\xc3\xad\xc2\xadlia de lletres monoespaiades per a incrustar.\x00Expressi\xc3\xb3 regular utilitzada per a detectar els t\xc3\xad\xc2\xadtols dels cap\xc3\xad\xc2\xadtols. Cerca a les marques de encap\xc3\xa7alament (h1-h6). Per defecte: %default\x00Fam\xc3\xad\xc2\xadlia de lletres sans-serif per a incrustar.\x00Fam\xc3\xad\xc2\xadlia de lletres serif per a incrustar.\x00Zeitstempel\x00T\xc3\xad\xc2\xadtol\x00Detecci\xc3\xb3 basada en el t\xc3\xad\xc2\xadtol\x00Marge superior de la p\xc3\xa0gina. Per defecte: %default px.\x00No disponible\x00Desconegut\x00Utilitza la coberta de les &metadades\x00Utilitza l\'element
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort erforderlich\x00Pfad\x00Pfad zu einer Grafik, die als Thumbnail f\xc3\xbcr diese Datei verwendet werden soll \x00Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei gespeichert wird\x00Pfad zur Datei des Umschlagbildes \x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Automatisches Einf\xc3\xbcgen von Seitenumbr\xc3\xbcchen vor ermittelten Kapiteln verhindern.\x00Vorherige Seite\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00S&ans-serif:\x00Auf HD sichern\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen
Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen
Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00W\xc3\xa4hlen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch den Titel ersetzt. Die Voreinstellung ist %default\x00W\xc3\xa4hlen Sie den Abstand in Punkt zwischen einzelnen W\xc3\xb6rtern. Die Voreinstellung ist %default\x00Geben Sie den Titel an. Voreinstellung: Dateiname.\x00Kostenloses Konto anmelden bei ISBNdb.com um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Gr\xc3\xb6\xc3\x9fe (MB)\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Meta-Daten wie den Titel und den Autor des Buches an.
Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00TextLabel\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00H\xc3\xb6chstzahl der rekursiven Verkn\xc3\xbcpfungen (Hyperlinks). Der Wert 0 bedeutet, dass Verkn\xc3\xbcpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle Elemente ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00Der regul\xc3\xa4re Ausdruck zur Ermittlung von Kapitel\xc3\xbcberschriften. Es wird nach mit (h1) - (h6) angegebenen \xc3\x9cberschriften gesucht. Voreinstellung %default\x00Serifenlose Schriftartfamilie einbetten\x00Serife Schriftartfamilie einbetten\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Benutze &Meta-Daten Umschlagbild\x00Das
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Mise en page\x00Parse le fichier LRF\x00Mot de passe n\xc3\xa9cessaire\x00Chemin\x00Chemin d\'une image qui sera utilis\xc3\xa9e comme vignette pour ces fichiers\x00Chemin d\'un fichier texte contenant les commentaires qui seront inclus dans le fichier lrf.\x00Chemin du fichier contenant l\'image \xc3\xa0 utiliser comme couverture\x00Pr\xc3\xa9processe les fichiers HTML Bean pour am\xc3\xa9liorer le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00Emp\xc3\xaache l\'insertion automatique d\'un saut de page avant chaque chapitre d\xc3\xa9tect\xc3\xa9.\x00Page pr\xc3\xa9c\xc3\xa9dente\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suppression du livre\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00S&ans-serif :\x00Enregistrer sur le disque\x00Recherche par titre, auteur, \xc3\xa9diteur, tags, s\xc3\xa9ries et commentaires.\x00Recherche les livres par titre ou auteur
Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires
Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00D\xc3\xa9finit l\'ID du livre\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00D\xc3\xa9finir le commentaire\x00D\xc3\xa9finit le format de l\'en-t\xc3\xaate de page. %a est remplac\xc3\xa9 par l\'auteur et %t par le titre. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit les epsaces entre les mots en pts. Par d\xc3\xa9faut : %default\x00Indiquer le titre. Par d\xc3\xa9faut : nom du fichier.\x00Enregistrez-vous gratuitement sur ISBNdb.com pour obtenir une clef d\'acc\xc3\xa8s (access key).\x00Taille (MB)\x00Cl\xc3\xa9 de tri pour l\'auteur\x00Cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit comment l\'auteur de ce livre doit \xc3\xaatre class\xc3\xa9. Par exemple, Charles Dickens peut \xc3\xaatre class\xc3\xa9 comme Dickens, Charles.\x00D\xc3\xa9finit les metadata comme le titre et l\'auteur du livre.
Cela peut \xc3\xaatre n\'importe quels mots, s\xc3\xa9par\xc3\xa9s par des virgules.\x00TextLabel\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Le nombre maximum de niveau de liens \xc3\xa0 suivre r\xc3\xa9cursivement. Une valeur \xc3\xa0 0 indique qu\'aucun lien ne sera trait\xc3\xa9. Une valeur n\xc3\xa9gative indique que les tags sont ignor\xc3\xa9s.\x00La famille de police monospace \xc3\xa0 inclure\x00L\'expression r\xc3\xa9guli\xc3\xa8re utilis\xc3\xa9e pour d\xc3\xa9tecter les titres de chapitres. Cette expression rest recherch\xc3\xa9e dans les tags d\'en-t\xc3\xaates (h1-h6). Par d\xc3\xa9faut : %default\x00La famille de police sans-serif \xc3\xa0 inclure\x00La famille de police serif \xc3\xa0 inclure\x00Horodatage\x00Titre\x00D\xc3\xa9tection bas\xc3\xa9e sur les titres\x00La marge de haut de page. Par d\xc3\xa9faut : %default points.\x00Indisponible\x00Inconnu\x00Utilise la couverture &metadata\x00Utilise l\'\xc3\xa9l\xc3\xa9ment
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Page Setup\x00Parsing LRF file\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Preprocess Baen HTML files to improve generated LRF.\x00Prevent the automatic insertion of page breaks before detected chapters.\x00Previous Page\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove the selected formats for this book from the database.\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00S&ans-serif:\x00Save to disk\x00Search by title, author, publisher, tags, series and comments\x00Search the list of books by title or author
Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments
Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the format of the header. %a is replaced by the author and %t by the title. Default is %default\x00Set the space between words in pts. Default is %default\x00Set the title. Default: filename.\x00Sign up for a free account from ISBNdb.com to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.
They can be any words or phrases, separated by commas.\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that tags are ignored.\x00The monospace family of fonts to embed\x00The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default\x00The sans-serif family of fonts to embed\x00The serif family of fonts to embed\x00Timestamp\x00Title\x00Title based detection\x00Top margin of page. Default is %default px.\x00Unavailable\x00Unknown\x00Use &metadata cover\x00Use the
libprs500: %1 by Kovid Goyal %2
%3
CSS\x00Configuraci\xc3\xb3n de p\xc3\xa1gina\x00Analizando el archivo LRF\x00Se necesita contrase\xc3\xb1a.\x00Chemin\x00Ruta al archivo de imagen que se utilizar\xc3\xa1 como miniatura\x00Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF\x00Ruta al archivo de imagen a utilizar como portada\x00Preprocesa los archivos Baen HTML para mejorar el archivo LRF generado.\x00Evita la inserci\xc3\xb3n autom\xc3\xa1tica de saltos de p\xc3\xa1gina delante de los cap\xc3\xadtulos detectados.\x00P\xc3\xa1gina anterior\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suprimir libros\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00S&ans-serif :\x00Guardar en el disco\x00Buscar por t\xc3\xadtulo, autor, editorial, etiquetas, series y comentarios\x00Busca libros por t\xc3\xadtulo o autor.
Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris
Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00S\xc3\xa9ries\x00\xc3\x8dndice de serie.\x00Insertar el ID del libro\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Insertar comentarios.\x00Establece el formato del encabezado. %a se reemplaza por el autor y %t por el t\xc3\xad\xc2\xadtulo. Por defecto: %default\x00Fija el espacio entre palabras en puntos. Por defecto: %default\x00Insertar t\xc3\xadtulo. Por defecto: nombre_del_archivo.\x00Registraros gratuitamente en ISBNdb.com para obtenir una clave de acceso.\x00Tama\xc3\xb1o (MB)\x00Clave de orden por autor\x00Clave de orden por t\xc3\xad\xc2\xadtulo.\x00Especificar c\xc3\xb3mo ordenar el(los) autor(es) de este libro. Por ejemplo,ordena Federico Garc\xc3\xada Lorca como Lorca, Federico\x00Especificar datos como t\xc3\xadtulo y autor para el libro.
Puede utilizarse qualquier palabra o frase, separada medante comas.\x00TextLabel\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00N\xc3\xbamero m\xc3\xa1ximo de niveles para procesar enlaces recursivamente. El valor 0 (cero) indica que no se seguir\xc3\xa1n. Un valor negativo, ignora las marcas .\x00Familia de fuentes monoespaiadas a incrustar.\x00Expressi\xc3\xb3n regular utilizada para detectar los t\xc3\xadtulos de los cap\xc3\xadtulos. Busca las marcas de encabezado (h1-h6). Por defecto: %default\x00Familia de fuentes sans-serif a incrustar.\x00Familia de fuentes serif per a incrustar.\x00Horodatage\x00T\xc3\xadtulo\x00Detecci\xc3\xb3n basada en el t\xc3\xadtulo\x00Margen superior de la p\xc3\xa1gina. Por defecto: %default px.\x00No disponible\x00Desconocido\x00Utilizar la portada de los &metadatos\x00Utiliza el elemento
Must be a directory."
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:64
+msgid "Invalid database location "
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:64
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:67
+msgid "Invalid database location"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:67
+msgid "Invalid database location.
Cannot write to "
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:113
#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:271
msgid "Configuration"
@@ -273,16 +407,26 @@ msgstr "Häufig benutzte Verzeichnisse"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:118
msgid "Add a directory to the frequently used directories list"
-msgstr "Ein Verzeichnis zur Liste der häufig genutzten Verzeichnisse hinzufügen"
+msgstr ""
+"Ein Verzeichnis zur Liste der häufig genutzten Verzeichnisse hinzufügen"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:120
msgid "Remove a directory from the frequently used directories list"
-msgstr "Ein Verzeichnis von der Liste der häufig genutzten Verzeichnisse entfernen"
+msgstr ""
+"Ein Verzeichnis von der Liste der häufig genutzten Verzeichnisse entfernen"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37
msgid "ERROR"
msgstr "FEHLER"
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:97
+msgid "Cannot connect"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:98
+msgid "You must specify a valid access key for isbndb.com"
+msgstr ""
+
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:79
msgid "Fetch metadata"
msgstr "Meta-Daten abrufen"
@@ -292,8 +436,12 @@ msgid "Fetching metadata for %1"
msgstr "Meta-Daten abrufen für %1"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:81
-msgid "Sign up for a free account from ISBNdb.com to get an access key."
-msgstr "Kostenloses Konto anmelden bei ISBNdb.com um einen Zugriffsschlüssel zu erhalten."
+msgid ""
+"Sign up for a free account from ISBNdb."
+"com to get an access key."
+msgstr ""
+"Kostenloses Konto anmelden bei ISBNdb.com"
+"a> um einen Zugriffsschlüssel zu erhalten."
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:82
msgid "&Access Key;"
@@ -309,65 +457,134 @@ msgstr "Treffer"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:85
msgid "Select the book that most closely matches your copy from the list below"
-msgstr "Wählen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht"
+msgstr ""
+"Wählen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe "
+"entspricht"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:35
msgid "Active Jobs"
msgstr "Aktive Aufträge"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:91
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:90
msgid "No available formats"
msgstr "Keine verfügbaren Formate"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:92
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:91
msgid "Cannot convert %s as this book has no supported formats"
-msgstr "Kann %s nicht konvertieren, da dieses Buch nicht den bekannten Formaten entspricht"
+msgstr ""
+"Kann %s nicht konvertieren, da dieses Buch nicht den bekannten Formaten "
+"entspricht"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:104
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:95
+msgid "Choose the format to convert into LRF"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:103
msgid "Convert %s to LRF"
msgstr "Konvertiere %s in LRF"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:106
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:105
#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:136
msgid "Set conversion defaults"
msgstr "Voreinstellungen zur Konvertierung wählen"
-#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:288
-msgid "Specify metadata such as title and author for the book.
"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:185
+msgid " is not a valid picture"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:251
+msgid ""
+"Preprocess the file before converting to LRF. This is useful if you know "
+"that the file is from a specific source. Known sources:"
+msgstr ""
+
+#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:252
+msgid "
They can be any words or phrases, separated by commas."
-msgstr "Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach Büchern.
Sie können für Etiketten durch Kommata getrennte Wörter oder Sätze verwenden."
+msgid ""
+"Tags categorize the book. This is particularly useful while searching. "
+"
They can be any words or phrases, separated by commas."
+msgstr ""
+"Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach "
+"Büchern.
Sie können für Etiketten durch Kommata getrennte Wörter "
+"oder Sätze verwenden."
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:593
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:132
@@ -604,15 +830,23 @@ msgstr "Hilfe für das jeweilige Objekt"
#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633
msgid ""
-"