@fiduswriter/bibliography-manager 0.1.22 → 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,180 @@
1
+ #bib-dialog .fw-tabs-panel {
2
+ min-height: 0;
3
+ height: calc(100vh - 278px);
4
+ }
5
+
6
+ div.literal,
7
+ pre.long-literal {
8
+ box-sizing: border-box;
9
+ font-size: 14px;
10
+ line-height: 1.33em;
11
+ box-shadow: none;
12
+ border-radius: 0;
13
+ padding: 11px 10px 0;
14
+ min-height: 38px;
15
+ color: var(--cs-light-text);
16
+ background-color: var(--input-background-color);
17
+ }
18
+
19
+ pre.long-literal {
20
+ min-height: 112px;
21
+ height: auto;
22
+ }
23
+
24
+ div.literal strong,
25
+ pre.long-literal strong {
26
+ font-weight: bold;
27
+ }
28
+
29
+ div.literal em,
30
+ pre.long-literal em {
31
+ font-style: italic;
32
+ }
33
+
34
+ #bib-dialog .ProseMirror-focused div.literal,
35
+ #bib-dialog .ProseMirror-focused pre.long-literal {
36
+ background-color: var(--input-focus-background-color);
37
+ }
38
+
39
+ #bib-dialog .fw-pulldown.fw-center {
40
+ left: 10px;
41
+ top: 40px;
42
+ }
43
+
44
+ #bib-dialog .date-form input {
45
+ width: 66px;
46
+ margin-right: 1px;
47
+ }
48
+
49
+ #bib-dialog .date-form .separator {
50
+ display: inline-block;
51
+ width: 15px;
52
+ text-align: center;
53
+ }
54
+
55
+ #bib-dialog td .dk-selected,
56
+ #bib-dialog td .dk-select-options {
57
+ width: 486px !important;
58
+ }
59
+
60
+ #bib-dialog th .dk-selected,
61
+ #bib-dialog th .dk-select-options {
62
+ width: 140px !important;
63
+ }
64
+
65
+ #bib-dialog sup {
66
+ vertical-align: super;
67
+ font-size: smaller;
68
+ }
69
+
70
+ #bib-dialog sub {
71
+ vertical-align: sub;
72
+ font-size: smaller;
73
+ }
74
+
75
+ #bib-dialog .smallcaps {
76
+ font-variant: small-caps;
77
+ }
78
+
79
+ #bib-dialog .nocase {
80
+ text-decoration: underline;
81
+ }
82
+
83
+ .checkable-label {
84
+ width: 462px;
85
+ height: 36px;
86
+ border: solid 1px var(--cs-white-border);
87
+ line-height: 36px;
88
+ background-color: var(--cs-white-background);
89
+ padding: 0 12px;
90
+ font-size: 13px;
91
+ margin-bottom: 10px;
92
+ }
93
+
94
+ #source-type-selection {
95
+ position: relative;
96
+ display: block;
97
+ z-index: 2;
98
+ margin-bottom: 18px;
99
+ margin-right: 49px;
100
+ }
101
+
102
+ #source-type-selection .fw-pulldown > ul {
103
+ max-height: 230px;
104
+ overflow: scroll;
105
+ }
106
+
107
+ #selected-source-type-title {
108
+ display: inline-block;
109
+ white-space: nowrap;
110
+ overflow: hidden;
111
+ }
112
+
113
+ #source-type-selection .icon-down-dir {
114
+ position: absolute;
115
+ right: 10px;
116
+ }
117
+
118
+ #edit-categories {
119
+ width: 369px !important;
120
+ }
121
+
122
+ #edit-categories input[type="text"] {
123
+ width: 310px;
124
+ }
125
+
126
+ /* api search */
127
+
128
+ #bibimport-api-search button.api-import {
129
+ float: left;
130
+ margin-right: 10px;
131
+ margin-bottom: 10px;
132
+ }
133
+
134
+ #bibimport-api-search div.item {
135
+ margin-bottom: 10px;
136
+ }
137
+
138
+ #bibimport-api-search h3 {
139
+ font-weight: 700;
140
+ margin: 10px 0 10px 20px;
141
+ font-size: 1.1em;
142
+ }
143
+
144
+ #bibimport-api-search .bibimport-search-result,
145
+ #bibimport-api-search div.item {
146
+ clear: left;
147
+ }
148
+
149
+ /**
150
+ Modal header
151
+ */
152
+ .bib-dialog-header .fw-select-container {
153
+ display: inline-block;
154
+ vertical-align: middle;
155
+ margin: 0;
156
+ }
157
+
158
+ .entry-key-input-container {
159
+ display: inline-block;
160
+ vertical-align: middle;
161
+ margin-left: 10px;
162
+ }
163
+
164
+ #entry-key {
165
+ width: 200px;
166
+ }
167
+
168
+ .entry-key-warning {
169
+ color: var(--cs-1-text);
170
+ font-size: 0.85em;
171
+ margin-top: 2px;
172
+ min-height: 1em;
173
+ }
174
+
175
+ .fw-data-table-title .bib-entry-key {
176
+ display: block;
177
+ font-size: 0.8em;
178
+ color: var(--cs-light-text-secondary);
179
+ margin-top: 2px;
180
+ }
package/css/colors.css ADDED
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Bibliography-manager-specific custom properties — load after
3
+ * fwtoolkit/css/colors.css.
4
+ */
5
+
6
+ :root {
7
+ --tokenfield-color: #555555;
8
+ }
package/css/forms.css ADDED
@@ -0,0 +1,102 @@
1
+ /*
2
+ * Bibliography-manager-specific form overrides — load after
3
+ * fwtoolkit/css/forms.css and @fiduswriter/frontend/css/forms.css.
4
+ */
5
+
6
+ /* -----------------------------------------------------------------
7
+ * Upload image input
8
+ * ----------------------------------------------------------------- */
9
+ #uploadimage input.entry-form,
10
+ #uploadimage input.fw-input {
11
+ width: 486px;
12
+ }
13
+
14
+ /* -----------------------------------------------------------------
15
+ * Bibliography entry field error state
16
+ * ----------------------------------------------------------------- */
17
+ .fw-entry-field.fw-fomt-error input[type="text"],
18
+ .fw-entry-field.fw-fomt-error input[type="number"] {
19
+ background-color: var(--input-error-background-color);
20
+ }
21
+
22
+ .fw-entry-field input[type="checkbox"] {
23
+ margin-top: 12px;
24
+ }
25
+
26
+ .fw-entry-field .selection-list {
27
+ position: relative;
28
+ }
29
+
30
+ .fw-entry-field .fw-type-switch-input-inner select {
31
+ width: 100%;
32
+ }
33
+
34
+ .fw-entry-field .fw-select-arrow {
35
+ position: absolute;
36
+ top: 14px;
37
+ right: 16px;
38
+ pointer-events: none;
39
+ }
40
+
41
+ /* -----------------------------------------------------------------
42
+ * Tokenfield — bibliography category / keyword input
43
+ * ----------------------------------------------------------------- */
44
+ .tokenfield {
45
+ width: 686px;
46
+ position: relative;
47
+ max-width: 80vw;
48
+ }
49
+
50
+ .tokenfield::before,
51
+ .tokenfield::after {
52
+ content: " ";
53
+ display: table;
54
+ }
55
+
56
+ .tokenfield::after {
57
+ clear: both;
58
+ }
59
+
60
+ .tokenfield.tokenfield-mode-tokens {
61
+ display: block;
62
+ position: relative;
63
+ font-size: 14px;
64
+ line-height: 1.4286;
65
+ color: var(--tokenfield-color);
66
+ background-color: var(--cs-light-background-hover);
67
+ }
68
+
69
+ .tokenfield-set {
70
+ position: relative;
71
+ padding: 0 10px;
72
+ }
73
+
74
+ .tokenfield .tokenfield-set > ul {
75
+ margin: 0;
76
+ padding: 0;
77
+ list-style-type: none;
78
+ }
79
+
80
+ .tokenfield .tokenfield-set > ul > li {
81
+ display: inline-block;
82
+ margin: 8px 5px 0 0;
83
+ padding: 0 5px;
84
+ border-radius: 3px;
85
+ line-height: 1.5;
86
+ cursor: pointer;
87
+ color: var(--cs-6-text);
88
+ background: var(--cs-6-background);
89
+ border: 1px solid var(--cs-6-border);
90
+ }
91
+
92
+ .tokenfield .tokenfield-set > ul > li:last-child {
93
+ margin-bottom: 8px;
94
+ }
95
+
96
+ .tokenfield .tokenfield-set > ul > li a {
97
+ color: var(--cs-6-text);
98
+ }
99
+
100
+ .tokenfield .tokenfield-input {
101
+ outline: none;
102
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "": "ar",
3
+ "All categories": "جميع الفئات",
4
+ "An error occured while reading a bibliography entry": "حدث خطأ أثناء قراءة إدخال قائمة المراجع",
5
+ "and": "و",
6
+ "and others": "وغيرها",
7
+ "Author": "مؤلف",
8
+ "Bibliography Manager": "مدير الببليوغرافيا",
9
+ "CasE ProTecT": "كيس بروتيكت",
10
+ "Categories": "فئات",
11
+ "Citation key": "مفتاح الاقتباس",
12
+ "Confirm deletion": "تأكيد الحذف",
13
+ "Could not obtain bibliography data": "لا يمكن الحصول على البيانات الببليوغرافية",
14
+ "Custom": "مخصص",
15
+ "Delete": "حذف",
16
+ "Delete selected": "حذف المحدد",
17
+ "Delete selected bibliography entries.": "حذف إدخالات الببليوغرافيا المحددة.",
18
+ "Delete the bibliography item(s)": "حذف عنصر (عناصر) قائمة المراجع",
19
+ "Edit categories": "تحرير الفئات",
20
+ "Edit Categories": "تحرير الفئات",
21
+ "Edit Source": "تحرير المصدر",
22
+ "Emphasis": "توكيد",
23
+ "Error in form, check highlighted values!": "خطأ في النموذج، تحقق من القيم المميزة!",
24
+ "Export selected": "تم تحديد التصدير",
25
+ "Export selected bibliography entries.": "تصدير إدخالات الببليوغرافيا المحددة.",
26
+ "Field cannot not be saved. Fidus Writer does not support the field.": "لا يمكن حفظ الحقل. كاتب Fidus لا يدعم هذا المجال.",
27
+ "Field does not contain a valid EDTF string.": "لا يحتوي الحقل على سلسلة EDTF صالحة.",
28
+ "First name": "الاسم الأول",
29
+ "From": "من",
30
+ "From list": "من القائمة",
31
+ "Import": "استيراد",
32
+ "Import a bibliography": "استيراد قائمة المراجع",
33
+ "Import bibliography": "استيراد الببليوغرافيا",
34
+ "Last name": "اسم العائلة",
35
+ "No bibliography entries could be found in import file.": "لا يمكن العثور على إدخالات ببليوغرافية في ملف الاستيراد.",
36
+ "No sources found": "لم يتم العثور على مصادر",
37
+ "No sources registered": "لم يتم تسجيل أي مصادر",
38
+ "Only letters, numbers, hyphens and underscores are allowed.": "يُسمح فقط بالأحرف والأرقام والواصلات والشرطات السفلية.",
39
+ "Optional Fields": "الحقول الاختيارية",
40
+ "Organization": "منظمة",
41
+ "Organization name": "اسم المنظمة",
42
+ "Person": "شخص",
43
+ "Prefix": "بادئة",
44
+ "Prefix used": "البادئة المستخدمة",
45
+ "Published": "تم النشر",
46
+ "Range": "يتراوح",
47
+ "Register new source": "تسجيل مصدر جديد",
48
+ "Register New Source": "تسجيل مصدر جديد",
49
+ "Required Fields": "الحقول المطلوبة",
50
+ "Search bibliography": "البحث في الببليوغرافيا",
51
+ "Select a file": "حدد ملفًا",
52
+ "Select source type": "حدد نوع المصدر",
53
+ "Single value": "قيمة واحدة",
54
+ "Small caps": "قبعات صغيرة",
55
+ "Sourcetype": "نوع المصدر",
56
+ "Strong": "قوي",
57
+ "Submit": "إرسال",
58
+ "Subscript₊": "منخفض₊",
59
+ "Suffix": "لاحقة",
60
+ "Supported formats: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citations, DOCX citations": "التنسيقات المدعومة: BibTeX/BibLaTeX، CSL-JSON، RIS، EndNote XML، EndNote Tagged، Citavi XML، Citavi JSON، NBIB/PubMed، استشهادات ODT، استشهادات DOCX",
61
+ "Supscript²": "مرتفع²",
62
+ "The bibliography could not be updated": "لا يمكن تحديث قائمة المراجع",
63
+ "The bibliography has been updated.": "تم تحديث الببليوغرافيا.",
64
+ "The bibliography item(s) have been deleted": "تم حذف عنصر (عناصر) قائمة المراجع",
65
+ "The categories could not be updated": "لا يمكن تحديث الفئات",
66
+ "The categories have been updated": "تم تحديث الفئات",
67
+ "The file format could not be recognized.": "لا يمكن التعرف على تنسيق الملف.",
68
+ "There was an issue with the bibliography import": "كانت هناك مشكلة في استيراد قائمة المراجع",
69
+ "Title": "",
70
+ "To": "ل",
71
+ "Untitled": "بدون عنوان",
72
+ "Warning: this key is already used in your library.": "تحذير: هذا المفتاح مستخدم بالفعل في مكتبتك.",
73
+ "You are currently offline. Please try again when you are back online.": "أنت غير متصل حاليا. يرجى المحاولة مرة أخرى عندما تعود متصلاً بالإنترنت."
74
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "": "bg",
3
+ "All categories": "Всички категории",
4
+ "An error occured while reading a bibliography entry": "Възникна грешка при четене на библиографски запис",
5
+ "and": "и",
6
+ "and others": "и други",
7
+ "Author": "Автор",
8
+ "Bibliography Manager": "Управление на Библиография",
9
+ "CasE ProTecT": "CasE ProTecT",
10
+ "Categories": "Категории",
11
+ "Citation key": "Ключ за цитиране",
12
+ "Confirm deletion": "Потвърди изтриването",
13
+ "Could not obtain bibliography data": "Данни за библиография не можаха да се получат",
14
+ "Custom": "Персонализиран",
15
+ "Delete": "Изтрий",
16
+ "Delete selected": "Изтрий избраните",
17
+ "Delete selected bibliography entries.": "Изтрийте избраните записи от библиографията.",
18
+ "Delete the bibliography item(s)": "Изтриване на библиграфски запис(и)",
19
+ "Edit categories": "Редактирай категории",
20
+ "Edit Categories": "Редактирай категории",
21
+ "Edit Source": "Редактиране на източник",
22
+ "Emphasis": "ударение",
23
+ "Error in form, check highlighted values!": "Грешка във формата, проверете маркираните стойности!",
24
+ "Export selected": "Експортирай Избраните",
25
+ "Export selected bibliography entries.": "Експортирайте избрани записи от библиография.",
26
+ "Field cannot not be saved. Fidus Writer does not support the field.": "Полето не може да бъде запазено. Fidus Writer не поддържа полето.",
27
+ "Field does not contain a valid EDTF string.": "Полето не съдържа валиден EDTF низ.",
28
+ "First name": "Име",
29
+ "From": "от",
30
+ "From list": "От списъка",
31
+ "Import": "Импортиране",
32
+ "Import a bibliography": "Импортиране на библиография",
33
+ "Import bibliography": "Импортиране на библиография",
34
+ "Last name": "Фамилия",
35
+ "No bibliography entries could be found in import file.": "Във файла за импортиране не могат да бъдат намерени библиографски записи.",
36
+ "No sources found": "Няма намерени източници",
37
+ "No sources registered": "Няма регистрирани източници",
38
+ "Only letters, numbers, hyphens and underscores are allowed.": "Разрешени са само букви, цифри, тирета и долни черти.",
39
+ "Optional Fields": "Полета по избор",
40
+ "Organization": "организация",
41
+ "Organization name": "Наименование на организацията",
42
+ "Person": "човек",
43
+ "Prefix": "префикс",
44
+ "Prefix used": "Използван префикс",
45
+ "Published": "Публикувани",
46
+ "Range": "диапазон",
47
+ "Register new source": "Регистрирайте нов източник",
48
+ "Register New Source": "Добавяне на нов източник",
49
+ "Required Fields": "Задължителни полета",
50
+ "Search bibliography": "Търсене в библиография",
51
+ "Select a file": "Изберете файл",
52
+ "Select source type": "Избери тип на източника",
53
+ "Single value": "Единична стойност",
54
+ "Small caps": "Малки букви",
55
+ "Sourcetype": "Тип на източника",
56
+ "Strong": "силен",
57
+ "Submit": "Изпрати",
58
+ "Subscript₊": "Subscript₊",
59
+ "Suffix": "Наставка",
60
+ "Supported formats: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citations, DOCX citations": "Поддържани формати: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT цитати, DOCX цитати",
61
+ "Supscript²": "Supscript²",
62
+ "The bibliography could not be updated": "Библиографията не можа да бъде актуализирана",
63
+ "The bibliography has been updated.": "Библиографията е актуализирана.",
64
+ "The bibliography item(s) have been deleted": "Библиографските запис(и) бяха изтрити",
65
+ "The categories could not be updated": "Категориите не можаха да бъдат актуализирани",
66
+ "The categories have been updated": "Категориите бяха обновени",
67
+ "The file format could not be recognized.": "Файловият формат не можа да бъде разпознат.",
68
+ "There was an issue with the bibliography import": "Имаше проблем с импортирането на библиографията",
69
+ "Title": "",
70
+ "To": "Да се",
71
+ "Untitled": "Неозаглавен",
72
+ "Warning: this key is already used in your library.": "Предупреждение: този ключ вече се използва във вашата библиотека.",
73
+ "You are currently offline. Please try again when you are back online.": "В момента сте офлайн. Моля, опитайте отново, когато се върнете онлайн."
74
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "": "cs",
3
+ "All categories": "Všechny kategorie",
4
+ "An error occured while reading a bibliography entry": "Při čtení položky bibliografie došlo k chybě",
5
+ "and": "a",
6
+ "and others": "a další",
7
+ "Author": "Autor",
8
+ "Bibliography Manager": "Správce bibliografie",
9
+ "CasE ProTecT": "CasE PROTecT",
10
+ "Categories": "Kategorie",
11
+ "Citation key": "Citační klíč",
12
+ "Confirm deletion": "Potvrďte smazání",
13
+ "Could not obtain bibliography data": "Nepodařilo se získat bibliografická data",
14
+ "Custom": "Zvyk",
15
+ "Delete": "Vymazat",
16
+ "Delete selected": "Smazat vybrané",
17
+ "Delete selected bibliography entries.": "Smazat vybrané položky bibliografie.",
18
+ "Delete the bibliography item(s)": "Smazat položku(y) bibliografie",
19
+ "Edit categories": "Upravit kategorie",
20
+ "Edit Categories": "Upravit kategorie",
21
+ "Edit Source": "Upravit zdroj",
22
+ "Emphasis": "Důraz",
23
+ "Error in form, check highlighted values!": "Chyba ve formuláři, zkontrolujte zvýrazněné hodnoty!",
24
+ "Export selected": "Export vybrán",
25
+ "Export selected bibliography entries.": "Export vybraných položek bibliografie.",
26
+ "Field cannot not be saved. Fidus Writer does not support the field.": "Pole nelze uložit. Fidus Writer toto pole nepodporuje.",
27
+ "Field does not contain a valid EDTF string.": "Pole neobsahuje platný řetězec EDTF.",
28
+ "First name": "Křestní jméno",
29
+ "From": "Z",
30
+ "From list": "Ze seznamu",
31
+ "Import": "Importovat",
32
+ "Import a bibliography": "Importujte bibliografii",
33
+ "Import bibliography": "Importovat bibliografii",
34
+ "Last name": "Příjmení",
35
+ "No bibliography entries could be found in import file.": "V importovaném souboru nebyly nalezeny žádné položky bibliografie.",
36
+ "No sources found": "Nebyly nalezeny žádné zdroje",
37
+ "No sources registered": "Nejsou registrovány žádné zdroje",
38
+ "Only letters, numbers, hyphens and underscores are allowed.": "Povolena jsou pouze písmena, čísla, pomlčky a podtržítka.",
39
+ "Optional Fields": "Nepovinná pole",
40
+ "Organization": "Organizace",
41
+ "Organization name": "Název organizace",
42
+ "Person": "Osoba",
43
+ "Prefix": "Předpona",
44
+ "Prefix used": "Použitá předpona",
45
+ "Published": "Publikováno",
46
+ "Range": "Rozsah",
47
+ "Register new source": "Zaregistrujte nový zdroj",
48
+ "Register New Source": "Zaregistrujte nový zdroj",
49
+ "Required Fields": "Povinná pole",
50
+ "Search bibliography": "Prohledejte bibliografii",
51
+ "Select a file": "Vyberte soubor",
52
+ "Select source type": "Vyberte typ zdroje",
53
+ "Single value": "Jediná hodnota",
54
+ "Small caps": "Malé čepice",
55
+ "Sourcetype": "Zdrojový typ",
56
+ "Strong": "Silný",
57
+ "Submit": "Předložit",
58
+ "Subscript₊": "Dolní index₊",
59
+ "Suffix": "Přípona",
60
+ "Supported formats: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citations, DOCX citations": "Podporované formáty: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citace, DOCX citace",
61
+ "Supscript²": "Horní index²",
62
+ "The bibliography could not be updated": "Bibliografii se nepodařilo aktualizovat",
63
+ "The bibliography has been updated.": "Bibliografie byla aktualizována.",
64
+ "The bibliography item(s) have been deleted": "Položky bibliografie byly smazány",
65
+ "The categories could not be updated": "Kategorie se nepodařilo aktualizovat",
66
+ "The categories have been updated": "Kategorie byly aktualizovány",
67
+ "The file format could not be recognized.": "Formát souboru nelze rozpoznat.",
68
+ "There was an issue with the bibliography import": "Vyskytl se problém s importem bibliografie",
69
+ "Title": "",
70
+ "To": "Na",
71
+ "Untitled": "Bez názvu",
72
+ "Warning: this key is already used in your library.": "Upozornění: Tento klíč je již ve vaší knihovně použit.",
73
+ "You are currently offline. Please try again when you are back online.": "Momentálně jste offline. Zkuste to znovu, až budete opět online."
74
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "": "da",
3
+ "All categories": "Alle kategorier",
4
+ "An error occured while reading a bibliography entry": "Der opstod en fejl under læsning af en bibliografipost",
5
+ "and": "og",
6
+ "and others": "og andre",
7
+ "Author": "Forfatter",
8
+ "Bibliography Manager": "Bibliografichef",
9
+ "CasE ProTecT": "CasE ProTecT",
10
+ "Categories": "Kategorier",
11
+ "Citation key": "Citationsnøgle",
12
+ "Confirm deletion": "Bekræft sletning",
13
+ "Could not obtain bibliography data": "Kunne ikke hente bibliografidata",
14
+ "Custom": "Brugerdefineret",
15
+ "Delete": "Slet",
16
+ "Delete selected": "Slet valgte",
17
+ "Delete selected bibliography entries.": "Slet valgte bibliografiposter.",
18
+ "Delete the bibliography item(s)": "Slet bibliografielementet(erne)",
19
+ "Edit categories": "Rediger kategorier",
20
+ "Edit Categories": "Rediger kategorier",
21
+ "Edit Source": "Rediger kilde",
22
+ "Emphasis": "Fremhævning",
23
+ "Error in form, check highlighted values!": "Fejl i form, tjek fremhævede værdier!",
24
+ "Export selected": "Eksporter valgt",
25
+ "Export selected bibliography entries.": "Eksporter udvalgte bibliografiposter.",
26
+ "Field cannot not be saved. Fidus Writer does not support the field.": "Feltet kan ikke gemmes. Fidus Writer understøtter ikke feltet.",
27
+ "Field does not contain a valid EDTF string.": "Feltet indeholder ikke en gyldig EDTF-streng.",
28
+ "First name": "Fornavn",
29
+ "From": "Fra",
30
+ "From list": "Fra listen",
31
+ "Import": "Importere",
32
+ "Import a bibliography": "Importer en bibliografi",
33
+ "Import bibliography": "Importer bibliografi",
34
+ "Last name": "Efternavn",
35
+ "No bibliography entries could be found in import file.": "Ingen bibliografiposter kunne findes i importfilen.",
36
+ "No sources found": "Ingen kilder fundet",
37
+ "No sources registered": "Ingen kilder registreret",
38
+ "Only letters, numbers, hyphens and underscores are allowed.": "Kun bogstaver, tal, bindestreger og understregninger er tilladt.",
39
+ "Optional Fields": "Valgfrie felter",
40
+ "Organization": "Organisation",
41
+ "Organization name": "Organisationens navn",
42
+ "Person": "Person",
43
+ "Prefix": "Præfiks",
44
+ "Prefix used": "Præfiks brugt",
45
+ "Published": "Udgivet",
46
+ "Range": "Rækkevidde",
47
+ "Register new source": "Registrer ny kilde",
48
+ "Register New Source": "Registrer ny kilde",
49
+ "Required Fields": "Påkrævede felter",
50
+ "Search bibliography": "Søg bibliografi",
51
+ "Select a file": "Vælg en fil",
52
+ "Select source type": "Vælg kildetype",
53
+ "Single value": "Enkelt værdi",
54
+ "Small caps": "Kapitæler",
55
+ "Sourcetype": "Kildetype",
56
+ "Strong": "Stærk",
57
+ "Submit": "Indsend",
58
+ "Subscript₊": "Subscript₊",
59
+ "Suffix": "Suffiks",
60
+ "Supported formats: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citations, DOCX citations": "Understøttede formater: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT-citater, DOCX-citater",
61
+ "Supscript²": "Supscript²",
62
+ "The bibliography could not be updated": "Bibliografien kunne ikke opdateres",
63
+ "The bibliography has been updated.": "Bibliografien er blevet opdateret.",
64
+ "The bibliography item(s) have been deleted": "Bibliografielementet(erne) er blevet slettet",
65
+ "The categories could not be updated": "Kategorierne kunne ikke opdateres",
66
+ "The categories have been updated": "Kategorierne er blevet opdateret",
67
+ "The file format could not be recognized.": "Filformatet kunne ikke genkendes.",
68
+ "There was an issue with the bibliography import": "Der var et problem med bibliografiimporten",
69
+ "Title": "",
70
+ "To": "Til",
71
+ "Untitled": "Uden titel",
72
+ "Warning: this key is already used in your library.": "Advarsel: denne nøgle bruges allerede i dit bibliotek.",
73
+ "You are currently offline. Please try again when you are back online.": "Du er i øjeblikket offline. Prøv venligst igen, når du er online igen."
74
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "": "de",
3
+ "All categories": "Alle Kategorien",
4
+ "An error occured while reading a bibliography entry": "Beim Lesen eines Bibliographieeintrags ist ein Fehler aufgetreten",
5
+ "and": "und",
6
+ "and others": "und andere",
7
+ "Author": "Autor",
8
+ "Bibliography Manager": "Bibliografiemanager",
9
+ "CasE ProTecT": "Groß-/Kleinschreibung geschützt",
10
+ "Categories": "Kategorien",
11
+ "Citation key": "Zitierschlüssel",
12
+ "Confirm deletion": "Entfernen bestätigen",
13
+ "Could not obtain bibliography data": "Es konnten keine Bibliografiedaten abgerufen werden",
14
+ "Custom": "Benutzerdefiniert",
15
+ "Delete": "Entfernen",
16
+ "Delete selected": "Auswahl löschen",
17
+ "Delete selected bibliography entries.": "Ausgewählte Bibliographieeinträge löschen.",
18
+ "Delete the bibliography item(s)": "Titel enfernen",
19
+ "Edit categories": "Kategorien bearbeiten",
20
+ "Edit Categories": "Kategorien bearbeiten",
21
+ "Edit Source": "Quelle bearbeiten",
22
+ "Emphasis": "Betonung",
23
+ "Error in form, check highlighted values!": "Fehler im Formular, markierte Werte prüfen!",
24
+ "Export selected": "Auswahl exportieren",
25
+ "Export selected bibliography entries.": "Exportieren Sie ausgewählte Bibliographieeinträge.",
26
+ "Field cannot not be saved. Fidus Writer does not support the field.": "Feld kann nicht gespeichert werden. Fidus Writer unterstützt das Feld nicht.",
27
+ "Field does not contain a valid EDTF string.": "Das Feld enthält keine gültige EDTF-Zeichenfolge.",
28
+ "First name": "Vorname",
29
+ "From": "Von",
30
+ "From list": "Aus der Liste",
31
+ "Import": "Importieren",
32
+ "Import a bibliography": "Importieren Sie eine Bibliographie",
33
+ "Import bibliography": "Bibliographie importieren",
34
+ "Last name": "Nachname",
35
+ "No bibliography entries could be found in import file.": "In der Importdatei wurden keine Bibliographieeinträge gefunden.",
36
+ "No sources found": "Keine Quellen gefunden",
37
+ "No sources registered": "Keine Quellen registriert",
38
+ "Only letters, numbers, hyphens and underscores are allowed.": "Es sind nur Buchstaben, Zahlen, Bindestriche und Unterstriche zulässig.",
39
+ "Optional Fields": "Optionale Angaben",
40
+ "Organization": "Organisation",
41
+ "Organization name": "Name der Organisation",
42
+ "Person": "Person",
43
+ "Prefix": "Präfix",
44
+ "Prefix used": "Präfix verwendet",
45
+ "Published": "Veröffentlicht",
46
+ "Range": "Bereich",
47
+ "Register new source": "Neue Quelle registrieren",
48
+ "Register New Source": "Neue Quelle hinzufügen",
49
+ "Required Fields": "Basisangaben",
50
+ "Search bibliography": "Bibliographie durchsuchen",
51
+ "Select a file": "Datei wählen",
52
+ "Select source type": "Dokumententyp wählen",
53
+ "Single value": "Einzelwert",
54
+ "Small caps": "Kapitälchen",
55
+ "Sourcetype": "Dokumententyp",
56
+ "Strong": "Stark",
57
+ "Submit": "Bestätigen",
58
+ "Subscript₊": "Tiefgestellt₊",
59
+ "Suffix": "Suffix",
60
+ "Supported formats: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT citations, DOCX citations": "Unterstützte Formate: BibTeX/BibLaTeX, CSL-JSON, RIS, EndNote XML, EndNote Tagged, Citavi XML, Citavi JSON, NBIB/PubMed, ODT-Zitate, DOCX-Zitate",
61
+ "Supscript²": "Hochgestellt²",
62
+ "The bibliography could not be updated": "Die Bibliographie konnte nicht aktualisiert werden",
63
+ "The bibliography has been updated.": "Die Bibliographie wurde aktualisiert.",
64
+ "The bibliography item(s) have been deleted": "Der/Die Titel wurden entfernt",
65
+ "The categories could not be updated": "Die Kategorien konnten nicht aktualisiert werden",
66
+ "The categories have been updated": "Die Kategorien wurden upgedated.",
67
+ "The file format could not be recognized.": "Das Dateiformat konnte nicht erkannt werden.",
68
+ "There was an issue with the bibliography import": "Beim Import der Bibliografie ist ein Problem aufgetreten",
69
+ "Title": "",
70
+ "To": "Zu",
71
+ "Untitled": "Ohne Titel",
72
+ "Warning: this key is already used in your library.": "Warnung: Dieser Schlüssel wird bereits in Ihrer Bibliothek verwendet.",
73
+ "You are currently offline. Please try again when you are back online.": "Sie sind derzeit offline. Bitte versuchen Sie es erneut, wenn Sie wieder online sind."
74
+ }