diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..741f87bb --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,49 @@ +## How to contribute to Calibre-Web + +First of all, we would like to thank you for reading this text. we are happy you are willing to contribute to Calibre-Web + +### **General** + +**Communication language** is english. Google translated texts are not as bad as you might think, they are usually understandable, so don't worry if you generate your post that way. + +**Calibre-Web** is not **Calibre**. If you are having a question regarding Calibre please post this at their [repository](https://github.com/kovidgoyal/calibre). + +**Docker-Containers** of Calibre-Web are maintained by different persons than the people who drive Calibre-Web. If we come to the conclusion during our analysis that the problem is related to Docker, we might ask you to open a new issue at the reprository of the Docker Container. + +If you are having **Basic Installation Problems** with python or it's dependencies, please consider using your favorite search engine to find a solution. In case you can't find a solution, we are happy to help you. + +We can offer only very limited support regarding configuration of **Reverse-Proxy Installations**, **OPDS-Reader** or other programs in combination with Calibre-Web. + +### **Translation** + +Some of the user languages in Calibre-Web having missing translations. We are happy to add the missing texts if you are translate them. Create a Pull Request, create an issue with the .po file attached, or write an email to "ozzie.fernandez.isaacs@googlemail.com" with attached translation file. To display all book languages in your native language an additional file is used (iso_language_names.py). The content of this file is autogenerated with the corresponding translations of Calibre, please do not edit this file on your own. + +### **Documentation** + +The Calibre-Web documentation is hosted in the Github [Wiki](https://github.com/janeczku/calibre-web/wiki). The Wiki is open to everybody, if you find a problem, feel free to correct it. If information is missing, you are welcome to add it. The content will be reviewed time by time. Please try to be consitent with the form with the other Wiki pages (e.g. the project name is Calibre-Web with 2 capital letters and a dash in between). + +### **Reporting a bug** + +Do not open up a GitHub issue if the bug is a **security vulnerability** in Calibre-Web. Please write intead an email to "ozzie.fernandez.isaacs@googlemail.com". + +Ensure the ***bug was not already reported** by searching on GitHub under [Issues](https://github.com/janeczku/calibre-web/issues). Please also check if a solution for your problem can be found in the [wiki](https://github.com/janeczku/calibre-web/wiki). + +If you're unable to find an **open issue** addressing the problem, open a [new one](https://github.com/janeczku/calibre-web/issues/new?assignees=&labels=&template=bug_report.md&title=). Be sure to include a **title** and **clear description**, as much relevant information as possible, the **issue form** helps you providing the right information. Deleting the form and just pasting the stack trace doesn't speed up fixing the problem. If your issue could be resolved, consider closing the issue. + +### **Feature Request** + +If there is afeature missing in Calibre-Web and you can't find a feature request in the [Issues](https://github.com/janeczku/calibre-web/issues) section, you could create a [feature request](https://github.com/janeczku/calibre-web/issues/new?assignees=&labels=&template=feature_request.md&title=). +We will not extend Calibre-Web with any more login abilitys or add further files storages, or file syncing ability. Furthermore Calibre-Web is made for home usage for company inhouse usage, so requests regarding any sorts of social interaction capability, payment routines, search engine or web site analytics integration will not be implemeted. + +### **Contributing code to Calibre-Web** + +Open a new GitHub pull request with the patch. Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable. + +In case your code enhances features of Calibre-Web: Create your pull request for the development branch if your enhancement consits of more than some lines of code in a local section of Calibre-Webs code. This makes it easier to test it and check all implication before it's made public. + +Please check if your code runs on Python 2.7 (still necessary in 2020) and mainly on python 3. If possible and the feature is related to operating system functions, try to check it on Windows and Linux. +Calibre-Web is automatically tested on Linux in combination with python 3.7. The code for testing is in a [seperate repo](https://github.com/OzzieIsaacs/calibre-web-test) on Github. It uses unittest and performs real system tests with selenium, would be great if you could consider also writing some tests. +A static code analysis is done by Codacy, but it's partly broken and doesn't run automatically. You could check your code with ESLint before contributing, a configuration file can be found in the projects root folder. + + + diff --git a/README.md b/README.md index 88db2126..1487c6d9 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Calibre-Web is a web app providing a clean interface for browsing, reading and d - full graphical setup - User management with fine-grained per-user permissions - Admin interface -- User Interface in czech, dutch, english, finnish, french, german, hungarian, italian, japanese, khmer, polish, russian, simplified chinese, spanish, swedish, ukrainian +- User Interface in czech, dutch, english, finnish, french, german, hungarian, italian, japanese, khmer, polish, russian, simplified chinese, spanish, swedish, turkish, ukrainian - OPDS feed for eBook reader apps - Filter and search by titles, authors, tags, series and language - Create a custom book collection (shelves) diff --git a/cps/admin.py b/cps/admin.py index 69316e8f..fb26931e 100644 --- a/cps/admin.py +++ b/cps/admin.py @@ -547,7 +547,7 @@ def _configuration_update_helper(): if config.config_login_type == constants.LOGIN_LDAP: reboot_required |= _config_string("config_ldap_provider_url") reboot_required |= _config_int("config_ldap_port") - # _config_string("config_ldap_schema") + reboot_required |= _config_int("config_ldap_authentication") reboot_required |= _config_string("config_ldap_dn") reboot_required |= _config_string("config_ldap_serv_username") reboot_required |= _config_string("config_ldap_user_object") @@ -569,9 +569,13 @@ def _configuration_update_helper(): return _configuration_result(_('Please Enter a LDAP Provider, ' 'Port, DN and User Object Identifier'), gdriveError) - - if not config.config_ldap_serv_username or not bool(config.config_ldap_serv_password): - return _configuration_result('Please Enter a LDAP Service Account and Password', gdriveError) + if config.config_ldap_authentication > constants.LDAP_AUTH_ANONYMOUS: + if config.config_ldap_authentication > constants.LDAP_AUTH_UNAUTHENTICATE: + if not config.config_ldap_serv_username or not bool(config.config_ldap_serv_password): + return _configuration_result('Please Enter a LDAP Service Account and Password', gdriveError) + else: + if not config.config_ldap_serv_username: + return _configuration_result('Please Enter a LDAP Service Account', gdriveError) #_config_checkbox("config_ldap_use_ssl") #_config_checkbox("config_ldap_use_tls") @@ -830,9 +834,8 @@ def edit_user(user_id): if request.method == "POST": to_save = request.form.to_dict() if "delete" in to_save: - if ub.session.query(ub.User).filter(and_(ub.User.role.op('&') - (constants.ROLE_ADMIN)== constants.ROLE_ADMIN, - ub.User.id != content.id)).count(): + if ub.session.query(ub.User).filter(ub.User.role.op('&')(constants.ROLE_ADMIN) == constants.ROLE_ADMIN, + ub.User.id != content.id).count(): ub.session.query(ub.User).filter(ub.User.id == content.id).delete() ub.session.commit() flash(_(u"User '%(nick)s' deleted", nick=content.nickname), category="success") @@ -841,6 +844,12 @@ def edit_user(user_id): flash(_(u"No admin user remaining, can't delete user", nick=content.nickname), category="error") return redirect(url_for('admin.admin')) else: + if not ub.session.query(ub.User).filter(ub.User.role.op('&')(constants.ROLE_ADMIN) == constants.ROLE_ADMIN, + ub.User.id != content.id).count() and \ + not 'admin_role' in to_save: + flash(_(u"No admin user remaining, can't remove admin role", nick=content.nickname), category="error") + return redirect(url_for('admin.admin')) + if "password" in to_save and to_save["password"]: content.password = generate_password_hash(to_save["password"]) anonymous = content.is_anonymous diff --git a/cps/config_sql.py b/cps/config_sql.py index 414f2fe3..241e583a 100644 --- a/cps/config_sql.py +++ b/cps/config_sql.py @@ -95,12 +95,10 @@ class _Settings(_Base): config_ldap_provider_url = Column(String, default='example.org') config_ldap_port = Column(SmallInteger, default=389) - # config_ldap_schema = Column(String, default='ldap') + config_ldap_authentication = Column(SmallInteger, default=constants.LDAP_AUTH_SIMPLE) config_ldap_serv_username = Column(String, default='cn=admin,dc=example,dc=org') config_ldap_serv_password = Column(String, default="") config_ldap_encryption = Column(SmallInteger, default=0) - # config_ldap_use_tls = Column(Boolean, default=False) - # config_ldap_require_cert = Column(Boolean, default=False) config_ldap_cert_path = Column(String, default="") config_ldap_dn = Column(String, default='dc=example,dc=org') config_ldap_user_object = Column(String, default='uid=%s') diff --git a/cps/constants.py b/cps/constants.py index 3aca8a56..11ade540 100644 --- a/cps/constants.py +++ b/cps/constants.py @@ -93,7 +93,10 @@ AUTO_UPDATE_NIGHTLY = 1 << 2 LOGIN_STANDARD = 0 LOGIN_LDAP = 1 LOGIN_OAUTH = 2 -# LOGIN_OAUTH_GOOGLE = 3 + +LDAP_AUTH_ANONYMOUS = 0 +LDAP_AUTH_UNAUTHENTICATE = 1 +LDAP_AUTH_SIMPLE = 0 DEFAULT_MAIL_SERVER = "mail.example.org" diff --git a/cps/iso_language_names.py b/cps/iso_language_names.py index f6a9e8eb..2e6ec680 100644 --- a/cps/iso_language_names.py +++ b/cps/iso_language_names.py @@ -8,6 +8,8 @@ from __future__ import unicode_literals +# This file is autogenerated, do NOT add, change, or delete ANY string +# If you need help or assistance for adding a new language, please contact the project team # map iso639 language codes to language names, translated @@ -852,6 +854,379 @@ LANGUAGE_NAMES = { "zxx": "Geen linguïstische inhoud", "zza": "Zaza" }, + "tr": { + "abk": "Abhazca", + "ace": "Achinese", + "ach": "Acoli", + "ada": "Adangme", + "ady": "Adyghe", + "aar": "Afar", + "afh": "Afrihili", + "afr": "Afrikanca", + "ain": "Ainu (Japonca)", + "aka": "Akanca (Afrika dili)", + "akk": "Akatça", + "sqi": "Albanian", + "ale": "Alaskaca", + "amh": "Etiyopyaca", + "anp": "Angika", + "ara": "Arapça", + "arg": "Aragonca (İspanya)", + "arp": "Arapaho (Kuzey Amerika yerlileri)", + "arw": "Arawak (Surinam)", + "hye": "Ermenice", + "asm": "Assamese (Hindistan)", + "ast": "Asturyasca", + "ava": "Avarca", + "ave": "Avestan (Eski İran)", + "awa": "Awadhi (Hindistan)", + "aym": "Aymara (Güney Amerika)", + "aze": "Azerice", + "ban": "Balice (Bali adaları)", + "bal": "Belucice (İran)", + "bam": "Bambara (Mali)", + "bas": "Basa (Kamerun)", + "bak": "Başkırca", + "eus": "Baskça", + "bej": "Beja (Eritre; Sudan)", + "bel": "Beyaz Rusça", + "bem": "Bemba (Zambia)", + "ben": "Bengalce", + "bho": "Bhojpuri (Hindistan)", + "bik": "Bikol (Filipinler)", + "byn": "Bilin", + "bin": "Bini (Afrika)", + "bis": "Bislama (Vanuatu; Kuzey Pasifik)", + "zbl": "Blis Sembolleri", + "bos": "Boşnakça", + "bra": "Braj (Hindistan)", + "bre": "Bretonca", + "bug": "Buginese (Endonezya)", + "bul": "Bulgarca", + "bua": "Buriat (Moğolistan)", + "mya": "Burmaca", + "cad": "Caddo (Kuzey Amerika yerlileri)", + "cat": "Katalanca", + "ceb": "Cebuano (Filipinler)", + "chg": "Çağatayca", + "cha": "Chamorro (Guam adaları)", + "che": "Çeçence", + "chr": "Cherokee (Kuzey Amerika yerlileri)", + "chy": "Cheyenne (kuzey Amerika yerlileri)", + "chb": "Chibcha (Kolombiya)", + "zho": "Çince", + "chn": "Chinook lehçesi (Kuzey Batı Amerika kıyıları)", + "chp": "Chipewyan (Kuzey Amerika yerlileri)", + "cho": "Choctaw (Kuzey Amerika yerlileri)", + "chk": "Chuukese", + "chv": "Çuvaş (Türkçe)", + "cop": "Kıptice (Eski Mısır)", + "cor": "Cornish (Kelt)", + "cos": "Korsikaca", + "cre": "Cree (Kuzey Amerika yerlileri)", + "mus": "Creek", + "hrv": "Hırvatça", + "ces": "Çekçe", + "dak": "Dakota (Kuzey Amerika yerlileri)", + "dan": "Danimarkaca; Danca", + "dar": "Dargwa (Dağıstan)", + "del": "Delaware (Kuzey Amerika yerlileri)", + "div": "Dhivehi", + "din": "Dinka (Sudan)", + "doi": "Dogri (makro dili)", + "dgr": "Dogrib (Kanada)", + "dua": "Duala (Afrika)", + "nld": "Flâmanca (Hollanda dili)", + "dyu": "Dyula (Burkina Faso; Mali)", + "dzo": "Dzongkha (Butan)", + "efi": "Efik (Afrika)", + "egy": "Mısırca (Eski)", + "eka": "Ekajuk (Afrika)", + "elx": "Elamca", + "eng": "İngilizce", + "myv": "Erzya dili", + "epo": "Esperanto", + "est": "Estonca", + "ewe": "Ewe (Afrika)", + "ewo": "Ewondo (Afrika)", + "fan": "Fang (Ekvatoryal Guinea)", + "fat": "Fanti (Afrika)", + "fao": "Faroece", + "fij": "Fiji dili", + "fil": "Filipince", + "fin": "Fince", + "fon": "Fon (Benin)", + "fra": "Fransızca", + "fur": "Friulian (İtalya)", + "ful": "Fulah (Afrika)", + "gaa": "Ganaca", + "glg": "Galce", + "lug": "Ganda Dili", + "gay": "Gayo (Sumatra)", + "gba": "Gbaya (Orta Afrika Cumhuriyeti)", + "gez": "Geez (Etiyopya)", + "kat": "Gürcüce", + "deu": "Almanca", + "gil": "Kiribati dili", + "gon": "Gondi (Hindistan)", + "gor": "Gorontalo (Endonezya)", + "got": "Gotik", + "grb": "Grebo (Liberya)", + "grn": "Guarani (Paraguay)", + "guj": "Gucaratça", + "gwi": "Gwichʼin", + "hai": "Haida (Kuzey Amerika yerlileri)", + "hau": "Hausa Dili", + "haw": "Havai Dili", + "heb": "İbranice", + "her": "Herero Dili", + "hil": "Hiligaynon", + "hin": "Hintçe", + "hmo": "Hiri Motu", + "hit": "Hititçe", + "hmn": "Hmong", + "hun": "Macarca", + "hup": "Hupa", + "iba": "Iban", + "isl": "İzlandaca", + "ido": "Ido Dili", + "ibo": "Igbo Dili", + "ilo": "Iloko", + "ind": "Endonezyaca", + "inh": "İnguşca", + "ina": "Interlingua (Uluslararası Yardımcı Dil Kurumu)", + "ile": "Interlingue", + "iku": "Inuktitut", + "ipk": "Inupiak Dili", + "gle": "İrlandaca", + "ita": "İtalyanca", + "jpn": "Japonca", + "jav": "Cava Dili", + "jrb": "Yahudi-Arapçası", + "jpr": "Yahudi-Farsça", + "kbd": "Kabardian", + "kab": "Kabyle", + "kac": "Kachin", + "kal": "Kalaallisut", + "xal": "Kalmyk", + "kam": "Kamba (Kenya)", + "kan": "Kannada", + "kau": "Kanuri Dili", + "kaa": "Kara-Kalpak", + "krc": "Karachay-Balkar", + "krl": "Karelian", + "kas": "Keşmirce", + "csb": "Kashubian (Lehçe diyalekti)", + "kaw": "Kawi", + "kaz": "Kazakça", + "kha": "Khasi", + "kho": "Khotanese", + "kik": "Kikuyu Dili", + "kmb": "Kimbundu", + "kin": "Kinyarwanda", + "kir": "Kırgızca", + "tlh": "Klingon", + "kom": "Komi Dili", + "kon": "Kongo Dili", + "kok": "Konkani (makro dil)", + "kor": "Korece", + "kos": "Kosraean", + "kpe": "Kpelle", + "kua": "Kuanyama Dili", + "kum": "Kumyk", + "kur": "Kürtçe", + "kru": "Kurukh", + "kut": "Kutenai", + "lad": "Ladino", + "lah": "Lahnda", + "lam": "Lamba", + "lao": "Laos Dili", + "lat": "Latince", + "lav": "Letonca", + "lez": "Lezghian", + "lim": "Liburg Dili", + "lin": "Lingala Dili", + "lit": "Litvanyaca", + "jbo": "Lojban dili", + "loz": "Lozi", + "lub": "Luba Katanga Dili", + "lua": "Luba-Lulua", + "lui": "Luiseno", + "smj": "Lule Sami", + "lun": "Lunda", + "luo": "Luo (Kenya ve Tanzanya)", + "lus": "Lushai", + "ltz": "Lüksemburg Dili", + "mkd": "Makedonca", + "mad": "Madurese", + "mag": "Magahi", + "mai": "Maithili dili", + "mak": "Makasar", + "mlg": "Madagaskar Dili", + "msa": "Malay (makro dili)", + "mal": "Malayalam", + "mlt": "Maltaca", + "mnc": "Manchu", + "mdr": "Mandar", + "man": "Mandingo", + "mni": "Manipuri dili", + "glv": "Manx (Galler)", + "mri": "Maori Dili", + "arn": "Mapudungun", + "mar": "Marathi", + "chm": "Mari (Rusya)", + "mah": "Marshall Dili", + "mwr": "Marwari", + "mas": "Masai", + "men": "Mende (Sierra Leone)", + "mic": "Mi'kmak", + "min": "Minangkabau", + "mwl": "Mirandese", + "moh": "Mohawk", + "mdf": "Moşka", + "lol": "Mongo", + "mon": "Moğol Dili", + "mos": "Mossi", + "mul": "Çoklu diller", + "nqo": "N'Ko", + "nau": "Nauru", + "nav": "Navajo Dili", + "ndo": "Ndonga Dili", + "nap": "Neapolitan", + "nia": "Nias", + "niu": "Niuean", + "zxx": "Hiçbir dil içeriği yok", + "nog": "Nogai", + "nor": "Norveçce", + "nob": "Norveççe Bokmal", + "nno": "Norveççe Nynorsk", + "nym": "Nyamwezi", + "nya": "Nyanja", + "nyn": "Nyankole", + "nyo": "Nyoro", + "nzi": "Nzima", + "oci": "Oksitanca (1500 sonrası)", + "oji": "Ojibwa Dili", + "orm": "Oromo Dili", + "osa": "Osage", + "oss": "Osetya Dili", + "pal": "Pehlevi", + "pau": "Palauan", + "pli": "Pali Dili", + "pam": "Pampanga", + "pag": "Pangasinan", + "pan": "Pencabi Dili", + "pap": "Papiamento", + "fas": "Farsça", + "phn": "Fenikçe", + "pon": "Pohnpeian", + "pol": "Polonyaca", + "por": "Portekizce", + "pus": "Pushto", + "que": "Quechua", + "raj": "Rajasthani", + "rap": "Rapanui", + "ron": "Rumence", + "roh": "Romanca", + "rom": "Çingene Dili", + "run": "Kirundi", + "rus": "Rusça", + "smo": "Samoa Dili", + "sad": "Sandawe", + "sag": "Sangho", + "san": "Sanskritçe", + "sat": "Santali dili", + "srd": "Sardinya", + "sas": "Sasak", + "sco": "İskoç lehçesi", + "sel": "Selkup", + "srp": "Sırpça", + "srr": "Serer", + "shn": "Shan", + "sna": "Shona", + "scn": "Sicilyalı", + "sid": "Sidamo", + "bla": "Siksika (Kuzey Amerika yerlileri)", + "snd": "Sindhi", + "sin": "Sinhala Dili", + "den": "Slave (Athapascan; Kuzey Amerika yerlileri)", + "slk": "Slovakça", + "slv": "Slovence", + "sog": "Sogdian", + "som": "Somali Dili", + "snk": "Soninke", + "spa": "İspanyolca", + "srn": "Sranan Tongo", + "suk": "Sukuma", + "sux": "Sümerce", + "sun": "Sudan Dili", + "sus": "Susu", + "swa": "Swahili (makro dil)", + "ssw": "Siswati", + "swe": "İsveçce", + "syr": "Süryanice", + "tgl": "Tagalog", + "tah": "Tahitice", + "tgk": "Tacikçe", + "tmh": "Tamashek", + "tam": "Tamilce", + "tat": "Tatarca", + "tel": "Telugu", + "ter": "Tereno", + "tet": "Tetum", + "tha": "Taylandça", + "bod": "Tibetçe", + "tig": "Tigre", + "tir": "Tigrinya Dili", + "tem": "Timne", + "tiv": "Tiv", + "tli": "Tlingit", + "tpi": "Tok Pisin", + "tkl": "Tokelau", + "tog": "Tonga (Nyasa)", + "ton": "Tonga", + "tsi": "Tsimshian", + "tso": "Tsonga", + "tsn": "Setswana", + "tum": "Tumbuka", + "tur": "Türkçe", + "tuk": "Türkmence", + "tvl": "Tuvalu", + "tyv": "Tuvinian", + "twi": "Twi", + "udm": "Udmurt", + "uga": "Ugarit Çivi Yazısı", + "uig": "Uygurca", + "ukr": "Ukraynaca", + "umb": "Umbundu", + "mis": "Şifresiz diller", + "und": "Belirlenemeyen", + "urd": "Urduca", + "uzb": "Özbekçe", + "vai": "Vai", + "ven": "Venda Dili", + "vie": "Vietnamca", + "vol": "Volapük", + "vot": "Votic", + "wln": "Valonca", + "war": "Waray (Filipinler)", + "was": "Vasho", + "cym": "Gal Dili", + "wal": "Wolaytta", + "wol": "Wolof", + "xho": "Xhosa", + "sah": "Yakut", + "yao": "Yao", + "yap": "Yapese", + "yid": "Yidiş", + "yor": "Yoruba", + "zap": "Zapotec", + "zza": "Zaza", + "zen": "Zenaga", + "zha": "Zuang Dili", + "zul": "Zulu", + "zun": "Zuni" + }, "fr": { "aar": "afar", "abk": "abkhaze", @@ -4935,7 +5310,7 @@ LANGUAGE_NAMES = { "pon": "Pohnpeian", "por": "Portuguese", "pro": "Provençal; Old (to 1500)", - "pus": "Pushto", + "pus": "Pashto", "que": "Quechua", "raj": "Rajasthani", "rap": "Rapanui", @@ -6195,7 +6570,7 @@ LANGUAGE_NAMES = { "pon": "Pohnpeian", "por": "Portuguese", "pro": "Provençal; Old (to 1500)", - "pus": "Pushto", + "pus": "Pashto", "que": "Quechua", "raj": "Rajasthani", "rap": "Rapanui", @@ -6615,7 +6990,7 @@ LANGUAGE_NAMES = { "pon": "Pohnpeian", "por": "Portuguese", "pro": "Provençal; Old (to 1500)", - "pus": "Pushto", + "pus": "Pashto", "que": "Quechua", "raj": "Rajasthani", "rap": "Rapanui", diff --git a/cps/services/simpleldap.py b/cps/services/simpleldap.py index 841f61e1..b6fd0ac2 100644 --- a/cps/services/simpleldap.py +++ b/cps/services/simpleldap.py @@ -42,11 +42,17 @@ def init_app(app, config): app.config['LDAP_SCHEMA'] = 'ldaps' else: app.config['LDAP_SCHEMA'] = 'ldap' - # app.config['LDAP_SCHEMA'] = config.config_ldap_schema - app.config['LDAP_USERNAME'] = config.config_ldap_serv_username - if config.config_ldap_serv_password is None: - config.config_ldap_serv_password = '' - app.config['LDAP_PASSWORD'] = base64.b64decode(config.config_ldap_serv_password) + if config.config_ldap_authentication > constants.LDAP_AUTH_ANONYMOUS: + if config.config_ldap_authentication > constants.LDAP_AUTH_UNAUTHENTICATE: + if config.config_ldap_serv_password is None: + config.config_ldap_serv_password = '' + app.config['LDAP_PASSWORD'] = base64.b64decode(config.config_ldap_serv_password) + else: + app.config['LDAP_PASSWORD'] = base64.b64decode("") + app.config['LDAP_USERNAME'] = config.config_ldap_serv_username + else: + app.config['LDAP_USERNAME'] = "" + app.config['LDAP_PASSWORD'] = base64.b64decode("") if bool(config.config_ldap_cert_path): app.config['LDAP_REQUIRE_CERT'] = True app.config['LDAP_CERT_PATH'] = config.config_ldap_cert_path @@ -90,7 +96,7 @@ def bind_user(username, password): log.debug("LDAP login '%s': %r", username, result) return result is not None, None return None, None # User not found - except (TypeError, AttributeError) as ex: + except (TypeError, AttributeError, KeyError) as ex: error = ("LDAP bind_user: %s" % ex) return None, error except LDAPException as ex: diff --git a/cps/static/js/get_meta.js b/cps/static/js/get_meta.js index ffaf0473..3ad5ffd8 100644 --- a/cps/static/js/get_meta.js +++ b/cps/static/js/get_meta.js @@ -73,9 +73,9 @@ $(function () { if (showFlag === 1) { $("#meta-info").html(""); } - if ((ggDone == 3 || (ggDone == 1 && ggResults.length === 0)) && - (dbDone == 3 || (ggDone == 1 && dbResults.length === 0)) && - (cvDone == 3 || (ggDone == 1 && cvResults.length === 0))) { + if ((ggDone === 3 || (ggDone === 1 && ggResults.length === 0)) && + (dbDone === 3 || (ggDone === 1 && dbResults.length === 0)) && + (cvDone === 3 || (ggDone === 1 && cvResults.length === 0))) { $("#meta-info").html("

" + msg.no_result + "

"); return; } @@ -191,7 +191,7 @@ $(function () { var dateFomers = ""; if (result.store_date) { dateFomers = result.store_date.split("-"); - }else{ + } else { dateFomers = result.date_added.split("-"); } var publishedYear = parseInt(dateFomers[0]); @@ -202,12 +202,12 @@ $(function () { var book = { id: result.id, - title: seriesTitle + ' #' +('00' + result.issue_number).slice(-3) + ' - ' + result.name, + title: seriesTitle + " #" + ("00" + result.issue_number).slice(-3) + " - " + result.name, authors: result.author || [], description: result.description, publisher: "", publishedDate: publishedDate || "", - tags: ['Comics', seriesTitle], + tags: ["Comics", seriesTitle], rating: 0, series: seriesTitle || "", cover: result.image.original_url, diff --git a/cps/static/js/main.js b/cps/static/js/main.js index 5738f36e..f005e3b7 100644 --- a/cps/static/js/main.js +++ b/cps/static/js/main.js @@ -211,8 +211,7 @@ $(function() { data: {"parameter":2}, success: function success(data) { $("#spinner2").hide(); - ResultText = data.text; - $("#DialogContent").html(ResultText); + $("#DialogContent").html(data.text); $("#DialogFinished").removeClass("hidden"); } }); @@ -298,7 +297,7 @@ $(function() { $(".discover .row").isotope("layout"); }); - $('#import_ldap_users').click(function() { + $("#import_ldap_users").click(function() { $("#DialogHeader").addClass("hidden"); $("#DialogFinished").addClass("hidden"); $("#DialogContent").html(""); @@ -311,8 +310,7 @@ $(function() { url: path + "/../../import_ldap_users", success: function success(data) { $("#spinner2").hide(); - ResultText = data.text; - $("#DialogContent").html(ResultText); + $("#DialogContent").html(data.text); $("#DialogFinished").removeClass("hidden"); } }); diff --git a/cps/static/js/table.js b/cps/static/js/table.js index 1478a519..7572159e 100644 --- a/cps/static/js/table.js +++ b/cps/static/js/table.js @@ -149,12 +149,10 @@ $(function() { $.ajax({ url: path + "/../../ajax/editrestriction/" + type, type: "Post", - data: row //$(this).closest("form").serialize() + "&" + $(this)[0].name + "=", + data: row }); }); $("[id^=submit_]").click(function(event) { - // event.stopPropagation(); - // event.preventDefault(); $(this)[0].blur(); $.ajax({ url: path + "/../../ajax/addrestriction/" + type, diff --git a/cps/templates/config_edit.html b/cps/templates/config_edit.html index e9abdfde..553be036 100644 --- a/cps/templates/config_edit.html +++ b/cps/templates/config_edit.html @@ -233,7 +233,6 @@
-
-
- - + +
-
- - +
+
+ + +
+
+
+
+ + +
diff --git a/cps/templates/user_edit.html b/cps/templates/user_edit.html index cb473f38..6adae1e7 100644 --- a/cps/templates/user_edit.html +++ b/cps/templates/user_edit.html @@ -77,7 +77,7 @@
- +
{% if ( g.user and g.user.role_admin() and not new_user ) %} {{_('Add Allowed/Denied Tags')}} diff --git a/cps/translations/cs/LC_MESSAGES/messages.po b/cps/translations/cs/LC_MESSAGES/messages.po index b2159797..600cc221 100644 --- a/cps/translations/cs/LC_MESSAGES/messages.po +++ b/cps/translations/cs/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-01-08 11:37+0000\n" "Last-Translator: Lukas Heroudek \n" "Language: cs_CZ\n" @@ -45,8 +45,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Neznámý" @@ -59,7 +59,7 @@ msgstr "Stránka správce" msgid "UI Configuration" msgstr "Konfigurace uživatelského rozhraní" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Konfigurace Calibre-Web aktualizována" @@ -89,185 +89,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Základní konfigurace" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Vyplňte všechna pole!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Přidat nového uživatele" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "E-mail není z platné domény" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Byl nalezen existující účet pro tuto e-mailovou adresu nebo přezdívku." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Uživatel '%(user)s' vytvořen" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Změnit nastavení e-mailového serveru" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Zkušební e-mail úspěšně odeslán na %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Při odesílání zkušebního e-mailu došlo k chybě: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Prvně nastavte svou e-mailovou adresu..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Nastavení e-mailového serveru aktualizováno" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Uživatel '%(nick)s' smazán" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Nezbývá žádný správce, nemůžete jej odstranit" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Byl nalezen existující účet pro tuto e-mailovou adresu." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Upravit uživatele %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Toto uživatelské jméno je již použito" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Uživatel '%(nick)s' aktualizován" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Došlo k neznámé chybě." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Heslo pro uživatele %(user)s resetováno" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Neznámá chyba. Opakujte prosím později." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Nejprve nakonfigurujte nastavení pošty SMTP..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Prohlížeč log souborů" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Požadování balíčku aktualizace" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Stahování balíčku aktualizace" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Rozbalování balíčku aktualizace" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Nahrazování souborů" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Databázová připojení jsou uzavřena" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Zastavuji server" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Aktualizace dokončena, klepněte na tlačítko OK a znovu načtěte stránku" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Aktualizace selhala:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP chyba" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Chyba připojení" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Vypršel časový limit při navazování spojení" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Všeobecná chyba" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -275,89 +275,89 @@ msgstr "" msgid "not configured" msgstr "není nakonfigurováno" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Chyba otevírání eknihy. Soubor neexistuje nebo není přístupný" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "upravit metadata" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Soubor s příponou '%(ext)s' nelze odeslat na tento server" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Soubor, který má být odeslán musí mít příponu" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nepodařilo se vytvořit cestu %(path)s (oprávnění odepřeno)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Uložení souboru %(file)s se nezdařilo." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Formát souboru %(ext)s přidán do %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Obal není soubor jpg, nelze uložit" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s není platným jazykem" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadata úspěšně aktualizována" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Chyba při úpravách knihy, zkontrolujte prosím log pro podrobnosti" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Soubor %(filename)s nemohl být uložen do dočasného adresáře" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Nahraná kniha pravděpodobně existuje v knihovně, zvažte prosím změnu před nahráním nové: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Nepodařilo se uložit soubor %(file)s (Oprávnění odepřeno)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Nepodařilo se smazat soubor %(file)s (Oprávnění odepřeno)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Soubor %(file)s nahrán" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Chybí zdrojový nebo cílový formát pro převod" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kniha byla úspěšně zařazena do fronty pro převod do %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Při převodu této knihy došlo k chybě: %(res)s" @@ -541,7 +541,7 @@ msgstr "Přihlášení pomocí Google selhalo" msgid "Failed to fetch user info from Google." msgstr "Nepodařilo se načíst informace o uživateli z Google" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "nyní jste přihlášeni jako: '%(nickname)s'" @@ -685,122 +685,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "Změnit pořadí Police: '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Nedávno přidáné" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Zobrazit nedávné knihy" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Žhavé knihy" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Přečtené knihy" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Zobrazit prečtené a nepřečtené" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Nepřečtené knihy" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Zobrazit nepřečtené" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Objevte" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Zobrazit náhodné knihy" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Kategorie" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Zobrazit výběr kategorie" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Série" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Zobrazit výběr sérií" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Autoři" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Zobrazit výběr autora" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Vydavatelé" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Zobrazit výběr vydavatele" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Jazyky" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Zobrazit výběr jazyka" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Hodnocení" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Zobrazit výběr hodnocení" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Formáty souborů" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Zobrazit výběr formátů" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Neočekávaná data při čtení informací o aktualizaci" @@ -830,223 +822,223 @@ msgstr "Nová aktualizace k dispozici. Klepnutím na tlačítko níže aktualizu msgid "Click on the button below to update to the latest stable version." msgstr "Klepnutím na tlačítko níže aktualizujte na nejnovější stabilní verzi." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Nedávno přidané knihy" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Objevte (Náhodné knihy)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Knihy" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Autoři: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Vydavatel: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Série: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Hodnocení: %(rating)s stars" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Soubor formátů: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Kategorie: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Jazyky: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Seznam hodnocení" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Seznam formátů" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Úlohy" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Hledat" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Vydáno po " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Vydáno před " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Hodnocení <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Hodnocení >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "hledat" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Kniha byla úspěšně zařazena do fronty pro odeslání na %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Při odesílání této knihy došlo k chybě: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Nejprve nakonfigurujte vaši kindle e-mailovou adresu.." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "E-mailový server není nakonfigurován, kontaktujte svého správce!" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "registrovat" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Váš e-mail nemá povolení k registraci" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Potvrzovací e-mail byl odeslán na váš účet." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Toto uživatelské jméno nebo e-mailová adresa jsou již používány." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Nelze aktivovat ověření LDAP" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Špatné uživatelské jméno nebo heslo" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Nové heslo bylo zasláno na váši emailovou adresu" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Zadejte platné uživatelské jméno pro obnovení hesla" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Nyní jste přihlášeni jako: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "přihlásit se" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Token nenalezen" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Token vypršel" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Úspěch! Vraťte se prosím do zařízení" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s profil" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profil aktualizován" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Chyba při otevíraní eKnihy. Soubor neexistuje nebo neni přístupný:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Číst knihu" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Chyba při otevírání eKnihy. Soubor neexistuje nebo není přístupný" @@ -1247,8 +1239,8 @@ msgid "OK" msgstr "OK" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1295,7 +1287,7 @@ msgstr "Smazat knihu" msgid "Delete formats:" msgstr "Smazat formáty:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1325,148 +1317,120 @@ msgstr "Převést knihu" msgid "Book Title" msgstr "Název knihy" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Autor" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Popis" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Štítky" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Hodnocení" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Adresa URL obalu (jpg, obal je stažen a uložen v databázi, pole je potom opět prázdné)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Nahrát obal z místní jednotky" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Datum vydání" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Vydavatel" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Jazyk" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Ano" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Ne" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Nahrát formát" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "zobrazit knihu po úpravě" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Získat metadata" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Jste si opravdu jisti?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Kniha bude smazána z Calibre databáze" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "a z hard disku" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Klíčové slovo" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "Hledat klíčové slovo" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Klepnutím na obal načtěte metadata do formuláře" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Načítání..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Zavřít" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Zdroj" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Chyba vyhledávání!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Nebyly nalezeny žádné výsledky! Zadejte jiné klíčové slovo." @@ -1638,107 +1602,123 @@ msgstr "Název hostitele serveru LDAP nebo IP adresa" msgid "LDAP Server Port" msgstr "LDAP Server Port" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Žádné" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "Uživatelské jméno správce LDAP" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "Heslo správce LDAP" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "Rozlišující název LDAP (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "Filtr objektu uživatele LDAP" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "Server LDAP je OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Obtain %(provider)s OAuth Credential" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth Klient Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Klient Tajemství" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Externí binární soubory" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Žádný převaděč" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Použít Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Použít calibre převaděč eknih" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Nastavení převaděče eknih" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Cesta k převaděči" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Umístění Unrar binarních souborů" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Přihlásit" @@ -1827,7 +1807,7 @@ msgstr "Povolit úpravy veřejných polic" msgid "Default Visibilities for New Users" msgstr "Výchozí zobrazení pro nové uživatele" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Zobrazit náhodné knihy v podrobném zobrazení" @@ -1871,27 +1851,15 @@ msgstr "Označit jako přečtené" msgid "Read" msgstr "Přečteno" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Popis:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Přidat do police" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Upravit metadata" @@ -1984,7 +1952,7 @@ msgstr "Nejnovější knihy" msgid "Random Books" msgstr "Náhodné knihy" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Zobrazit náhodné knihy" diff --git a/cps/translations/de/LC_MESSAGES/messages.po b/cps/translations/de/LC_MESSAGES/messages.po index 4f086c06..cc49f0d1 100644 --- a/cps/translations/de/LC_MESSAGES/messages.po +++ b/cps/translations/de/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-04-03 19:49+0200\n" "Last-Translator: Ozzie Isaacs\n" "Language: de\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Unbekannt" @@ -60,7 +60,7 @@ msgstr "Admin Seite" msgid "UI Configuration" msgstr "Benutzeroberflächenkonfiguration" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Konfiguration von Calibre-Web wurde aktualisiert" @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Basiskonfiguration" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Bitte alle Felder ausfüllen!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Neuen Benutzer hinzufügen" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "E-Mail bezieht sich nicht auf eine gültige Domain" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Es existiert bereits ein Account für diese E-Mailadresse oder diesen Benutzernamen." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Benutzer '%(user)s' angelegt" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Einstellungen des E-Mail-Servers bearbeiten" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Test-E-Mail wurde erfolgreich an %(kindlemail)s versendet" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Es trat ein Fehler beim Versenden der Test-E-Mail auf: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Bitte zuerst E-Mail Adresse konfigurieren..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Einstellungen des E-Mail-Servers aktualisiert" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Benutzer '%(nick)s' gelöscht" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Benutzer kann nicht gelöscht werden, es wäre kein Admin Benutzer übrig" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Es existiert bereits ein Benutzer für diese E-Mailadresse." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Benutzer %(nick)s bearbeiten" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Benutzername ist schon vorhanden" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Benutzer '%(nick)s' aktualisiert" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Es ist ein unbekannter Fehler aufgetreten." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Passwort für Benutzer %(user)s wurde zurückgesetzt" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Es ist ein unbekannter Fehler aufgetreten. Bitte später erneut versuchen." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Bitte zuerst die SMTP-Einstellung konfigurieren ..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Logdatei Anzeige" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Frage Update an" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Lade Update herunter" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Entpacke Update" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Ersetze Dateien" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Schließe Datenbankverbindungen" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Stoppe Server" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Update abgeschlossen, bitte okay drücken und Seite neu laden" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Update fehlgeschlagen:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP Fehler" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Verbindungsfehler" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Timeout beim Verbindungsaufbau" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Allgemeiner Fehler" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "Updatedatei konnte nicht in Temporärem Ordner gespeichert werden" @@ -276,89 +276,89 @@ msgstr "Updatedatei konnte nicht in Temporärem Ordner gespeichert werden" msgid "not configured" msgstr "Nicht konfiguriert" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Öffnen des Buchs fehlgeschlagen. Datei existiert nicht oder ist nicht zugänglich" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "Metadaten editieren" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Dateiendung '%(ext)s' kann nicht auf diesen Server hochgeladen werden" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Dateien müssen eine Erweiterung haben, um hochgeladen zu werden" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fehler beim Erzeugen des Pfads %(path)s (Zugriff verweigert)" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Fehler beim Speichern der Datei %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Dateiformat %(ext)s zu %(book)s hinzugefügt" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Cover ist keine JPG Datei, konnte nicht gespeichert werden" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s ist keine gültige Sprache" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadaten wurden erfolgreich aktualisiert" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Fehler beim Editieren des Buchs, Details im Logfile" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Die Datei %(filename)s konnte nicht im temporären Ordner gespeichert werden" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Das hochgeladene Buch existiert evtl. schon in der Bibliothek: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Fehler beim Speichern der Datei %(file)s (Zugriff verweigert)" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Fehler beim Löschen von Datei %(file)s (Zugriff verweigert)" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Datei %(file)s hochgeladen" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Quell- oder Zielformat für Konvertierung fehlt" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Buch wurde erfolgreich für die Konvertierung nach %(book_format)s eingereiht" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Es trat ein Fehler beim Konvertieren des Buches auf: %(res)s" @@ -542,7 +542,7 @@ msgstr "Login mit Google fehlgeschlagen." msgid "Failed to fetch user info from Google." msgstr "Laden der Benutzerinformationen von Google fehlgeschlagen." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Du bist nun eingeloggt als '%(nickname)s'" @@ -686,122 +686,114 @@ msgstr "Verstecktes Buch" msgid "Change order of Shelf: '%(name)s'" msgstr "Reihenfolge in Bücherregal '%(name)s' verändern" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Kürzlich hinzugefügt" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Zeige kürzlich hinzugefügte Bücher" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Beliebte Bücher" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Zeige beliebte Bücher" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Best bewertete Bücher" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Bestbewertete Bücher anzeigen" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Gelesene Bücher" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Zeige gelesene/ungelesene Bücher" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Ungelesene Bücher" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Zeige Ungelesene" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Entdecke" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Zeige zufällige Bücher" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Kategorien" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Zeige Kategorienauswahl" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Serien" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Zeige Serienauswahl" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Autoren" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Zeige Autorenauswahl" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Verleger" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Zeige Verlegerauswahl" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Sprachen" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Zeige Sprachauswahl" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Bewertungen" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Zeige Bewertungsauswahl" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Dateiformate" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Zeige Dateiformatauswahl" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Updateinformationen enthalten unbekannte Daten" @@ -831,223 +823,223 @@ msgstr "Ein neues Update ist verfügbar. Klicke auf den Button unten, um auf Ver msgid "Click on the button below to update to the latest stable version." msgstr "Klicke auf den Button unten, um auf die letzte stabile Version zu aktualisieren." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Kürzlich hinzugefügte Bücher" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Zufällige Bücher" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Bücher" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Beliebte Bücher (am meisten Downloads)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Öffnen des Buchs fehlgeschlagen. Datei existiert nicht oder ist nicht zugänglich" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Author: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Verleger: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Serie: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Bewertung: %(rating)s Sterne" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Dateiformat: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Kategorie: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Sprache: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Bewertungsliste" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Liste der Dateiformate" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Aufgaben" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Suche" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Herausgegeben nach dem " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Herausgegeben vor dem " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Bewertung <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Bewertung >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "Suche" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Buch erfolgreich zum Senden an %(kindlemail)s eingereiht" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Beim Senden des Buchs trat ein Fehler auf: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Bitte zuerst die Kindle E-Mailadresse konfigurieren..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "Der E-Mail Server ist nicht konfigurierte, bitte den Administrator kontaktieren!" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "Registieren" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Diese E-Mail ist nicht für die Registrierung zugelassen" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Eine Bestätigungs-E-Mail wurde an deinen E-Mail Account versendet." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Benutzername oder E-Mailadresse ist bereits in Verwendung." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "LDAP-Authentifizierung kann nicht aktiviert werden" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Falscher Benutzername oder Passwort" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Das neue Passwort wurde an die E-Mail Adresse verschickt" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Bitte einen gültigen Benutzernamen zum Zurücksetzen des Passworts angeben" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Eingeloggt als: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "Login" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Token wurde nicht gefunden" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Token ist abgelaufen" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Erfolg! Bitte zum Gerät zurückkehren" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s's Profil" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profil aktualisiert" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Fehler beim Öffnen des eBooks. Datei existiert nicht oder ist nicht zugänglich:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Lese ein Buch" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Fehler beim Öffnen des eBooks. Datei existiert nicht oder ist nicht zugänglich." @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "OK" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "Buch löschen" msgid "Delete formats:" msgstr "Lösche Formate:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "Konvertiere Buch" msgid "Book Title" msgstr "Buchtitel" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Autor" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Beschreibung" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Tags" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "Serien ID" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Bewertung" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Cover-URL (jpg, Cover wird heruntergeladen und in der Datenbank gespeichert, Feld erscheint anschließend wieder leer)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Coverdatei von Lokalem Laufwerk hochladen" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Herausgabedatum" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Herausgeber" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Sprache" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Nein" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Format hochladen" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "Buch nach Bearbeitung ansehen" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Metadaten laden" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Speichern" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Sicher?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Das Buch wird aus der Calibre-Datenbank" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "und von der Festplatte gelöscht" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Suchbegriff" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Suchbegriff " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Klicke auf das Bild, um die Metadaten zu übertragen" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Lade..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Schließen" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Quelle" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Fehler bei der Suche!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Keine Ergebnisse gefunden! Bitte ein anderes Schlüsselwort benutzen." @@ -1639,107 +1603,123 @@ msgstr "LDAP-Server Hostname oder IP-Adresse" msgid "LDAP Server Port" msgstr "LDAP Server Port" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Keine" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "LDAP Administrator Benutzername" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "LDAP Administrator Passwort" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP Distinguished Name (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP User Object Filter" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "Ist der LDAP-Server ein OpenLDAP-Server?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Erhalte %(provider)s OAuth Berechtigungen" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth Client Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Client Secret" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Externe Programme" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Kein Konverter" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Kindlegen benutzen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Benutze Calibres Ebook-Konverter" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Einstellungen des E-Book Konverters" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Pfad zu Konvertertool" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Pfad zur UnRar-Binärdatei" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Login" @@ -1828,7 +1808,7 @@ msgstr "Editieren öffentlicher Bücherregale erlauben" msgid "Default Visibilities for New Users" msgstr "Standard-Sichtbarkeiten für neue Benutzer" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Zeige zufällige Bücher in der Detailansicht" @@ -1872,27 +1852,15 @@ msgstr "Als gelesen markieren" msgid "Read" msgstr "Gelesen" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Beschreibung:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Zu Bücherregal hinzufügen" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Metadaten bearbeiten" @@ -1985,7 +1953,7 @@ msgstr "Die neuesten Bücher" msgid "Random Books" msgstr "Zufällige Bücher" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Zeige zufällige Bücher" diff --git a/cps/translations/es/LC_MESSAGES/messages.po b/cps/translations/es/LC_MESSAGES/messages.po index d3fe1a37..cb52de62 100644 --- a/cps/translations/es/LC_MESSAGES/messages.po +++ b/cps/translations/es/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2019-07-26 11:44+0100\n" "Last-Translator: minakmostoles \n" "Language: es\n" @@ -48,8 +48,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Desconocido" @@ -62,7 +62,7 @@ msgstr "Página de administración" msgid "UI Configuration" msgstr "Configuración de la interfaz del usuario" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Configuración de Calibre-Web actualizada" @@ -92,185 +92,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Configuración básica" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "¡Por favor completar todos los campos!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Agregar un nuevo usuario" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "El correo electrónico no tiene un nombre de dominio válido" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Encontrada una cuenta existente para este correo electrónico o nombre de usuario." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Usuario '%(user)s' creado" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Editar los ajustes del servidor de correo electrónico" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Correo electrónico de prueba enviado con éxito a %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Ocurrió un error enviando el correo electrónico de prueba: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Actualizados los ajustes del servidor de correo electrónico" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Usuario '%(nick)s' borrado" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "No queda ningún usuario administrador, no se puede eliminar usuario" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Encontrada una cuenta existente para esa dirección de correo electrónico." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Editar Usuario %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Usuario '%(nick)s' actualizado" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Ocurrió un error inesperado." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Contraseña para el usuario %(user)s reinicializada" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Ha ocurrido un error desconocido. Por favor vuelva a intentarlo más tarde." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Configura primero los parámetros del servidor SMTP..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Visor del fichero de log" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Solicitando paquete de actualización" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Descargando paquete de actualización" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Descomprimiendo paquete de actualización" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Remplazando ficheros" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Los conexiones de base datos están cerradas" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Parando servidor" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Actualización finalizada. Por favor, pulse OK y recargue la página" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Fallo al actualizar" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "Error HTTP" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Error de conexión" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Tiempo agotado mientras se trataba de establecer la conexión" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Error general" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -278,89 +278,89 @@ msgstr "" msgid "not configured" msgstr "no configurado" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Error abriendo un eBook. El archivo no existe o no es accesible" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "editar metadatos" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "No se permite subir archivos con la extensión '%(ext)s' a este servidor" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "El archivo a subir debe tener una extensión" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Fallo al crear la ruta %(path)s (permiso denegado)" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Falla al guardar el archivo %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Fichero con formato %(ext)s añadido a %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "La portada no es un fichero jpg, no se guardaron cambios" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s no es un idioma válido" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadatos actualizados correctamente" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Error al editar el libro, por favor compruebe el fichero de registro (logfile) para tener más detalles" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Fallo al guardar el archivo %(file)s (permiso denegado)" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Fallo al borrar el archivo %(file)s (permiso denegado)" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "El fichero %(file)s a sido subido" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Falta la fuente o el formato de destino para la conversión" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Libro puesto a la cola con éxito para convertirlo a %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Ocurrió un error al convertir este libro: %(res)s" @@ -544,7 +544,7 @@ msgstr "Error al iniciar sesión con Google." msgid "Failed to fetch user info from Google." msgstr "Error al obtener información de usuario de Google." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Sesión iniciada como : '%(nickname)s'" @@ -688,122 +688,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "Cambiar orden del estante: '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Añadido recientemente" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Mostrar libros recientes" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Libros populares" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Mostrar libros populares" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Libros mejor valorados" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Mostrar libros mejor valorados" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Libros leídos" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Mostrar leídos y no leídos" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Libros no leídos" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Mostrar no leído" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Descubrir" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Mostrar libros al azar" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Categorías" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Mostrar selección de categorías" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Series" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Mostrar selección de series" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Autores" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Mostrar selección de autores" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Editoras" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Mostrar selección de editores" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Idioma" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Mostrar selección de idiomas" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Calificaciones" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Mostrar selección de calificaciones" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Formatos de archivo" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Mostrar selección de formatos de archivo" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Dato inesperado mientras se leía la información de actualización" @@ -833,223 +825,223 @@ msgstr "Hay una nueva actualización disponible. Haz clic en el botón de abajo msgid "Click on the button below to update to the latest stable version." msgstr "Haz clic en el botón de abajo para actualizar a la última versión estable." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Libros añadidos recientemente" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Descubrir (Libros al azar)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Libros" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Libros populares (los más descargados)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Error al abrir eBook. El archivo no existe o no es accesible:" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Autor/es: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Editor/es: " -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Series: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Calificación: %(rating)s estrellas" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Formato del fichero: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Categoría : %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Idioma: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Lista de calificaciones" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Lista de formatos" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Tareas" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Buscar" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Publicado después de" -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Publicado antes de" -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Calificación <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Calificación >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "búsqueda" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Libro puesto en la cola de envío a %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Ha sucedido un error en el envío del libro: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Por favor configure primero la dirección de correo de su kindle..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "registrarse" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Su correo electrónico no está permitido para registrarse" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Se ha enviado un correo electrónico de verificación a su cuenta de correo electrónico." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Este nombre de usuario o correo electrónico ya están en uso." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "No se puede activar la autenticación LDAP" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Usuario o contraseña inválido" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Ahora estás conectado como: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "Iniciar sesión" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Token no encontrado" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "El token ha expirado" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "¡Correcto! Por favor regrese a su dispositivo" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Perfil de %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Perfil actualizado" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Leer un libro" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Error al abrir el eBook. El archivo no existe o el archivo no es accesible." @@ -1250,8 +1242,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1298,7 +1290,7 @@ msgstr "Borrar libro" msgid "Delete formats:" msgstr "Borrar formatos:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1328,148 +1320,120 @@ msgstr "Convertir libro" msgid "Book Title" msgstr "Título del libro" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Autor" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Descripción" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Etiquetas" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Clasificación" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "URL de la portada (jpg, la portada es descargada y almacenada en la base de datos, el campo está vacío de nuevo)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Subir portada desde un medio de almacenamiento local" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Fecha de publicación" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Editor" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Idioma" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Sí" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "No" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Subir formato" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "ver libro tras la edición" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Obtener metadatos" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "¿Estás realmente seguro?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "El libro será eliminado de la base de datos de Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "y del disco duro" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Palabra clave" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "Buscar por palabras clave" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Haz clic en la portada para cargar los metadatos en el formulario" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Cargando..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Cerrar" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Origen" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "¡Error en la búsqueda!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "¡No se encontraron resultados! Por favor intenta con otra palabra clave." @@ -1641,107 +1605,123 @@ msgstr "Nombre de host o dirección IP del servidor LDAP" msgid "LDAP Server Port" msgstr "Puerto del servidor LDAP" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Ninguno" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "Nombre de usuario de administrador LDAP" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "Contraseña de administrador LDAP" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "Nombre distinguido LDAP (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "Filtro de objetos de usuario LDAP" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "¿El servidor LDAP es OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Obtener la Credencial OAuth de %(proveedor)" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "Id. de cliente de OAuth de %(provider)" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "Secreto OAuth de Cliente de %(provider)" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Binarios externos" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "No convertir" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Utilizar Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Utilizar el convertidor de libros de Calibre" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Ajustes del convertidos E-Book" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Ruta para convertertool" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Ubicación del binario de Unrar" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Inicio de sesión" @@ -1830,7 +1810,7 @@ msgstr "Permitir editar estantes públicos" msgid "Default Visibilities for New Users" msgstr "Visibilidad predeterminada para nuevos usuarios" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Mostrar libros aleatorios con vista detallada" @@ -1874,27 +1854,15 @@ msgstr "Marcar como leido" msgid "Read" msgstr "Leer" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Descripción:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Agregar al estante" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Editar metadatos" @@ -1987,7 +1955,7 @@ msgstr "Libros recientes" msgid "Random Books" msgstr "Libros al azar" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Mostrar libros al azar" diff --git a/cps/translations/fi/LC_MESSAGES/messages.po b/cps/translations/fi/LC_MESSAGES/messages.po index d2985b24..7a8ad1ed 100644 --- a/cps/translations/fi/LC_MESSAGES/messages.po +++ b/cps/translations/fi/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-01-12 13:56+0100\n" "Last-Translator: Samuli Valavuo \n" "Language: fi\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Tuntematon" @@ -60,7 +60,7 @@ msgstr "Ylläpitosivu" msgid "UI Configuration" msgstr "Käyttöliittymän asetukset" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web asetukset päivitetty" @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Perusasetukset" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Ole hyvä ja täytä kaikki kentät!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Lisää uusi käyttäjä" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "Sähköpostiosoite ei ole toimivasta domainista" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Tälle sähköpostiosoitteelle tai tunnukselle löytyi jo tili." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Käyttäjä '%(user)s' lisätty" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Muuta sähköpostipalvelimen asetuksia" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Testisähköposti lähetetty onnistuneesti osoitteeseen %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Testisähköpostin lähetyksessä tapahtui virhe: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Sähköpostipalvelimen tiedot päivitetty" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Käyttäjä '%(nick)s' poistettu" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Pääkäyttäjiä ei jää jäljelle, käyttäjää ei voi poistaa" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Tälle sähköpostiosoitteelle läytyi jo käyttäjätunnus." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Muokkaa käyttäjää %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Käyttäjä '%(nick)s' päivitetty" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Tapahtui tuntematon virhe." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Käyttäjän %(user)s salasana palautettu" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Tapahtui tuntematon virhe. Yritä myöhemmin uudelleen." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Ole hyvä ja aseta SMTP postiasetukset ensin..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Lokitiedoston katselin" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Haetaan päivitystiedostoa" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Ladataan päivitystiedostoa" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Puretaan päivitystiedostoa" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Korvataan tiedostoja" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Tietokantayhteydet on katkaistu" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Sammutetaan palvelin" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Päivitys valmistui, ole hyvä ja paina OK ja lataa sivu uudelleen" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Päivitys epäonnistui:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP virhe" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Yhteysvirhe" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Aikakatkaisu yhteyttä luotaessa" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Yleinen virhe" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -276,89 +276,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Virhe e-kirjaa avatessa. Tiedostoa ei löydy tai se ei ole saatavilla" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "muokkaa metadataa" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Tiedostopääte '%(ext)s' ei ole sallittujen palvelimelle ladattavien listalla" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Ladattavalla tiedostolla on oltava tiedostopääte" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Polun %(path)s luonti epäonnistui (Ei oikeutta)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Tiedoston %(file)s tallennus epäonnistui." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Tiedostoformaatti %(ext)s lisätty %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Kansi ei ole jpg tiedosto, tallennus ei onnistu" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s ei ole kelvollinen kieli" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadata päivitetty onnistuneesti" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Kirjan editoinnissa tapahtui virhe, tarkista virheilmoitus lokista" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Tiedoston %(file)s tallentamisessa tapahtui virhe (Ei oikeutta)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Tiedoston %(file)s poisto epäonnistui (Ei oikeutta)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Tiedosto %(file)s tallennettu" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Lähteen tai kohteen tiedostomuoto puuttuu" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Kirja lisätty muutosjonoon muotoon %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Kirjan muunnoksessa tapahtui virhe: %(res)s" @@ -542,7 +542,7 @@ msgstr "Googleen kirjautuminen epäonnistui." msgid "Failed to fetch user info from Google." msgstr "Käyttäjätietojen haku Googlesta epäonnistui." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "olet nyt kirjautunut tunnuksella: \"%(nickname)s\"" @@ -686,122 +686,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "Muuta hyllyn: '%(name)s' järjestystä" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Viimeksi lisätty" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Näytä viimeisimmät kirjat" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Kuumat kirjat" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Näytä kuumat kirjat" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Parhaiten arvioidut kirjat" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Näytä parhaiten arvioidut kirjat" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Luetut kirjat" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Näytä luetut ja lukemattomat" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Lukemattomat kirjat" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Näyt lukemattomat" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Löydä" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Näytä satunnaisia kirjoja" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Kategoriat" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Näytä kategoriavalinta" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Sarjat" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Näytä sarjavalinta" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Kirjailijat" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Näytä kirjailijavalinta" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Julkaisijat" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Näytä julkaisijavalinta" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Kielet" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Näytä keilivalinta" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Arvostelut" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Näytä arvosteluvalinta" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Tiedotomuodot" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Näytä tiedostomuotovalinta" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Odottamatonta tietoa luettaessa päivitystietoa" @@ -831,223 +823,223 @@ msgstr "Uusi päivitys saatavilla. Paina alla olevaa nappia päivittääksesi ve msgid "Click on the button below to update to the latest stable version." msgstr "Paina alla olevaa nappia päivittääksesi uusimpaan vakaaseen versioon." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Viimeksi lisätyt kirjat" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Löydä (satunnaiset kirjat)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Kirjat" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Kuumat kirjat (ladatuimmat)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Virhe eKirjan avaamisessa. Tiedostoa ei ole tai se ei ole saatavilla:" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Kirjailija: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Julkaisija: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Sarja: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Arvostelu: %(rating)s tähteä" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Tiedostomuoto: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Kategoria: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Kieli: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Arvostelulistaus" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Tiedostomuotolistaus" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Tehtävät" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Hae" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Julkaistu alkaen " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Julkaisut ennen " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Arvostelu <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Arvostelu >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "hae" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Kirja lisätty onnistuneeksi lähetettäväksi osoitteeseen %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Kirjan: %(res)s lähettämisessa tapahtui virhe" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Ole hyvä ja aseta Kindle sähköpostiosoite ensin..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "rekisteröidy" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Sähköpostiosoitteellasi ei ole sallittua rekisteröityä" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Vahvistusviesti on lähetetty sähköpostiosoitteeseesi." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Käyttäjätunnus tai sähköpostiosoite on jo käytössä." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "LDAP autnetikoinnin aktivointi ei onnistu" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Väärä käyttäjätunnus tai salasana" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "olet kirjautunut tunnuksella: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "kirjaudu" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Valtuutusta ei löytynyt" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Valtuutus vanhentunut" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Onnistui! Ole hyvä ja palaa laitteellesi" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)sn profiili" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profiili päivitetty" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Lue kirja" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Virhe kirjan avaamisessa. Tiedostoa ei ole tai se ei ole saatavilla." @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "Poista kirja" msgid "Delete formats:" msgstr "Poista tiedostomuodot:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "Muunna kirja" msgid "Book Title" msgstr "Kirjan otsikko" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Kirjailija" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Kuvaus" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Tunnisteet" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Arvostelu" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Kannen osoite (jpg, kuva ladataan ja tallennetaan tietokantaan, kenttä jää uudelleen tyhjäksi)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Lataa kuva paikalliselta levyltä" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Julkaisupäivä" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Julkaisija" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Kieli" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Kyllä" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Ei" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Lataa tiedostomuoto" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "katso kirjaa muokkauksen jälkeen" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Hae metadata" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Oletko aivan varma?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Kirja poistetaan Calibren tietokannasta" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "ja kiintolevyltä" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Avainsana" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Hae avainsanaa " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Klikkaa kantta ladataksesi metadata lomakkeelle" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Ladataan..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Sulje" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Lähde" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Hakuvirhe!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Ei osumia! Kokeile jotain tosita hakusanaa." @@ -1639,107 +1603,123 @@ msgstr "LDAP palvelimen nimi tai IP osoite" msgid "LDAP Server Port" msgstr "LDAP Palveimen portti" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Ei mitään" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "LDAP pääkäyttäjän käyttäjänimi" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "LDAP pääkäyttäjän salasana" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP DN" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP käyttäjä suodin (object filter)" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "LDAP palvelin on OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Hanki %(provider)s OAuth valtuutus" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth asiakas Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth asiakas salaisuus" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Ulkoiset binäärit" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Ei muuntajaa" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Käytä Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Käytä calibren e-kirjamuuntajaa" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "E-kirjamuuntajan asetukset" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Polku muunnintyökaluun" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Unrar binäärin paikka" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Kirjaudu sisään" @@ -1828,7 +1808,7 @@ msgstr "Salli julkisten hyllyjen editointi" msgid "Default Visibilities for New Users" msgstr "Oletusnäkymä uusille käyttäjille" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Näytä satunnaisia kirjoja näkymässä" @@ -1872,27 +1852,15 @@ msgstr "Merkitse luetuksi" msgid "Read" msgstr "Luettu" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Kuvaus:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Lisää hyllyyn" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Muokkaa metadataa" @@ -1985,7 +1953,7 @@ msgstr "Viimeisimmät kirjat" msgid "Random Books" msgstr "Satunnaisia kirjoja" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Näytä satunnausia kirjoja" diff --git a/cps/translations/fr/LC_MESSAGES/messages.po b/cps/translations/fr/LC_MESSAGES/messages.po index 2e1e3342..728f1f45 100644 --- a/cps/translations/fr/LC_MESSAGES/messages.po +++ b/cps/translations/fr/LC_MESSAGES/messages.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2019-08-21 15:20+0100\n" "Last-Translator: Nicolas Roudninski \n" "Language: fr\n" @@ -59,8 +59,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Inconnu" @@ -73,7 +73,7 @@ msgstr "Page administrateur" msgid "UI Configuration" msgstr "Configuration de l’interface utilisateur" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Configuration de Calibre-Web mise à jour" @@ -103,185 +103,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Configuration principale" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "SVP, complétez tous les champs !" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Ajouter un nouvel utilisateur" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "Cette adresse de courriel n’appartient pas à un domaine valide" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Un compte existant a été trouvé pour cette adresse de courriel ou pour ce surnom." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Utilisateur '%(user)s' créé" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Modifier les paramètres du serveur de courriels" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Courriel de test envoyé avec succès sur %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Il y a eu une erreur pendant l’envoi du courriel de test : %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Les paramètres du serveur de courriels ont été mis à jour" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Utilisateur '%(nick)s' supprimé" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Aucun utilisateur admin restant, impossible de supprimer l’utilisateur" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Un compte existant a été trouvé pour cette adresse de courriel." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Éditer l'utilisateur %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Utilisateur '%(nick)s' mis à jour" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Oups ! Une erreur inconnue a eu lieu." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Le mot de passe de l’utilisateur %(user)s a été réinitialisé" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Une erreur inconnue est survenue. Veuillez réessayer plus tard." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Veuillez configurer les paramètres SMTP au préalable…" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Visualiseur de fichier journal" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Demander une mise à jour" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Téléchargement la mise à jour" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Décompression de la mise à jour" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Remplacement des fichiers" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Connexion à la base de donnée fermée" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Arrêt du serveur" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Mise à jour terminée, merci d’appuyer sur okay et de rafraîchir la page" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "La mise à jour a échoué :" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "Erreur HTTP" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Erreur de connexion" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Délai d'attente dépassé lors de l'établissement de connexion" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Erreur générale" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -289,89 +289,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Erreur à l’ouverture du livre. Le fichier n’existe pas ou n’est pas accessible" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "modifier les métadonnées" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "L’extension de fichier '%(ext)s' n’est pas autorisée pour être déposée sur ce serveur" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Pour être déposé le fichier doit avoir une extension" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Impossible de créer le chemin %(path)s (permission refusée)" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Echec de la sauvegarde du fichier %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Le format de fichier %(ext)s a été ajouté à %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "La couverture n’est pas un fichier jpg, je ne peux pas l’enregistrer" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s n'est pas une langue valide" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Les métadonnées ont bien été mise à jour" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Erreur d’édition du livre, veuillez consulter le journal (log) pour plus de détails" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Impossible d'enregistrer le fichier %(file)s (permission refusée)" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Impossible de supprimer le fichier %(file)s (permission refusée)" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Le format de conversion de la source ou de la destination est manquant" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Le livre a été mis avec succès en file de traitement pour conversion vers %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Une erreur est survenue au cours de la conversion du livre : %(res)s" @@ -555,7 +555,7 @@ msgstr "N’a pas réussi à se connecter avec Google." msgid "Failed to fetch user info from Google." msgstr "Échec à récupérer les informations des utilisateurs sur Google." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "vous êtes maintenant connecté sous : '%(nickname)s'" @@ -699,122 +699,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "Modifier l’arrangement de l’étagère : ‘%(name)s’" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Ajouts récents" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Afficher les livres récents" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Livres populaires" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Montrer les livres populaires" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Livres les mieux notés" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Montrer les livres les mieux notés" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Livres lus" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Montrer lu et non-lu" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Livres non-lus" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Afficher non lu" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Découvrir" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Montrer des livres au hasard" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Catégories" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Montrer la sélection par catégories" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Séries" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Montrer la sélection par séries" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Auteurs" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Montrer la sélection par auteur" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Editeurs" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Montrer la sélection par éditeur" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Langues" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Montrer la sélection par langue" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Notes" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Afficher la sélection des notes" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Format de fichier" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Afficher la sélection des formats de fichiers" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Données inattendues lors de la lecture des informations de mise à jour" @@ -844,223 +836,223 @@ msgstr "Une nouvelle mise à jour est disponible. Cliquez sur le bouton ci-desso msgid "Click on the button below to update to the latest stable version." msgstr "Téléchargez la dernière version en cliquant sur le bouton ci-dessous." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Ajouts récents" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Découverte (livres au hasard)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Livres" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Livres populaires (les plus téléchargés)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Erreur d'ouverture du livre numérique. Le fichier n'existe pas ou n'est pas accessible :" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Auteur: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Editeur : '%(name)s'" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Séries : %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Note: %(rating)s étoiles" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Format de fichier: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Catégorie : %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Langue : %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Tâches" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Chercher" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Publié après le " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Publié avant le " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Évaluation <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Évaluation >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "recherche" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Le livre a été mis en file de traitement avec succès pour un envois vers %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Il y a eu une erreur en envoyant ce livre : %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Veuillez configurer votre adresse de courriel Kindle en premier lieu…" -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "s’enregistrer" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Votre adresse de courriel n’est pas autorisé pour une inscription" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Le courriel de confirmation a été envoyé à votre adresse." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Ce nom d’utilisateur ou cette adresse de courriel sont déjà utilisés." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Impossible d’activer l’authentification LDAP" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Mauvais nom d'utilisateur ou mot de passe" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Vous êtes maintenant connecté en tant que : ‘%(nickname)s’" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "connexion" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Jeton non trouvé" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Jeton expiré" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Réussite! Merci de vous tourner vers votre appareil" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Profil de %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profil mis à jour" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Lire un livre" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Erreur lors de l’ouverture d’un eBook. Le fichier n’existe pas ou le fichier n’est pas accessible." @@ -1261,8 +1253,8 @@ msgid "OK" msgstr "Oui" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1309,7 +1301,7 @@ msgstr "Effacer le livre" msgid "Delete formats:" msgstr "Supprimer les formats :" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1339,148 +1331,120 @@ msgstr "Convertir le livre" msgid "Book Title" msgstr "Titre du livre" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Auteur" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Description" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Étiquette" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Évaluation" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "URL de la couverture (jpg, la couverture est déposée sur le serveur et sauvegardée en base, ce champ est ensuite remis à vide)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Téléverser la couverture depuis un fichier en local" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Date de publication" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Editeur" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Langue" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Oui" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Non" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Format du fichier téléversé" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "voir le livre après l'édition" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Obtenir les métadonnées" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Etes-vous vraiment sur?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Le livre va être supprimé de la base de données de Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "et du disque dur" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Mot-clé" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Rechercher le mot-clé " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Cliquer sur la couverture pour importer les métadonnées dans le formulaire" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Chargement…" -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Fermer" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Source" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Rechercher les erreur!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Aucun résultat. Veuillez essayer avec un nouveau mot clé." @@ -1652,107 +1616,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Aucun" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Configuration des outils de conversion externes" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Pas de convertisseur" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Utiliser Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Utiliser Calibre ebook-convert" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Paramètres de la commande de conversion de livres" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Chemin d’accès à la commande de conversion" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Chemin d’accès à la commande UnRar" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Connexion" @@ -1841,7 +1821,7 @@ msgstr "Autoriser la modification d’étagères publiques" msgid "Default Visibilities for New Users" msgstr "Mode de visualisation par défaut pour les nouveaux utilisateurs" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Montrer aléatoirement des livres dans la vue détaillée" @@ -1885,27 +1865,15 @@ msgstr "Marquer comme lu" msgid "Read" msgstr "Lu" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Description :" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Ajouter à l'étagère" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Éditer les métadonnées" @@ -1998,7 +1966,7 @@ msgstr "Les derniers livres" msgid "Random Books" msgstr "Livres au hasard" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Montrer des livres au hasard" diff --git a/cps/translations/hu/LC_MESSAGES/messages.po b/cps/translations/hu/LC_MESSAGES/messages.po index d6acfa10..74b50aef 100644 --- a/cps/translations/hu/LC_MESSAGES/messages.po +++ b/cps/translations/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2019-04-06 23:36+0200\n" "Last-Translator: \n" "Language: hu\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Ismeretlen" @@ -60,7 +60,7 @@ msgstr "Rendszergazda oldala" msgid "UI Configuration" msgstr "Felhasználói felület beállításai" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "A Calibre-Web konfigurációja frissítve." @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Alapvető beállítások" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Az összes mezőt ki kell tölteni!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Új felhasználó hozzáadása" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "Az e-mail tartománya nem érvényes." -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Már létezik felhasználó ehhez az e-mail címhez vagy felhasználói névhez." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "A következő felhasználó létrehozva: %(user)s" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Az e-mail kiszolgáló beállításainak módosítása" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "A teszt levél sikeresen elküldve ide: %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Hiba történt a teszt levél küldése során: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Az e-mail kiszolgáló beállításai frissítve." -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "A felhasználó törölve: %(nick)s" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Már létezik felhasználó ehhez az e-mail címhez." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr " A felhasználó szerkesztése: %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "A felhasználó frissítve: %(nick)s" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Ismeretlen hiba történt." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "A(z) %(user)s felhasználó jelszavának alaphelyzetbe állítása" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Ismeretlen hiba történt. Próbáld újra később!" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Először be kell állítani az SMTP levelező beállításokat..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Frissítési csomag kérése" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Frissítési csomag letöltése" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Frissítési csomag kitömörítése" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Fájlok cserélése" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Adatbázis kapcsolatok lezárva" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Szerver leállítása" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "A frissítés települt, kattints az OK-ra és újra tölt az oldal" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "A frissítés nem sikerült:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP hiba" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Kapcsolódási hiba" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Időtúllépés a kapcsolódás során" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Általános hiba" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -276,89 +276,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Hiba az ekönyv megnyitásakor. A fájl nem létezik vagy nem elérhető." -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "Metaadatok szerkesztése" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "A(z) \"%(ext)s\" kiterjesztésű fájlok feltöltése nincs engedélyezve ezen a szerveren." -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "A feltöltendő fájlnak kiterjesztéssel kell rendelkeznie!" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nem sikerült létrehozni az elérési utat (engedély megtagadva): %(path)s." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Nem sikerült elmenteni a %(file)s fájlt." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "A(z) %(ext)s fájlformátum hozzáadva a könyvhez: %(book)s." -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "A(z) %(langname)s nem érvényes nyelv" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "A metaadatok sikeresen frissültek" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Hiba a könyv szerkesztése során, további részletek a naplófájlban." -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Nem sikerült elmenteni a %(file)s fájlt." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Nem sikerült törölni a %(file)s fájlt." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Az átalakításhoz hiányzik a forrás- vagy a célformátum!" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "A könyv sikeresen átalakításra lett jelölve a következő formátumra: %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Hiba történt a könyv átalakításakor: %(res)s" @@ -542,7 +542,7 @@ msgstr "" msgid "Failed to fetch user info from Google." msgstr "" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Be vagy jelentkezve mint: %(nickname)s" @@ -686,122 +686,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "A következő polc átrendezése: %(name)s" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Legutóbb hozzáadott" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Legutóbbi könyvek mutatása" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Kelendő könyvek" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Kelendő könyvek mutatása" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Legjobb könyvek" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Legjobbra értékelt könyvek mutatása" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Olvasott könyvek" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Mutassa az olvasva/olvasatlan állapotot" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Olvasatlan könyvek" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Felfedezés" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Könyvek találomra mutatása" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Címkék" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Címke választó mutatása" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Sorozatok" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Sorozat választó mutatása" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Szerzők" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Szerző választó mutatása" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Kiadók" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Kiadó választó mutatása" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Nyelvek" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Nyelv választó mutatása" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Ismeretlen adat a frissítési információk olvasásakor" @@ -831,223 +823,223 @@ msgstr "Új frissítés érhető el. Kattints az alábbi gombra a frissítéshez msgid "Click on the button below to update to the latest stable version." msgstr "" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Legutóbb hozzáadott könyvek" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Felfedezés (könyvek találomra)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Kelendő könyvek (legtöbbet letöltöttek)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Hiba történt az e-könyv megnyitásakor. A fájl nem létezik vagy nem érhető el:" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Kiadó: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Sorozat: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Címke: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Nyelv: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Feladatok" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Keresés" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Kiadva ezután: " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Kiadva ezelőtt: " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Értékelés <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Értékelés <= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "keresés" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "A könyv sikeresen küldésre lett jelölve a következő címre: %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Hiba történt a könyv küldésekor: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Először be kell állítani a kindle e-mail címet..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "regisztrálás" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Nem engedélyezett a megadott e-mail cím bejegyzése" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Jóváhagyó levél elküldve az email címedre." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Ez a felhasználónév vagy e-mail cím már használatban van." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Rossz felhasználó név vagy jelszó!" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "belépés" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "A token nem található." -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "A token érvényessége lejárt." -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Sikerült! Újra használható az eszköz." -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s profilja" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "A profil frissítve." -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Egy olvasott könyv" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "" @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "OK" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "Könyv törlése" msgid "Delete formats:" msgstr "Formátumok törlése:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "Könyv konvertálása" msgid "Book Title" msgstr "Könyv címe" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Szerző" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Leírás" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Címkék" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Értékelés" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Borító URL (jpg, borító letöltve és elmentve az adatbázisban, a mező újra üres lesz utána)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Borító feltöltése helyi meghajtóról" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Kiadás éve" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Kiadó" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Nyelv" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Igen" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Nem" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Feltöltés formátuma" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "Könyv megnézése szerkesztés után" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Metaadatok beszerzése" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Biztosan?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "A könyv törölve lesz a Calibre adatbázisból" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr " és a merevlemezről" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Kulcsszó" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Keresési kulcsszó " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Kattints a borítóra a metadatok betöltésére" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Betöltés..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Bezárás" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Forrás" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Keresési hiba!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Nincs találat! Próbálj másik kulcsszót." @@ -1639,107 +1603,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Nincs" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Külső futtatható fájlok" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Átalakítás nélkül" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Kindlegen használata" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Calibre e-könyv átalakító használata" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "E-könyv átalakító beállításai" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Elérési út az átalakító-eszközhöz" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Az Unrar futtatási állományának helye" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Belépés" @@ -1828,7 +1808,7 @@ msgstr "Nyilvános polcok szerkesztésének engedélyezése" msgid "Default Visibilities for New Users" msgstr "Új felhasználók alapértelmezett látható elemei" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Mutasson könyveket találomra a részletes nézetben" @@ -1872,27 +1852,15 @@ msgstr "Legyen olvasott" msgid "Read" msgstr "Olvasva" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Ismertető:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Hozzáadás polchoz" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Metaadatok szerkesztése" @@ -1985,7 +1953,7 @@ msgstr "A legfrissebb könyvek" msgid "Random Books" msgstr "Könyvek találomra" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Mutass könyveket találomra" diff --git a/cps/translations/it/LC_MESSAGES/messages.mo b/cps/translations/it/LC_MESSAGES/messages.mo index 58663e34..2504366d 100644 Binary files a/cps/translations/it/LC_MESSAGES/messages.mo and b/cps/translations/it/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/it/LC_MESSAGES/messages.po b/cps/translations/it/LC_MESSAGES/messages.po index 15c0e6b3..b41339be 100644 --- a/cps/translations/it/LC_MESSAGES/messages.po +++ b/cps/translations/it/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2017-04-04 15:09+0200\n" "Last-Translator: ElQuimm \n" "Language: it\n" @@ -39,14 +39,14 @@ msgstr "Eseguo l'arresto del server, per favore chiudi la finestra" #: cps/admin.py:102 msgid "Reconnect successful" -msgstr "" +msgstr "Ricollegato con successo" #: cps/admin.py:105 msgid "Unknown command" -msgstr "" +msgstr "Comando sconosciuto" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Sconosciuto" @@ -59,9 +59,9 @@ msgstr "Pagina di amministrazione" msgid "UI Configuration" msgstr "Configurazione dell'interfaccia utente" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" -msgstr "Aggiornamento della configurazione di Calibre-Web" +msgstr "La configurazione di Calibre-Web è stata aggiornata" #: cps/admin.py:439 cps/admin.py:445 cps/admin.py:456 cps/admin.py:467 #: cps/templates/modal_restriction.html:29 @@ -75,289 +75,289 @@ msgstr "Permetti" #: cps/admin.py:510 msgid "client_secrets.json Is Not Configured For Web Application" -msgstr "" +msgstr "client_secrets.json non è configurato per Web Application" #: cps/admin.py:526 msgid "Keyfile Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione del Keyfile non è valida, per favore indica il percorso corretto" #: cps/admin.py:530 msgid "Certfile Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione del Certfile non è valida, per favore indica il percorso corretto" #: cps/admin.py:569 msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" -msgstr "" +msgstr "Per favore digita un Provider LDAP, porta, DN e User Object Identifier" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" -msgstr "" +msgstr "LDAP Group Object Filter deve avere un \"%s\" Format Identifier" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" -msgstr "" +msgstr "LDAP Group Object Filter contiene una parentesi senza la corrispettiva" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" -msgstr "" +msgstr "LDAP User Object Filter deve avere un \"%s\" Format Identifier" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" -msgstr "" +msgstr "LDAP User Object Filter contiene una parentesi senza la corrispettiva" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione del certificato LDAP non è valida, per favore indica il percorso corretto" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione del Logfile non è valida, per favore indica il percorso corretto" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione dell'Access Logfile non è valida, per favore indica il percorso corretto" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" -msgstr "" +msgstr "La posizione del DB non è valida, per favore indica il percorso corretto" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Configurazione di base" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Per favore compila tutti i campi!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Aggiungi un nuovo utente" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "L'e-mail non proviene da un dominio valido" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Trovato un account esistente con questo e-mail o nome di utente" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" -msgstr "Utente '%(user)s' creato" +msgstr "Creato l'utente '%(user)s'" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Modifica la configurazione del server e-mail" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "E-mail di test inviato con successo a %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Si è verificato un errore nell'invio dell'e-mail di test: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Per favore prima configura il tuo indirizzo e-mail..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Configurazione del server e-mail aggiornata" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Utente '%(nick)s' eliminato" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Non rimarrebbe nessun utente amministratore, non posso eliminare l'utente" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Ho trovato un account creato in precedenza con questo e-mail." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Modifica utente %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Questo nome di utente è già utilizzato" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Utente '%(nick)s' aggiornato" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Si è verificato un errore imprevisto." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "La password dell'utente %(user)s è stata resettata" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Si è verificato un errore sconosciuto: per favore riprova." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Configura dapprima le impostazioni del server SMTP..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Visualizzatore del Logfile" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Richiedo il pacchetto di aggiornamento" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Scarico il pacchetto di aggiornamento" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Decomprimo il pacchetto di aggiornamento" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Sostituisco i file" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Le connessioni al database sono chiuse" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Arresto il server" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Aggiornamento completato, per favore premi ok e ricarica la pagina" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Aggiornamento fallito:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "Errore HTTP" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Errore di connessione" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Tempo scaduto nello stabilire la connessione" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Errore generale" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" -msgstr "" +msgstr "Il file di aggiornamento non può essere salvato nella cartella temporanea" #: cps/converter.py:31 msgid "not configured" msgstr "non configurato" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Errore durante l'apertura del libro. Il file non esiste o il file non è accessibile" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "Modifica i metadati" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Non è consentito caricare file con l'estensione '%(ext)s' su questo server" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Il file da caricare deve avere un'estensione" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." -msgstr "Impossibile creare il percorso %(path)s (autorizzazione negata)." +msgstr "Impossibile creare la cartella %(path)s (autorizzazione negata)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Il salvataggio del file %(file)s è fallito." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Ho aggiunto l'estensione %(ext)s al libro %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "La copertina non è un file jpg, non posso salvare" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s non è una lingua valida" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "I metadati sono stati aggiornati con successo" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Errore nella modifica del libro. Per favore verifica i dettagli nel file di registro (logfile)" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Il file %(filename)s non può essere salvato nella cartella temporanea" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Probabilmnete il libro caricato esiste già nella libreria; considera di cambiare prima di sottoporlo nuovamente: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Impossibile salvare il file %(file)s (autorizzazione negata)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Impossibile eliminare il file %(file)s (autorizzazione negata)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Il file %(file)s è stato caricato" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Il formato sorgente o quello di destinazione, necessari alla conversione, mancano" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Libro accodato con successo per essere convertito in %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Si è verificato un errore durante la conversione del libro: %(res)s" @@ -458,7 +458,7 @@ msgstr "Non ho trovato la cartella %(path)s del libro su Google Drive" #: cps/helper.py:511 msgid "Failed to create path for cover" -msgstr "Errore nel creare il percorso per la copertina" +msgstr "Errore nel creare la cartella per la copertina" #: cps/helper.py:516 msgid "Cover-file is not a valid image file" @@ -541,7 +541,7 @@ msgstr "Fallito l'accesso con Google." msgid "Failed to fetch user info from Google." msgstr "Fallito il recupero delle informazioni dell'utente da Google." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "ora sei connesso come: '%(nickname)s'" @@ -549,26 +549,26 @@ msgstr "ora sei connesso come: '%(nickname)s'" #: cps/oauth_bb.py:235 #, python-format msgid "Link to %(oauth)s Succeeded" -msgstr "" +msgstr "Collegamento a %(oauth)s avvenuto con successo" #: cps/oauth_bb.py:241 msgid "Login failed, No User Linked With OAuth Account" -msgstr "" +msgstr "Accesso fallito, non c'è un utente collegato all'account OAuth" #: cps/oauth_bb.py:283 #, python-format msgid "Unlink to %(oauth)s Succeeded" -msgstr "" +msgstr "Scollegamento da %(oauth)s avvenuto con successo" #: cps/oauth_bb.py:287 #, python-format msgid "Unlink to %(oauth)s Failed" -msgstr "" +msgstr "Scollegamento da %(oauth)s fallito" #: cps/oauth_bb.py:290 #, python-format msgid "Not Linked to %(oauth)s." -msgstr "" +msgstr "Non collegato a %(oauth)s." #: cps/oauth_bb.py:318 msgid "GitHub Oauth error, please retry later." @@ -638,12 +638,12 @@ msgstr "Spiacente, ma non sei autorizzato a togliere libri dallo scaffale: %(sna #: cps/shelf.py:215 cps/shelf.py:252 #, python-format msgid "A public shelf with the name '%(title)s' already exists." -msgstr "" +msgstr "Uno scaffale pubblico denominato '%(title)s' esiste già." #: cps/shelf.py:222 cps/shelf.py:260 #, python-format msgid "A private shelf with the name '%(title)s' already exists." -msgstr "" +msgstr "Uno scaffale privato denominato '%(title)s' esiste già." #: cps/shelf.py:228 #, python-format @@ -685,129 +685,121 @@ msgstr "Libro nascosto" msgid "Change order of Shelf: '%(name)s'" msgstr "Modifica l'ordine dello scaffale: '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Aggiunti recentemente" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Mostra l'opzione per la selezione dei libri più recenti" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Libri popolari" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Mostra l'opzione per la selezione dei libri più popolari" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Libri meglio valutati" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Mostra l'opzione per la selezione dei libri meglio valutati" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Libri da leggere" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Mostra l'opzione per la selezione letto e non letto" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Libri non letti" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Mostra l'opzione per la selezione dei libri non letti" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Per scoprire" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Mostra l'opzione per presentare libri aleatoriamente" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Categorie" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Mostra l'opzione per la selezione delle categorie" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Serie" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Mostra l'opzione per la selezione delle serie" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Autori" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Mostra l'opzione per la selezione degli autori" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Editori" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Mostra l'opzione per la selezione degli editori" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Lingue" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Mostra l'opzione per la selezione delle lingue" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Valutazioni" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Mostra l'opzione per la selezione della valutazione" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Formati file" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Mostra la selezione del formato dei file" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Dati inattesi durante il processo di aggiornamento" #: cps/updater.py:301 cps/updater.py:412 msgid "No update available. You already have the latest version installed" -msgstr "Nessun aggiornamento disponibile. L'ultima versione è già installata" +msgstr "Nessun aggiornamento disponibile. Hai già installata l'ultima versione disponibile" #: cps/updater.py:333 msgid "A new update is available. Click on the button below to update to the latest version." @@ -830,223 +822,223 @@ msgstr "Nuovo aggiornamento disponibile. Clicca sul pulsante sottostante per agg msgid "Click on the button below to update to the latest stable version." msgstr "Clicca sul pulsante per aggiornare all'ultima versione stabile." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" -msgstr "" +msgstr "Errore: %(ldaperror)s" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" -msgstr "" +msgstr "Errore: nessun utente restituito in risposta dal server LDAP" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" -msgstr "" +msgstr "Fallita la creazione di almeno un utente LDAP" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" -msgstr "" +msgstr "Almeno un utente LDAP non è stato trovato nel database" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" -msgstr "" +msgstr "Utente importato con successo" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Libri aggiunti di recente" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Scopri (libri casuali)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Libri" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "I libri più richiesti" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" -msgstr "Oops! Errore durante l'apertura del libro selezionato. Il file non esiste o il file non è accessibile" +msgstr "Errore durante l'apertura del libro selezionato. Il file non esiste o il file non è accessibile" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Autore: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Editore: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Serie: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Valutazione: %(rating)s stelle" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Formato del file: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Categoria: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Lingua: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Elenco delle valutazioni" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Elenco dei formati" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Compito" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Cerca" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Pubblicato dopo " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Pubblicato prima " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Valutazione <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Valutazione >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "ricerca" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Libro accodato con successo per essere spedito a %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Si è verificato un errore durante l'invio di questo libro: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." -msgstr "Per favore configura dapprima il tuo indirizzo e-mail di Kindle..." +msgstr "Per favore aggiorna il tuo profilo con un indirizzo e-mail Kindle a cui inviare i libri." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "Il server e-mail non è configurato, per favore contatta l'amministratore" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "registra" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" -msgstr "Il tuo e-mail non può essere utilizzato per la registrazione" +msgstr "Il tuo e-mail non è autorizzato alla registrazione" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Un e-mail di conferma è stato inviato al tuo indirizzo." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Questo nome di utente o questo e-mail sono già utilizzati." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Non posso attivare l'autenticazione LDAP" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" -msgstr "" +msgstr "Login come: '%(nickname)s', il server LDAP non è raggiungibile o l'utente è sconosciuto" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" -msgstr "" +msgstr "Non posso accedere: %(message)s" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Nome utente o password errati" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Una nuova password è stata inviata al tuo recapito e-mail" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Per favore digita un nome di utente valido per resettare la password" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Ora sei connesso come '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "accedi" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Token non trovato" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Il token è scaduto" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Riuscito! Torna al tuo dispositivo" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Profilo di %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profilo aggiornato" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Errore nell'aprire il libro. Il file non esiste o il file non è accessibile:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Leggi un libro" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Errore nell'aprire il libro. Il file non esiste o il file non è accessibile." @@ -1111,7 +1103,7 @@ msgstr "Aggiungi un nuovo utente" #: cps/templates/admin.html:40 cps/templates/admin.html:41 msgid "Import LDAP Users" -msgstr "" +msgstr "Importa gli utenti LDAP" #: cps/templates/admin.html:48 msgid "E-mail Server Settings" @@ -1119,11 +1111,11 @@ msgstr "Configurazione server SMTP" #: cps/templates/admin.html:51 cps/templates/email_edit.html:11 msgid "SMTP Hostname" -msgstr "indirizzo server SMTP" +msgstr "Indirizzo server SMTP" #: cps/templates/admin.html:52 cps/templates/email_edit.html:15 msgid "SMTP Port" -msgstr "porta SMTP" +msgstr "Porta SMTP" #: cps/templates/admin.html:53 cps/templates/email_edit.html:19 msgid "Encryption" @@ -1131,7 +1123,7 @@ msgstr "SSL" #: cps/templates/admin.html:54 cps/templates/email_edit.html:27 msgid "SMTP Login" -msgstr "login SMTP" +msgstr "Login SMTP" #: cps/templates/admin.html:55 cps/templates/email_edit.html:35 msgid "From E-mail" @@ -1247,8 +1239,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1295,7 +1287,7 @@ msgstr "Elimina libro" msgid "Delete formats:" msgstr "Elimina i formati:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1325,148 +1317,120 @@ msgstr "Converti libro" msgid "Book Title" msgstr "Titolo del libro" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Autore" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Descrizione" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Categorie" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "ID della serie" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Valutazione" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Carica la copertina da URL (jpg, la copertina viene caricata e salvata nel database)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Carica la copertina dal disco locale" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Data di pubblicazione" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Editore" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Lingua" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Sì" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "No" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Carica formato" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "visualizza il libro dopo la modifica" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Ottieni metadati" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Salva" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Sei davvero sicuro?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Il libro verrà cancellato dal database di Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "e dal disco rigido" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Parola chiave" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " ricerca parola chiave " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Fai clic sulla copertina per caricare i metadati presenti nel modulo" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Caricamento in corso..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Chiudi" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Fonte" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Errore di ricerca!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Nessun risultato! Prova con un altro criterio di ricerca." @@ -1638,107 +1602,123 @@ msgstr "Nome o indirizzo IP del server LDAP" msgid "LDAP Server Port" msgstr "Porta del server LDAP" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" -msgstr "" +msgstr "Cifratura LDAP" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Nessuna" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" -msgstr "" +msgstr "TLS" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" -msgstr "" +msgstr "SSL" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" -msgstr "" +msgstr "Cartella del certificato LDAP" + +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "Autenticazione LDAP" #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "Anonimo" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "Non autenticato" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "Semplice" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "Nome di utente dell'amministratore LDAP" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "Password dell'amministratore LDAP" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP Distinguished Name (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP User object filter" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "Il server LDAP è un server OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" -msgstr "" +msgstr "I seguenti parametri sono necessari per importare utenti" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" -msgstr "" +msgstr "LDAP Group Object Filter" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" -msgstr "" +msgstr "LDAP Group Name" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" -msgstr "" +msgstr "LDAP Group Members Field" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Ottieni le credenziali OAuth di %(provider)s" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth Client Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Client Secret" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Files binari esterni" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Nessun convertitore" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Utilizza Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Utilizza il convertitore di Calibre" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Configurazione del convertitore di libri" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Percorso del convertitore" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Percorso di UnRar" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Accesso" @@ -1785,7 +1765,7 @@ msgstr "Visualizza le restrizioni basate sulla colonna di Calibre" #: cps/templates/config_view_edit.html:68 msgid "Regular Expression for Title Sorting" -msgstr "Espressione regolare per ordinare la visualizzazione del titolo" +msgstr "Espressione regolare per ordinare la visualizzazione dei titoli" #: cps/templates/config_view_edit.html:80 msgid "Default Settings for New Users" @@ -1827,7 +1807,7 @@ msgstr "Permetti la modifica degli scaffali pubblici" msgid "Default Visibilities for New Users" msgstr "Visibilità di base per i nuovi utenti" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Mostra libri scelti aleatoriamente nella vista dettagliata" @@ -1837,7 +1817,7 @@ msgstr "Aggiungi categorie permesse/negate" #: cps/templates/config_view_edit.html:145 msgid "Add Allowed/Denied custom column values" -msgstr "Aggiungi valori personali nelle colonne permessi/negati" +msgstr "Aggiungi valori personali permetti/nega nelle colonne" #: cps/templates/detail.html:59 msgid "Read in Browser" @@ -1871,27 +1851,15 @@ msgstr "Marca come letto" msgid "Read" msgstr "da leggere" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Descrizione:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Aggiungi allo scaffale" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Modifica metadati" @@ -1905,7 +1873,7 @@ msgstr "SSL/TLS" #: cps/templates/email_edit.html:31 msgid "SMTP Password" -msgstr "password SMTP" +msgstr "Password SMTP" #: cps/templates/email_edit.html:39 msgid "Save and Send Test E-mail" @@ -1917,7 +1885,7 @@ msgstr "Dominii autorizzati alla registrazione (Whitelist)" #: cps/templates/email_edit.html:46 cps/templates/email_edit.html:72 msgid "Add Domain" -msgstr "Aggiungi il dominio" +msgstr "Aggiungi dominio" #: cps/templates/email_edit.html:49 cps/templates/email_edit.html:75 msgid "Add" @@ -1933,7 +1901,7 @@ msgstr "Dominii bloccati per la registrazione (Blacklist)" #: cps/templates/email_edit.html:90 msgid "Are you sure you want to delete this domain?" -msgstr "Vuoi veramente eliminare questa regola di dominio?" +msgstr "Se sicuro di voler eliminare questo dominio?" #: cps/templates/feed.xml:21 cps/templates/layout.html:173 msgid "Next" @@ -1942,7 +1910,7 @@ msgstr "Prossimo" #: cps/templates/feed.xml:79 cps/templates/layout.html:136 #: cps/templates/layout.html:140 msgid "(Public)" -msgstr "" +msgstr "(Pubblico)" #: cps/templates/generate_kobo_auth_url.html:5 msgid "Open the .kobo/Kobo eReader.conf file in a text editor and add (or edit):" @@ -1984,7 +1952,7 @@ msgstr "Gli ultimi libri" msgid "Random Books" msgstr "Libri presentati aleatoriamente" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Mostra libri casualmente" @@ -2018,11 +1986,11 @@ msgstr "Libri ordinati per formato" #: cps/templates/index.xml:111 cps/templates/layout.html:134 msgid "Shelves" -msgstr "" +msgstr "Scaffali" #: cps/templates/index.xml:115 msgid "Books organized in shelves" -msgstr "" +msgstr "Libri organizzati in scaffali" #: cps/templates/layout.html:28 msgid "Home" @@ -2137,7 +2105,7 @@ msgstr "Seleziona le categorie consentite/negate" #: cps/templates/modal_restriction.html:7 msgid "Select Allowed/Denied Custom Column Values" -msgstr "Seleziona i valori personali per le colonne consentiti/negati" +msgstr "Seleziona i valori personali consentiti/negati per le colonne" #: cps/templates/modal_restriction.html:8 msgid "Select Allowed/Denied Tags of User" @@ -2145,7 +2113,7 @@ msgstr "Seleziona le categorie consentite/negate per l'utente" #: cps/templates/modal_restriction.html:9 msgid "Select Allowed/Denied Custom Column Values of User" -msgstr "Seleziona i valori personali per le colonne consentiti/negati per l'utente" +msgstr "Seleziona i valori personali consentiti/negati per le colonne dell'utente" #: cps/templates/modal_restriction.html:15 msgid "Enter Tag" @@ -2469,7 +2437,7 @@ msgstr "Crea/Visualizza" #: cps/templates/user_edit.html:84 msgid "Add allowed/Denied Custom Column Values" -msgstr "Aggiungi valori personali nelle colonne permessi/negati" +msgstr "Aggiungi valori personali permessi/negati nelle colonne" #: cps/templates/user_edit.html:129 msgid "Delete User" @@ -2485,5 +2453,5 @@ msgstr "Genera un URL di autenticazione per Kobo" #: cps/templates/user_edit.html:176 msgid "Do you really want to delete the Kobo Token?" -msgstr "Vuoi veramente eliminare questo token di Kobo?" +msgstr "Vuoi veramente eliminare il token di Kobo?" diff --git a/cps/translations/ja/LC_MESSAGES/messages.po b/cps/translations/ja/LC_MESSAGES/messages.po index ebd6a584..84d88605 100644 --- a/cps/translations/ja/LC_MESSAGES/messages.po +++ b/cps/translations/ja/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2018-02-07 02:20-0500\n" "Last-Translator: white \n" "Language: ja\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "不明" @@ -60,7 +60,7 @@ msgstr "管理者ページ" msgid "UI Configuration" msgstr "UI設定" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web の設定を更新しました" @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "基本設定" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "全ての項目を入力してください" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "新規ユーザ追加" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "このメールは有効なドメインからのものではありません" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "このメールアドレスかニックネームで登録されたアカウントが見つかりました" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "ユーザ '%(user)s' を作成しました" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "メールサーバの設定を編集" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "テストメールが %(kindlemail)s に送信されました" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "テストメールを %(res)s に送信中にエラーが発生しました" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "メールサーバの設定を更新しました" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "ユーザ '%(nick)s' を削除しました" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "このメールアドレスで登録されたアカウントがあります" -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "%(nick)s を編集" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "ユーザ '%(nick)s' を更新しました" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "不明なエラーが発生しました。" -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "%(user)s 用のパスワードをリセット" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "不明なエラーが発生しました。あとで再試行してください。" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "初めにSMTPメールの設定をしてください" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "更新データを要求中" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "更新データをダウンロード中" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "更新データを展開中" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "ファイルを置換中" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "データベースの接続を切断完了" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "サーバ停止中" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "アップデート完了、OKを押してページをリロードしてください" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "アップデート失敗:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTPエラー" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "接続エラー" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "接続を確立中にタイムアウトしました" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "エラー発生" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -276,89 +276,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "電子書籍を開けません。ファイルが存在しないかアクセスできません" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "メタデータを編集" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ファイル拡張子 '%(ext)s' をこのサーバにアップロードすることは許可されていません" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "アップロードするファイルには拡張子が必要です" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "%(path)s の作成に失敗しました (Permission denied)。" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "%(file)s を保存できません。" -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ファイル形式 %(ext)s が %(book)s に追加されました" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s は有効な言語ではありません" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "メタデータを更新しました" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "本の編集でエラーが発生しました。詳細はログファイルを確認してください" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "ファイル %(file)s の保存に失敗しました (Permission denied)。" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "ファイル %(file)s の削除に失敗しました (Permission denied)。" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "変換元の形式または変換後の形式が指定されていません" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "本の %(book_format)s への変換がキューに追加されました" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "この本の変換中にエラーが発生しました: %(res)s" @@ -542,7 +542,7 @@ msgstr "" msgid "Failed to fetch user info from Google." msgstr "" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "%(nickname)s としてログイン中" @@ -686,122 +686,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "'%(name)s' 内の本の順番を変更する" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "最近追加した本" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "最近追加された本を表示" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "人気の本" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "読んだ本" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "既読の本と未読の本を表示" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "未読の本" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "見つける" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "ランダムで本を表示" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "カテゴリ" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "カテゴリ選択を表示" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "シリーズ" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "シリーズ選択を表示" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "著者" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "著者選択を表示" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "出版社" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "出版社選択を表示" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "言語" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "言語選択を表示" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "アップデート情報を読み込み中に予期しないデータが見つかりました" @@ -831,223 +823,223 @@ msgstr "アップデートが利用可能です。下のボタンをクリック msgid "Click on the button below to update to the latest stable version." msgstr "" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "最近追加された本" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "本を見つける (ランダムで表示)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "出版社: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "シリーズ: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "カテゴリ: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "言語: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "タスク" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "検索" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "これ以降に出版 " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "これ以前に出版 " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "評価 <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "評価 >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "検索" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "本の %(kindlemail)s への送信がキューに追加されました" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "%(res)s を送信中にエラーが発生しました" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "初めにKindleのメールアドレスを設定してください" -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "登録" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "このメールアドレスは登録が許可されていません" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "確認メールがこのメールアドレスに送信されました。" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "このユーザ名またはメールアドレスはすでに使われています。" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "ユーザ名またはパスワードが違います" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "ログイン" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "トークンが見つかりません" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "トークンが無効です" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "成功です!端末に戻ってください" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s のプロフィール" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "プロフィールを更新しました" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "電子書籍を開けません。ファイルが存在しないかアクセスできません:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "本を読む" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "" @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "本を削除" msgid "Delete formats:" msgstr "削除する形式:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "本を変換" msgid "Book Title" msgstr "本のタイトル" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "著者" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "詳細" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "タグ" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "評価" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "出版社" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "言語" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "はい" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "いいえ" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "よろしいですか?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "キーワード" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "キーワードを検索" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "カバー画像をクリックしてメタデータをフォームに読み込んでください" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "読み込み中..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "閉じる" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "ソース" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "検索エラー" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "検索結果が見つかりません。別のキーワードで検索してみてください。" @@ -1639,107 +1603,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "なし" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "外部バイナリ" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Kindlegenを使う" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "calibreのebook converterを使う" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "E-Book converterの設定" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "convertertoolのパス" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Unrarバイナリのパス" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "ログイン" @@ -1828,7 +1808,7 @@ msgstr "みんなの本棚の編集を許可" msgid "Default Visibilities for New Users" msgstr "" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "" @@ -1872,27 +1852,15 @@ msgstr "既読に設定" msgid "Read" msgstr "読んだ" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "詳細:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "本棚に追加" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "" @@ -1985,7 +1953,7 @@ msgstr "最新の本" msgid "Random Books" msgstr "ランダム" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "ランダムで本を表示" diff --git a/cps/translations/km/LC_MESSAGES/messages.po b/cps/translations/km/LC_MESSAGES/messages.po index 063385a7..937a5a20 100644 --- a/cps/translations/km/LC_MESSAGES/messages.po +++ b/cps/translations/km/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2018-08-27 17:06+0700\n" "Last-Translator: \n" "Language: km_KH\n" @@ -47,8 +47,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "មិនដឹង" @@ -61,7 +61,7 @@ msgstr "ទំព័ររដ្ឋបាល" msgid "UI Configuration" msgstr "ការកំណត់ផ្ទាំងប្រើប្រាស់" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "" @@ -91,185 +91,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "ការកំណត់សាមញ្ញ" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "សូមបំពេញចន្លោះទាំងអស់!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "បន្ថែមអ្នកប្រើប្រាស់ថ្មី" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "បានបង្កើតអ្នកប្រើប្រាស់ ‘%(user)s’" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "អ្នកប្រើប្រាស់ ‘%(nick)s’ ត្រូវបានលុប" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "" -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "កែប្រែអ្នកប្រើប្រាស់ %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "អ្នកប្រើប្រាស់ ‘%(nick)s’ ត្រូវបានកែប្រែ" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "បញ្ហាដែលមិនដឹងបានកើតឡើង។" -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "សូមកំណត់អ៊ីមែល SMTP ជាមុនសិន" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "កំពុងស្នើសុំឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "កំពុងទាញយកឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "កំពុងពន្លាឯកសារបច្ចុប្បន្នភាព" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "ទំនាក់ទំនងទៅមូលដ្ឋានទិន្នន័យត្រូវបានផ្តាច់" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "ការធ្វើបច្ចុប្បន្នភាពបានបញ្ចប់ សូមចុច okay រួចបើកទំព័រជាថ្មី" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -277,89 +277,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "មានបញ្ហាពេលបើកឯកសារ eBook ។ ពុំមានឯកសារ ឬឯកសារនេះមិនអាចបើកបាន" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "កែប្រែទិន្នន័យមេតា" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "ឯកសារប្រភេទ '%(ext)s' មិនត្រូវបានអនុញ្ញាតឲអាប់ឡូដទៅម៉ាស៊ីន server នេះទេ" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "ឯកសារដែលត្រូវអាប់ឡូដត្រូវមានកន្ទុយឯកសារ" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "មិនអាចបង្កើតទីតាំង %(path)s (ពុំមានសិទ្ធិ)។" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "មិនអាចរក្សាទុកឯកសារ %(file)s ។" -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "ឯកសារទម្រង់ %(ext)s ត្រូវបានបន្ថែមទៅ %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "មានបញ្ហាពេលកែប្រែសៀវភៅ សូមពិនិត្យមើល logfile សម្រាប់ព័ត៌មានបន្ថែម" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "មិនអាចរក្សាទុកឯកសារ %(file)s (មិនមានសិទ្ធិ)។" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "មិនអាចលុបឯកសារ %(file)s (មិនមានសិទ្ធិ)។" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" @@ -543,7 +543,7 @@ msgstr "" msgid "Failed to fetch user info from Google." msgstr "" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "ឥឡូវអ្នកបានចូលដោយមានឈ្មោះថា៖ ‘%(nickname)s’" @@ -687,122 +687,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "ប្តូរលំដាប់ធ្នើ៖ ‘%(name)s’" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "ទើបបន្ថែមថ្មីៗ" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "បង្ហាញសៀវភៅមកថ្មី" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "សៀវភៅដែលមានប្រជាប្រិយភាព" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "បង្ហាញសៀវភៅដែលមានប្រជាប្រិយភាព" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "សៀវភៅដែលមានការវាយតម្លៃល្អជាងគេ" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "បង្ហាញសៀវភៅដែលមានការវាយតម្លៃល្អជាងគេ" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "សៀវភៅដែលបានអានរួច" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "បង្ហាញអានរួច និងមិនទាន់អាន" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "សៀវភៅដែលមិនទាន់បានអាន" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "ស្រាវជ្រាវ" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "បង្ហាញសៀវភៅចៃដន្យ" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "ប្រភេទនានា" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "បង្ហាញជម្រើសប្រភេទ" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "ស៊េរី" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "បង្ហាញជម្រើសស៊េរី" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "អ្នកនិពន្ធ" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "បង្ហាញជម្រើសអ្នកនិពន្ធ" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "ភាសានានា" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "បង្ហាញផ្នែកភាសា" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "" @@ -832,223 +824,223 @@ msgstr "" msgid "Click on the button below to update to the latest stable version." msgstr "" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "សៀវភៅដែលទើបបានបន្ថែម" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "ស្រាវជ្រាវ (សៀវភៅចៃដន្យ)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "សៀវភៅដែលត្រូវបានទាញយកច្រើនជាងគេ" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "ស៊េរី៖ %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "ប្រភេទ៖ %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "ភាសា៖ %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "កិច្ចការនានា" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "ស្វែងរក" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "បានបោះពុម្ភក្រោយ " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "បានបោះពុម្ភមុន " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "ការវាយតម្លៃ <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "ការវាយតម្លៃ >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "ស្វែងរក" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "សៀវភៅបានចូលជួរសម្រាប់ផ្ញើទៅ %(kindlemail)s ដោយជោគជ័យ" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "មានបញ្ហានៅពេលផ្ញើសៀវភៅនេះ៖ %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "" -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "ចុះឈ្មោះ" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "ខុសឈ្មោះអ្នកប្រើប្រាស់ ឬលេខសម្ងាត់" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "ចូលប្រើ" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "រកមិនឃើញវត្ថុតាង" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "វត្ថុតាងហួសពេលកំណត់" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "ជោគជ័យ! សូមវិលមកឧបករណ៍អ្នកវិញ" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "ព័ត៌មានសង្ខេបរបស់ %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "ព័ត៌មានសង្ខេបបានកែប្រែ" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "មានបញ្ហាពេលបើកឯកសារ eBook ។ មិនមានឯកសារនេះ ឬមិនអាចបើកបាន៖" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "អានសៀវភៅ" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "" @@ -1249,8 +1241,8 @@ msgid "OK" msgstr "បាទ/ចាស" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1297,7 +1289,7 @@ msgstr "លុបសៀវភៅ" msgid "Delete formats:" msgstr "លុបឯកសារទម្រង់៖" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1327,148 +1319,120 @@ msgstr "" msgid "Book Title" msgstr "ចំណងជើងសៀវភៅ" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "អ្នកនិពន្ធ" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "ពិពណ៌នា" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Tag" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "លេខសម្គាល់ស៊េរី" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "ការវាយតម្លៃ" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "URL របស់ក្របមុខ (ឯកសារ JPG ក្របមុខត្រូវបានទាញយក និងរក្សាទុកក្នុង database ក្រោយមកចន្លោះនេះទទេម្តងទៀត)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "ថ្ងៃបោះពុម្ភ" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "អ្នកបោះពុម្ភ" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "ភាសា" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "បាទ/ចាស" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "ទេ" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "ទម្រង់អាប់ឡូដ" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "មើលសៀវភៅក្រោយពីកែប្រែ" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "មើលទិន្នន័យមេតា" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "សៀវភៅនឹងត្រូវលុបចេញពី database របស់ Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "និងពីថាសរឹង" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "ពាក្យគន្លឹះ" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "ស្វែងរកពាក្យគន្លឹះ" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "ចុចលើគម្របដើម្បីបញ្ចូលទិន្នន័យមេតាទៅក្នុង form" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "កំពុងដំណើរការ..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "បិទ" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "ប្រភព" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "ការស្វែងរកមានកំហុស!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "" @@ -1640,107 +1604,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "គ្មាន" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "គ្មានកម្មវិធីបម្លែង" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "ប្រើ Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "ប្រើកម្មវិធីបម្លែង eBook របស់ Calibre" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "ការកំណត់របស់កម្មវិធីបម្លែង eBook" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "ទីតាំងរបស់កម្មវិធីបម្លែង" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "ចូលប្រើប្រាស់" @@ -1829,7 +1809,7 @@ msgstr "អនុញ្ញាតឲកែប្រែធ្នើសាធារ msgid "Default Visibilities for New Users" msgstr "ភាពមើលឃើញដែលមកស្រាប់សម្រាប់អ្នកប្រើប្រាស់ថ្មី" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "បង្ហាញសៀវភៅចៃដន្យក្នុងការបង្ហាញជាពិស្តារ" @@ -1873,27 +1853,15 @@ msgstr "" msgid "Read" msgstr "អាន" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "ពិពណ៌នា" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "បន្ថែមទៅធ្នើ" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "កែប្រែទិន្នន័យមេតា" @@ -1986,7 +1954,7 @@ msgstr "សៀវភៅចុងក្រោយគេ" msgid "Random Books" msgstr "សៀវភៅចៃដន្យ" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "បង្ហាញសៀវភៅចៃដន្យ" diff --git a/cps/translations/nl/LC_MESSAGES/messages.po b/cps/translations/nl/LC_MESSAGES/messages.po index c0777aae..17b2bc1d 100644 --- a/cps/translations/nl/LC_MESSAGES/messages.po +++ b/cps/translations/nl/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web (GPLV3)\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-03-06 19:28+0100\n" "Last-Translator: Ed Driesen \n" "Language: nl\n" @@ -47,8 +47,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Onbekend" @@ -61,7 +61,7 @@ msgstr "Systeembeheer" msgid "UI Configuration" msgstr "Uiterlijk aanpassen" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web-configuratie bijgewerkt" @@ -91,275 +91,275 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Basis configuratie" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Vul alle velden in!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Nieuwe gebruiker toevoegen" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "Het e-mailadres bevat geen geldige domeinnaam" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Er is een bestaand account met dit e-mailadres of deze gebruikersnaam aangetroffen." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Gebruiker '%(user)s' aangemaakt" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "E-mailserverinstellingen bewerken" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Test-e-mail verstuurd naar %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Fout opgetreden bij het versturen van de test-e-mail: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Gelieve eerst je e-mail adres configureren..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "E-mailserverinstellingen bijgewerkt" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Gebruiker '%(nick)s' is verwijderd" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Kan laatste systeembeheerder niet verwijderen" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Bestaand account met dit e-mailadres aangetroffen." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Gebruiker '%(nick)s' bewerken" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Deze gebruikersnaam is reeds ingenomen door iemand" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Gebruiker '%(nick)s' bijgewerkt" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Er is een onbekende fout opgetreden." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Wachtwoord voor gebruiker %(user)s is hersteld" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Onbekende fout opgetreden. Probeer het later nog eens." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Stel eerst SMTP-mail in..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Logbestand lezer" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Bezig met opvragen van updatepakket" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Bezig met downloaden van updatepakket" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Bezig met uitpakken van updatepakket" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Bezig met bestandsvervanging" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Databankverbindingen zijn gesloten" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Bezig met stoppen van server" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Update voltooid; klik op 'Oké' en vernieuw de pagina" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Update mislukt:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP-fout" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Verbindingsfout" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Time-out tijdens maken van verbinding" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Algemene fout" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" -msgstr "Geüpload bestand kon niet opgeslagen worden in tijdelijke map" +msgstr "" #: cps/converter.py:31 msgid "not configured" msgstr "niet geconfigureerd" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Kan e-boek niet openen: het bestand bestaat niet of is ontoegankelijk" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "metagegevens bewerken" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "De bestandsextensie '%(ext)s' is niet toegestaan op deze server" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Het te uploaden bestand moet voorzien zijn van een extensie" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Kan het pad '%(path)s' niet creëren (niet gemachtigd)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Kan %(file)s niet opslaan." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Bestandsformaat %(ext)s toegevoegd aan %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Cover is geen jpg bestand, opslaan niet mogelijk" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s is geen geldige taal" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "De metagegevens zijn bijgewerkt" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Kan het boek niet bewerken; controleer het logbestand" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" -msgstr "Bestand %(filename)s kon niet in de tijdelijke map opgeslagen worden" +msgstr "Bestand %(filename)s kon niet in de tijdelijke map opgeslaan worden" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Geüpload boek bestaat waarschijnlijk in de bibliotheek, overweeg wijzigingen alvorens opnieuw te proberen: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Kan %(file)s niet opslaan (niet gemachtigd)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Kan %(file)s niet verwijderen (niet gemachtigd)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Bestand %(file)s geüpload" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Bron- of doelformaat ontbreekt voor conversie" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Het boek is in de wachtrij geplaatst voor conversie naar %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Er is een fout opgetreden bij het converteren van dit boek: %(res)s" @@ -543,7 +543,7 @@ msgstr "Aanmelden bij Google mislukt." msgid "Failed to fetch user info from Google." msgstr "Opvragen gebruikersinfo bij Google mislukt." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "je bent ingelogd als: '%(nickname)s'" @@ -640,12 +640,12 @@ msgstr "Sorry, je mag geen boeken verwijderen van deze boekenplank: %(sname)s" #: cps/shelf.py:215 cps/shelf.py:252 #, python-format msgid "A public shelf with the name '%(title)s' already exists." -msgstr "Een openbare boekenplank met de naam '%(title)s' bestaat al." +msgstr "" #: cps/shelf.py:222 cps/shelf.py:260 #, python-format msgid "A private shelf with the name '%(title)s' already exists." -msgstr "Een persoonlijke boekenplank met de naam '%(title)s' bestaat al." +msgstr "" #: cps/shelf.py:228 #, python-format @@ -658,7 +658,7 @@ msgstr "Er is een fout opgetreden" #: cps/shelf.py:232 cps/shelf.py:234 cps/templates/layout.html:143 msgid "Create a Shelf" -msgstr "Maak een boekenplank" +msgstr "creëer een boekenplank" #: cps/shelf.py:270 #, python-format @@ -687,122 +687,114 @@ msgstr "Verborgen boek" msgid "Change order of Shelf: '%(name)s'" msgstr "Volgorde bewerken van boekenplank '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Recent toegevoegd" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Recent toegevoegde boeken tonen" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Populaire boeken" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Populaire boeken tonen" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Best beoordeelde boeken" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Best beoordeelde boeken tonen" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Gelezen boeken" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Gelezen/Ongelezen boeken tonen" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Ongelezen boeken" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Ongelezen boeken tonen" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Willekeurige boeken" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Willekeurige boeken tonen" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Categorieën" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Categoriekeuze tonen" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Boekenreeksen" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Boekenreeksen keuze tonen" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Auteurs" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Auteurkeuze tonen" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Uitgevers" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Uitgeverskeuze tonen" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Talen" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Taalkeuze tonen" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Beoordelingen" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Beoordelingen tonen" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Bestandsformaten" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Bestandsformaten tonen" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Onverwachte gegevens tijdens het uitlezen van de update-informatie" @@ -832,223 +824,223 @@ msgstr "Er is een update beschikbaar. Klik op de knop hieronder om te updaten na msgid "Click on the button below to update to the latest stable version." msgstr "Druk op onderstaande knop om de laatste stabiele versie te installeren." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Recent toegevoegde boeken" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Verkennen (willekeurige boeken)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Boeken" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Populaire boeken (meest gedownload)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Oeps! Geselecteerd boek is niet beschikbaar. Bestand bestaat niet of is niet toegankelijk" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Auteur: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Uitgever: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Reeks: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Beoordeling: %(rating)s sterren" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Bestandsformaat: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Categorie: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Taal: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Beoordelingen" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Alle bestandsformaten" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Taken" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Zoeken" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Gepubliceerd na " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Gepubliceerd vóór " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Beoordeling <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Beoordeling >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "zoeken" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Het boek is in de wachtrij geplaatst om te worden verstuurd aan %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Fout opgetreden bij het versturen van dit boek: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Stel je kindle-e-mailadres in..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "E-Mail server is niet geconfigureerd, contacteer alstublieft je administrator!" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "registreren" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Dit e-mailadres mag niet worden gebruikt voor registratie" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Er is een bevestigingse-mail verstuurd naar je e-mailadres." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Deze gebruikersnaam of e-mailadres is al in gebruik." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Kan de LDAP authenticatie niet activeren" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Verkeerde gebruikersnaam of wachtwoord" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Een nieuw wachtwoord werd verzonden naar je email adres" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Gelieve een geldige gebruikersnaam opgeven om je wachtwoord te resetten" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Je bent ingelogd als: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "inloggen" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Toegangssleutel niet gevonden" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Toegangssleutel is verlopen" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Gelukt! Ga terug naar je apparaat" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s's profiel" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profiel bijgewerkt" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Fout tijdens het openen van eBook. Bestand bestaat niet of is niet toegankelijk:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Lees een boek" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Fout tijdens het openen van eBook. Bestand bestaat niet of is niet toegankelijk." @@ -1109,7 +1101,7 @@ msgstr "Bewerken" #: cps/templates/admin.html:38 msgid "Add New User" -msgstr "Gebruiker toevoegen" +msgstr "Voeg Nieuwe Gebruiker toe" #: cps/templates/admin.html:40 cps/templates/admin.html:41 msgid "Import LDAP Users" @@ -1249,8 +1241,8 @@ msgid "OK" msgstr "Oké" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1297,7 +1289,7 @@ msgstr "Boek verwijderen" msgid "Delete formats:" msgstr "Formaten verwijderen:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1327,148 +1319,120 @@ msgstr "Boek converteren" msgid "Book Title" msgstr "Boektitel" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Auteur" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Omschrijving" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Labels" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "Series ID" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Beoordeling" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Boekomslag-url (jpg - de omslag wordt gedownload en opgeslagen in de databank; het invoerveld is nadien leeg)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Omslag uploaden vanaf computer" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Publicatiedatum" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Uitgever" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Taal" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Nee" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Uploadformaat" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "Boek inkijken na bewerking" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Metagegevens ophalen" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Opslaan" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Weet je het zeker?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Het boek wordt verwijderd uit de Calibre-database" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "en van de harde schijf" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Trefwoord" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Trefwoord zoeken " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Klik op de omslag om de metagegevens in het formulier te laden" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Bezig met laden..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Sluiten" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Bron" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Zoekfout!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Geen resultaten gevonden! Gebruik een ander trefwoord." @@ -1640,107 +1604,123 @@ msgstr "LDAP Server hostnaam of IP-adres" msgid "LDAP Server Port" msgstr "LDAP Server Poort" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Geen" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "LDAP Administrator naam" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "LDAP Administrator wachtwoord" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP Distinguished Name (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP User Object Filter" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "LDAP Server is OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Verkrijg %(provider)s OAuth Verificatiegegevens" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth Client Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Client geheim" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Externe programma's" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Geen conversieprogramma" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "KindleGen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Calibre's e-boekconversie gebruiken" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Conversie-instellingen" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Locatie van conversieprogramma" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Locatie van Unrar-programma" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Inloggen" @@ -1829,7 +1809,7 @@ msgstr "Bewerken van openbare boekenplanken toestaan" msgid "Default Visibilities for New Users" msgstr "Standaard zichtbaar voor nieuwe gebruikers" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Willekeurige boeken tonen in gedetailleerde weergave" @@ -1873,27 +1853,15 @@ msgstr "Markeren als gelezen" msgid "Read" msgstr "Gelezen" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Beschrijving:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Toevoegen aan boekenplank" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Metagegevens bewerken" @@ -1944,7 +1912,7 @@ msgstr "Volgende" #: cps/templates/feed.xml:79 cps/templates/layout.html:136 #: cps/templates/layout.html:140 msgid "(Public)" -msgstr "(Openbaar)" +msgstr "" #: cps/templates/generate_kobo_auth_url.html:5 msgid "Open the .kobo/Kobo eReader.conf file in a text editor and add (or edit):" @@ -1986,7 +1954,7 @@ msgstr "Recentste boeken" msgid "Random Books" msgstr "Willekeurige boeken" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Willekeurige boeken tonen" @@ -2008,11 +1976,11 @@ msgstr "Boeken gesorteerd op reeks" #: cps/templates/index.xml:93 msgid "Books ordered by Languages" -msgstr "Boeken gesorteerd op taal" +msgstr "Boeken gesorteerd op Taal" #: cps/templates/index.xml:100 msgid "Books ordered by Rating" -msgstr "Boeken gesorteerd op beoordeling" +msgstr "" #: cps/templates/index.xml:108 msgid "Books ordered by file formats" @@ -2020,7 +1988,7 @@ msgstr "Boeken gesorteerd op bestandsformaat" #: cps/templates/index.xml:111 cps/templates/layout.html:134 msgid "Shelves" -msgstr "Boekenplanken" +msgstr "" #: cps/templates/index.xml:115 msgid "Books organized in shelves" @@ -2135,7 +2103,7 @@ msgstr "Toon Toegangslog: " #: cps/templates/modal_restriction.html:6 msgid "Select Allowed/Denied Tags" -msgstr "Selecteer Toegestane/Geweigerde tags" +msgstr "Selecteer Toegestaan/Geweigerd tags toe" #: cps/templates/modal_restriction.html:7 msgid "Select Allowed/Denied Custom Column Values" @@ -2143,11 +2111,11 @@ msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden" #: cps/templates/modal_restriction.html:8 msgid "Select Allowed/Denied Tags of User" -msgstr "Selecteer Toegestane/Geweigerde tags van gebruikers" +msgstr "Selecteer Toegestaan/Geweigerd tags van gebruikers" #: cps/templates/modal_restriction.html:9 msgid "Select Allowed/Denied Custom Column Values of User" -msgstr "Selecteer Toegestane/Geweigerde aangepaste kolom waarden van gebruikers" +msgstr "Selecteer Toegestaan/Geweigerd aangepaste kolom waarden van gebruikers" #: cps/templates/modal_restriction.html:15 msgid "Enter Tag" @@ -2195,11 +2163,11 @@ msgstr "Ware grootte" #: cps/templates/readcbr.html:97 msgid "Rotate Right" -msgstr "Rechtsom draaien" +msgstr "Naar rechts draaien" #: cps/templates/readcbr.html:98 msgid "Rotate Left" -msgstr "Linksom draaien" +msgstr "Naar links draaien" #: cps/templates/readcbr.html:99 msgid "Flip Image" diff --git a/cps/translations/pl/LC_MESSAGES/messages.po b/cps/translations/pl/LC_MESSAGES/messages.po index f8c9bdf8..eefa5709 100644 --- a/cps/translations/pl/LC_MESSAGES/messages.po +++ b/cps/translations/pl/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre Web - polski (POT: 2019-08-06 18:35)\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-03-31 21:50+0200\n" "Last-Translator: Jerzy Piątek \n" "Language: pl\n" @@ -48,8 +48,8 @@ msgid "Unknown command" msgstr "" # ??? -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Nieznany" @@ -62,7 +62,7 @@ msgstr "Panel administratora" msgid "UI Configuration" msgstr "Konfiguracja Interfejsu" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Konfiguracja Calibre-Web została zaktualizowana" @@ -92,187 +92,187 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Konfiguracja podstawowa" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Proszę wypełnić wszystkie pola!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Dodaj nowego użytkownika" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "E-mail nie pochodzi z prawidłowej domeny" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Znaleziono istniejące konto dla tego adresu e-mail lub pseudonimu." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Użytkownik '%(user)s' został utworzony" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Edycja ustawień serwera e-mail" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Testowy e-mail pomyślnie przesłany do %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Wystąpił błąd podczas wysyłania e-maila testowego: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Najpierw skonfiguruj swój adres e-mail..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Zaktualizowano ustawienia serwera poczty e-mail" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Użytkownik '%(nick)s' został usunięty" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Nie można usunąć użytkownika. Brak na serwerze innego konta z prawami administratora" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Znaleziono istniejące konto dla tego adresu e-mail." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Edytuj użytkownika %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Nazwa użytkownika jest już zajęta" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Użytkownik '%(nick)s' został zaktualizowany" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Wystąpił nieznany błąd." # ??? -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Zrestartowano hasło użytkownika %(user)s" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Wystąpił nieznany błąd. Spróbuj ponownie później." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Proszę najpierw skonfigurować ustawienia SMTP poczty e-mail..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Przeglądanie dziennika" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Żądanie o pakiet aktualizacji" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Pobieranie pakietu aktualizacji" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Rozpakowywanie pakietu aktualizacji" # ??? -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Zastępowanie plików" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Połączenia z bazą danych zostały zakończone" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Zatrzymywanie serwera" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Aktualizacja zakończona, proszę nacisnąć OK i odświeżyć stronę" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Aktualizacja nieudana:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "Błąd HTTP" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Błąd połączenia" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Przekroczono limit czasu podczas nawiązywania połączenia" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Błąd ogólny" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -280,89 +280,89 @@ msgstr "" msgid "not configured" msgstr "nie skonfigurowane" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Błąd podczas otwierania e-booka. Plik nie istnieje lub jest niedostępny" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "edytuj metadane" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Rozszerzenie pliku '%(ext)s' nie jest dozwolone do wysłania na ten serwer" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Plik do wysłania musi mieć rozszerzenie" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Nie udało się utworzyć łącza %(path)s (Odmowa dostępu)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Nie można zapisać pliku %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Format pliku %(ext)s dodany do %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Okładka nie jest plikiem jpg, nie można zapisać" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s nie jest prawidłowym językiem" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadane zostały pomyślnie zaktualizowane" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Błąd podczas edycji książki, sprawdź plik dziennika, aby uzyskać szczegółowe informacje" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Nie można zapisać pliku %(filename)s w katalogu tymczasowym" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Wysłana książka prawdopodobnie istnieje w bibliotece, rozważ zmianę przed przesłaniem nowej: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Nie można przechowywać pliku %(file)s (Odmowa dostępu)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Nie udało się usunąć pliku %(file)s (Odmowa dostępu)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Wysłano plik %(file)s" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Brak formatu źródłowego lub docelowego do konwersji" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Książka została pomyślnie umieszczona w zadaniach do konwersji %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Podczas konwersji książki wystąpił błąd: %(res)s" @@ -549,7 +549,7 @@ msgstr "Nie udało się zalogować do Google." msgid "Failed to fetch user info from Google." msgstr "Nie udało się pobrać informacji o użytkowniku z Google." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "zalogowałeś się jako: '%(nickname)s'" @@ -693,122 +693,114 @@ msgstr "Ukryta książka" msgid "Change order of Shelf: '%(name)s'" msgstr "Zmieniono kolejność półki: '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Ostatnio dodane" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Pokaż menu ostatnio dodanych książek" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Najpopularniejsze" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Pokaż menu najpopularniejszych książek" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Najwyżej ocenione" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Pokaż menu najwyżej ocenionych książek" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Przeczytane" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Pokaż menu przeczytane i nieprzeczytane" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Nieprzeczytane" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Pokaż nieprzeczytane" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Odkrywaj" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Pokaż menu losowych książek" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Kategorie" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Pokaż menu wyboru kategorii" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Cykle" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Pokaż menu wyboru cyklu" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Autorzy" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Pokaż menu wyboru autora" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Wydawcy" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Pokaż menu wyboru wydawcy" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Języki" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Pokaż menu wyboru języka" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Oceny" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Pokaż menu listy ocen" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Formaty plików" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Pokaż menu formatu plików" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Nieoczekiwane dane podczas odczytywania informacji o aktualizacji" @@ -838,223 +830,223 @@ msgstr "Dostępna jest nowa aktualizacja. Kliknij przycisk poniżej, aby zaktual msgid "Click on the button below to update to the latest stable version." msgstr "Kliknij przycisk poniżej, aby zaktualizować do najnowszej stabilnej wersji." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Ostatnio dodane książki" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Odkrywaj (losowe książki)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Książki" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Najpopularniejsze książki (najczęściej pobierane)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Błąd otwierania e-booka. Plik nie istnieje lub jest niedostępny" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Autor: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Wydawca: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Cykl: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Ocena: %(rating)s gwiazdek" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Format pliku: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Kategoria: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Język: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Lista z ocenami" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Lista formatów" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Zadania" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Szukaj" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Opublikowane po " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Opublikowane przed " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Ocena <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Ocena >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "szukaj" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Książka została umieszczona w kolejce do wysłania do %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Wystąpił błąd podczas wysyłania tej książki: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Najpierw skonfiguruj adres e-mail Kindle..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "Serwer e-mail nie jest skonfigurowany, skontaktuj się z administratorem!" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "rejestracja" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Twój e-mail nie może się zarejestrować" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Wiadomość e-mail z potwierdzeniem została wysłana na Twoje konto e-mail." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Ta nazwa użytkownika lub adres e-mail jest już używany." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Nie można aktywować uwierzytelniania LDAP" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Błędna nazwa użytkownika lub hasło" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Nowe hasło zostało wysłane na Twój adres e-mail" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Wprowadź prawidłową nazwę użytkownika, aby zresetować hasło" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Jesteś teraz zalogowany jako: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "logowanie" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Nie znaleziono tokenu" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Token wygasł" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Powodzenie! Wróć do swojego urządzenia" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Profil użytkownika %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Zaktualizowano profil" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Błąd podczas otwierania e-booka. Plik nie istnieje lub jest niedostępny:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Czytaj książkę" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Błąd podczas otwierania e-booka. Plik nie istnieje lub jest niedostępny." @@ -1257,8 +1249,8 @@ msgid "OK" msgstr "OK" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1307,7 +1299,7 @@ msgid "Delete formats:" msgstr "Usuń formaty:" # ??? -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1338,149 +1330,121 @@ msgstr "Konwertuj książkę" msgid "Book Title" msgstr "Tytuł książki" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Autor" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Opis" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Etykiety" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "ID cyklu" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Ocena" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Pobierz okładkę z linku (JPEG - obraz zostanie pobrany i zapisany w bazie)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Wyślij okładkę z dysku lokalnego" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Data publikacji" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Wydawca" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Język" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Tak" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Nie" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Wyślij format" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "Po zapisaniu wyświetl szczegóły książki" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Uzyskaj metadane" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Zapisz" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Czy jesteś pewny?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Książka zostanie usunięta z bazy danych Calibre" # ??? -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "i z dysku twardego" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Słowo kluczowe" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Szukaj słowa kluczowego " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Kliknij okładkę, aby załadować metadane do formularza" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Ładowanie..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Zamknij" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Źródło" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Błąd wyszukiwania!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Nie znaleziono! Spróbuj użyć innego słowa kluczowego." @@ -1653,107 +1617,123 @@ msgstr "Nazwa hosta lub adres IP serwera LDAP" msgid "LDAP Server Port" msgstr "Port serwera LDAP" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Brak" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "Nazwa administratora LDAP" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "Hasło administratora LDAP" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP Distinguished Name (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP User Object Filter" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "Serwer LDAP to OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Uzyskaj %(provider)s OAuth Credential" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth Client Id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Client Secret" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Zewnętrzne pliki" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Brak konwertera" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Użyj konwertera Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Użyj konwertera książek Calibre" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Ustawienia konwertera e-booków (dodatkowe parametry)" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Lokalizacja pliku konwertera" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Lokalizacja pliku binarnego Unrar" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Zaloguj się" @@ -1842,7 +1822,7 @@ msgstr "Zezwalaj na edycję półek publicznych" msgid "Default Visibilities for New Users" msgstr "Domyślne ustawienia widoku dla nowych użytkowników" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Pokaz losowe książki w widoku szczegółowym" @@ -1886,27 +1866,15 @@ msgstr "Oznacz jako przeczytane" msgid "Read" msgstr "Przeczytana" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Opis:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Dodaj do półki" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Edytuj metadane" @@ -2001,7 +1969,7 @@ msgstr "Ostatnie książki" msgid "Random Books" msgstr "Losowe książki" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Pokazuj losowe książki" diff --git a/cps/translations/ru/LC_MESSAGES/messages.po b/cps/translations/ru/LC_MESSAGES/messages.po index e5b595bd..513ab61b 100644 --- a/cps/translations/ru/LC_MESSAGES/messages.po +++ b/cps/translations/ru/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-03-07 11:12+0100\n" "Last-Translator: ZIZA\n" "Language: ru\n" @@ -47,8 +47,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Неизвестно" @@ -61,7 +61,7 @@ msgstr "Администрирование" msgid "UI Configuration" msgstr "Настройка интерфейса" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Конфигурация Calibre-Web обновлена" @@ -91,185 +91,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Настройки сервера" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Пожалуйста, заполните все поля!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Добавить пользователя" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "E-mail не из существующей доменной зоны" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Для этого адреса электронной почты или логина уже есть учётная запись." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Пользователь '%(user)s' добавлен" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Изменить настройки e-mail сервера" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Тестовое письмо успешно отправлено на %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Произошла ошибка при отправке тестового письма на: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Пожалуйста, сначала настройте свой адрес электронной почты ..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "Настройки E-mail сервера обновлены" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Пользователь '%(nick)s' удалён" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Это последний администратор, невозможно удалить пользователя" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Этот адрес электронной почты уже зарегистрирован." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Изменить пользователя %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Это имя пользователя уже занято" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Пользователь '%(nick)s' обновлён" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Произошла неизвестная ошибка." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Пароль для пользователя %(user)s сброшен" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Неизвестная ошибка. Попробуйте позже." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Пожалуйста, сперва настройте параметры SMTP" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Просмотр лога" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Проверка обновлений" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Загрузка обновлений" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Распаковка обновлений" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Замена файлов" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Соединения с базой данных закрыты" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Остановка сервера" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Обновления установлены, нажмите ок и перезагрузите страницу" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Ошибка обновления:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "Ошибка HTTP" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Ошибка соединения" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Тайм-аут при установлении соединения" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Общая ошибка" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -277,89 +277,89 @@ msgstr "" msgid "not configured" msgstr "не настроено" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Ошибка при открытии eBook. Файл не существует или файл недоступен" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "изменить метаданные" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Запрещена загрузка файлов с расширением '%(ext)s'" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Загружаемый файл должен иметь расширение" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Ошибка при создании пути %(path)s (Доступ запрещён)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Не удалось сохранить файл %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Формат файла %(ext)s добавлен в %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Обложка не в формате JPG, невозможно сохранить" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s не допустимый язык" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Метаданные обновлены" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Ошибка редактирования книги. Пожалуйста, проверьте лог-файл для дополнительной информации" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Файл %(filename)s не удалось сохранить во временную папку" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Загруженная книга, вероятно, существует в библиотеке, перед тем как загрузить новую, рассмотрите возможность изменения:" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Ошибка записи файла %(file)s (Доступ запрещён)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Ошибка удаления файла %(file)s (Доступ запрещён)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Файл %(file)s загружен" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Исходный или целевой формат для конвертирования отсутствует" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Книга успешно поставлена в очередь для конвертирования в %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Произошла ошибка при конвертирования этой книги: %(res)s" @@ -543,7 +543,7 @@ msgstr "Не удалось войти в систему с помощью Googl msgid "Failed to fetch user info from Google." msgstr "Не удалось получить информацию о пользователе из Google" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Вы вошли как пользователь '%(nickname)s'" @@ -687,122 +687,114 @@ msgstr "Скрытая книга" msgid "Change order of Shelf: '%(name)s'" msgstr "Изменить расположение полки '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Недавно Добавленные" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Показывать недавние книги" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Популярные Книги" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Показывать популярные книги" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Книги с наилучшим рейтингом" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Показывать книги с наивысшим рейтингом" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Прочитанные Книги" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Показывать прочитанные и непрочитанные" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Непрочитанные Книги" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Показать непрочитанное" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Обзор" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Показывать случайные книги" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Категории" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Показывать выбор категории" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Серии" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Показывать выбор серии" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Авторы" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Показывать выбор автора" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Издатели" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Показать выбор издателя" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Языки" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Показывать выбор языка" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Рейтинги" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Показать выбор рейтинга" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Форматы файлов" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Показать выбор форматов файлов" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Некорректные данные при чтении информации об обновлении" @@ -832,223 +824,223 @@ msgstr "Новое обновление доступно. Нажмите на к msgid "Click on the button below to update to the latest stable version." msgstr "Нажмите на кнопку ниже для обновления до последней стабильной версии" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Недавно Добавленные Книги" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Обзор (Случайные Книги)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Книги" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Популярные книги (часто загружаемые)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Невозможно открыть книгу. Файл не существует или недоступен" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Автор: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Издатель: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Серии: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Оценка: %(rating)s звезды(а)" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Формат файла: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Категория: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Язык: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Список рейтингов" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Список форматов файлов" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Задания" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Поиск" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Опубликовано после" -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Опубликовано до" -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Рейтинг <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Рейтинг >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "поиск" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Книга успешно поставлена в очередь для отправки на %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "При отправке этой книги произошла ошибка: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Пожалуйста, сначала настройте e-mail на вашем kindle..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "Сервер электронной почты не настроен, обратитесь к администратору !" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "регистрация" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Ваш e-mail не подходит для регистрации" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Письмо с подтверждением отправлено вам на e-mail" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Этот никнейм или e-mail уже используются" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Не удается активировать LDAP аутентификацию" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Ошибка в имени пользователя или пароле" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Новый пароль был отправлен на ваш адрес электронной почты" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Пожалуйста, введите действительное имя пользователя для сброса пароля" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Вы вошли как: '%(nickname)s'" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "войти" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Ключ не найден" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Ключ просрочен" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Успешно! Пожалуйста, проверьте свое устройство" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Профиль %(name)s's" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Профиль обновлён" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Ошибка открытия электронной книги. Файл не существует или файл недоступен:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Читать Книгу" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Ошибка открытия электронной книги. Файл не существует или файл недоступен" @@ -1249,8 +1241,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1297,7 +1289,7 @@ msgstr "Удалить книгу" msgid "Delete formats:" msgstr "Удалить форматы:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1327,148 +1319,120 @@ msgstr "Конвертировать книгу" msgid "Book Title" msgstr "Название" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Автор" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Описание" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Теги" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "ID Серии" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Рейтинг" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "URL обложки(jpg, обложка загружается и сохраняется в базе данных, после этого поле снова пустое)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Загрузить обложку с диска" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Опубликовано" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Издатель" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Язык" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Да" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Нет" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Загружаемый формат" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "смотреть книгу после редактирования" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Получить метаданные" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Сохранить" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Вы действительно уверены?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Книга будет удалена из базы данных Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "и с диска" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Ключевое слово" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Поиск по ключевому слову " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Нажмите на обложку, чтобы получить метаданные" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Загрузка..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Закрыть" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Источник" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Ошибка поиска!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Результат(ы) не найдены! Попробуйте другое ключевое слово." @@ -1640,107 +1604,123 @@ msgstr "Имя хоста или IP-адрес сервера LDAP" msgid "LDAP Server Port" msgstr "Порт сервера LDAP" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Нет" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "Имя администратора LDAP" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "Пароль администратора LDAP" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "Отличительное имя LDAP (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "Фильтр объектов пользователя LDAP" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "Сервер LDAP - это OpenLDAP ?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Получить %(provider)s OAuth Credential" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth ID клиента" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth Секрет клиента" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Внешний бинарный файл" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Нет конвертера" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Использовать Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Использовать конвертер calibre's ebook" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Настройки конвертера E-Book" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Путь к инструменту конвертации" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Расположение бинарного файла Unrar" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Логин" @@ -1829,7 +1809,7 @@ msgstr "Разрешить редактирование публичных кн msgid "Default Visibilities for New Users" msgstr "Видимость для новых пользователей(по умолчанию)" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Показывать случайные книги при просмотре деталей" @@ -1873,27 +1853,15 @@ msgstr "Отметить как прочитанное" msgid "Read" msgstr "Прочесть" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Описание:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Добавить на книжную полку" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Редактировать метаданные" @@ -1986,7 +1954,7 @@ msgstr "Последние Книги" msgid "Random Books" msgstr "Случайный выбор" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Показывать Случайные Книги" diff --git a/cps/translations/sv/LC_MESSAGES/messages.po b/cps/translations/sv/LC_MESSAGES/messages.po index 11b0f089..b7918339 100644 --- a/cps/translations/sv/LC_MESSAGES/messages.po +++ b/cps/translations/sv/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2020-03-14 09:30+0100\n" "Last-Translator: Jonatan Nyberg \n" "Language: sv\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Okänd" @@ -60,7 +60,7 @@ msgstr "Administrationssida" msgid "UI Configuration" msgstr "Användargränssnitt konfiguration" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web konfiguration uppdaterad" @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Grundläggande konfiguration" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Fyll i alla fält!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Lägg till ny användare" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "E-posten är inte från giltig domän" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "Hittade ett befintligt konto för den här e-postadressen eller smeknamnet." -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Användaren '%(user)s' skapad" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "Redigera inställningar för e-postserver" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "Test-e-post skicka till %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "Det gick inte att skicka Testmeddelandet: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "Vänligen konfigurera din e-postadress först..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "E-postserverinställningar uppdaterade" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Användaren '%(nick)s' borttagen" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "Ingen adminstratörsanvändare kvar, kan inte ta bort användaren" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "Hittade ett befintligt konto för den här e-postadressen." -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Redigera användaren %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "Detta användarnamn är redan taget" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Användaren '%(nick)s' uppdaterad" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Ett okänt fel uppstod." -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "Lösenord för användaren %(user)s återställd" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "Ett okänt fel uppstod. Försök igen senare." -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Konfigurera SMTP-postinställningarna först..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "Visaren för loggfil" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Begär uppdateringspaketet" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Hämtar uppdateringspaketet" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Packar upp uppdateringspaketet" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "Ersätta filer" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "Databasanslutningarna är stängda" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "Stoppar server" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Uppdatering klar, tryck på okej och uppdatera sidan" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "Uppdateringen misslyckades:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP-fel" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "Anslutningsfel" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "Tiden ute när du etablerade anslutning" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "Allmänt fel" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -276,89 +276,89 @@ msgstr "" msgid "not configured" msgstr "inte konfigurerad" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Det gick inte att öppna e-boken. Filen finns inte eller filen är inte tillgänglig" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "redigera metadata" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "Filändelsen '%(ext)s' får inte laddas upp till den här servern" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Filen som ska laddas upp måste ha en ändelse" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "Det gick inte att skapa sökväg %(path)s (behörighet nekad)." -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "Det gick inte att lagra filen %(file)s." -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "Filformatet %(ext)s lades till %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "Omslaget är inte en jpg-fil, kan inte spara" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s är inte ett giltigt språk" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "Metadata uppdaterades" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Det gick inte att redigera boken, kontrollera loggfilen för mer information" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "Filen %(filename)s kunde inte sparas i temp dir" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "Uppladdad bok finns förmodligen i biblioteket, överväg att ändra innan du laddar upp nya: " -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "Det gick inte att lagra filen %(file)s (behörighet nekad)." -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "Det gick inte att ta bort filen %(file)s (behörighet nekad)." -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "Filen %(file)s uppladdad" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "Källa eller målformat för konvertering saknas" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "Boken är i kö för konvertering till %(book_format)s" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "Det gick inte att konvertera den här boken: %(res)s" @@ -542,7 +542,7 @@ msgstr "Det gick inte att logga in med Google." msgid "Failed to fetch user info from Google." msgstr "Det gick inte att hämta användarinformation från Google." -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "du är nu inloggad som: \"%(nickname)s\"" @@ -686,122 +686,114 @@ msgstr "Dold bok" msgid "Change order of Shelf: '%(name)s'" msgstr "Ändra ordning på hyllan: '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Nyligen tillagda" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Visa senaste böcker" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Heta böcker" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Visa heta böcker" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Bäst rankade böcker" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Visa böcker med bästa betyg" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Lästa böcker" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Visa lästa och olästa" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Olästa böcker" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "Visa olästa" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Upptäck" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Visa slumpmässiga böcker" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Kategorier" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Visa kategorival" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Serier" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Visa serieval" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Författare" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Visa författarval" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "Förlag" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "Visa urval av förlag" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Språk" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Visa språkval" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "Betyg" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "Visa val av betyg" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "Filformat" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "Visa val av filformat" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "Oväntade data vid läsning av uppdateringsinformation" @@ -831,223 +823,223 @@ msgstr "En ny uppdatering är tillgänglig. Klicka på knappen nedan för att up msgid "Click on the button below to update to the latest stable version." msgstr "Klicka på knappen nedan för att uppdatera till den senaste stabila versionen." -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Nyligen tillagda böcker" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Upptäck (slumpmässiga böcker)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "Böcker" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Heta böcker (mest hämtade)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Hoppsan! Vald boktitel är inte tillgänglig. Filen finns inte eller är inte tillgänglig" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "Författare: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "Förlag: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Serier: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "Betyg: %(rating)s stars" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "Filformat: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Kategori: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Språk: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "Betygslista" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "Lista över filformat" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "Uppgifter" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Sök" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "Publicerad efter " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Publicerad före " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "Betyg <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "Betyg >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "sök" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "Boken är i kö för att skicka till %(kindlemail)s" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Det gick inte att skicka den här boken: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "Konfigurera din kindle-e-postadress först..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "E-postservern är inte konfigurerad, kontakta din administratör!" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "registrera" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "Din e-post är inte tillåten att registrera" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "Bekräftelsemail skickades till ditt e-postkonto." -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "Det här användarnamnet eller e-postadressen är redan i bruk." -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "Det går inte att aktivera LDAP-autentisering" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Fel användarnamn eller lösenord" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "Nytt lösenord skickades till din e-postadress" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "Ange giltigt användarnamn för att återställa lösenordet" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "Du är nu inloggad som: \"%(nickname)s\"" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "logga in" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Token hittades inte" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Token har löpt ut" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Lyckades! Vänligen återvänd till din enhet" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)ss profil" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Profilen uppdaterad" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "Fel vid öppningen av e-boken. Filen finns inte eller filen är inte tillgänglig:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Läs en bok" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "Fel vid öppningen av e-boken. Filen finns inte eller filen är inte tillgänglig." @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "Ta bort boken" msgid "Delete formats:" msgstr "Ta bort format:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "Konvertera boken" msgid "Book Title" msgstr "Boktitel" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Författare" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Beskrivning" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Taggar" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "Serie-ID" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Betyg" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "Omslagswebbadress (jpg, omslag hämtas och lagras i databasen, fältet är efteråt tomt igen)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "Ladda upp omslag från lokal enhet" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Publiceringsdatum" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Förlag" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Språk" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Ja" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Nej" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Ladda upp format" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "Visa bok vid Spara" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Hämta metadata" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "Spara" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "Är du verkligen säker?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Boken kommer att tas bort från Calibre-databasen" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "och från hårddisken" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Sökord" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Sök sökord " -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Klicka på omslaget för att läsa in metadata till formuläret" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Läser in..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Stäng" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Källa" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Sökningsfel!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "Inga resultat hittades! Försök med ett annat sökord." @@ -1639,107 +1603,123 @@ msgstr "LDAP-serverns värdnamn eller IP-adress" msgid "LDAP Server Port" msgstr "LDAP-serverport" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Ingen" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "LDAP-adminstratörsanvändarnamn" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "LDAP-adminstratörslösenord" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "LDAP Distinguished Name (DN)" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "LDAP-användarobjektfilter" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "LDAP-server är OpenLDAP?" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "Skaffa %(provider)s OAuth-certifikat" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "%(provider)s OAuth-klient-id" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "%(provider)s OAuth-klient-hemlighet" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "Externa binärer" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "Ingen konverterare" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "Använd Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "Använd calibres e-bokkonverterare" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "Inställningar för e-bokkonverteraren" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "Sökväg till convertertool" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Plats för Unrar-binär" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Logga in" @@ -1828,7 +1808,7 @@ msgstr "Tillåt Redigering av offentliga hyllor" msgid "Default Visibilities for New Users" msgstr "Standardvisibiliteter för nya användare" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Visa slumpmässiga böcker i detaljvyn" @@ -1872,27 +1852,15 @@ msgstr "Markera som läst" msgid "Read" msgstr "Läst" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Beskrivning:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Lägg till hyllan" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Redigera metadata" @@ -1985,7 +1953,7 @@ msgstr "De senaste böckerna" msgid "Random Books" msgstr "Slumpmässiga böcker" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Visa slumpmässiga böcker" diff --git a/cps/translations/tr/LC_MESSAGES/messages.mo b/cps/translations/tr/LC_MESSAGES/messages.mo new file mode 100644 index 00000000..3d454735 Binary files /dev/null and b/cps/translations/tr/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/tr/LC_MESSAGES/messages.po b/cps/translations/tr/LC_MESSAGES/messages.po new file mode 100644 index 00000000..58266a5c --- /dev/null +++ b/cps/translations/tr/LC_MESSAGES/messages.po @@ -0,0 +1,2458 @@ +# Turkish translations for Calibre-Web. +# Copyright (C) 2016 iz7iz7iz +# This file is distributed under the same license as the Calibre-Web +# project. +# FIRST AUTHOR iz7iz7iz, 2020. +msgid "" +msgstr "" +"Project-Id-Version: Calibre-Web\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" +"PO-Revision-Date: 2020-04-23 22:47+0300\n" +"Last-Translator: iz \n" +"Language: tr\n" +"Language-Team: \n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" + +#: cps/about.py:42 +msgid "installed" +msgstr "yüklü" + +#: cps/about.py:44 +msgid "not installed" +msgstr "yüklü değil" + +#: cps/about.py:94 +msgid "Statistics" +msgstr "İstatistikler" + +#: cps/admin.py:92 +msgid "Server restarted, please reload page" +msgstr "Sunucu yeniden başlatıldı, lütfen sayfayı yeniden yükleyin" + +#: cps/admin.py:94 +msgid "Performing shutdown of server, please close window" +msgstr "Sunucu kapatıyor, lütfen pencereyi kapatın" + +#: cps/admin.py:102 +msgid "Reconnect successful" +msgstr "" + +#: cps/admin.py:105 +msgid "Unknown command" +msgstr "" + +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 +#: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 +msgid "Unknown" +msgstr "Bilinmeyen" + +#: cps/admin.py:134 +msgid "Admin page" +msgstr "Yönetim sayfası" + +#: cps/admin.py:156 +msgid "UI Configuration" +msgstr "Arayüz Ayarları" + +#: cps/admin.py:192 cps/admin.py:676 +msgid "Calibre-Web configuration updated" +msgstr "Calibre-Web yapılandırması güncellendi" + +#: cps/admin.py:439 cps/admin.py:445 cps/admin.py:456 cps/admin.py:467 +#: cps/templates/modal_restriction.html:29 +msgid "Deny" +msgstr "" + +#: cps/admin.py:441 cps/admin.py:447 cps/admin.py:458 cps/admin.py:469 +#: cps/templates/modal_restriction.html:28 +msgid "Allow" +msgstr "" + +#: cps/admin.py:510 +msgid "client_secrets.json Is Not Configured For Web Application" +msgstr "" + +#: cps/admin.py:526 +msgid "Keyfile Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:530 +msgid "Certfile Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:569 +msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" +msgstr "" + +#: cps/admin.py:587 +#, python-format +msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" +msgstr "" + +#: cps/admin.py:590 +msgid "LDAP Group Object Filter Has Unmatched Parenthesis" +msgstr "" + +#: cps/admin.py:594 +#, python-format +msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" +msgstr "" + +#: cps/admin.py:597 +msgid "LDAP User Object Filter Has Unmatched Parenthesis" +msgstr "" + +#: cps/admin.py:601 +msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:649 +msgid "Logfile Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:654 +msgid "Access Logfile Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:673 +msgid "DB Location is not Valid, Please Enter Correct Path" +msgstr "" + +#: cps/admin.py:706 +msgid "Basic Configuration" +msgstr "Temel Ayarlar" + +#: cps/admin.py:730 cps/web.py:1165 +msgid "Please fill out all fields!" +msgstr "Lütfen tüm alanları doldurun!" + +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 +msgid "Add new user" +msgstr "Yeni kullanıcı ekle" + +#: cps/admin.py:742 cps/web.py:1412 +msgid "E-mail is not from valid domain" +msgstr "E-posta izin verilen bir servisten değil" + +#: cps/admin.py:749 cps/admin.py:764 +msgid "Found an existing account for this e-mail address or nickname." +msgstr "Bu e-posta adresi veya kullanıcı adı için zaten bir hesap var." + +#: cps/admin.py:760 +#, python-format +msgid "User '%(user)s' created" +msgstr "'%(user)s' kullanıcısı oluşturuldu" + +#: cps/admin.py:779 +msgid "Edit e-mail server settings" +msgstr "E-posta sunucusu ayarlarını düzenle" + +#: cps/admin.py:805 +#, python-format +msgid "Test e-mail successfully send to %(kindlemail)s" +msgstr "Deneme e-postası başarıyla %(kindlemail)s adresine gönderildi" + +#: cps/admin.py:808 +#, python-format +msgid "There was an error sending the Test e-mail: %(res)s" +msgstr "Deneme e-postası gönderilirken bir hata oluştu: %(res)s" + +#: cps/admin.py:810 +msgid "Please configure your e-mail address first..." +msgstr "Lütfen önce e-posta adresinizi ayarlayın..." + +#: cps/admin.py:812 +msgid "E-mail server settings updated" +msgstr "E-posta sunucusu ayarları güncellendi" + +#: cps/admin.py:842 +#, python-format +msgid "User '%(nick)s' deleted" +msgstr "Kullanıcı '%(nick)s' silindi" + +#: cps/admin.py:845 +msgid "No admin user remaining, can't delete user" +msgstr "Başka yönetici kullanıcı olmadığından silinemedi" + +#: cps/admin.py:881 cps/web.py:1455 +msgid "Found an existing account for this e-mail address." +msgstr "Bu e-posta adresi için bir hesap mevcut." + +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 +#, python-format +msgid "Edit User %(nick)s" +msgstr "%(nick)s kullanıcısını düzenle" + +#: cps/admin.py:897 cps/web.py:1422 +msgid "This username is already taken" +msgstr "Bu kullanıcı adı zaten alındı" + +#: cps/admin.py:913 +#, python-format +msgid "User '%(nick)s' updated" +msgstr "'%(nick)s' kullanıcısı güncellendi" + +#: cps/admin.py:916 +msgid "An unknown error occured." +msgstr "Bilinmeyen bir hata oluştu." + +#: cps/admin.py:939 +#, python-format +msgid "Password for user %(user)s reset" +msgstr "%(user)s kullanıcısının şifresi sıfırlandı" + +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 +msgid "An unknown error occurred. Please try again later." +msgstr "Bilinmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz." + +#: cps/admin.py:945 cps/web.py:1131 +msgid "Please configure the SMTP mail settings first..." +msgstr "Lütfen önce SMTP e-posta ayarlarını ayarlayın..." + +#: cps/admin.py:957 +msgid "Logfile viewer" +msgstr "Log dosyası görüntüleyici" + +#: cps/admin.py:996 +msgid "Requesting update package" +msgstr "Güncelleme paketi isteniyor" + +#: cps/admin.py:997 +msgid "Downloading update package" +msgstr "Güncelleme paketi indiriliyor" + +#: cps/admin.py:998 +msgid "Unzipping update package" +msgstr "Güncelleme paketi ayıklanıyor" + +#: cps/admin.py:999 +msgid "Replacing files" +msgstr "Dosyalar değiştiriliyor" + +#: cps/admin.py:1000 +msgid "Database connections are closed" +msgstr "Veritabanı bağlantıları kapalı" + +#: cps/admin.py:1001 +msgid "Stopping server" +msgstr "Sunucu durduruyor" + +#: cps/admin.py:1002 +msgid "Update finished, please press okay and reload page" +msgstr "Güncelleme tamamlandı, sayfayı yenilemek için lütfen Tamam'a tıklayınız" + +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 +msgid "Update failed:" +msgstr "Güncelleme başarısız:" + +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +msgid "HTTP Error" +msgstr "HTTP Hatası" + +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 +msgid "Connection error" +msgstr "Bağlantı hatası" + +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 +msgid "Timeout while establishing connection" +msgstr "Bağlantı kurulmaya çalışırken zaman aşımına uğradı" + +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 +msgid "General error" +msgstr "Genel hata" + +#: cps/admin.py:1007 +msgid "Update File Could Not be Saved in Temp Dir" +msgstr "" + +#: cps/converter.py:31 +msgid "not configured" +msgstr "ayarlanmadı" + +#: cps/editbooks.py:214 cps/editbooks.py:396 +msgid "Error opening eBook. File does not exist or file is not accessible" +msgstr "eKitap açılırken hata oluştu. Dosya mevcut değil veya erişilemiyor" + +#: cps/editbooks.py:242 +msgid "edit metadata" +msgstr "metaveri düzenle" + +#: cps/editbooks.py:321 cps/editbooks.py:569 +#, python-format +msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" +msgstr "'%(ext)s' uzantılı dosyaların bu sunucuya yüklenmesine izin verilmiyor" + +#: cps/editbooks.py:325 cps/editbooks.py:573 +msgid "File to be uploaded must have an extension" +msgstr "Yüklenecek dosyanın mutlaka bir uzantısı olması gerekli" + +#: cps/editbooks.py:337 cps/editbooks.py:607 +#, python-format +msgid "Failed to create path %(path)s (Permission denied)." +msgstr "%(path)s dizini oluşturulamadı. (İzin reddedildi)" + +#: cps/editbooks.py:342 +#, python-format +msgid "Failed to store file %(file)s." +msgstr "%(file)s dosyası kaydedilemedi." + +#: cps/editbooks.py:359 +#, python-format +msgid "File format %(ext)s added to %(book)s" +msgstr "%(book)s kitabına %(ext)s dosya biçimi eklendi" + +#: cps/editbooks.py:451 +msgid "Cover is not a jpg file, can't save" +msgstr "Kapak dosyası jpg biçiminde olmadığından kaydedilemiyor" + +#: cps/editbooks.py:494 +#, python-format +msgid "%(langname)s is not a valid language" +msgstr "%(langname)s geçerli bir dil değil" + +#: cps/editbooks.py:525 +msgid "Metadata successfully updated" +msgstr "Metaveri başarıyla güncellendi" + +#: cps/editbooks.py:534 +msgid "Error editing book, please check logfile for details" +msgstr "eKitap düzenlenirken hata oluştu, detaylar için lütfen log dosyasını kontrol edin" + +#: cps/editbooks.py:581 +#, python-format +msgid "File %(filename)s could not saved to temp dir" +msgstr "%(filename)s dosyası geçici dizine kaydedilemedi" + +#: cps/editbooks.py:598 +msgid "Uploaded book probably exists in the library, consider to change before upload new: " +msgstr "Yüklenen eKitap muhtemelen kitaplıkta zaten var. Yenisini yüklemeden değiştirmeyi düşünün: " + +#: cps/editbooks.py:613 +#, python-format +msgid "Failed to store file %(file)s (Permission denied)." +msgstr "%(file)s dosyası kaydedilemedi. (İzin reddedildi)" + +#: cps/editbooks.py:619 +#, python-format +msgid "Failed to delete file %(file)s (Permission denied)." +msgstr "%(file)s dosyası silinemedi. (İzin reddedildi)" + +#: cps/editbooks.py:709 +#, python-format +msgid "File %(file)s uploaded" +msgstr "%(file)s dosyası yüklendi" + +#: cps/editbooks.py:738 +msgid "Source or destination format for conversion missing" +msgstr "Dönüştürme için kaynak ya da hedef biçimi eksik" + +#: cps/editbooks.py:746 +#, python-format +msgid "Book successfully queued for converting to %(book_format)s" +msgstr "eKitap %(book_format)s formatlarına dönüştürülmek üzere başarıyla sıraya alındı" + +#: cps/editbooks.py:750 +#, python-format +msgid "There was an error converting this book: %(res)s" +msgstr "Bu eKitabı dönüştürürken bir hata oluştu: %(res)s" + +#: cps/gdrive.py:61 +msgid "Google Drive setup not completed, try to deactivate and activate Google Drive again" +msgstr "Google Drive kurulumu tamamlanmadı, Google Drive'ı devre dışı bırakmayı ve tekrar etkinleştirmeyi deneyin" + +#: cps/gdrive.py:103 +msgid "Callback domain is not verified, please follow steps to verify domain in google developer console" +msgstr "Geri yönlendirme alanı (callback domain) doğrulanamadı, lütfen Google geliştirici konsolunda alan adını doğrulamak için gerekli adımları izleyin." + +#: cps/helper.py:80 +#, python-format +msgid "%(format)s format not found for book id: %(book)d" +msgstr "%(book)d nolu kitap için %(format)s biçimi bulunamadı" + +#: cps/helper.py:92 +#, python-format +msgid "%(format)s not found on Google Drive: %(fn)s" +msgstr "%(fn)s eKitabı için %(format)s biçimi Google Drive'da bulunamadı" + +#: cps/helper.py:99 cps/helper.py:211 cps/templates/detail.html:41 +#: cps/templates/detail.html:45 +msgid "Send to Kindle" +msgstr "Kindle'a gönder" + +#: cps/helper.py:100 cps/helper.py:118 cps/helper.py:213 +msgid "This e-mail has been sent via Calibre-Web." +msgstr "Bu e-Posta Calibre-Web ile gönderilmiştir." + +#: cps/helper.py:111 +#, python-format +msgid "%(format)s not found: %(fn)s" +msgstr "%(format)s bulunamadı: %(fn)s" + +#: cps/helper.py:116 +msgid "Calibre-Web test e-mail" +msgstr "Calibre-Web deneme e-Postası" + +#: cps/helper.py:118 +msgid "Test e-mail" +msgstr "Deneme e-Postası" + +#: cps/helper.py:133 +msgid "Get Started with Calibre-Web" +msgstr "Calibre-Web'i Kullanmaya Başlayın" + +#: cps/helper.py:135 +#, python-format +msgid "Registration e-mail for user: %(name)s" +msgstr "Kullanıcı Kayıt e-Postası: %(name)s" + +#: cps/helper.py:149 cps/helper.py:151 cps/helper.py:153 cps/helper.py:161 +#: cps/helper.py:163 cps/helper.py:165 +#, python-format +msgid "Send %(format)s to Kindle" +msgstr "%(format)s biçimlerini Kindle'a gönder" + +#: cps/helper.py:169 cps/helper.py:173 +#, python-format +msgid "Convert %(orig)s to %(format)s and send to Kindle" +msgstr "%(orig)s'dan %(format)s biçimine çevir ve Kindle'a gönder" + +#: cps/helper.py:213 +#, python-format +msgid "E-mail: %(book)s" +msgstr "e-Posta: %(book)s" + +#: cps/helper.py:215 +msgid "The requested file could not be read. Maybe wrong permissions?" +msgstr "İstenilen dosya okunamadı. Yanlış izinlerden kaynaklanabilir?" + +#: cps/helper.py:322 +#, python-format +msgid "Rename title from: '%(src)s' to '%(dest)s' failed with error: %(error)s" +msgstr "Kitap adını değiştirme sırasında hata oluştu ('%(src)s' → '%(dest)s'): %(error)s" + +#: cps/helper.py:332 +#, python-format +msgid "Rename author from: '%(src)s' to '%(dest)s' failed with error: %(error)s" +msgstr "Yazar adını değiştirme sırasında hata oluştu ('%(src)s' → '%(dest)s'): %(error)s" + +#: cps/helper.py:346 +#, python-format +msgid "Rename file in path '%(src)s' to '%(dest)s' failed with error: %(error)s" +msgstr "Dosya adını değiştirme sırasında hata oluştu ('%(src)s' → '%(dest)s'): %(error)s" + +#: cps/helper.py:372 cps/helper.py:382 cps/helper.py:390 +#, python-format +msgid "File %(file)s not found on Google Drive" +msgstr "%(file)s dosyası Google Drive'da bulunamadı" + +#: cps/helper.py:411 +#, python-format +msgid "Book path %(path)s not found on Google Drive" +msgstr "eKitap yolu %(path)s Google Drive'da bulunamadı" + +#: cps/helper.py:511 +msgid "Failed to create path for cover" +msgstr "" + +#: cps/helper.py:516 +msgid "Cover-file is not a valid image file" +msgstr "" + +#: cps/helper.py:519 +msgid "Failed to store cover-file" +msgstr "" + +#: cps/helper.py:530 +msgid "Only jpg/jpeg/png/webp files are supported as coverfile" +msgstr "" + +#: cps/helper.py:544 +msgid "Only jpg/jpeg files are supported as coverfile" +msgstr "" + +#: cps/helper.py:658 +msgid "Waiting" +msgstr "Bekleniyor" + +#: cps/helper.py:660 +msgid "Failed" +msgstr "Başarısız" + +#: cps/helper.py:662 +msgid "Started" +msgstr "Başladı" + +#: cps/helper.py:664 +msgid "Finished" +msgstr "Bitti" + +#: cps/helper.py:666 +msgid "Unknown Status" +msgstr "Bilinmeyen Durum" + +#: cps/helper.py:671 +msgid "E-mail: " +msgstr "e-Posta: " + +#: cps/helper.py:673 cps/helper.py:677 +msgid "Convert: " +msgstr "Dönüştür: " + +#: cps/helper.py:675 +msgid "Upload: " +msgstr "Yükle: " + +#: cps/helper.py:679 +msgid "Unknown Task: " +msgstr "Bilinmeyen Görev: " + +#: cps/kobo_auth.py:127 +msgid "PLease access calibre-web from non localhost to get valid api_endpoint for kobo device" +msgstr "" + +#: cps/kobo_auth.py:130 cps/kobo_auth.py:150 +msgid "Kobo Setup" +msgstr "" + +#: cps/oauth_bb.py:73 +#, python-format +msgid "Register with %(provider)s" +msgstr "%(provider)s ile Kaydol" + +#: cps/oauth_bb.py:154 +msgid "Failed to log in with GitHub." +msgstr "GitHub ile giriş yapılamadı." + +#: cps/oauth_bb.py:159 +msgid "Failed to fetch user info from GitHub." +msgstr "Github'dan kullanıcı bilgileri alınamadı." + +#: cps/oauth_bb.py:170 +msgid "Failed to log in with Google." +msgstr "Google ile giriş yapılamadı." + +#: cps/oauth_bb.py:175 +msgid "Failed to fetch user info from Google." +msgstr "Google'dan kullanıcı bilgileri alınamadı." + +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 +#, python-format +msgid "you are now logged in as: '%(nickname)s'" +msgstr "giriş yaptınız: '%(nickname)s'" + +#: cps/oauth_bb.py:235 +#, python-format +msgid "Link to %(oauth)s Succeeded" +msgstr "" + +#: cps/oauth_bb.py:241 +msgid "Login failed, No User Linked With OAuth Account" +msgstr "" + +#: cps/oauth_bb.py:283 +#, python-format +msgid "Unlink to %(oauth)s Succeeded" +msgstr "" + +#: cps/oauth_bb.py:287 +#, python-format +msgid "Unlink to %(oauth)s Failed" +msgstr "" + +#: cps/oauth_bb.py:290 +#, python-format +msgid "Not Linked to %(oauth)s." +msgstr "" + +#: cps/oauth_bb.py:318 +msgid "GitHub Oauth error, please retry later." +msgstr "GitHub Oauth hatası, lütfen tekrar deneyin." + +#: cps/oauth_bb.py:337 +msgid "Google Oauth error, please retry later." +msgstr "Google Oauth hatası, lütfen tekrar deneyin." + +#: cps/shelf.py:47 cps/shelf.py:99 +msgid "Invalid shelf specified" +msgstr "Geçersiz kitaplık seçildi" + +#: cps/shelf.py:54 +#, python-format +msgid "Sorry you are not allowed to add a book to the the shelf: %(shelfname)s" +msgstr "Maalesef bu kitaplığa eKitap eklemenize izin verilmiyor: %(shelfname)s" + +#: cps/shelf.py:62 +msgid "You are not allowed to edit public shelves" +msgstr "Genel kitaplıkları düzenleme izniniz yok" + +#: cps/shelf.py:71 +#, python-format +msgid "Book is already part of the shelf: %(shelfname)s" +msgstr "eKitap zaten bu kitaplıkta bulunuyor: %(shelfname)s" + +#: cps/shelf.py:85 +#, python-format +msgid "Book has been added to shelf: %(sname)s" +msgstr "eKitap kitaplığa eklendi: %(sname)s" + +#: cps/shelf.py:104 +#, python-format +msgid "You are not allowed to add a book to the the shelf: %(name)s" +msgstr "Bu kitaplığa eKitap eklemenize izin verilmiyor: %(name)s" + +#: cps/shelf.py:109 +msgid "User is not allowed to edit public shelves" +msgstr "Kullanıcının genel kitaplıkları düzenlemesine izin verilmiyor" + +#: cps/shelf.py:127 +#, python-format +msgid "Books are already part of the shelf: %(name)s" +msgstr "eKitaplar zaten bu kitaplıkta bulunuyor: %(name)s" + +#: cps/shelf.py:141 +#, python-format +msgid "Books have been added to shelf: %(sname)s" +msgstr "eKitaplar kitaplığa eklendi: %(sname)s" + +#: cps/shelf.py:143 +#, python-format +msgid "Could not add books to shelf: %(sname)s" +msgstr "eKitaplar kitaplığa eklenemedi: %(sname)s" + +#: cps/shelf.py:181 +#, python-format +msgid "Book has been removed from shelf: %(sname)s" +msgstr "eKitap kitaplıktan silindi: %(sname)s" + +#: cps/shelf.py:190 +#, python-format +msgid "Sorry you are not allowed to remove a book from this shelf: %(sname)s" +msgstr "Maalesef bu kitaplıktan eKitap silmenize izin verilmiyor: %(sname)s" + +#: cps/shelf.py:215 cps/shelf.py:252 +#, python-format +msgid "A public shelf with the name '%(title)s' already exists." +msgstr "" + +#: cps/shelf.py:222 cps/shelf.py:260 +#, python-format +msgid "A private shelf with the name '%(title)s' already exists." +msgstr "" + +#: cps/shelf.py:228 +#, python-format +msgid "Shelf %(title)s created" +msgstr "%(title)s kitaplığı oluşturuldu." + +#: cps/shelf.py:231 cps/shelf.py:272 +msgid "There was an error" +msgstr "Bir hata oluştu" + +#: cps/shelf.py:232 cps/shelf.py:234 cps/templates/layout.html:143 +msgid "Create a Shelf" +msgstr "Kitaplık oluştur" + +#: cps/shelf.py:270 +#, python-format +msgid "Shelf %(title)s changed" +msgstr "%(title)s kitaplığı değiştirildi" + +#: cps/shelf.py:273 cps/shelf.py:275 +msgid "Edit a shelf" +msgstr "Kitaplığı düzenle" + +#: cps/shelf.py:327 +#, python-format +msgid "Shelf: '%(name)s'" +msgstr "Kitaplık: '%(name)s'" + +#: cps/shelf.py:330 +msgid "Error opening shelf. Shelf does not exist or is not accessible" +msgstr "Kitaplık açılırken hata oluştu. Kitaplık mevcut değil ya da erişilebilir değil" + +#: cps/shelf.py:368 +msgid "Hidden Book" +msgstr "" + +#: cps/shelf.py:373 +#, python-format +msgid "Change order of Shelf: '%(name)s'" +msgstr "Kitaplık sıralamasını değiştir: '%(name)s'" + +#: cps/ub.py:61 +msgid "Recently Added" +msgstr "Yeni" + +#: cps/ub.py:63 +msgid "Show recent books" +msgstr "Son eKitapları göster" + +#: cps/templates/index.xml:17 cps/ub.py:64 +msgid "Hot Books" +msgstr "Popüler" + +#: cps/ub.py:65 +msgid "Show Hot Books" +msgstr "" + +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 +msgid "Top Rated Books" +msgstr "" + +#: cps/ub.py:70 +msgid "Show Top Rated Books" +msgstr "" + +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 +msgid "Read Books" +msgstr "Okunanlar" + +#: cps/ub.py:73 +msgid "Show read and unread" +msgstr "Okunan ve okunmayanları göster" + +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 +msgid "Unread Books" +msgstr "Okunmamışlar" + +#: cps/ub.py:77 +msgid "Show unread" +msgstr "Okunmamışları göster" + +#: cps/ub.py:78 +msgid "Discover" +msgstr "Keşfet" + +#: cps/ub.py:80 +msgid "Show random books" +msgstr "Rastgele eKitap göster" + +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 +msgid "Categories" +msgstr "Kategoriler" + +#: cps/ub.py:83 +msgid "Show category selection" +msgstr "Kategori seçimini göster" + +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 +msgid "Series" +msgstr "Seriler" + +#: cps/ub.py:86 +msgid "Show series selection" +msgstr "Seri seçimini göster" + +#: cps/templates/index.xml:61 cps/ub.py:87 +msgid "Authors" +msgstr "Yazarlar" + +#: cps/ub.py:89 +msgid "Show author selection" +msgstr "Yazar seçimini göster" + +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 +msgid "Publishers" +msgstr "Yayıncılar" + +#: cps/ub.py:93 +msgid "Show publisher selection" +msgstr "Yayıncı seçimini göster" + +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 +msgid "Languages" +msgstr "Diller" + +#: cps/ub.py:97 +msgid "Show language selection" +msgstr "Dil seçimini göster" + +#: cps/templates/index.xml:96 cps/ub.py:98 +msgid "Ratings" +msgstr "Değerlendirmeler" + +#: cps/ub.py:100 +msgid "Show ratings selection" +msgstr "Değerlendirme seçimini göster" + +#: cps/templates/index.xml:104 cps/ub.py:101 +msgid "File formats" +msgstr "Biçimler" + +#: cps/ub.py:103 +msgid "Show file formats selection" +msgstr "Dosya biçimi seçimini göster" + +#: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 +msgid "Unexpected data while reading update information" +msgstr "Güncelleme bilgileri okunurken beklenmeyen veri" + +#: cps/updater.py:301 cps/updater.py:412 +msgid "No update available. You already have the latest version installed" +msgstr "Yeni güncelleme mevcut değil. Zaten en son sürüme sahipsiniz." + +#: cps/updater.py:333 +msgid "A new update is available. Click on the button below to update to the latest version." +msgstr "Yeni bir güncelleme mevcut. Son sürüme güncellemek için aşağıdaki düğmeye tıklayın." + +#: cps/updater.py:385 +msgid "Could not fetch update information" +msgstr "Güncelleme bilgileri alınamadı" + +#: cps/updater.py:399 +msgid "No release information available" +msgstr "Sürüm bilgisi mevcut değil" + +#: cps/updater.py:456 cps/updater.py:467 cps/updater.py:486 +#, python-format +msgid "A new update is available. Click on the button below to update to version: %(version)s" +msgstr "Yeni bir güncelleme mevcut. Son sürüme güncellemek için aşağıdaki düğmeye tıklayın: %(version)s" + +#: cps/updater.py:477 +msgid "Click on the button below to update to the latest stable version." +msgstr "Son kararlı sürüme güncellemek için aşağıdaki düğmeye tıklayın." + +#: cps/web.py:293 +#, python-format +msgid "Error: %(ldaperror)s" +msgstr "" + +#: cps/web.py:297 +msgid "Error: No user returned in response of LDAP server" +msgstr "" + +#: cps/web.py:345 +msgid "Failed to Create at Least One LDAP User" +msgstr "" + +#: cps/web.py:348 +msgid "At Least One LDAP User Not Found in Database" +msgstr "" + +#: cps/web.py:350 +msgid "User Successfully Imported" +msgstr "" + +#: cps/web.py:552 +msgid "Recently Added Books" +msgstr "Yeni Eklenen eKitaplar" + +#: cps/templates/index.html:5 cps/web.py:588 +msgid "Discover (Random Books)" +msgstr "Keşfet (Rastgele)" + +#: cps/web.py:614 +msgid "Books" +msgstr "eKitaplar" + +#: cps/web.py:641 +msgid "Hot Books (Most Downloaded)" +msgstr "" + +#: cps/web.py:651 +msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" +msgstr "" + +#: cps/web.py:665 +#, python-format +msgid "Author: %(name)s" +msgstr "Yazar: %(name)s" + +#: cps/web.py:677 +#, python-format +msgid "Publisher: %(name)s" +msgstr "Yayınevi: %(name)s" + +#: cps/web.py:688 +#, python-format +msgid "Series: %(serie)s" +msgstr "Seri: %(serie)s" + +#: cps/web.py:699 +#, python-format +msgid "Rating: %(rating)s stars" +msgstr "Değerlendirme: %(rating)s yıldız" + +#: cps/web.py:711 +#, python-format +msgid "File format: %(format)s" +msgstr "Biçim: %(format)s" + +#: cps/web.py:723 +#, python-format +msgid "Category: %(name)s" +msgstr "Kategori: %(name)s" + +#: cps/web.py:740 +#, python-format +msgid "Language: %(name)s" +msgstr "Dil: %(name)s" + +#: cps/web.py:802 +msgid "Ratings list" +msgstr "Değerlendirme listesi" + +#: cps/web.py:815 +msgid "File formats list" +msgstr "Biçim listesi" + +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 +msgid "Tasks" +msgstr "Görevler" + +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 +#: cps/templates/layout.html:44 cps/templates/layout.html:47 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 +msgid "Search" +msgstr "Ara" + +#: cps/web.py:948 +msgid "Published after " +msgstr "Yayınlanma (sonra)" + +#: cps/web.py:955 +msgid "Published before " +msgstr "Yayınlanma (önce)" + +#: cps/web.py:969 +#, python-format +msgid "Rating <= %(rating)s" +msgstr "Değerlendirme <= %(rating)s" + +#: cps/web.py:971 +#, python-format +msgid "Rating >= %(rating)s" +msgstr "Değerlendirme >= %(rating)s" + +#: cps/web.py:1037 cps/web.py:1051 +msgid "search" +msgstr "ara" + +#: cps/web.py:1136 +#, python-format +msgid "Book successfully queued for sending to %(kindlemail)s" +msgstr "%(kindlemail)s'a gönderilmek üzere başarıyla sıraya alındı" + +#: cps/web.py:1140 +#, python-format +msgid "Oops! There was an error sending this book: %(res)s" +msgstr "" + +#: cps/web.py:1142 +msgid "Please update your profile with a valid Send to Kindle E-mail Address." +msgstr "" + +#: cps/web.py:1159 +msgid "E-Mail server is not configured, please contact your administrator!" +msgstr "E-Posta sunucusu ayarlanmadı, lütfen yöneticinizle iletişime geçin!" + +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 +msgid "register" +msgstr "kaydol" + +#: cps/web.py:1193 +msgid "Your e-mail is not allowed to register" +msgstr "E-posta adresinizle kaydolunmasına izin verilmiyor" + +#: cps/web.py:1196 +msgid "Confirmation e-mail was send to your e-mail account." +msgstr "Onay e-Postası hesabınıza gönderildi." + +#: cps/web.py:1199 +msgid "This username or e-mail address is already in use." +msgstr "Kullanıcı adı ya da e-Posta adresi zaten kullanımda." + +#: cps/web.py:1216 +msgid "Cannot activate LDAP authentication" +msgstr "LDAP Kimlik Doğrulaması etkinleştirilemiyor" + +#: cps/web.py:1233 +#, python-format +msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" +msgstr "" + +#: cps/web.py:1239 +#, python-format +msgid "Could not login: %(message)s" +msgstr "" + +#: cps/web.py:1243 cps/web.py:1267 +msgid "Wrong Username or Password" +msgstr "Yanlış Kullanıcı adı ya da Şifre" + +#: cps/web.py:1250 +msgid "New Password was send to your email address" +msgstr "Yeni şifre e-Posta adresinize gönderildi" + +#: cps/web.py:1256 +msgid "Please enter valid username to reset password" +msgstr "Şifrenizi sıfırlayabilmek için lütfen geçerli bir kullanıcı adı giriniz" + +#: cps/web.py:1262 +#, python-format +msgid "You are now logged in as: '%(nickname)s'" +msgstr "Giriş yaptınız: '%(nickname)s'" + +#: cps/web.py:1275 cps/web.py:1303 +msgid "login" +msgstr "giriş" + +#: cps/web.py:1315 cps/web.py:1349 +msgid "Token not found" +msgstr "Token bulunamadı" + +#: cps/web.py:1324 cps/web.py:1357 +msgid "Token has expired" +msgstr "Token süresi doldu" + +#: cps/web.py:1333 +msgid "Success! Please return to your device" +msgstr "Başarılı! Lütfen cihazınıza dönün" + +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 +#, python-format +msgid "%(name)s's profile" +msgstr "%(name)s Profili" + +#: cps/web.py:1461 +msgid "Profile updated" +msgstr "Profil güncellendi" + +#: cps/web.py:1478 cps/web.py:1575 +msgid "Error opening eBook. File does not exist or file is not accessible:" +msgstr "eKitap açılırken hata oluştu. Dosya mevcut değil veya erişilemiyor:" + +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 +msgid "Read a Book" +msgstr "Kitap Oku" + +#: cps/web.py:1519 +msgid "Error opening eBook. File does not exist or file is not accessible." +msgstr "eKitap açılırken hata oluştu. Dosya mevcut değil veya erişilemiyor" + +#: cps/worker.py:335 +#, python-format +msgid "Ebook-converter failed: %(error)s" +msgstr "eKitap-Dönüştürücü hatası: %(error)s" + +#: cps/worker.py:346 +#, python-format +msgid "Kindlegen failed with Error %(error)s. Message: %(message)s" +msgstr "Kindlegen %(error)s hatası ile başarısız oldu. Hata mesajı: %(message)s" + +#: cps/templates/admin.html:9 +msgid "Users" +msgstr "" + +#: cps/templates/admin.html:12 cps/templates/login.html:8 +#: cps/templates/login.html:9 cps/templates/register.html:7 +#: cps/templates/user_edit.html:8 +msgid "Username" +msgstr "Kullanıcı adı" + +#: cps/templates/admin.html:13 cps/templates/register.html:11 +#: cps/templates/user_edit.html:13 +msgid "E-mail Address" +msgstr "" + +#: cps/templates/admin.html:14 cps/templates/user_edit.html:26 +msgid "Send to Kindle E-mail Address" +msgstr "" + +#: cps/templates/admin.html:15 +msgid "Downloads" +msgstr "" + +#: cps/templates/admin.html:16 cps/templates/layout.html:76 +msgid "Admin" +msgstr "Yönetim" + +#: cps/templates/admin.html:17 cps/templates/detail.html:18 +#: cps/templates/detail.html:27 cps/templates/shelf.html:6 +#: cps/templates/shelfdown.html:62 +msgid "Download" +msgstr "İndirme" + +#: cps/templates/admin.html:18 +msgid "View Books" +msgstr "" + +#: cps/templates/admin.html:19 cps/templates/layout.html:65 +msgid "Upload" +msgstr "Yükleme" + +#: cps/templates/admin.html:20 +msgid "Edit" +msgstr "Düzenleme" + +#: cps/templates/admin.html:38 +msgid "Add New User" +msgstr "" + +#: cps/templates/admin.html:40 cps/templates/admin.html:41 +msgid "Import LDAP Users" +msgstr "" + +#: cps/templates/admin.html:48 +msgid "E-mail Server Settings" +msgstr "" + +#: cps/templates/admin.html:51 cps/templates/email_edit.html:11 +msgid "SMTP Hostname" +msgstr "" + +#: cps/templates/admin.html:52 cps/templates/email_edit.html:15 +msgid "SMTP Port" +msgstr "" + +#: cps/templates/admin.html:53 cps/templates/email_edit.html:19 +msgid "Encryption" +msgstr "Şifreleme" + +#: cps/templates/admin.html:54 cps/templates/email_edit.html:27 +msgid "SMTP Login" +msgstr "" + +#: cps/templates/admin.html:55 cps/templates/email_edit.html:35 +msgid "From E-mail" +msgstr "" + +#: cps/templates/admin.html:65 +msgid "Edit E-mail Server Settings" +msgstr "" + +#: cps/templates/admin.html:71 +msgid "Configuration" +msgstr "Ayarlar" + +#: cps/templates/admin.html:74 +msgid "Calibre Database Directory" +msgstr "" + +#: cps/templates/admin.html:78 cps/templates/config_edit.html:122 +msgid "Log Level" +msgstr "Log Seviyesi" + +#: cps/templates/admin.html:82 +msgid "Port" +msgstr "Port" + +#: cps/templates/admin.html:88 cps/templates/config_view_edit.html:27 +msgid "Books per Page" +msgstr "" + +#: cps/templates/admin.html:92 +msgid "Uploads" +msgstr "" + +#: cps/templates/admin.html:96 +msgid "Anonymous Browsing" +msgstr "" + +#: cps/templates/admin.html:100 +msgid "Public Registration" +msgstr "" + +#: cps/templates/admin.html:104 +msgid "Magic Link Remote Login" +msgstr "" + +#: cps/templates/admin.html:108 +msgid "Reverse Proxy Login" +msgstr "" + +#: cps/templates/admin.html:113 +msgid "Reverse proxy header name" +msgstr "Ters Proxy header adı" + +#: cps/templates/admin.html:118 +msgid "Edit Basic Configuration" +msgstr "" + +#: cps/templates/admin.html:119 +msgid "Edit UI Configuration" +msgstr "" + +#: cps/templates/admin.html:125 +msgid "Administration" +msgstr "Yönetim" + +#: cps/templates/admin.html:126 +msgid "View Logs" +msgstr "" + +#: cps/templates/admin.html:127 +msgid "Reconnect Calibre Database" +msgstr "" + +#: cps/templates/admin.html:128 +msgid "Restart" +msgstr "" + +#: cps/templates/admin.html:129 +msgid "Shutdown" +msgstr "" + +#: cps/templates/admin.html:135 +msgid "Update" +msgstr "Güncelleme" + +#: cps/templates/admin.html:139 +msgid "Version" +msgstr "Sürüm" + +#: cps/templates/admin.html:140 +msgid "Details" +msgstr "Detaylar" + +#: cps/templates/admin.html:146 +msgid "Current version" +msgstr "Geçerli sürüm" + +#: cps/templates/admin.html:152 +msgid "Check for Update" +msgstr "" + +#: cps/templates/admin.html:153 +msgid "Perform Update" +msgstr "Güncelle" + +#: cps/templates/admin.html:165 +msgid "Are you sure you want to restart?" +msgstr "" + +#: cps/templates/admin.html:170 cps/templates/admin.html:184 +#: cps/templates/admin.html:204 cps/templates/shelf.html:72 +msgid "OK" +msgstr "" + +#: cps/templates/admin.html:171 cps/templates/admin.html:185 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 +#: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 +#: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 +#: cps/templates/user_edit.html:137 +msgid "Cancel" +msgstr "" + +#: cps/templates/admin.html:183 +msgid "Are you sure you want to shutdown?" +msgstr "" + +#: cps/templates/admin.html:195 +msgid "Updating, please do not reload this page" +msgstr "" + +#: cps/templates/author.html:15 +msgid "via" +msgstr "ile" + +#: cps/templates/author.html:23 +msgid "In Library" +msgstr "Kitaplıkta" + +#: cps/templates/author.html:34 cps/templates/list.html:14 +#: cps/templates/search.html:41 +msgid "All" +msgstr "Tümü" + +#: cps/templates/author.html:58 cps/templates/author.html:110 +#: cps/templates/discover.html:27 cps/templates/index.html:26 +#: cps/templates/index.html:89 cps/templates/search.html:67 +#: cps/templates/shelf.html:36 +msgid "reduce" +msgstr "azalt" + +#: cps/templates/author.html:94 +msgid "More by" +msgstr "daha fazla" + +#: cps/templates/book_edit.html:10 +msgid "Delete Book" +msgstr "eKitabı Sil" + +#: cps/templates/book_edit.html:13 +msgid "Delete formats:" +msgstr "Biçimleri Sil:" + +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 +#: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 +#: cps/templates/user_edit.html:177 +msgid "Delete" +msgstr "Sil" + +#: cps/templates/book_edit.html:24 +msgid "Convert book format:" +msgstr "Biçime dönüştür:" + +#: cps/templates/book_edit.html:28 +msgid "Convert from:" +msgstr "Biçimden dönüştür:" + +#: cps/templates/book_edit.html:30 cps/templates/book_edit.html:37 +msgid "select an option" +msgstr "bir seçenek seçin" + +#: cps/templates/book_edit.html:35 +msgid "Convert to:" +msgstr "Dönüştür:" + +#: cps/templates/book_edit.html:44 +msgid "Convert book" +msgstr "eKitabı dönüştür" + +#: cps/templates/book_edit.html:53 cps/templates/search_form.html:6 +msgid "Book Title" +msgstr "Kitap Adı" + +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 +msgid "Author" +msgstr "Yazar" + +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 +msgid "Description" +msgstr "Açıklama" + +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 +msgid "Tags" +msgstr "Etiketler" + +#: cps/templates/book_edit.html:73 +msgid "Series ID" +msgstr "" + +#: cps/templates/book_edit.html:77 +msgid "Rating" +msgstr "Değerlendirme" + +#: cps/templates/book_edit.html:81 +msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" +msgstr "" + +#: cps/templates/book_edit.html:85 +msgid "Upload Cover from Local Disk" +msgstr "" + +#: cps/templates/book_edit.html:90 +msgid "Published Date" +msgstr "" + +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 +#: cps/templates/search_form.html:14 +msgid "Publisher" +msgstr "Yayınevi" + +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 +#: cps/templates/user_edit.html:31 +msgid "Language" +msgstr "Dil" + +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 +msgid "Yes" +msgstr "Evet" + +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 +msgid "No" +msgstr "Hayır" + +#: cps/templates/book_edit.html:158 +msgid "Upload Format" +msgstr "" + +#: cps/templates/book_edit.html:167 +msgid "View Book on Save" +msgstr "" + +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 +msgid "Fetch Metadata" +msgstr "" + +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 +#: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 +#: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 +msgid "Save" +msgstr "" + +#: cps/templates/book_edit.html:185 +msgid "Are you really sure?" +msgstr "Emin misiniz?" + +#: cps/templates/book_edit.html:188 +msgid "This book will be permanently erased from database" +msgstr "" + +#: cps/templates/book_edit.html:189 +msgid "and hard disk" +msgstr "" + +#: cps/templates/book_edit.html:209 +msgid "Keyword" +msgstr "Anahtar Kelime" + +#: cps/templates/book_edit.html:210 +msgid " Search keyword " +msgstr "Anahtar kelime ara" + +#: cps/templates/book_edit.html:216 +msgid "Click the cover to load metadata to the form" +msgstr "Forma metaveri yüklemek için kapağa tıklayın" + +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 +#: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 +#: cps/templates/user_edit.html:164 +msgid "Close" +msgstr "Kapak" + +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 +msgid "Source" +msgstr "Kaynak" + +#: cps/templates/book_edit.html:272 +msgid "Search error!" +msgstr "Arama hatası!" + +#: cps/templates/book_edit.html:273 +msgid "No Result(s) found! Please try another keyword." +msgstr "" + +#: cps/templates/config_edit.html:12 +msgid "Library Configuration" +msgstr "Kitaplık Ayarları" + +#: cps/templates/config_edit.html:19 +msgid "Location of Calibre Database" +msgstr "" + +#: cps/templates/config_edit.html:25 +msgid "Use Google Drive?" +msgstr "Google Drive kullan?" + +#: cps/templates/config_edit.html:31 +msgid "Google Drive config problem" +msgstr "Google Drive ayarlama problemi" + +#: cps/templates/config_edit.html:37 +msgid "Authenticate Google Drive" +msgstr "Google Drive Doğrula" + +#: cps/templates/config_edit.html:41 +msgid "Please hit submit to continue with setup" +msgstr "Kuruluma devam etmek için Gönder'e tıklayın" + +#: cps/templates/config_edit.html:44 +msgid "Please finish Google Drive setup after login" +msgstr "Lütfen giriş yaptıktan sonra Google Drive kurulumunu tamamlayın" + +#: cps/templates/config_edit.html:49 +msgid "Google Drive Calibre folder" +msgstr "Google Drive Calibre klasörü" + +#: cps/templates/config_edit.html:57 +msgid "Metadata Watch Channel ID" +msgstr "Metaveri İzleme Kanalı ID" + +#: cps/templates/config_edit.html:60 +msgid "Revoke" +msgstr "Kaldır" + +#: cps/templates/config_edit.html:80 +msgid "Server Configuration" +msgstr "Sunucu Ayarları" + +#: cps/templates/config_edit.html:87 +msgid "Server Port" +msgstr "Sunucu Port" + +#: cps/templates/config_edit.html:91 +msgid "SSL certfile location (leave it empty for non-SSL Servers)" +msgstr "SSL certfile dosyası konumu (SSL olmayan sunucular için boş bırakın)" + +#: cps/templates/config_edit.html:95 +msgid "SSL Keyfile location (leave it empty for non-SSL Servers)" +msgstr "SSL keyfile dosyası konumu (SSL olmayan sunucular için boş bırakın)" + +#: cps/templates/config_edit.html:99 +msgid "Update Channel" +msgstr "" + +#: cps/templates/config_edit.html:101 +msgid "Stable" +msgstr "Kararlı" + +#: cps/templates/config_edit.html:102 +msgid "Stable (Automatic)" +msgstr "Kararlı (otomatik)" + +#: cps/templates/config_edit.html:103 +msgid "Nightly" +msgstr "Gecelik" + +#: cps/templates/config_edit.html:104 +msgid "Nightly (Automatic)" +msgstr "Gecelik (Otomatik)" + +#: cps/templates/config_edit.html:115 +msgid "Logfile Configuration" +msgstr "Log Dosyası Ayarları" + +#: cps/templates/config_edit.html:131 +msgid "Location and name of logfile (calibre-web.log for no entry)" +msgstr "Log dosyası konumu ve adı (girilmemişse calibre-web.log)" + +#: cps/templates/config_edit.html:136 +msgid "Enable Access Log" +msgstr "Erişim Log'unu etkinleştir" + +#: cps/templates/config_edit.html:139 +msgid "Location and name of access logfile (access.log for no entry)" +msgstr "Erişim dosyası konumu ve adı (girilmemişse access.log)" + +#: cps/templates/config_edit.html:150 +msgid "Feature Configuration" +msgstr "Özellik Yapılandırması" + +#: cps/templates/config_edit.html:158 +msgid "Enable Uploads" +msgstr "" + +#: cps/templates/config_edit.html:162 +msgid "Enable Anonymous Browsing" +msgstr "" + +#: cps/templates/config_edit.html:166 +msgid "Enable Public Registration" +msgstr "" + +#: cps/templates/config_edit.html:170 +msgid "Enable Magic Link Remote Login" +msgstr "" + +#: cps/templates/config_edit.html:175 +msgid "Enable Kobo sync" +msgstr "" + +#: cps/templates/config_edit.html:180 +msgid "Proxy unknown requests to Kobo Store" +msgstr "" + +#: cps/templates/config_edit.html:187 +msgid "Use Goodreads" +msgstr "Goodreads kullan" + +#: cps/templates/config_edit.html:188 +msgid "Create an API Key" +msgstr "" + +#: cps/templates/config_edit.html:192 +msgid "Goodreads API Key" +msgstr "Goodreads API Anahtarı" + +#: cps/templates/config_edit.html:196 +msgid "Goodreads API Secret" +msgstr "Goodreads API şifresi" + +#: cps/templates/config_edit.html:203 +msgid "Allow Reverse Proxy Authentication" +msgstr "Ters Proxy Kimlik Doğrulamaya İzin Ver" + +#: cps/templates/config_edit.html:207 +msgid "Reverse Proxy Header Name" +msgstr "Ters Proxy Header Adı" + +#: cps/templates/config_edit.html:214 +msgid "Login type" +msgstr "Giriş türü" + +#: cps/templates/config_edit.html:216 +msgid "Use Standard Authentication" +msgstr "" + +#: cps/templates/config_edit.html:218 +msgid "Use LDAP Authentication" +msgstr "LDAP Kimlik Doğrulama kullan" + +#: cps/templates/config_edit.html:221 +msgid "Use OAuth" +msgstr "OAuth kullan" + +#: cps/templates/config_edit.html:228 +msgid "LDAP Server Host Name or IP Address" +msgstr "LDAP Sunucu adı veya IP Adresi" + +#: cps/templates/config_edit.html:232 +msgid "LDAP Server Port" +msgstr "LDAP Sunucu Portu" + +#: cps/templates/config_edit.html:236 +msgid "LDAP Encryption" +msgstr "" + +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 +#: cps/templates/email_edit.html:21 +msgid "None" +msgstr "Hiçbiri" + +#: cps/templates/config_edit.html:239 +msgid "TLS" +msgstr "" + +#: cps/templates/config_edit.html:240 +msgid "SSL" +msgstr "SSL" + +#: cps/templates/config_edit.html:245 +msgid "LDAP Certificate Path" +msgstr "" + +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + +#: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 +msgid "LDAP Administrator Username" +msgstr "" + +#: cps/templates/config_edit.html:265 +msgid "LDAP Administrator Password" +msgstr "" + +#: cps/templates/config_edit.html:270 +msgid "LDAP Distinguished Name (DN)" +msgstr "LDAP Ayırt Edici Adı (DN)" + +#: cps/templates/config_edit.html:274 +msgid "LDAP User Object Filter" +msgstr "" + +#: cps/templates/config_edit.html:279 +msgid "LDAP Server is OpenLDAP?" +msgstr "LDAP Sunucusu OpenLDAP kullanıyor?" + +#: cps/templates/config_edit.html:281 +msgid "Following Settings are Needed For User Import" +msgstr "" + +#: cps/templates/config_edit.html:283 +msgid "LDAP Group Object Filter" +msgstr "" + +#: cps/templates/config_edit.html:287 +msgid "LDAP Group Name" +msgstr "" + +#: cps/templates/config_edit.html:291 +msgid "LDAP Group Members Field" +msgstr "" + +#: cps/templates/config_edit.html:300 +#, python-format +msgid "Obtain %(provider)s OAuth Credential" +msgstr "%(provider)s OAuth Kimlik Bilgisi Al" + +#: cps/templates/config_edit.html:303 +#, python-format +msgid "%(provider)s OAuth Client Id" +msgstr "%(provider)s OAuth Client Id" + +#: cps/templates/config_edit.html:307 +#, python-format +msgid "%(provider)s OAuth Client Secret" +msgstr "%(provider)s OAuth Client Secret" + +#: cps/templates/config_edit.html:323 +msgid "External binaries" +msgstr "Harici Uygulamalar" + +#: cps/templates/config_edit.html:331 +msgid "No Converter" +msgstr "" + +#: cps/templates/config_edit.html:333 +msgid "Use Kindlegen" +msgstr "Kindlegen kullan" + +#: cps/templates/config_edit.html:335 +msgid "Use calibre's ebook converter" +msgstr "Calibre'nin eKitap dönüştürücüsünü kullan" + +#: cps/templates/config_edit.html:339 +msgid "E-Book converter settings" +msgstr "eKitap Dönüştürücü ayarları" + +#: cps/templates/config_edit.html:343 +msgid "Path to convertertool" +msgstr "Dönüştürücü araç konumu" + +#: cps/templates/config_edit.html:349 +msgid "Location of Unrar binary" +msgstr "Unrar aracı konumu" + +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 +#: cps/templates/login.html:4 cps/templates/login.html:20 +msgid "Login" +msgstr "Giriş" + +#: cps/templates/config_view_edit.html:16 +msgid "View Configuration" +msgstr "Yapılandırmayı Göster" + +#: cps/templates/config_view_edit.html:23 cps/templates/shelf_edit.html:7 +msgid "Title" +msgstr "Başlık" + +#: cps/templates/config_view_edit.html:31 +msgid "No. of Random Books to Display" +msgstr "" + +#: cps/templates/config_view_edit.html:35 +msgid "No. of Authors to Display Before Hiding (0=Disable Hiding)" +msgstr "" + +#: cps/templates/config_view_edit.html:39 cps/templates/readcbr.html:112 +msgid "Theme" +msgstr "Tema" + +#: cps/templates/config_view_edit.html:41 +msgid "Standard Theme" +msgstr "Standard Tema" + +#: cps/templates/config_view_edit.html:42 +msgid "caliBlur! Dark Theme" +msgstr "caliBlur! Koyu Teması" + +#: cps/templates/config_view_edit.html:46 +msgid "Regular Expression for Ignoring Columns" +msgstr "" + +#: cps/templates/config_view_edit.html:50 +msgid "Link Read/Unread Status to Calibre Column" +msgstr "" + +#: cps/templates/config_view_edit.html:59 +msgid "View Restrictions based on Calibre column" +msgstr "" + +#: cps/templates/config_view_edit.html:68 +msgid "Regular Expression for Title Sorting" +msgstr "" + +#: cps/templates/config_view_edit.html:80 +msgid "Default Settings for New Users" +msgstr "" + +#: cps/templates/config_view_edit.html:88 cps/templates/user_edit.html:92 +msgid "Admin User" +msgstr "" + +#: cps/templates/config_view_edit.html:92 cps/templates/user_edit.html:97 +msgid "Allow Downloads" +msgstr "İndirmeye İzin Ver" + +#: cps/templates/config_view_edit.html:96 cps/templates/user_edit.html:101 +msgid "Allow eBook Viewer" +msgstr "" + +#: cps/templates/config_view_edit.html:100 cps/templates/user_edit.html:105 +msgid "Allow Uploads" +msgstr "Yüklemeye izin ver" + +#: cps/templates/config_view_edit.html:104 cps/templates/user_edit.html:109 +msgid "Allow Edit" +msgstr "Düzenlemeye İzin ver" + +#: cps/templates/config_view_edit.html:108 cps/templates/user_edit.html:113 +msgid "Allow Delete Books" +msgstr "" + +#: cps/templates/config_view_edit.html:112 cps/templates/user_edit.html:118 +msgid "Allow Changing Password" +msgstr "Şifre değiştirmeye izin ver" + +#: cps/templates/config_view_edit.html:116 cps/templates/user_edit.html:122 +msgid "Allow Editing Public Shelfs" +msgstr "Genel Kitaplıkları düzenlemeye izin ver" + +#: cps/templates/config_view_edit.html:126 +msgid "Default Visibilities for New Users" +msgstr "" + +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 +msgid "Show Random Books in Detail View" +msgstr "" + +#: cps/templates/config_view_edit.html:144 cps/templates/user_edit.html:83 +msgid "Add Allowed/Denied Tags" +msgstr "" + +#: cps/templates/config_view_edit.html:145 +msgid "Add Allowed/Denied custom column values" +msgstr "" + +#: cps/templates/detail.html:59 +msgid "Read in Browser" +msgstr "" + +#: cps/templates/detail.html:72 +msgid "Listen in Browser" +msgstr "" + +#: cps/templates/detail.html:117 +msgid "Book" +msgstr "Kitap" + +#: cps/templates/detail.html:117 +msgid "of" +msgstr "için" + +#: cps/templates/detail.html:165 +msgid "Published" +msgstr "" + +#: cps/templates/detail.html:200 +msgid "Mark As Unread" +msgstr "Okunmadı olarak işaretle" + +#: cps/templates/detail.html:200 +msgid "Mark As Read" +msgstr "Okundu olarak işaretle" + +#: cps/templates/detail.html:201 +msgid "Read" +msgstr "Okudum" + +#: cps/templates/detail.html:211 +msgid "Description:" +msgstr "Açıklama:" + +#: cps/templates/detail.html:224 cps/templates/search.html:14 +msgid "Add to shelf" +msgstr "Kitaplığa ekle" + +#: cps/templates/detail.html:264 +msgid "Edit Metadata" +msgstr "" + +#: cps/templates/email_edit.html:22 +msgid "STARTTLS" +msgstr "STARTTLS" + +#: cps/templates/email_edit.html:23 +msgid "SSL/TLS" +msgstr "SSL/TLS" + +#: cps/templates/email_edit.html:31 +msgid "SMTP Password" +msgstr "" + +#: cps/templates/email_edit.html:39 +msgid "Save and Send Test E-mail" +msgstr "" + +#: cps/templates/email_edit.html:43 +msgid "Allowed Domains (Whitelist)" +msgstr "" + +#: cps/templates/email_edit.html:46 cps/templates/email_edit.html:72 +msgid "Add Domain" +msgstr "Servis ekle" + +#: cps/templates/email_edit.html:49 cps/templates/email_edit.html:75 +msgid "Add" +msgstr "Ekle" + +#: cps/templates/email_edit.html:54 cps/templates/email_edit.html:64 +msgid "Enter domainname" +msgstr "Servis adı girin" + +#: cps/templates/email_edit.html:60 +msgid "Denied Domains (Blacklist)" +msgstr "" + +#: cps/templates/email_edit.html:90 +msgid "Are you sure you want to delete this domain?" +msgstr "" + +#: cps/templates/feed.xml:21 cps/templates/layout.html:173 +msgid "Next" +msgstr "Sonraki" + +#: cps/templates/feed.xml:79 cps/templates/layout.html:136 +#: cps/templates/layout.html:140 +msgid "(Public)" +msgstr "" + +#: cps/templates/generate_kobo_auth_url.html:5 +msgid "Open the .kobo/Kobo eReader.conf file in a text editor and add (or edit):" +msgstr "" + +#: cps/templates/http_error.html:38 +msgid "Create Issue" +msgstr "" + +#: cps/templates/http_error.html:45 +msgid "Return to Home" +msgstr "" + +#: cps/templates/index.html:64 +msgid "Group by series" +msgstr "Serilere göre grupla" + +#: cps/templates/index.xml:6 +msgid "Start" +msgstr "Başlangıç" + +#: cps/templates/index.xml:21 +msgid "Popular publications from this catalog based on Downloads." +msgstr "İndirilme sayısına göre bu katalogdaki popüler yayınlar." + +#: cps/templates/index.xml:28 +msgid "Popular publications from this catalog based on Rating." +msgstr "Değerlendirmeye göre bu katalogdaki popüler yayınlar." + +#: cps/templates/index.xml:31 +msgid "Recently added Books" +msgstr "Yeni eklenen eKitaplar" + +#: cps/templates/index.xml:35 +msgid "The latest Books" +msgstr "En en eKitaplar" + +#: cps/templates/index.xml:38 +msgid "Random Books" +msgstr "Rastgele eKitaplar" + +#: cps/templates/index.xml:42 +msgid "Show Random Books" +msgstr "Rastgele Kitap Göster" + +#: cps/templates/index.xml:65 +msgid "Books ordered by Author" +msgstr "Yazara göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:72 +msgid "Books ordered by publisher" +msgstr "Yayınevine göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:79 +msgid "Books ordered by category" +msgstr "Kategoriye göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:86 +msgid "Books ordered by series" +msgstr "Seriye göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:93 +msgid "Books ordered by Languages" +msgstr "Dile göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:100 +msgid "Books ordered by Rating" +msgstr "" + +#: cps/templates/index.xml:108 +msgid "Books ordered by file formats" +msgstr "Biçime göre sıralanmış eKitaplar" + +#: cps/templates/index.xml:111 cps/templates/layout.html:134 +msgid "Shelves" +msgstr "" + +#: cps/templates/index.xml:115 +msgid "Books organized in shelves" +msgstr "" + +#: cps/templates/layout.html:28 +msgid "Home" +msgstr "Anasayfa" + +#: cps/templates/layout.html:28 cps/templates/shelf_order.html:32 +#: cps/templates/user_edit.html:178 +msgid "Back" +msgstr "Geri" + +#: cps/templates/layout.html:34 +msgid "Toggle Navigation" +msgstr "" + +#: cps/templates/layout.html:45 +msgid "Search Library" +msgstr "" + +#: cps/templates/layout.html:55 +msgid "Advanced Search" +msgstr "Gelişmiş Arama" + +#: cps/templates/layout.html:76 cps/templates/read.html:71 +#: cps/templates/readcbr.html:83 cps/templates/readcbr.html:107 +msgid "Settings" +msgstr "Ayarlar" + +#: cps/templates/layout.html:78 +msgid "Account" +msgstr "Hesap" + +#: cps/templates/layout.html:80 +msgid "Logout" +msgstr "Çıkış" + +#: cps/templates/layout.html:85 cps/templates/register.html:14 +msgid "Register" +msgstr "Kayıt ol" + +#: cps/templates/layout.html:116 cps/templates/layout.html:220 +msgid "Uploading..." +msgstr "Yükleniyor..." + +#: cps/templates/layout.html:117 +msgid "Please do not refresh the page" +msgstr "" + +#: cps/templates/layout.html:127 +msgid "Browse" +msgstr "Gözat" + +#: cps/templates/layout.html:138 +msgid "Your Shelves" +msgstr "Kitaplıklarınız" + +#: cps/templates/layout.html:144 cps/templates/stats.html:3 +msgid "About" +msgstr "Hakkında" + +#: cps/templates/layout.html:158 +msgid "Previous" +msgstr "Önceki" + +#: cps/templates/layout.html:185 +msgid "Book Details" +msgstr "eKitap Detayları" + +#: cps/templates/layout.html:219 +msgid "Upload done, processing, please wait..." +msgstr "Yükleme tamamlandı, işleniyor, lütfen bekleyin..." + +#: cps/templates/layout.html:222 +msgid "Error" +msgstr "Hata" + +#: cps/templates/login.html:12 cps/templates/login.html:13 +#: cps/templates/user_edit.html:21 +msgid "Password" +msgstr "Şifre" + +#: cps/templates/login.html:17 +msgid "Remember Me" +msgstr "" + +#: cps/templates/login.html:22 +msgid "Forgot Password?" +msgstr "" + +#: cps/templates/login.html:25 +msgid "Log in with Magic Link" +msgstr "" + +#: cps/templates/logviewer.html:6 +msgid "Show Calibre-Web Log: " +msgstr "" + +#: cps/templates/logviewer.html:8 +msgid "Calibre-Web Log: " +msgstr "" + +#: cps/templates/logviewer.html:8 +msgid "Stream output, can't be displayed" +msgstr "Akış çıktısı, görüntülenemiyor" + +#: cps/templates/logviewer.html:12 +msgid "Show Access Log: " +msgstr "" + +#: cps/templates/modal_restriction.html:6 +msgid "Select Allowed/Denied Tags" +msgstr "" + +#: cps/templates/modal_restriction.html:7 +msgid "Select Allowed/Denied Custom Column Values" +msgstr "" + +#: cps/templates/modal_restriction.html:8 +msgid "Select Allowed/Denied Tags of User" +msgstr "" + +#: cps/templates/modal_restriction.html:9 +msgid "Select Allowed/Denied Custom Column Values of User" +msgstr "" + +#: cps/templates/modal_restriction.html:15 +msgid "Enter Tag" +msgstr "" + +#: cps/templates/modal_restriction.html:24 +msgid "Add View Restriction" +msgstr "" + +#: cps/templates/osd.xml:5 +msgid "Calibre-Web eBook Catalog" +msgstr "" + +#: cps/templates/read.html:74 +msgid "Reflow text when sidebars are open." +msgstr "Kenar çubukları açıkken metni kaydır" + +#: cps/templates/readcbr.html:88 +msgid "Keyboard Shortcuts" +msgstr "Klavye Kısayolları" + +#: cps/templates/readcbr.html:91 +msgid "Previous Page" +msgstr "Önceki Sayfa" + +#: cps/templates/readcbr.html:92 +msgid "Next Page" +msgstr "Sonraki Sayfa" + +#: cps/templates/readcbr.html:93 +msgid "Scale to Best" +msgstr "En İyiye Ölçeklendir" + +#: cps/templates/readcbr.html:94 +msgid "Scale to Width" +msgstr "Genişliğe Ölçeklendir" + +#: cps/templates/readcbr.html:95 +msgid "Scale to Height" +msgstr "Yüksekliğe Ölçeklendir" + +#: cps/templates/readcbr.html:96 +msgid "Scale to Native" +msgstr "Asıla göre ölçeklendir" + +#: cps/templates/readcbr.html:97 +msgid "Rotate Right" +msgstr "Sağa çevir" + +#: cps/templates/readcbr.html:98 +msgid "Rotate Left" +msgstr "Sola çevir" + +#: cps/templates/readcbr.html:99 +msgid "Flip Image" +msgstr "Resmi döndir" + +#: cps/templates/readcbr.html:115 +msgid "Light" +msgstr "Açık" + +#: cps/templates/readcbr.html:116 +msgid "Dark" +msgstr "Koyu" + +#: cps/templates/readcbr.html:121 +msgid "Scale" +msgstr "Ölçeklendir" + +#: cps/templates/readcbr.html:124 +msgid "Best" +msgstr "En İyi" + +#: cps/templates/readcbr.html:125 +msgid "Width" +msgstr "Genişlik" + +#: cps/templates/readcbr.html:126 +msgid "Height" +msgstr "Yükseklik" + +#: cps/templates/readcbr.html:127 +msgid "Native" +msgstr "Asıl" + +#: cps/templates/readcbr.html:132 +msgid "Rotate" +msgstr "Çevir" + +#: cps/templates/readcbr.html:143 +msgid "Flip" +msgstr "Döndür" + +#: cps/templates/readcbr.html:146 +msgid "Horizontal" +msgstr "Yatay" + +#: cps/templates/readcbr.html:147 +msgid "Vertical" +msgstr "Dikey" + +#: cps/templates/readcbr.html:152 +msgid "Direction" +msgstr "Yön" + +#: cps/templates/readcbr.html:155 +msgid "Left to Right" +msgstr "Soldan Sağa" + +#: cps/templates/readcbr.html:156 +msgid "Right to Left" +msgstr "Sağdan Sola" + +#: cps/templates/readpdf.html:29 +msgid "PDF reader" +msgstr "PDF Okuyucu" + +#: cps/templates/readtxt.html:6 +msgid "Basic txt Reader" +msgstr "Temel Metin Okuyucu" + +#: cps/templates/register.html:4 +msgid "Register New Account" +msgstr "" + +#: cps/templates/register.html:8 +msgid "Choose a username" +msgstr "Kullanıcı adı seç" + +#: cps/templates/register.html:12 +msgid "Your email address" +msgstr "E-Posta adresiniz" + +#: cps/templates/remote_login.html:4 +msgid "Magic Link - Authorise New Device" +msgstr "" + +#: cps/templates/remote_login.html:6 +msgid "On another device, login and visit:" +msgstr "" + +#: cps/templates/remote_login.html:10 +msgid "Once verified, you will automatically be logged in on this device." +msgstr "" + +#: cps/templates/remote_login.html:13 +msgid "This verification link will expire in 10 minutes." +msgstr "" + +#: cps/templates/search.html:5 +msgid "No Results Found" +msgstr "" + +#: cps/templates/search.html:6 +msgid "Search Term:" +msgstr "" + +#: cps/templates/search.html:8 +msgid "Results for:" +msgstr "Sonuçlar:" + +#: cps/templates/search_form.html:19 +msgid "Published Date From" +msgstr "" + +#: cps/templates/search_form.html:26 +msgid "Published Date To" +msgstr "" + +#: cps/templates/search_form.html:43 +msgid "Exclude Tags" +msgstr "Etiketleri Hariç Tut" + +#: cps/templates/search_form.html:63 +msgid "Exclude Series" +msgstr "Serileri Hariç Tut" + +#: cps/templates/search_form.html:84 +msgid "Exclude Languages" +msgstr "Dilleri Hariç Tut" + +#: cps/templates/search_form.html:95 +msgid "Extensions" +msgstr "Uzantılar" + +#: cps/templates/search_form.html:105 +msgid "Exclude Extensions" +msgstr "Uzantıları Hariç Tut" + +#: cps/templates/search_form.html:117 +msgid "Rating Above" +msgstr "" + +#: cps/templates/search_form.html:121 +msgid "Rating Below" +msgstr "" + +#: cps/templates/shelf.html:10 +msgid "Delete this Shelf" +msgstr "Bu Kitaplığı sil" + +#: cps/templates/shelf.html:11 +msgid "Edit Shelf" +msgstr "Kitaplığı düzenle" + +#: cps/templates/shelf.html:12 cps/templates/shelf_order.html:31 +msgid "Change order" +msgstr "Sıralamayı değiştir" + +#: cps/templates/shelf.html:67 +msgid "Are you sure you want to delete this shelf?" +msgstr "" + +#: cps/templates/shelf.html:70 +msgid "Shelf will be deleted for all users" +msgstr "" + +#: cps/templates/shelf_edit.html:13 +msgid "Share with Everyone" +msgstr "" + +#: cps/templates/shelf_order.html:5 +msgid "Drag to Rearrange Order" +msgstr "" + +#: cps/templates/stats.html:7 +msgid "Library Statistics" +msgstr "" + +#: cps/templates/stats.html:12 +msgid "Books in this Library" +msgstr "Bu kitaplıktaki kitaplar" + +#: cps/templates/stats.html:16 +msgid "Authors in this Library" +msgstr "Bu kitaplıktaki Yazarlar" + +#: cps/templates/stats.html:20 +msgid "Categories in this Library" +msgstr "Bu kitaplıktaki kategoriler" + +#: cps/templates/stats.html:24 +msgid "Series in this Library" +msgstr "Bu kitaplıktaki Seriler" + +#: cps/templates/stats.html:28 +msgid "Linked Libraries" +msgstr "" + +#: cps/templates/stats.html:32 +msgid "Program Library" +msgstr "" + +#: cps/templates/stats.html:33 +msgid "Installed Version" +msgstr "Yüklü Sürüm" + +#: cps/templates/tasks.html:12 +msgid "User" +msgstr "Kullanıcı" + +#: cps/templates/tasks.html:14 +msgid "Task" +msgstr "Görev" + +#: cps/templates/tasks.html:15 +msgid "Status" +msgstr "Durum" + +#: cps/templates/tasks.html:16 +msgid "Progress" +msgstr "İlerleme" + +#: cps/templates/tasks.html:17 +msgid "Run Time" +msgstr "" + +#: cps/templates/tasks.html:18 +msgid "Start Time" +msgstr "" + +#: cps/templates/tasks.html:24 +msgid "Delete finished tasks" +msgstr "Biten görevleri sil" + +#: cps/templates/tasks.html:25 +msgid "Hide all tasks" +msgstr "Tüm görevleri gizle" + +#: cps/templates/user_edit.html:18 +msgid "Reset user Password" +msgstr "Kullanıcı şifresini sıfırla" + +#: cps/templates/user_edit.html:41 +msgid "Language of Books" +msgstr "" + +#: cps/templates/user_edit.html:43 +msgid "Show All" +msgstr "" + +#: cps/templates/user_edit.html:52 +msgid "OAuth Settings" +msgstr "OAuth Ayarları" + +#: cps/templates/user_edit.html:54 +msgid "Link" +msgstr "Bağla" + +#: cps/templates/user_edit.html:56 +msgid "Unlink" +msgstr "Kaldır" + +#: cps/templates/user_edit.html:62 +msgid "Kobo Sync Token" +msgstr "" + +#: cps/templates/user_edit.html:64 +msgid "Create/View" +msgstr "" + +#: cps/templates/user_edit.html:84 +msgid "Add allowed/Denied Custom Column Values" +msgstr "" + +#: cps/templates/user_edit.html:129 +msgid "Delete User" +msgstr "" + +#: cps/templates/user_edit.html:144 +msgid "Recent Downloads" +msgstr "Son İndirilenler" + +#: cps/templates/user_edit.html:160 +msgid "Generate Kobo Auth URL" +msgstr "" + +#: cps/templates/user_edit.html:176 +msgid "Do you really want to delete the Kobo Token?" +msgstr "" + diff --git a/cps/translations/uk/LC_MESSAGES/messages.po b/cps/translations/uk/LC_MESSAGES/messages.po index 35d88116..12841082 100644 --- a/cps/translations/uk/LC_MESSAGES/messages.po +++ b/cps/translations/uk/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/calibre-web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2017-04-30 00:47+0300\n" "Last-Translator: ABIS Team \n" "Language: uk\n" @@ -45,8 +45,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "Невідомий" @@ -59,7 +59,7 @@ msgstr "Сторінка адміністратора" msgid "UI Configuration" msgstr "Конфігурація інтерфейсу" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "" @@ -89,185 +89,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "Настройки сервера" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "Будь-ласка, заповніть всі поля!" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "Додати користувача" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "Користувач '%(user)s' додан" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "Користувача '%(nick)s' видалено" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "" -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "Змінити користувача %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "Користувача '%(nick)s' оновлено" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "Сталась невідома помилка" -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "Будь-ласка, спочатку сконфігуруйте параметри SMTP" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "Перевірка оновлень" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "Завантаження оновлень" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "Розпакування оновлення" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "З'єднання з базою даних закрите" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "Оновлення встановлені, натисніть ok і перезавантажте сторінку" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -275,89 +275,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "Сталась помилка при відкриванні eBook. Файл не існує або відсутній доступ до нього" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "змінити метадані" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "Завантажувальний файл повинен мати розширення" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "Сталась помилка при редагуванні книги. Будь-ласка, перевірте лог-файл для деталей" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "Failed to fetch user info from Google." msgstr "" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "Ви увійшли як користувач: '%(nickname)s'" @@ -685,122 +685,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "Змінити розташування книжкової полиці '%(name)s'" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "Останні додані" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "Показувати останні книги" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "Популярні книги" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "Показувати популярні книги" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "Книги з найкращим рейтингом" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "Показувати книги з найвищим рейтингом" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "Прочитані книги" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "Показувати прочитані та непрочитані книги" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "Непрочитані книги" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "Огляд" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "Показувати випадкові книги" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "Категорії" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "Показувати вибір категорії" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "Серії" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "Показувати вибір серії" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "Автори" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "Показувати вибір автора" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "Мови" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "Показувати вибір мови" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "" @@ -830,223 +822,223 @@ msgstr "" msgid "Click on the button below to update to the latest stable version." msgstr "" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "Нещодавно додані книги" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "Огляд (випадкові книги)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "Популярні книги (найбільш завантажувані)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "Неможливо відкрити книгу. Файл не існує або немає доступу." -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "Серії: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "Категорія: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "Мова: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "Пошук" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "" -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "Опубліковано до" -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "пошук" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "Помилка при відправці книги: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "" -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "зареєструватись" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "Помилка в імені користувача або паролі" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "увійти" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "Токен не знайдено" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Час дії токено вичерпано" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "Вдалося! Будь-ласка, поверніться до вашого пристрою" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "Профіль %(name)s" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "Профіль оновлено" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "Читати книгу" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "" @@ -1247,8 +1239,8 @@ msgid "OK" msgstr "Ok" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1295,7 +1287,7 @@ msgstr "Видалити книгу" msgid "Delete formats:" msgstr "" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1325,148 +1317,120 @@ msgstr "" msgid "Book Title" msgstr "Назва книги" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "Автор" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "Опис" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "Теги" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "Рейтинг" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "Опубліковано" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "Видавець" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "Мова" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "Так" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "Ні" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "Формат завантаження" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "переглянути книгу після редагування" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "Отримати метадані" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "Книга буде видалена з БД Calibre" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "і з диску" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "Ключове слово" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr " Пошук по ключовому слову" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "Натисніть на обкладинку, щоб отримати метадані" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "Завантаження..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "Закрити" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "Джерело" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "Помилка пошуку!" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "" @@ -1638,107 +1602,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "Ні" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "Ім'я користувача" @@ -1827,7 +1807,7 @@ msgstr "Дозволити редагування публічних книжк msgid "Default Visibilities for New Users" msgstr "Можливості за замовчуванням для нових користувачів" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "Показувати випадкові книги при перегляді деталей" @@ -1871,27 +1851,15 @@ msgstr "" msgid "Read" msgstr "Прочитано" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "Опис:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "Додати на книжкову полицю" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "Редагувати метадані" @@ -1984,7 +1952,7 @@ msgstr "Останні книги" msgid "Random Books" msgstr "Випадковий список книг" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "Показувати випадкові книги" diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo index 07dd64be..803ee1d8 100644 Binary files a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo and b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.mo differ diff --git a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po index 7de4cd0b..cbe70562 100644 --- a/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po +++ b/cps/translations/zh_Hans_CN/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Calibre-Web\n" "Report-Msgid-Bugs-To: https://github.com/janeczku/Calibre-Web\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: 2017-01-06 17:00+0000\n" "Last-Translator: dalin \n" "Language: zh_Hans_CN\n" @@ -46,8 +46,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "未知" @@ -60,7 +60,7 @@ msgstr "管理页" msgid "UI Configuration" msgstr "UI配置" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "Calibre-Web配置已更新" @@ -90,185 +90,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "基本配置" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "请填写所有字段" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "添加新用户" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "邮箱不在有效域中'" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "此邮箱或昵称的账号已经存在。" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "用户 '%(user)s' 已被创建" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "编辑邮箱服务器设置" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "测试邮件已经被成功发到 %(kindlemail)s" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "发送测试邮件出错了: %(res)s" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "请先配置有效的邮箱地址..." -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "已更新邮件服务器设置" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "用户 '%(nick)s' 已被删除" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "admin账户不存在,无法删除用户" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "找到一个已有账号使用这个邮箱。" -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "编辑用户 %(nick)s" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "此用户名已被使用" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "用户 '%(nick)s' 已被更新" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "发生未知错误。" -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "用户 %(user)s 的密码已重置" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "发生一个未知错误,请稍后再试。" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "请先配置SMTP邮箱..." -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "日志文件查看器" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "正在请求更新包" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "正在下载更新包" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "正在解压更新包" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "正在替换文件" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "数据库连接已关闭" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "正在停止服务器" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "更新完成,请按确定并刷新页面" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "更新失败:" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "HTTP错误" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "连接错误" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "建立连接超时" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "一般错误" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -276,89 +276,89 @@ msgstr "" msgid "not configured" msgstr "配置为空" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "打开电子书出错。文件不存在或不可访问" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "编辑元数据" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "不能上传后缀为 '%(ext)s' 的文件到此服务器" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "要上传的文件必须有一个后缀" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "创建路径 %(path)s 失败(权限拒绝)。" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "保存文件 %(file)s 失败。" -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "已添加 %(ext)s 格式到 %(book)s" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "封面不是一个jpg文件,无法保存" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "%(langname)s 不是一种有效语言" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "已成功更新元数据" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "编辑书籍出错,详情请检查日志文件" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "文件 %(filename)s 无法保存到临时目录" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "上传的书籍可能已经存在,建议修改后重新上传:" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "存储文件 %(file)s 失败(权限拒绝)。" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "删除文件 %(file)s 失败(权限拒绝)。" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "文件 %(file)s 已上传" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "转换的源或目的格式缺失" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "书籍已经被成功加入 %(book_format)s 的转换队列" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "转换此书时出现错误: %(res)s" @@ -542,7 +542,7 @@ msgstr "使用Google登录失败。" msgid "Failed to fetch user info from Google." msgstr "从Google获取用户信息失败。" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "您现在已以'%(nickname)s'身份登录" @@ -686,122 +686,114 @@ msgstr "隐藏书籍" msgid "Change order of Shelf: '%(name)s'" msgstr "修改书架 '%(name)s' 顺序" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "最近添加" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "显示最近书籍" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "热门书籍" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "显示热门书籍" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "最高评分书籍" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "显示最高评分书籍" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "已读书籍" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "显示已读和未读" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "未读书籍" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "显示未读" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "发现" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "显示随机书籍" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "分类" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "显示分类选择" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "丛书" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "显示丛书选择" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "作者" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "显示作者选择" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "出版社" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "显示出版社选择" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "语言" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "显示语言选择" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "评分" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "显示评分选择" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "文件格式" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "显示文件格式选择" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "读取更新信息时出现异常数据" @@ -831,223 +823,223 @@ msgstr "一个新的更新可用。点击下面按钮更新到版本: %(version) msgid "Click on the button below to update to the latest stable version." msgstr "点击下面按钮更新到最新稳定版本。" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "最近添加的书籍" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "发现(随机书籍)" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "热门书籍(最多下载)" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "无法打开电子书。 文件不存在或者文件不可访问:" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "作者: %(name)s" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "出版社: %(name)s" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "丛书: %(serie)s" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "评分: %(rating)s 星" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "文件格式: %(format)s" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "分类: %(name)s" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "语言: %(name)s" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "评分列表" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "文件格式列表" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "任务" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "搜索" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "出版时晚于 " -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "出版时早于 " -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "评分 <= %(rating)s" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "评分 >= %(rating)s" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "搜索" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "书籍已经被成功加入 %(kindlemail)s 的发送队列" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "发送这本书的时候出现错误: %(res)s" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "请先配置您的kindle邮箱..." -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "邮件服务未配置,请联系网站管理员" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "注册" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "您的邮箱不能用来注册" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "确认邮件已经发送到您的邮箱。" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "这个用户名或者邮箱已经被使用。" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "无法激活LDAP认证" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "用户名或密码错误" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "新密码已发送到您的邮箱" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "请输入有效的用户名进行密码重置" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "您已以 '%(nickname)s' 登录" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "登录" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "找不到Token" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "Token已过期" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "成功!请返回您的设备" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "%(name)s 的资料" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "资料已更新" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "打开电子书错误。文件不存在或者无法访问:" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "阅读一本书" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "打开电子书错误。文件不存在或者无法访问。" @@ -1248,8 +1240,8 @@ msgid "OK" msgstr "确定" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1296,7 +1288,7 @@ msgstr "删除书籍" msgid "Delete formats:" msgstr "删除格式:" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1326,148 +1318,120 @@ msgstr "转换书籍" msgid "Book Title" msgstr "书名" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "作者" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "简介" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "标签" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "评分" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "封面URL(jpg,封面会被下载被保存在数据库中,然后字段会被重新清空)" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "从本地磁盘上传封面" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "出版日期" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "出版社" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "语言" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "确认" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "无" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "上传格式" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "编辑后查看书籍" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "获取元数据" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "保存" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "您真的确认?" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "书籍会从Calibre数据库中删除" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr ",包括从硬盘中" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "关键字" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "搜索关键字" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "点击封面加载元数据到表单" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "加载中..." -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "关闭" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "来源" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "搜索错误" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "找不到结果。请尝试另一个关键字" @@ -1639,107 +1603,123 @@ msgstr "LDAP服务器名称或IP地址" msgid "LDAP Server Port" msgstr "LDAP服务器端口" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "无" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "LDAP管理员用户名" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "LDAP管理员密码" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "获取 %(provider)s OAuth Credential" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "外部二进制" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "没有转换器" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "使用Kindlegen" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "使用calibre的电子书转换器" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "电子书转换设置" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "转换工具路径" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "Unrar二进制位置" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "登录" @@ -1828,7 +1808,7 @@ msgstr "允许编辑公共书架" msgid "Default Visibilities for New Users" msgstr "新用户的默认显示权限" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "在详情页显示随机书籍" @@ -1872,27 +1852,15 @@ msgstr "标为已读" msgid "Read" msgstr "已读" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "简介:" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "添加到书架" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "编辑元数据" @@ -1985,7 +1953,7 @@ msgstr "最新书籍" msgid "Random Books" msgstr "随机书籍" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "显示随机书籍" diff --git a/cps/web.py b/cps/web.py index ecf080d2..ffa6a97c 100644 --- a/cps/web.py +++ b/cps/web.py @@ -156,6 +156,9 @@ def load_user_from_auth_header(header_val): except (TypeError, UnicodeDecodeError, binascii.Error): pass user = _fetch_user_by_name(basic_username) + if config.config_login_type == constants.LOGIN_LDAP and services.ldap: + if services.ldap.bind_user(str(user.password), basic_password): + return user if user and check_password_hash(str(user.password), basic_password): return user return @@ -285,7 +288,7 @@ def import_ldap_users(): showtext = {} try: new_users = services.ldap.get_group_members(config.config_ldap_group_name) - except (services.ldap.LDAPException, TypeError, AttributeError) as e: + except (services.ldap.LDAPException, TypeError, AttributeError, KeyError) as e: log.debug(e) showtext['text'] = _(u'Error: %(ldaperror)s', ldaperror=e) return json.dumps(showtext) diff --git a/messages.pot b/messages.pot index 8f4f4de1..945f8647 100644 --- a/messages.pot +++ b/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2020-04-16 20:14+0200\n" +"POT-Creation-Date: 2020-04-24 22:12+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,8 +45,8 @@ msgstr "" msgid "Unknown command" msgstr "" -#: cps/admin.py:115 cps/editbooks.py:432 cps/editbooks.py:441 -#: cps/editbooks.py:565 cps/editbooks.py:567 cps/editbooks.py:633 +#: cps/admin.py:115 cps/editbooks.py:410 cps/editbooks.py:419 +#: cps/editbooks.py:539 cps/editbooks.py:541 cps/editbooks.py:594 #: cps/updater.py:509 cps/uploader.py:96 cps/uploader.py:107 msgid "Unknown" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "UI Configuration" msgstr "" -#: cps/admin.py:192 cps/admin.py:672 +#: cps/admin.py:192 cps/admin.py:676 msgid "Calibre-Web configuration updated" msgstr "" @@ -89,185 +89,185 @@ msgstr "" msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier" msgstr "" -#: cps/admin.py:583 +#: cps/admin.py:587 #, python-format msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:586 +#: cps/admin.py:590 msgid "LDAP Group Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:590 +#: cps/admin.py:594 #, python-format msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier" msgstr "" -#: cps/admin.py:593 +#: cps/admin.py:597 msgid "LDAP User Object Filter Has Unmatched Parenthesis" msgstr "" -#: cps/admin.py:597 +#: cps/admin.py:601 msgid "LDAP Certificate Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:645 +#: cps/admin.py:649 msgid "Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:650 +#: cps/admin.py:654 msgid "Access Logfile Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:669 +#: cps/admin.py:673 msgid "DB Location is not Valid, Please Enter Correct Path" msgstr "" -#: cps/admin.py:702 +#: cps/admin.py:706 msgid "Basic Configuration" msgstr "" -#: cps/admin.py:726 cps/web.py:1206 +#: cps/admin.py:730 cps/web.py:1165 msgid "Please fill out all fields!" msgstr "" -#: cps/admin.py:729 cps/admin.py:741 cps/admin.py:747 cps/admin.py:765 +#: cps/admin.py:733 cps/admin.py:745 cps/admin.py:751 cps/admin.py:769 msgid "Add new user" msgstr "" -#: cps/admin.py:738 cps/web.py:1453 +#: cps/admin.py:742 cps/web.py:1412 msgid "E-mail is not from valid domain" msgstr "" -#: cps/admin.py:745 cps/admin.py:760 +#: cps/admin.py:749 cps/admin.py:764 msgid "Found an existing account for this e-mail address or nickname." msgstr "" -#: cps/admin.py:756 +#: cps/admin.py:760 #, python-format msgid "User '%(user)s' created" msgstr "" -#: cps/admin.py:775 +#: cps/admin.py:779 msgid "Edit e-mail server settings" msgstr "" -#: cps/admin.py:801 +#: cps/admin.py:805 #, python-format msgid "Test e-mail successfully send to %(kindlemail)s" msgstr "" -#: cps/admin.py:804 +#: cps/admin.py:808 #, python-format msgid "There was an error sending the Test e-mail: %(res)s" msgstr "" -#: cps/admin.py:806 +#: cps/admin.py:810 msgid "Please configure your e-mail address first..." msgstr "" -#: cps/admin.py:808 +#: cps/admin.py:812 msgid "E-mail server settings updated" msgstr "" -#: cps/admin.py:838 +#: cps/admin.py:842 #, python-format msgid "User '%(nick)s' deleted" msgstr "" -#: cps/admin.py:841 +#: cps/admin.py:845 msgid "No admin user remaining, can't delete user" msgstr "" -#: cps/admin.py:877 cps/web.py:1496 +#: cps/admin.py:881 cps/web.py:1455 msgid "Found an existing account for this e-mail address." msgstr "" -#: cps/admin.py:887 cps/admin.py:902 cps/admin.py:922 cps/web.py:1471 +#: cps/admin.py:891 cps/admin.py:906 cps/admin.py:926 cps/web.py:1430 #, python-format msgid "Edit User %(nick)s" msgstr "" -#: cps/admin.py:893 cps/web.py:1463 +#: cps/admin.py:897 cps/web.py:1422 msgid "This username is already taken" msgstr "" -#: cps/admin.py:909 +#: cps/admin.py:913 #, python-format msgid "User '%(nick)s' updated" msgstr "" -#: cps/admin.py:912 +#: cps/admin.py:916 msgid "An unknown error occured." msgstr "" -#: cps/admin.py:935 +#: cps/admin.py:939 #, python-format msgid "Password for user %(user)s reset" msgstr "" -#: cps/admin.py:938 cps/web.py:1231 cps/web.py:1295 +#: cps/admin.py:942 cps/web.py:1190 cps/web.py:1254 msgid "An unknown error occurred. Please try again later." msgstr "" -#: cps/admin.py:941 cps/web.py:1172 +#: cps/admin.py:945 cps/web.py:1131 msgid "Please configure the SMTP mail settings first..." msgstr "" -#: cps/admin.py:953 +#: cps/admin.py:957 msgid "Logfile viewer" msgstr "" -#: cps/admin.py:992 +#: cps/admin.py:996 msgid "Requesting update package" msgstr "" -#: cps/admin.py:993 +#: cps/admin.py:997 msgid "Downloading update package" msgstr "" -#: cps/admin.py:994 +#: cps/admin.py:998 msgid "Unzipping update package" msgstr "" -#: cps/admin.py:995 +#: cps/admin.py:999 msgid "Replacing files" msgstr "" -#: cps/admin.py:996 +#: cps/admin.py:1000 msgid "Database connections are closed" msgstr "" -#: cps/admin.py:997 +#: cps/admin.py:1001 msgid "Stopping server" msgstr "" -#: cps/admin.py:998 +#: cps/admin.py:1002 msgid "Update finished, please press okay and reload page" msgstr "" -#: cps/admin.py:999 cps/admin.py:1000 cps/admin.py:1001 cps/admin.py:1002 -#: cps/admin.py:1003 +#: cps/admin.py:1003 cps/admin.py:1004 cps/admin.py:1005 cps/admin.py:1006 +#: cps/admin.py:1007 msgid "Update failed:" msgstr "" -#: cps/admin.py:999 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 +#: cps/admin.py:1003 cps/updater.py:319 cps/updater.py:520 cps/updater.py:522 msgid "HTTP Error" msgstr "" -#: cps/admin.py:1000 cps/updater.py:321 cps/updater.py:524 +#: cps/admin.py:1004 cps/updater.py:321 cps/updater.py:524 msgid "Connection error" msgstr "" -#: cps/admin.py:1001 cps/updater.py:323 cps/updater.py:526 +#: cps/admin.py:1005 cps/updater.py:323 cps/updater.py:526 msgid "Timeout while establishing connection" msgstr "" -#: cps/admin.py:1002 cps/updater.py:325 cps/updater.py:528 +#: cps/admin.py:1006 cps/updater.py:325 cps/updater.py:528 msgid "General error" msgstr "" -#: cps/admin.py:1003 +#: cps/admin.py:1007 msgid "Update File Could Not be Saved in Temp Dir" msgstr "" @@ -275,89 +275,89 @@ msgstr "" msgid "not configured" msgstr "" -#: cps/editbooks.py:235 cps/editbooks.py:418 +#: cps/editbooks.py:214 cps/editbooks.py:396 msgid "Error opening eBook. File does not exist or file is not accessible" msgstr "" -#: cps/editbooks.py:263 +#: cps/editbooks.py:242 msgid "edit metadata" msgstr "" -#: cps/editbooks.py:343 cps/editbooks.py:608 +#: cps/editbooks.py:321 cps/editbooks.py:569 #, python-format msgid "File extension '%(ext)s' is not allowed to be uploaded to this server" msgstr "" -#: cps/editbooks.py:347 cps/editbooks.py:612 +#: cps/editbooks.py:325 cps/editbooks.py:573 msgid "File to be uploaded must have an extension" msgstr "" -#: cps/editbooks.py:359 cps/editbooks.py:646 +#: cps/editbooks.py:337 cps/editbooks.py:607 #, python-format msgid "Failed to create path %(path)s (Permission denied)." msgstr "" -#: cps/editbooks.py:364 +#: cps/editbooks.py:342 #, python-format msgid "Failed to store file %(file)s." msgstr "" -#: cps/editbooks.py:381 +#: cps/editbooks.py:359 #, python-format msgid "File format %(ext)s added to %(book)s" msgstr "" -#: cps/editbooks.py:473 +#: cps/editbooks.py:451 msgid "Cover is not a jpg file, can't save" msgstr "" -#: cps/editbooks.py:520 +#: cps/editbooks.py:494 #, python-format msgid "%(langname)s is not a valid language" msgstr "" -#: cps/editbooks.py:551 +#: cps/editbooks.py:525 msgid "Metadata successfully updated" msgstr "" -#: cps/editbooks.py:560 +#: cps/editbooks.py:534 msgid "Error editing book, please check logfile for details" msgstr "" -#: cps/editbooks.py:620 +#: cps/editbooks.py:581 #, python-format msgid "File %(filename)s could not saved to temp dir" msgstr "" -#: cps/editbooks.py:637 +#: cps/editbooks.py:598 msgid "Uploaded book probably exists in the library, consider to change before upload new: " msgstr "" -#: cps/editbooks.py:652 +#: cps/editbooks.py:613 #, python-format msgid "Failed to store file %(file)s (Permission denied)." msgstr "" -#: cps/editbooks.py:658 +#: cps/editbooks.py:619 #, python-format msgid "Failed to delete file %(file)s (Permission denied)." msgstr "" -#: cps/editbooks.py:748 +#: cps/editbooks.py:709 #, python-format msgid "File %(file)s uploaded" msgstr "" -#: cps/editbooks.py:777 +#: cps/editbooks.py:738 msgid "Source or destination format for conversion missing" msgstr "" -#: cps/editbooks.py:785 +#: cps/editbooks.py:746 #, python-format msgid "Book successfully queued for converting to %(book_format)s" msgstr "" -#: cps/editbooks.py:789 +#: cps/editbooks.py:750 #, python-format msgid "There was an error converting this book: %(res)s" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "Failed to fetch user info from Google." msgstr "" -#: cps/oauth_bb.py:225 cps/web.py:1267 cps/web.py:1412 +#: cps/oauth_bb.py:225 cps/web.py:1226 cps/web.py:1371 #, python-format msgid "you are now logged in as: '%(nickname)s'" msgstr "" @@ -685,122 +685,114 @@ msgstr "" msgid "Change order of Shelf: '%(name)s'" msgstr "" -#: cps/ub.py:63 +#: cps/ub.py:61 msgid "Recently Added" msgstr "" -#: cps/ub.py:65 +#: cps/ub.py:63 msgid "Show recent books" msgstr "" -#: cps/templates/index.xml:17 cps/ub.py:66 +#: cps/templates/index.xml:17 cps/ub.py:64 msgid "Hot Books" msgstr "" -#: cps/ub.py:67 +#: cps/ub.py:65 msgid "Show Hot Books" msgstr "" -#: cps/templates/index.xml:24 cps/ub.py:70 cps/web.py:599 +#: cps/templates/index.xml:24 cps/ub.py:68 cps/web.py:580 msgid "Top Rated Books" msgstr "" -#: cps/ub.py:72 +#: cps/ub.py:70 msgid "Show Top Rated Books" msgstr "" -#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:73 -#: cps/web.py:1101 +#: cps/templates/index.xml:46 cps/templates/index.xml:50 cps/ub.py:71 +#: cps/web.py:1080 msgid "Read Books" msgstr "" -#: cps/ub.py:75 +#: cps/ub.py:73 msgid "Show read and unread" msgstr "" -#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:77 -#: cps/web.py:1105 +#: cps/templates/index.xml:53 cps/templates/index.xml:57 cps/ub.py:75 +#: cps/web.py:1084 msgid "Unread Books" msgstr "" -#: cps/ub.py:79 +#: cps/ub.py:77 msgid "Show unread" msgstr "" -#: cps/ub.py:80 +#: cps/ub.py:78 msgid "Discover" msgstr "" -#: cps/ub.py:82 +#: cps/ub.py:80 msgid "Show random books" msgstr "" -#: cps/templates/index.xml:75 cps/ub.py:83 cps/web.py:881 +#: cps/templates/index.xml:75 cps/ub.py:81 cps/web.py:860 msgid "Categories" msgstr "" -#: cps/ub.py:85 +#: cps/ub.py:83 msgid "Show category selection" msgstr "" -#: cps/templates/book_edit.html:84 cps/templates/index.xml:82 -#: cps/templates/search_form.html:53 cps/ub.py:86 cps/web.py:809 +#: cps/templates/book_edit.html:69 cps/templates/index.xml:82 +#: cps/templates/search_form.html:53 cps/ub.py:84 cps/web.py:788 msgid "Series" msgstr "" -#: cps/ub.py:88 +#: cps/ub.py:86 msgid "Show series selection" msgstr "" -#: cps/templates/index.xml:61 cps/ub.py:89 +#: cps/templates/index.xml:61 cps/ub.py:87 msgid "Authors" msgstr "" -#: cps/ub.py:91 +#: cps/ub.py:89 msgid "Show author selection" msgstr "" -#: cps/templates/index.xml:68 cps/ub.py:93 cps/web.py:793 +#: cps/templates/index.xml:68 cps/ub.py:91 cps/web.py:772 msgid "Publishers" msgstr "" -#: cps/ub.py:95 +#: cps/ub.py:93 msgid "Show publisher selection" msgstr "" -#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:96 -#: cps/web.py:864 +#: cps/templates/index.xml:89 cps/templates/search_form.html:74 cps/ub.py:94 +#: cps/web.py:843 msgid "Languages" msgstr "" -#: cps/ub.py:99 +#: cps/ub.py:97 msgid "Show language selection" msgstr "" -#: cps/templates/index.xml:96 cps/ub.py:100 +#: cps/templates/index.xml:96 cps/ub.py:98 msgid "Ratings" msgstr "" -#: cps/ub.py:102 +#: cps/ub.py:100 msgid "Show ratings selection" msgstr "" -#: cps/templates/index.xml:104 cps/ub.py:103 +#: cps/templates/index.xml:104 cps/ub.py:101 msgid "File formats" msgstr "" -#: cps/ub.py:105 +#: cps/ub.py:103 msgid "Show file formats selection" msgstr "" -#: cps/ub.py:107 cps/web.py:1126 -msgid "Archived Books" -msgstr "" - -#: cps/ub.py:109 -msgid "Show archived books" -msgstr "" - #: cps/updater.py:294 cps/updater.py:305 cps/updater.py:406 cps/updater.py:420 msgid "Unexpected data while reading update information" msgstr "" @@ -830,223 +822,223 @@ msgstr "" msgid "Click on the button below to update to the latest stable version." msgstr "" -#: cps/web.py:290 +#: cps/web.py:293 #, python-format msgid "Error: %(ldaperror)s" msgstr "" -#: cps/web.py:294 +#: cps/web.py:297 msgid "Error: No user returned in response of LDAP server" msgstr "" -#: cps/web.py:342 +#: cps/web.py:345 msgid "Failed to Create at Least One LDAP User" msgstr "" -#: cps/web.py:345 +#: cps/web.py:348 msgid "At Least One LDAP User Not Found in Database" msgstr "" -#: cps/web.py:347 +#: cps/web.py:350 msgid "User Successfully Imported" msgstr "" -#: cps/web.py:571 +#: cps/web.py:552 msgid "Recently Added Books" msgstr "" -#: cps/templates/index.html:5 cps/web.py:607 +#: cps/templates/index.html:5 cps/web.py:588 msgid "Discover (Random Books)" msgstr "" -#: cps/web.py:635 +#: cps/web.py:614 msgid "Books" msgstr "" -#: cps/web.py:662 +#: cps/web.py:641 msgid "Hot Books (Most Downloaded)" msgstr "" -#: cps/web.py:672 +#: cps/web.py:651 msgid "Oops! Selected book title is unavailable. File does not exist or is not accessible" msgstr "" -#: cps/web.py:686 +#: cps/web.py:665 #, python-format msgid "Author: %(name)s" msgstr "" -#: cps/web.py:698 +#: cps/web.py:677 #, python-format msgid "Publisher: %(name)s" msgstr "" -#: cps/web.py:709 +#: cps/web.py:688 #, python-format msgid "Series: %(serie)s" msgstr "" -#: cps/web.py:720 +#: cps/web.py:699 #, python-format msgid "Rating: %(rating)s stars" msgstr "" -#: cps/web.py:732 +#: cps/web.py:711 #, python-format msgid "File format: %(format)s" msgstr "" -#: cps/web.py:744 +#: cps/web.py:723 #, python-format msgid "Category: %(name)s" msgstr "" -#: cps/web.py:761 +#: cps/web.py:740 #, python-format msgid "Language: %(name)s" msgstr "" -#: cps/web.py:823 +#: cps/web.py:802 msgid "Ratings list" msgstr "" -#: cps/web.py:836 +#: cps/web.py:815 msgid "File formats list" msgstr "" -#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:895 +#: cps/templates/layout.html:73 cps/templates/tasks.html:7 cps/web.py:874 msgid "Tasks" msgstr "" -#: cps/templates/book_edit.html:235 cps/templates/feed.xml:33 +#: cps/templates/book_edit.html:212 cps/templates/feed.xml:33 #: cps/templates/layout.html:44 cps/templates/layout.html:47 -#: cps/templates/search_form.html:170 cps/web.py:917 cps/web.py:919 +#: cps/templates/search_form.html:170 cps/web.py:896 cps/web.py:898 msgid "Search" msgstr "" -#: cps/web.py:969 +#: cps/web.py:948 msgid "Published after " msgstr "" -#: cps/web.py:976 +#: cps/web.py:955 msgid "Published before " msgstr "" -#: cps/web.py:990 +#: cps/web.py:969 #, python-format msgid "Rating <= %(rating)s" msgstr "" -#: cps/web.py:992 +#: cps/web.py:971 #, python-format msgid "Rating >= %(rating)s" msgstr "" -#: cps/web.py:1058 cps/web.py:1072 +#: cps/web.py:1037 cps/web.py:1051 msgid "search" msgstr "" -#: cps/web.py:1177 +#: cps/web.py:1136 #, python-format msgid "Book successfully queued for sending to %(kindlemail)s" msgstr "" -#: cps/web.py:1181 +#: cps/web.py:1140 #, python-format msgid "Oops! There was an error sending this book: %(res)s" msgstr "" -#: cps/web.py:1183 +#: cps/web.py:1142 msgid "Please update your profile with a valid Send to Kindle E-mail Address." msgstr "" -#: cps/web.py:1200 +#: cps/web.py:1159 msgid "E-Mail server is not configured, please contact your administrator!" msgstr "" -#: cps/web.py:1201 cps/web.py:1207 cps/web.py:1232 cps/web.py:1236 -#: cps/web.py:1241 cps/web.py:1245 +#: cps/web.py:1160 cps/web.py:1166 cps/web.py:1191 cps/web.py:1195 +#: cps/web.py:1200 cps/web.py:1204 msgid "register" msgstr "" -#: cps/web.py:1234 +#: cps/web.py:1193 msgid "Your e-mail is not allowed to register" msgstr "" -#: cps/web.py:1237 +#: cps/web.py:1196 msgid "Confirmation e-mail was send to your e-mail account." msgstr "" -#: cps/web.py:1240 +#: cps/web.py:1199 msgid "This username or e-mail address is already in use." msgstr "" -#: cps/web.py:1257 +#: cps/web.py:1216 msgid "Cannot activate LDAP authentication" msgstr "" -#: cps/web.py:1274 +#: cps/web.py:1233 #, python-format msgid "Fallback Login as: '%(nickname)s', LDAP Server not reachable, or user not known" msgstr "" -#: cps/web.py:1280 +#: cps/web.py:1239 #, python-format msgid "Could not login: %(message)s" msgstr "" -#: cps/web.py:1284 cps/web.py:1308 +#: cps/web.py:1243 cps/web.py:1267 msgid "Wrong Username or Password" msgstr "" -#: cps/web.py:1291 +#: cps/web.py:1250 msgid "New Password was send to your email address" msgstr "" -#: cps/web.py:1297 +#: cps/web.py:1256 msgid "Please enter valid username to reset password" msgstr "" -#: cps/web.py:1303 +#: cps/web.py:1262 #, python-format msgid "You are now logged in as: '%(nickname)s'" msgstr "" -#: cps/web.py:1316 cps/web.py:1344 +#: cps/web.py:1275 cps/web.py:1303 msgid "login" msgstr "" -#: cps/web.py:1356 cps/web.py:1390 +#: cps/web.py:1315 cps/web.py:1349 msgid "Token not found" msgstr "" -#: cps/web.py:1365 cps/web.py:1398 +#: cps/web.py:1324 cps/web.py:1357 msgid "Token has expired" msgstr "" -#: cps/web.py:1374 +#: cps/web.py:1333 msgid "Success! Please return to your device" msgstr "" -#: cps/web.py:1455 cps/web.py:1500 cps/web.py:1506 +#: cps/web.py:1414 cps/web.py:1459 cps/web.py:1465 #, python-format msgid "%(name)s's profile" msgstr "" -#: cps/web.py:1502 +#: cps/web.py:1461 msgid "Profile updated" msgstr "" -#: cps/web.py:1519 cps/web.py:1623 +#: cps/web.py:1478 cps/web.py:1575 msgid "Error opening eBook. File does not exist or file is not accessible:" msgstr "" -#: cps/web.py:1531 cps/web.py:1534 cps/web.py:1537 cps/web.py:1544 -#: cps/web.py:1549 +#: cps/web.py:1490 cps/web.py:1493 cps/web.py:1496 cps/web.py:1503 +#: cps/web.py:1508 msgid "Read a Book" msgstr "" -#: cps/web.py:1560 +#: cps/web.py:1519 msgid "Error opening eBook. File does not exist or file is not accessible." msgstr "" @@ -1247,8 +1239,8 @@ msgid "OK" msgstr "" #: cps/templates/admin.html:171 cps/templates/admin.html:185 -#: cps/templates/book_edit.html:187 cps/templates/book_edit.html:217 -#: cps/templates/config_edit.html:355 cps/templates/config_view_edit.html:151 +#: cps/templates/book_edit.html:172 cps/templates/book_edit.html:194 +#: cps/templates/config_edit.html:365 cps/templates/config_view_edit.html:151 #: cps/templates/email_edit.html:40 cps/templates/email_edit.html:92 #: cps/templates/shelf.html:73 cps/templates/shelf_edit.html:19 #: cps/templates/user_edit.html:137 @@ -1295,7 +1287,7 @@ msgstr "" msgid "Delete formats:" msgstr "" -#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:216 +#: cps/templates/book_edit.html:16 cps/templates/book_edit.html:193 #: cps/templates/email_edit.html:91 cps/templates/user_edit.html:65 #: cps/templates/user_edit.html:177 msgid "Delete" @@ -1325,148 +1317,120 @@ msgstr "" msgid "Book Title" msgstr "" -#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:279 -#: cps/templates/book_edit.html:297 cps/templates/search_form.html:10 +#: cps/templates/book_edit.html:57 cps/templates/book_edit.html:256 +#: cps/templates/book_edit.html:274 cps/templates/search_form.html:10 msgid "Author" msgstr "" -#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:284 -#: cps/templates/book_edit.html:299 cps/templates/search_form.html:126 +#: cps/templates/book_edit.html:61 cps/templates/book_edit.html:261 +#: cps/templates/book_edit.html:276 cps/templates/search_form.html:126 msgid "Description" msgstr "" -#: cps/templates/book_edit.html:66 -msgid "Identifiers" -msgstr "" - -#: cps/templates/book_edit.html:70 cps/templates/book_edit.html:308 -msgid "Identifier Type" -msgstr "" - -#: cps/templates/book_edit.html:71 cps/templates/book_edit.html:309 -msgid "Identifier Value" -msgstr "" - -#: cps/templates/book_edit.html:72 cps/templates/book_edit.html:310 -msgid "Remove" -msgstr "" - -#: cps/templates/book_edit.html:76 -msgid "Add Identifier" -msgstr "" - -#: cps/templates/book_edit.html:80 cps/templates/search_form.html:33 +#: cps/templates/book_edit.html:65 cps/templates/search_form.html:33 msgid "Tags" msgstr "" -#: cps/templates/book_edit.html:88 +#: cps/templates/book_edit.html:73 msgid "Series ID" msgstr "" -#: cps/templates/book_edit.html:92 +#: cps/templates/book_edit.html:77 msgid "Rating" msgstr "" -#: cps/templates/book_edit.html:96 +#: cps/templates/book_edit.html:81 msgid "Fetch Cover from URL (JPEG - Image will be downloaded and stored in database)" msgstr "" -#: cps/templates/book_edit.html:100 +#: cps/templates/book_edit.html:85 msgid "Upload Cover from Local Disk" msgstr "" -#: cps/templates/book_edit.html:105 +#: cps/templates/book_edit.html:90 msgid "Published Date" msgstr "" -#: cps/templates/book_edit.html:112 cps/templates/book_edit.html:281 -#: cps/templates/book_edit.html:298 cps/templates/detail.html:156 +#: cps/templates/book_edit.html:97 cps/templates/book_edit.html:258 +#: cps/templates/book_edit.html:275 cps/templates/detail.html:156 #: cps/templates/search_form.html:14 msgid "Publisher" msgstr "" -#: cps/templates/book_edit.html:116 cps/templates/detail.html:123 +#: cps/templates/book_edit.html:101 cps/templates/detail.html:123 #: cps/templates/user_edit.html:31 msgid "Language" msgstr "" -#: cps/templates/book_edit.html:126 cps/templates/search_form.html:137 +#: cps/templates/book_edit.html:111 cps/templates/search_form.html:137 msgid "Yes" msgstr "" -#: cps/templates/book_edit.html:127 cps/templates/search_form.html:138 +#: cps/templates/book_edit.html:112 cps/templates/search_form.html:138 msgid "No" msgstr "" -#: cps/templates/book_edit.html:173 +#: cps/templates/book_edit.html:158 msgid "Upload Format" msgstr "" -#: cps/templates/book_edit.html:182 +#: cps/templates/book_edit.html:167 msgid "View Book on Save" msgstr "" -#: cps/templates/book_edit.html:185 cps/templates/book_edit.html:229 +#: cps/templates/book_edit.html:170 cps/templates/book_edit.html:206 msgid "Fetch Metadata" msgstr "" -#: cps/templates/book_edit.html:186 cps/templates/config_edit.html:352 +#: cps/templates/book_edit.html:171 cps/templates/config_edit.html:362 #: cps/templates/config_view_edit.html:150 cps/templates/email_edit.html:38 #: cps/templates/shelf_edit.html:17 cps/templates/user_edit.html:135 msgid "Save" msgstr "" -#: cps/templates/book_edit.html:200 +#: cps/templates/book_edit.html:185 msgid "Are you really sure?" msgstr "" -#: cps/templates/book_edit.html:204 +#: cps/templates/book_edit.html:188 msgid "This book will be permanently erased from database" msgstr "" -#: cps/templates/book_edit.html:205 +#: cps/templates/book_edit.html:189 msgid "and hard disk" msgstr "" #: cps/templates/book_edit.html:209 -msgid "Important Kobo Note: deleted books will remain on any paired Kobo device." -msgstr "" - -#: cps/templates/book_edit.html:210 -msgid "Books must first be archived and the device synced before a book can safely be deleted." -msgstr "" - -#: cps/templates/book_edit.html:232 msgid "Keyword" msgstr "" -#: cps/templates/book_edit.html:233 +#: cps/templates/book_edit.html:210 msgid " Search keyword " msgstr "" -#: cps/templates/book_edit.html:239 +#: cps/templates/book_edit.html:216 msgid "Click the cover to load metadata to the form" msgstr "" -#: cps/templates/book_edit.html:254 cps/templates/book_edit.html:294 +#: cps/templates/book_edit.html:231 cps/templates/book_edit.html:271 msgid "Loading..." msgstr "" -#: cps/templates/book_edit.html:259 cps/templates/layout.html:189 +#: cps/templates/book_edit.html:236 cps/templates/layout.html:189 #: cps/templates/layout.html:221 cps/templates/modal_restriction.html:34 #: cps/templates/user_edit.html:164 msgid "Close" msgstr "" -#: cps/templates/book_edit.html:286 cps/templates/book_edit.html:300 +#: cps/templates/book_edit.html:263 cps/templates/book_edit.html:277 msgid "Source" msgstr "" -#: cps/templates/book_edit.html:295 +#: cps/templates/book_edit.html:272 msgid "Search error!" msgstr "" -#: cps/templates/book_edit.html:296 +#: cps/templates/book_edit.html:273 msgid "No Result(s) found! Please try another keyword." msgstr "" @@ -1638,107 +1602,123 @@ msgstr "" msgid "LDAP Server Port" msgstr "" -#: cps/templates/config_edit.html:236 cps/templates/config_edit.html:237 +#: cps/templates/config_edit.html:236 msgid "LDAP Encryption" msgstr "" -#: cps/templates/config_edit.html:239 cps/templates/config_view_edit.html:61 +#: cps/templates/config_edit.html:238 cps/templates/config_view_edit.html:61 #: cps/templates/email_edit.html:21 msgid "None" msgstr "" -#: cps/templates/config_edit.html:240 +#: cps/templates/config_edit.html:239 msgid "TLS" msgstr "" -#: cps/templates/config_edit.html:241 +#: cps/templates/config_edit.html:240 msgid "SSL" msgstr "" -#: cps/templates/config_edit.html:246 +#: cps/templates/config_edit.html:245 msgid "LDAP Certificate Path" msgstr "" +#: cps/templates/config_edit.html:250 +msgid "LDAP Authentication" +msgstr "" + #: cps/templates/config_edit.html:252 +msgid "Anonymous" +msgstr "" + +#: cps/templates/config_edit.html:253 +msgid "Unauthenticated" +msgstr "" + +#: cps/templates/config_edit.html:254 +msgid "Simple" +msgstr "" + +#: cps/templates/config_edit.html:259 msgid "LDAP Administrator Username" msgstr "" -#: cps/templates/config_edit.html:256 +#: cps/templates/config_edit.html:265 msgid "LDAP Administrator Password" msgstr "" -#: cps/templates/config_edit.html:260 +#: cps/templates/config_edit.html:270 msgid "LDAP Distinguished Name (DN)" msgstr "" -#: cps/templates/config_edit.html:264 +#: cps/templates/config_edit.html:274 msgid "LDAP User Object Filter" msgstr "" -#: cps/templates/config_edit.html:269 +#: cps/templates/config_edit.html:279 msgid "LDAP Server is OpenLDAP?" msgstr "" -#: cps/templates/config_edit.html:271 +#: cps/templates/config_edit.html:281 msgid "Following Settings are Needed For User Import" msgstr "" -#: cps/templates/config_edit.html:273 +#: cps/templates/config_edit.html:283 msgid "LDAP Group Object Filter" msgstr "" -#: cps/templates/config_edit.html:277 +#: cps/templates/config_edit.html:287 msgid "LDAP Group Name" msgstr "" -#: cps/templates/config_edit.html:281 +#: cps/templates/config_edit.html:291 msgid "LDAP Group Members Field" msgstr "" -#: cps/templates/config_edit.html:290 +#: cps/templates/config_edit.html:300 #, python-format msgid "Obtain %(provider)s OAuth Credential" msgstr "" -#: cps/templates/config_edit.html:293 +#: cps/templates/config_edit.html:303 #, python-format msgid "%(provider)s OAuth Client Id" msgstr "" -#: cps/templates/config_edit.html:297 +#: cps/templates/config_edit.html:307 #, python-format msgid "%(provider)s OAuth Client Secret" msgstr "" -#: cps/templates/config_edit.html:313 +#: cps/templates/config_edit.html:323 msgid "External binaries" msgstr "" -#: cps/templates/config_edit.html:321 +#: cps/templates/config_edit.html:331 msgid "No Converter" msgstr "" -#: cps/templates/config_edit.html:323 +#: cps/templates/config_edit.html:333 msgid "Use Kindlegen" msgstr "" -#: cps/templates/config_edit.html:325 +#: cps/templates/config_edit.html:335 msgid "Use calibre's ebook converter" msgstr "" -#: cps/templates/config_edit.html:329 +#: cps/templates/config_edit.html:339 msgid "E-Book converter settings" msgstr "" -#: cps/templates/config_edit.html:333 +#: cps/templates/config_edit.html:343 msgid "Path to convertertool" msgstr "" -#: cps/templates/config_edit.html:339 +#: cps/templates/config_edit.html:349 msgid "Location of Unrar binary" msgstr "" -#: cps/templates/config_edit.html:358 cps/templates/layout.html:84 +#: cps/templates/config_edit.html:368 cps/templates/layout.html:84 #: cps/templates/login.html:4 cps/templates/login.html:20 msgid "Login" msgstr "" @@ -1827,7 +1807,7 @@ msgstr "" msgid "Default Visibilities for New Users" msgstr "" -#: cps/templates/config_view_edit.html:142 +#: cps/templates/config_view_edit.html:142 cps/templates/user_edit.html:80 msgid "Show Random Books in Detail View" msgstr "" @@ -1871,27 +1851,15 @@ msgstr "" msgid "Read" msgstr "" -#: cps/templates/detail.html:208 -msgid "Restore from archive" -msgstr "" - -#: cps/templates/detail.html:208 -msgid "Add to archive" -msgstr "" - -#: cps/templates/detail.html:209 -msgid "Archived" -msgstr "" - -#: cps/templates/detail.html:219 +#: cps/templates/detail.html:211 msgid "Description:" msgstr "" -#: cps/templates/detail.html:232 cps/templates/search.html:14 +#: cps/templates/detail.html:224 cps/templates/search.html:14 msgid "Add to shelf" msgstr "" -#: cps/templates/detail.html:294 +#: cps/templates/detail.html:264 msgid "Edit Metadata" msgstr "" @@ -1984,7 +1952,7 @@ msgstr "" msgid "Random Books" msgstr "" -#: cps/templates/index.xml:42 cps/templates/user_edit.html:80 +#: cps/templates/index.xml:42 msgid "Show Random Books" msgstr "" diff --git a/optional-requirements.txt b/optional-requirements.txt index 3c10b52d..f705114d 100644 --- a/optional-requirements.txt +++ b/optional-requirements.txt @@ -17,12 +17,12 @@ goodreads>=0.3.2,<0.4.0 python-Levenshtein>=0.12.0,<0.13.0 # ldap login -python_ldap>=3.0.0,<3.3.0 -flask-simpleldap>=1.4.0,<1.5.0 +python-ldap>=3.0.0,<3.3.0 +Flask-SimpleLDAP>=1.4.0,<1.5.0 #oauth -flask-dance>=1.4.0,<3.1.0 -sqlalchemy_utils>=0.33.5,<0.37.0 +Flask-Dance>=1.4.0,<3.1.0 +SQLAlchemy-Utils>=0.33.5,<0.37.0 # extracting metadata lxml>=3.8.0,<4.6.0 diff --git a/test/Calibre-Web TestSummary.html b/test/Calibre-Web TestSummary.html index 4138e113..b39857b4 100755 --- a/test/Calibre-Web TestSummary.html +++ b/test/Calibre-Web TestSummary.html @@ -36,17 +36,17 @@
-

Start Time: 2020-04-15 20:58:24

+

Start Time: 2020-04-18 10:46:25

-

Stop Time: 2020-04-15 21:44:34

+

Stop Time: 2020-04-18 11:34:54

-

Duration: 2409.70 s

+

Duration: 41:54 min

@@ -1006,9 +1006,9 @@
Traceback (most recent call last):
   File "/home/matthias/Entwicklung/calibre-web-test/test/test_kobo_sync.py", line 89, in test_check_sync
     self.assertEqual(r.json()['Resources']['image_url_quality_template'], self.kobo_adress+"/{ImageId}/{width}/{height}/image.jpg")
-AssertionError: 'http[35 chars]4304a11f244beb23c60f4b7b0/{ImageId}/image.jpg' != 'http[35 chars]4304a11f244beb23c60f4b7b0/{ImageId}/{width}/{height}/image.jpg'
-- http://192.168.188.33:8083/kobo/1b4c3e84304a11f244beb23c60f4b7b0/{ImageId}/image.jpg
-+ http://192.168.188.33:8083/kobo/1b4c3e84304a11f244beb23c60f4b7b0/{ImageId}/{width}/{height}/image.jpg
+AssertionError: 'http[35 chars]65c2703d57c660b93b6ebdafa/{ImageId}/image.jpg' != 'http[35 chars]65c2703d57c660b93b6ebdafa/{ImageId}/{width}/{height}/image.jpg'
+- http://192.168.188.33:8083/kobo/8e590a265c2703d57c660b93b6ebdafa/{ImageId}/image.jpg
++ http://192.168.188.33:8083/kobo/8e590a265c2703d57c660b93b6ebdafa/{ImageId}/{width}/{height}/image.jpg
 ?                                                                            +++++++++++++++++
@@ -1040,13 +1040,13 @@ AssertionError: 'http[35 chars]4304a11f244beb23c60f4b7b0/{ImageId}/image.jpg' != test_ldap.test_ldap_login - 7 - 7 + 8 + 8 0 0 0 - Detail + Detail @@ -1114,6 +1114,15 @@ AssertionError: 'http[35 chars]4304a11f244beb23c60f4b7b0/{ImageId}/image.jpg' != + + + +
test_ldap_authentication
+ + PASS + + + @@ -1309,6 +1318,39 @@ AssertionError: False is not true : logfile config value is not empty after rese + + test_oauth.test_OAuth_login + 2 + 2 + 0 + 0 + 0 + + Detail + + + + + + + +
test_oauth_about
+ + PASS + + + + + + +
test_visible_oauth
+ + PASS + + + + + test_opds_feed.test_opds_feed 20 @@ -1317,13 +1359,13 @@ AssertionError: False is not true : logfile config value is not empty after rese 0 0 - Detail + Detail - +
test_opds
@@ -1332,7 +1374,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_author
@@ -1341,7 +1383,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_calibre_companion
@@ -1350,7 +1392,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_cover
@@ -1359,7 +1401,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_download_book
@@ -1368,7 +1410,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_formats
@@ -1377,7 +1419,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_guest_user
@@ -1386,7 +1428,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_hot
@@ -1395,7 +1437,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_language
@@ -1404,7 +1446,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_non_admin
@@ -1413,7 +1455,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_publisher
@@ -1422,7 +1464,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_random
@@ -1431,7 +1473,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_ratings
@@ -1440,7 +1482,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_read_unread
@@ -1449,7 +1491,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_search
@@ -1458,7 +1500,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_series
@@ -1467,7 +1509,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_shelf_access
@@ -1476,7 +1518,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_tags
@@ -1485,7 +1527,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_opds_top_rated
@@ -1494,7 +1536,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_recently_added
@@ -1512,13 +1554,13 @@ AssertionError: False is not true : logfile config value is not empty after rese 0 0 - Detail + Detail - +
test_forgot_password
@@ -1527,7 +1569,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_limit_domain
@@ -1536,7 +1578,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_register_no_server
@@ -1545,7 +1587,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_registering_user
@@ -1554,7 +1596,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_registering_user_fail
@@ -1563,7 +1605,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_user_change_password
@@ -1581,13 +1623,13 @@ AssertionError: False is not true : logfile config value is not empty after rese 0 1 - Detail + Detail - +
test_arrange_shelf
@@ -1596,7 +1638,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_delete_book_of_shelf
@@ -1605,7 +1647,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_private_shelf
@@ -1614,7 +1656,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_public_private_shelf
@@ -1623,7 +1665,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_public_shelf
@@ -1632,7 +1674,7 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_rename_shelf
@@ -1641,19 +1683,19 @@ AssertionError: False is not true : logfile config value is not empty after rese - +
test_shelf_database_change
- SKIP + SKIP
-