@alfadocs/ui-kit 1.4.6 → 1.4.7
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.
- package/dist/_chunks/anamnesis-summary-card-BvaSnAbI.js +302 -0
- package/dist/_chunks/{anamnesis-i18n-w9La6dNo.js → anamnesis-summary-rows-D7v_JyGo.js} +2474 -2349
- package/dist/agent-catalog.json +31 -1
- package/dist/agent-i18n/en.json +5 -0
- package/dist/components/anamnesis-summary-card/anamnesis-summary-card.agent.d.ts +4 -0
- package/dist/components/anamnesis-summary-card/anamnesis-summary-card.d.ts +69 -0
- package/dist/components/anamnesis-summary-card/index.d.ts +4 -0
- package/dist/components/anamnesis-summary-card/index.js +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/i18n/locales/ar.d.ts +20 -0
- package/dist/i18n/locales/ar.js +20 -0
- package/dist/i18n/locales/de.d.ts +20 -0
- package/dist/i18n/locales/de.js +20 -0
- package/dist/i18n/locales/el.d.ts +20 -0
- package/dist/i18n/locales/el.js +20 -0
- package/dist/i18n/locales/en.d.ts +20 -0
- package/dist/i18n/locales/en.js +20 -0
- package/dist/i18n/locales/es.d.ts +20 -0
- package/dist/i18n/locales/es.js +20 -0
- package/dist/i18n/locales/fr.d.ts +20 -0
- package/dist/i18n/locales/fr.js +20 -0
- package/dist/i18n/locales/hi.d.ts +20 -0
- package/dist/i18n/locales/hi.js +20 -0
- package/dist/i18n/locales/it.d.ts +20 -0
- package/dist/i18n/locales/it.js +20 -0
- package/dist/i18n/locales/ja.d.ts +20 -0
- package/dist/i18n/locales/ja.js +20 -0
- package/dist/i18n/locales/nl.d.ts +20 -0
- package/dist/i18n/locales/nl.js +20 -0
- package/dist/i18n/locales/pl.d.ts +20 -0
- package/dist/i18n/locales/pl.js +20 -0
- package/dist/i18n/locales/pt.d.ts +20 -0
- package/dist/i18n/locales/pt.js +20 -0
- package/dist/i18n/locales/ro.d.ts +20 -0
- package/dist/i18n/locales/ro.js +20 -0
- package/dist/i18n/locales/ru.d.ts +20 -0
- package/dist/i18n/locales/ru.js +20 -0
- package/dist/i18n/locales/sq.d.ts +20 -0
- package/dist/i18n/locales/sq.js +20 -0
- package/dist/i18n/locales/sv.d.ts +20 -0
- package/dist/i18n/locales/sv.js +20 -0
- package/dist/i18n/locales/tr.d.ts +20 -0
- package/dist/i18n/locales/tr.js +20 -0
- package/dist/i18n/locales/zh.d.ts +20 -0
- package/dist/i18n/locales/zh.js +20 -0
- package/dist/index.js +266 -262
- package/dist/locales/ar.json +20 -0
- package/dist/locales/de.json +20 -0
- package/dist/locales/el.json +20 -0
- package/dist/locales/en.json +20 -0
- package/dist/locales/es.json +20 -0
- package/dist/locales/fr.json +20 -0
- package/dist/locales/hi.json +20 -0
- package/dist/locales/it.json +20 -0
- package/dist/locales/ja.json +20 -0
- package/dist/locales/nl.json +20 -0
- package/dist/locales/pl.json +20 -0
- package/dist/locales/pt.json +20 -0
- package/dist/locales/ro.json +20 -0
- package/dist/locales/ru.json +20 -0
- package/dist/locales/sq.json +20 -0
- package/dist/locales/sv.json +20 -0
- package/dist/locales/tr.json +20 -0
- package/dist/locales/zh.json +20 -0
- package/dist/patterns/anamnesis/anamnesis-questionnaire.d.ts +6 -1
- package/dist/patterns/anamnesis/anamnesis-summary-rows.d.ts +32 -0
- package/dist/patterns/anamnesis/anamnesis.d.ts +20 -1
- package/dist/patterns/anamnesis/index.d.ts +2 -1
- package/dist/patterns/anamnesis/index.js +15 -14
- package/dist/tokens.css +1 -1
- package/package.json +5 -1
package/dist/agent-catalog.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"packageVersion": "1.4.
|
|
3
|
+
"packageVersion": "1.4.7",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
6
6
|
"kind": "component",
|
|
@@ -548,6 +548,36 @@
|
|
|
548
548
|
}
|
|
549
549
|
}
|
|
550
550
|
},
|
|
551
|
+
{
|
|
552
|
+
"kind": "component",
|
|
553
|
+
"id": "anamnesis-summary-card",
|
|
554
|
+
"capabilities": [],
|
|
555
|
+
"state": [
|
|
556
|
+
{
|
|
557
|
+
"name": "summary",
|
|
558
|
+
"type": "{ id?: string; sectionCount: number; answerCount: number; highlightedCount: number; unansweredCount: number }",
|
|
559
|
+
"description": "Structural summary of the anamnesis card — section, answer, highlighted and unanswered counts plus the consumer id. Never question labels or answer values.",
|
|
560
|
+
"descriptionKey": "ui.agent.anamnesisSummaryCard.state.summary"
|
|
561
|
+
}
|
|
562
|
+
],
|
|
563
|
+
"actions": [],
|
|
564
|
+
"domHooks": {
|
|
565
|
+
"root": {
|
|
566
|
+
"attr": "data-component",
|
|
567
|
+
"value": "anamnesis-summary-card",
|
|
568
|
+
"description": "Marks the AnamnesisSummaryCard root region."
|
|
569
|
+
},
|
|
570
|
+
"instanceId": {
|
|
571
|
+
"attr": "data-component-id",
|
|
572
|
+
"sourceProp": "id",
|
|
573
|
+
"description": "Sourced from the id prop."
|
|
574
|
+
},
|
|
575
|
+
"item": {
|
|
576
|
+
"attr": "data-answer-id",
|
|
577
|
+
"description": "One per answer row (KeyValuePair); the value is the intake field key. Highlighted rows also carry data-highlighted."
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
},
|
|
551
581
|
{
|
|
552
582
|
"kind": "component",
|
|
553
583
|
"id": "app-frame",
|
package/dist/agent-i18n/en.json
CHANGED
|
@@ -60,6 +60,11 @@
|
|
|
60
60
|
"focus": "Move keyboard focus into the textarea."
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
|
+
"anamnesisSummaryCard": {
|
|
64
|
+
"state": {
|
|
65
|
+
"summary": "Structural summary of the anamnesis card — section, answer, highlighted and unanswered counts plus the consumer id. Never question labels or answer values."
|
|
66
|
+
}
|
|
67
|
+
},
|
|
63
68
|
"appointmentTray": {
|
|
64
69
|
"state": {
|
|
65
70
|
"items": "Currently-displayed appointments. Ids + lifecycle state only — never patient identity."
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { AgentAdapter } from '../../agent/types';
|
|
2
|
+
import type { AnamnesisSummaryCardHandle } from './anamnesis-summary-card';
|
|
3
|
+
export declare const anamnesisSummaryCardAgent: AgentAdapter<AnamnesisSummaryCardHandle>;
|
|
4
|
+
//# sourceMappingURL=anamnesis-summary-card.agent.d.ts.map
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { type HTMLAttributes, type ReactNode } from 'react';
|
|
2
|
+
import { type VariantProps } from 'class-variance-authority';
|
|
3
|
+
declare const rootVariants: (props?: ({
|
|
4
|
+
surface?: "elevated" | "flat" | null | undefined;
|
|
5
|
+
density?: "compact" | "comfortable" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
export interface AnamnesisSummaryAnswer {
|
|
8
|
+
/** Stable key (the intake field key). */
|
|
9
|
+
id: string;
|
|
10
|
+
/** Question label, already translated by the consumer. */
|
|
11
|
+
label: string;
|
|
12
|
+
/** Formatted answer. Strings preferred; ReactNode allowed. */
|
|
13
|
+
value: ReactNode;
|
|
14
|
+
/** Unit symbol rendered muted after the value (e.g. "kg"). */
|
|
15
|
+
unit?: string;
|
|
16
|
+
/** The practice's highlight rule fired for this answer. */
|
|
17
|
+
highlighted?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* When the answer was recorded — `YYYY-MM-DD`, `YYYY-MM-DDTHH:mm` (LOCAL
|
|
20
|
+
* wall time, no zone) or full ISO-8601. A bare date is never read as UTC.
|
|
21
|
+
*/
|
|
22
|
+
reportedAtIso?: string;
|
|
23
|
+
/** Where the answer came from when the card combines modules (module name). */
|
|
24
|
+
sourceLabel?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface AnamnesisSummarySection {
|
|
27
|
+
id: string;
|
|
28
|
+
heading: string;
|
|
29
|
+
answers: AnamnesisSummaryAnswer[];
|
|
30
|
+
}
|
|
31
|
+
export interface AnamnesisSummaryCardHandle {
|
|
32
|
+
/** Structural snapshot only — counts, never labels or values. */
|
|
33
|
+
getSummary: () => {
|
|
34
|
+
id?: string;
|
|
35
|
+
sectionCount: number;
|
|
36
|
+
answerCount: number;
|
|
37
|
+
highlightedCount: number;
|
|
38
|
+
unansweredCount: number;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export interface AnamnesisSummaryCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
42
|
+
sections: AnamnesisSummarySection[];
|
|
43
|
+
/** Card title (e.g. the module name). Falls back to the "Anamnesis summary" region label. */
|
|
44
|
+
title?: string;
|
|
45
|
+
/** Muted line under the title (e.g. the interview date-time, already formatted). */
|
|
46
|
+
subtitle?: string;
|
|
47
|
+
/** Questions the consumer omitted because they were unanswered — one muted footer line when > 0. */
|
|
48
|
+
unansweredCount?: number;
|
|
49
|
+
/** BCP-47 tag for the tooltip date; defaults to the active i18next language. */
|
|
50
|
+
locale?: string;
|
|
51
|
+
/** Highlighted answers sort to the top of their section. Default `true`. */
|
|
52
|
+
highlightedFirst?: boolean;
|
|
53
|
+
/** `'elevated'` (default) — Card with shadow; `'flat'` — outlined Card. */
|
|
54
|
+
surface?: 'flat' | 'elevated';
|
|
55
|
+
/** `'comfortable'` (default) or `'compact'` (tighter row gap + paddings). */
|
|
56
|
+
density?: 'comfortable' | 'compact';
|
|
57
|
+
/** Render the skeleton loading placeholder. */
|
|
58
|
+
loading?: boolean;
|
|
59
|
+
/** Rendered at the inline-end of the heading row (e.g. an action menu). */
|
|
60
|
+
actionSlot?: ReactNode;
|
|
61
|
+
/** Agent-readiness consumer id, surfaced as `data-component-id`. */
|
|
62
|
+
id?: string;
|
|
63
|
+
}
|
|
64
|
+
export declare const AnamnesisSummaryCard: import("react").ForwardRefExoticComponent<AnamnesisSummaryCardProps & import("react").RefAttributes<AnamnesisSummaryCardHandle>>;
|
|
65
|
+
/** Variant unions re-exported for downstream typing. */
|
|
66
|
+
export type AnamnesisSummaryCardSurface = NonNullable<VariantProps<typeof rootVariants>['surface']>;
|
|
67
|
+
export type AnamnesisSummaryCardDensity = NonNullable<VariantProps<typeof rootVariants>['density']>;
|
|
68
|
+
export {};
|
|
69
|
+
//# sourceMappingURL=anamnesis-summary-card.d.ts.map
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { AnamnesisSummaryCard } from './anamnesis-summary-card';
|
|
2
|
+
export type { AnamnesisSummaryCardProps, AnamnesisSummaryCardHandle, AnamnesisSummaryAnswer, AnamnesisSummarySection, AnamnesisSummaryCardSurface, AnamnesisSummaryCardDensity, } from './anamnesis-summary-card';
|
|
3
|
+
export { anamnesisSummaryCardAgent } from './anamnesis-summary-card.agent';
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -175,6 +175,7 @@ export * from './operator-hero';
|
|
|
175
175
|
export * from './patient-details';
|
|
176
176
|
export * from './patient-search';
|
|
177
177
|
export * from './patient-summary-card';
|
|
178
|
+
export * from './anamnesis-summary-card';
|
|
178
179
|
export * from './patient-table';
|
|
179
180
|
export * from './periodontal-chart';
|
|
180
181
|
export * from './periodontal-chart-card';
|
|
@@ -2067,6 +2067,26 @@ export declare const arUi: {
|
|
|
2067
2067
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2068
2068
|
};
|
|
2069
2069
|
};
|
|
2070
|
+
readonly anamnesisSummaryCard: {
|
|
2071
|
+
readonly regionLabel: "ملخص التاريخ المرضي";
|
|
2072
|
+
readonly highlighted: "مميّزة";
|
|
2073
|
+
readonly highlightedCount_zero: "{{count}} مميّزة";
|
|
2074
|
+
readonly highlightedCount_one: "{{count}} مميّزة";
|
|
2075
|
+
readonly highlightedCount_two: "{{count}} مميّزتان";
|
|
2076
|
+
readonly highlightedCount_few: "{{count}} مميّزة";
|
|
2077
|
+
readonly highlightedCount_many: "{{count}} مميّزة";
|
|
2078
|
+
readonly highlightedCount_other: "{{count}} مميّزة";
|
|
2079
|
+
readonly reportedOn: "تم التمييز في {{date}}";
|
|
2080
|
+
readonly reportedOnFrom: "تم التمييز في {{date}} · {{source}}";
|
|
2081
|
+
readonly unanswered_zero: "{{count}} أسئلة دون إجابة";
|
|
2082
|
+
readonly unanswered_one: "{{count}} سؤال دون إجابة";
|
|
2083
|
+
readonly unanswered_two: "{{count}} سؤالان دون إجابة";
|
|
2084
|
+
readonly unanswered_few: "{{count}} أسئلة دون إجابة";
|
|
2085
|
+
readonly unanswered_many: "{{count}} سؤالًا دون إجابة";
|
|
2086
|
+
readonly unanswered_other: "{{count}} سؤال دون إجابة";
|
|
2087
|
+
readonly empty: "لم تُسجَّل أي إجابات بعد";
|
|
2088
|
+
readonly sectionsLabel: "أقسام التاريخ المرضي";
|
|
2089
|
+
};
|
|
2070
2090
|
readonly appointmentCard: {
|
|
2071
2091
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2072
2092
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/ar.js
CHANGED
|
@@ -2054,6 +2054,26 @@ const e = {
|
|
|
2054
2054
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2055
2055
|
}
|
|
2056
2056
|
},
|
|
2057
|
+
anamnesisSummaryCard: {
|
|
2058
|
+
regionLabel: "ملخص التاريخ المرضي",
|
|
2059
|
+
highlighted: "مميّزة",
|
|
2060
|
+
highlightedCount_zero: "{{count}} مميّزة",
|
|
2061
|
+
highlightedCount_one: "{{count}} مميّزة",
|
|
2062
|
+
highlightedCount_two: "{{count}} مميّزتان",
|
|
2063
|
+
highlightedCount_few: "{{count}} مميّزة",
|
|
2064
|
+
highlightedCount_many: "{{count}} مميّزة",
|
|
2065
|
+
highlightedCount_other: "{{count}} مميّزة",
|
|
2066
|
+
reportedOn: "تم التمييز في {{date}}",
|
|
2067
|
+
reportedOnFrom: "تم التمييز في {{date}} · {{source}}",
|
|
2068
|
+
unanswered_zero: "{{count}} أسئلة دون إجابة",
|
|
2069
|
+
unanswered_one: "{{count}} سؤال دون إجابة",
|
|
2070
|
+
unanswered_two: "{{count}} سؤالان دون إجابة",
|
|
2071
|
+
unanswered_few: "{{count}} أسئلة دون إجابة",
|
|
2072
|
+
unanswered_many: "{{count}} سؤالًا دون إجابة",
|
|
2073
|
+
unanswered_other: "{{count}} سؤال دون إجابة",
|
|
2074
|
+
empty: "لم تُسجَّل أي إجابات بعد",
|
|
2075
|
+
sectionsLabel: "أقسام التاريخ المرضي"
|
|
2076
|
+
},
|
|
2057
2077
|
appointmentCard: {
|
|
2058
2078
|
itemLabel: "{{patient}} — {{state}}",
|
|
2059
2079
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2067,6 +2067,26 @@ export declare const deUi: {
|
|
|
2067
2067
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2068
2068
|
};
|
|
2069
2069
|
};
|
|
2070
|
+
readonly anamnesisSummaryCard: {
|
|
2071
|
+
readonly regionLabel: "Anamnese-Zusammenfassung";
|
|
2072
|
+
readonly highlighted: "Hervorgehoben";
|
|
2073
|
+
readonly highlightedCount_zero: "{{count}} hervorgehoben";
|
|
2074
|
+
readonly highlightedCount_one: "{{count}} hervorgehoben";
|
|
2075
|
+
readonly highlightedCount_two: "{{count}} hervorgehoben";
|
|
2076
|
+
readonly highlightedCount_few: "{{count}} hervorgehoben";
|
|
2077
|
+
readonly highlightedCount_many: "{{count}} hervorgehoben";
|
|
2078
|
+
readonly highlightedCount_other: "{{count}} hervorgehoben";
|
|
2079
|
+
readonly reportedOn: "Hervorgehoben am {{date}}";
|
|
2080
|
+
readonly reportedOnFrom: "Hervorgehoben am {{date}} · {{source}}";
|
|
2081
|
+
readonly unanswered_zero: "{{count}} Fragen nicht beantwortet";
|
|
2082
|
+
readonly unanswered_one: "{{count}} Frage nicht beantwortet";
|
|
2083
|
+
readonly unanswered_two: "{{count}} Fragen nicht beantwortet";
|
|
2084
|
+
readonly unanswered_few: "{{count}} Fragen nicht beantwortet";
|
|
2085
|
+
readonly unanswered_many: "{{count}} Fragen nicht beantwortet";
|
|
2086
|
+
readonly unanswered_other: "{{count}} Fragen nicht beantwortet";
|
|
2087
|
+
readonly empty: "Noch keine Antworten erfasst";
|
|
2088
|
+
readonly sectionsLabel: "Anamnese-Abschnitte";
|
|
2089
|
+
};
|
|
2070
2090
|
readonly appointmentCard: {
|
|
2071
2091
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2072
2092
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/de.js
CHANGED
|
@@ -2053,6 +2053,26 @@ const e = {
|
|
|
2053
2053
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2054
2054
|
}
|
|
2055
2055
|
},
|
|
2056
|
+
anamnesisSummaryCard: {
|
|
2057
|
+
regionLabel: "Anamnese-Zusammenfassung",
|
|
2058
|
+
highlighted: "Hervorgehoben",
|
|
2059
|
+
highlightedCount_zero: "{{count}} hervorgehoben",
|
|
2060
|
+
highlightedCount_one: "{{count}} hervorgehoben",
|
|
2061
|
+
highlightedCount_two: "{{count}} hervorgehoben",
|
|
2062
|
+
highlightedCount_few: "{{count}} hervorgehoben",
|
|
2063
|
+
highlightedCount_many: "{{count}} hervorgehoben",
|
|
2064
|
+
highlightedCount_other: "{{count}} hervorgehoben",
|
|
2065
|
+
reportedOn: "Hervorgehoben am {{date}}",
|
|
2066
|
+
reportedOnFrom: "Hervorgehoben am {{date}} · {{source}}",
|
|
2067
|
+
unanswered_zero: "{{count}} Fragen nicht beantwortet",
|
|
2068
|
+
unanswered_one: "{{count}} Frage nicht beantwortet",
|
|
2069
|
+
unanswered_two: "{{count}} Fragen nicht beantwortet",
|
|
2070
|
+
unanswered_few: "{{count}} Fragen nicht beantwortet",
|
|
2071
|
+
unanswered_many: "{{count}} Fragen nicht beantwortet",
|
|
2072
|
+
unanswered_other: "{{count}} Fragen nicht beantwortet",
|
|
2073
|
+
empty: "Noch keine Antworten erfasst",
|
|
2074
|
+
sectionsLabel: "Anamnese-Abschnitte"
|
|
2075
|
+
},
|
|
2056
2076
|
appointmentCard: {
|
|
2057
2077
|
itemLabel: "{{patient}} — {{state}}",
|
|
2058
2078
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2064,6 +2064,26 @@ export declare const elUi: {
|
|
|
2064
2064
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2065
2065
|
};
|
|
2066
2066
|
};
|
|
2067
|
+
readonly anamnesisSummaryCard: {
|
|
2068
|
+
readonly regionLabel: "Σύνοψη ιστορικού";
|
|
2069
|
+
readonly highlighted: "Επισημασμένη";
|
|
2070
|
+
readonly highlightedCount_zero: "{{count}} επισημασμένες";
|
|
2071
|
+
readonly highlightedCount_one: "{{count}} επισημασμένη";
|
|
2072
|
+
readonly highlightedCount_two: "{{count}} επισημασμένες";
|
|
2073
|
+
readonly highlightedCount_few: "{{count}} επισημασμένες";
|
|
2074
|
+
readonly highlightedCount_many: "{{count}} επισημασμένες";
|
|
2075
|
+
readonly highlightedCount_other: "{{count}} επισημασμένες";
|
|
2076
|
+
readonly reportedOn: "Επισημάνθηκε στις {{date}}";
|
|
2077
|
+
readonly reportedOnFrom: "Επισημάνθηκε στις {{date}} · {{source}}";
|
|
2078
|
+
readonly unanswered_zero: "{{count}} ερωτήσεις χωρίς απάντηση";
|
|
2079
|
+
readonly unanswered_one: "{{count}} ερώτηση χωρίς απάντηση";
|
|
2080
|
+
readonly unanswered_two: "{{count}} ερωτήσεις χωρίς απάντηση";
|
|
2081
|
+
readonly unanswered_few: "{{count}} ερωτήσεις χωρίς απάντηση";
|
|
2082
|
+
readonly unanswered_many: "{{count}} ερωτήσεις χωρίς απάντηση";
|
|
2083
|
+
readonly unanswered_other: "{{count}} ερωτήσεις χωρίς απάντηση";
|
|
2084
|
+
readonly empty: "Δεν έχουν καταγραφεί απαντήσεις ακόμη";
|
|
2085
|
+
readonly sectionsLabel: "Ενότητες ιστορικού";
|
|
2086
|
+
};
|
|
2067
2087
|
readonly appointmentCard: {
|
|
2068
2088
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2069
2089
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/el.js
CHANGED
|
@@ -2054,6 +2054,26 @@ const e = {
|
|
|
2054
2054
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2055
2055
|
}
|
|
2056
2056
|
},
|
|
2057
|
+
anamnesisSummaryCard: {
|
|
2058
|
+
regionLabel: "Σύνοψη ιστορικού",
|
|
2059
|
+
highlighted: "Επισημασμένη",
|
|
2060
|
+
highlightedCount_zero: "{{count}} επισημασμένες",
|
|
2061
|
+
highlightedCount_one: "{{count}} επισημασμένη",
|
|
2062
|
+
highlightedCount_two: "{{count}} επισημασμένες",
|
|
2063
|
+
highlightedCount_few: "{{count}} επισημασμένες",
|
|
2064
|
+
highlightedCount_many: "{{count}} επισημασμένες",
|
|
2065
|
+
highlightedCount_other: "{{count}} επισημασμένες",
|
|
2066
|
+
reportedOn: "Επισημάνθηκε στις {{date}}",
|
|
2067
|
+
reportedOnFrom: "Επισημάνθηκε στις {{date}} · {{source}}",
|
|
2068
|
+
unanswered_zero: "{{count}} ερωτήσεις χωρίς απάντηση",
|
|
2069
|
+
unanswered_one: "{{count}} ερώτηση χωρίς απάντηση",
|
|
2070
|
+
unanswered_two: "{{count}} ερωτήσεις χωρίς απάντηση",
|
|
2071
|
+
unanswered_few: "{{count}} ερωτήσεις χωρίς απάντηση",
|
|
2072
|
+
unanswered_many: "{{count}} ερωτήσεις χωρίς απάντηση",
|
|
2073
|
+
unanswered_other: "{{count}} ερωτήσεις χωρίς απάντηση",
|
|
2074
|
+
empty: "Δεν έχουν καταγραφεί απαντήσεις ακόμη",
|
|
2075
|
+
sectionsLabel: "Ενότητες ιστορικού"
|
|
2076
|
+
},
|
|
2057
2077
|
appointmentCard: {
|
|
2058
2078
|
itemLabel: "{{patient}} — {{state}}",
|
|
2059
2079
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2132,6 +2132,26 @@ export declare const enUi: {
|
|
|
2132
2132
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2133
2133
|
};
|
|
2134
2134
|
};
|
|
2135
|
+
readonly anamnesisSummaryCard: {
|
|
2136
|
+
readonly regionLabel: "Anamnesis summary";
|
|
2137
|
+
readonly highlighted: "Highlighted";
|
|
2138
|
+
readonly highlightedCount_zero: "{{count}} highlighted";
|
|
2139
|
+
readonly highlightedCount_one: "{{count}} highlighted";
|
|
2140
|
+
readonly highlightedCount_two: "{{count}} highlighted";
|
|
2141
|
+
readonly highlightedCount_few: "{{count}} highlighted";
|
|
2142
|
+
readonly highlightedCount_many: "{{count}} highlighted";
|
|
2143
|
+
readonly highlightedCount_other: "{{count}} highlighted";
|
|
2144
|
+
readonly reportedOn: "Highlighted on {{date}}";
|
|
2145
|
+
readonly reportedOnFrom: "Highlighted on {{date}} · {{source}}";
|
|
2146
|
+
readonly unanswered_zero: "{{count}} questions not answered";
|
|
2147
|
+
readonly unanswered_one: "{{count}} question not answered";
|
|
2148
|
+
readonly unanswered_two: "{{count}} questions not answered";
|
|
2149
|
+
readonly unanswered_few: "{{count}} questions not answered";
|
|
2150
|
+
readonly unanswered_many: "{{count}} questions not answered";
|
|
2151
|
+
readonly unanswered_other: "{{count}} questions not answered";
|
|
2152
|
+
readonly empty: "No answers recorded yet";
|
|
2153
|
+
readonly sectionsLabel: "Anamnesis sections";
|
|
2154
|
+
};
|
|
2135
2155
|
readonly appointmentCard: {
|
|
2136
2156
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2137
2157
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/en.js
CHANGED
|
@@ -2115,6 +2115,26 @@ const e = {
|
|
|
2115
2115
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2116
2116
|
}
|
|
2117
2117
|
},
|
|
2118
|
+
anamnesisSummaryCard: {
|
|
2119
|
+
regionLabel: "Anamnesis summary",
|
|
2120
|
+
highlighted: "Highlighted",
|
|
2121
|
+
highlightedCount_zero: "{{count}} highlighted",
|
|
2122
|
+
highlightedCount_one: "{{count}} highlighted",
|
|
2123
|
+
highlightedCount_two: "{{count}} highlighted",
|
|
2124
|
+
highlightedCount_few: "{{count}} highlighted",
|
|
2125
|
+
highlightedCount_many: "{{count}} highlighted",
|
|
2126
|
+
highlightedCount_other: "{{count}} highlighted",
|
|
2127
|
+
reportedOn: "Highlighted on {{date}}",
|
|
2128
|
+
reportedOnFrom: "Highlighted on {{date}} · {{source}}",
|
|
2129
|
+
unanswered_zero: "{{count}} questions not answered",
|
|
2130
|
+
unanswered_one: "{{count}} question not answered",
|
|
2131
|
+
unanswered_two: "{{count}} questions not answered",
|
|
2132
|
+
unanswered_few: "{{count}} questions not answered",
|
|
2133
|
+
unanswered_many: "{{count}} questions not answered",
|
|
2134
|
+
unanswered_other: "{{count}} questions not answered",
|
|
2135
|
+
empty: "No answers recorded yet",
|
|
2136
|
+
sectionsLabel: "Anamnesis sections"
|
|
2137
|
+
},
|
|
2118
2138
|
appointmentCard: {
|
|
2119
2139
|
itemLabel: "{{patient}} — {{state}}",
|
|
2120
2140
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2064,6 +2064,26 @@ export declare const esUi: {
|
|
|
2064
2064
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2065
2065
|
};
|
|
2066
2066
|
};
|
|
2067
|
+
readonly anamnesisSummaryCard: {
|
|
2068
|
+
readonly regionLabel: "Resumen de la anamnesis";
|
|
2069
|
+
readonly highlighted: "Destacada";
|
|
2070
|
+
readonly highlightedCount_zero: "{{count}} destacadas";
|
|
2071
|
+
readonly highlightedCount_one: "{{count}} destacada";
|
|
2072
|
+
readonly highlightedCount_two: "{{count}} destacadas";
|
|
2073
|
+
readonly highlightedCount_few: "{{count}} destacadas";
|
|
2074
|
+
readonly highlightedCount_many: "{{count}} destacadas";
|
|
2075
|
+
readonly highlightedCount_other: "{{count}} destacadas";
|
|
2076
|
+
readonly reportedOn: "Destacada el {{date}}";
|
|
2077
|
+
readonly reportedOnFrom: "Destacada el {{date}} · {{source}}";
|
|
2078
|
+
readonly unanswered_zero: "{{count}} preguntas sin responder";
|
|
2079
|
+
readonly unanswered_one: "{{count}} pregunta sin responder";
|
|
2080
|
+
readonly unanswered_two: "{{count}} preguntas sin responder";
|
|
2081
|
+
readonly unanswered_few: "{{count}} preguntas sin responder";
|
|
2082
|
+
readonly unanswered_many: "{{count}} preguntas sin responder";
|
|
2083
|
+
readonly unanswered_other: "{{count}} preguntas sin responder";
|
|
2084
|
+
readonly empty: "Aún no hay respuestas registradas";
|
|
2085
|
+
readonly sectionsLabel: "Secciones de la anamnesis";
|
|
2086
|
+
};
|
|
2067
2087
|
readonly appointmentCard: {
|
|
2068
2088
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2069
2089
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -2053,6 +2053,26 @@ const e = {
|
|
|
2053
2053
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2054
2054
|
}
|
|
2055
2055
|
},
|
|
2056
|
+
anamnesisSummaryCard: {
|
|
2057
|
+
regionLabel: "Resumen de la anamnesis",
|
|
2058
|
+
highlighted: "Destacada",
|
|
2059
|
+
highlightedCount_zero: "{{count}} destacadas",
|
|
2060
|
+
highlightedCount_one: "{{count}} destacada",
|
|
2061
|
+
highlightedCount_two: "{{count}} destacadas",
|
|
2062
|
+
highlightedCount_few: "{{count}} destacadas",
|
|
2063
|
+
highlightedCount_many: "{{count}} destacadas",
|
|
2064
|
+
highlightedCount_other: "{{count}} destacadas",
|
|
2065
|
+
reportedOn: "Destacada el {{date}}",
|
|
2066
|
+
reportedOnFrom: "Destacada el {{date}} · {{source}}",
|
|
2067
|
+
unanswered_zero: "{{count}} preguntas sin responder",
|
|
2068
|
+
unanswered_one: "{{count}} pregunta sin responder",
|
|
2069
|
+
unanswered_two: "{{count}} preguntas sin responder",
|
|
2070
|
+
unanswered_few: "{{count}} preguntas sin responder",
|
|
2071
|
+
unanswered_many: "{{count}} preguntas sin responder",
|
|
2072
|
+
unanswered_other: "{{count}} preguntas sin responder",
|
|
2073
|
+
empty: "Aún no hay respuestas registradas",
|
|
2074
|
+
sectionsLabel: "Secciones de la anamnesis"
|
|
2075
|
+
},
|
|
2056
2076
|
appointmentCard: {
|
|
2057
2077
|
itemLabel: "{{patient}} — {{state}}",
|
|
2058
2078
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2064,6 +2064,26 @@ export declare const frUi: {
|
|
|
2064
2064
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2065
2065
|
};
|
|
2066
2066
|
};
|
|
2067
|
+
readonly anamnesisSummaryCard: {
|
|
2068
|
+
readonly regionLabel: "Résumé de l’anamnèse";
|
|
2069
|
+
readonly highlighted: "Mise en évidence";
|
|
2070
|
+
readonly highlightedCount_zero: "{{count}} mise en évidence";
|
|
2071
|
+
readonly highlightedCount_one: "{{count}} mise en évidence";
|
|
2072
|
+
readonly highlightedCount_two: "{{count}} mises en évidence";
|
|
2073
|
+
readonly highlightedCount_few: "{{count}} mises en évidence";
|
|
2074
|
+
readonly highlightedCount_many: "{{count}} mises en évidence";
|
|
2075
|
+
readonly highlightedCount_other: "{{count}} mises en évidence";
|
|
2076
|
+
readonly reportedOn: "Mise en évidence le {{date}}";
|
|
2077
|
+
readonly reportedOnFrom: "Mise en évidence le {{date}} · {{source}}";
|
|
2078
|
+
readonly unanswered_zero: "{{count}} question sans réponse";
|
|
2079
|
+
readonly unanswered_one: "{{count}} question sans réponse";
|
|
2080
|
+
readonly unanswered_two: "{{count}} questions sans réponse";
|
|
2081
|
+
readonly unanswered_few: "{{count}} questions sans réponse";
|
|
2082
|
+
readonly unanswered_many: "{{count}} questions sans réponse";
|
|
2083
|
+
readonly unanswered_other: "{{count}} questions sans réponse";
|
|
2084
|
+
readonly empty: "Aucune réponse enregistrée pour le moment";
|
|
2085
|
+
readonly sectionsLabel: "Sections de l’anamnèse";
|
|
2086
|
+
};
|
|
2067
2087
|
readonly appointmentCard: {
|
|
2068
2088
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2069
2089
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/fr.js
CHANGED
|
@@ -2053,6 +2053,26 @@ const e = {
|
|
|
2053
2053
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2054
2054
|
}
|
|
2055
2055
|
},
|
|
2056
|
+
anamnesisSummaryCard: {
|
|
2057
|
+
regionLabel: "Résumé de l’anamnèse",
|
|
2058
|
+
highlighted: "Mise en évidence",
|
|
2059
|
+
highlightedCount_zero: "{{count}} mise en évidence",
|
|
2060
|
+
highlightedCount_one: "{{count}} mise en évidence",
|
|
2061
|
+
highlightedCount_two: "{{count}} mises en évidence",
|
|
2062
|
+
highlightedCount_few: "{{count}} mises en évidence",
|
|
2063
|
+
highlightedCount_many: "{{count}} mises en évidence",
|
|
2064
|
+
highlightedCount_other: "{{count}} mises en évidence",
|
|
2065
|
+
reportedOn: "Mise en évidence le {{date}}",
|
|
2066
|
+
reportedOnFrom: "Mise en évidence le {{date}} · {{source}}",
|
|
2067
|
+
unanswered_zero: "{{count}} question sans réponse",
|
|
2068
|
+
unanswered_one: "{{count}} question sans réponse",
|
|
2069
|
+
unanswered_two: "{{count}} questions sans réponse",
|
|
2070
|
+
unanswered_few: "{{count}} questions sans réponse",
|
|
2071
|
+
unanswered_many: "{{count}} questions sans réponse",
|
|
2072
|
+
unanswered_other: "{{count}} questions sans réponse",
|
|
2073
|
+
empty: "Aucune réponse enregistrée pour le moment",
|
|
2074
|
+
sectionsLabel: "Sections de l’anamnèse"
|
|
2075
|
+
},
|
|
2056
2076
|
appointmentCard: {
|
|
2057
2077
|
itemLabel: "{{patient}} — {{state}}",
|
|
2058
2078
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2064,6 +2064,26 @@ export declare const hiUi: {
|
|
|
2064
2064
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2065
2065
|
};
|
|
2066
2066
|
};
|
|
2067
|
+
readonly anamnesisSummaryCard: {
|
|
2068
|
+
readonly regionLabel: "चिकित्सा इतिहास सारांश";
|
|
2069
|
+
readonly highlighted: "हाइलाइट किया गया";
|
|
2070
|
+
readonly highlightedCount_zero: "{{count}} हाइलाइट किए गए";
|
|
2071
|
+
readonly highlightedCount_one: "{{count}} हाइलाइट किया गया";
|
|
2072
|
+
readonly highlightedCount_two: "{{count}} हाइलाइट किए गए";
|
|
2073
|
+
readonly highlightedCount_few: "{{count}} हाइलाइट किए गए";
|
|
2074
|
+
readonly highlightedCount_many: "{{count}} हाइलाइट किए गए";
|
|
2075
|
+
readonly highlightedCount_other: "{{count}} हाइलाइट किए गए";
|
|
2076
|
+
readonly reportedOn: "{{date}} को हाइलाइट किया गया";
|
|
2077
|
+
readonly reportedOnFrom: "{{date}} को हाइलाइट किया गया · {{source}}";
|
|
2078
|
+
readonly unanswered_zero: "{{count}} प्रश्नों के उत्तर नहीं दिए गए";
|
|
2079
|
+
readonly unanswered_one: "{{count}} प्रश्न का उत्तर नहीं दिया गया";
|
|
2080
|
+
readonly unanswered_two: "{{count}} प्रश्नों के उत्तर नहीं दिए गए";
|
|
2081
|
+
readonly unanswered_few: "{{count}} प्रश्नों के उत्तर नहीं दिए गए";
|
|
2082
|
+
readonly unanswered_many: "{{count}} प्रश्नों के उत्तर नहीं दिए गए";
|
|
2083
|
+
readonly unanswered_other: "{{count}} प्रश्नों के उत्तर नहीं दिए गए";
|
|
2084
|
+
readonly empty: "अभी तक कोई उत्तर दर्ज नहीं किया गया";
|
|
2085
|
+
readonly sectionsLabel: "चिकित्सा इतिहास के अनुभाग";
|
|
2086
|
+
};
|
|
2067
2087
|
readonly appointmentCard: {
|
|
2068
2088
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2069
2089
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/hi.js
CHANGED
|
@@ -2054,6 +2054,26 @@ const e = {
|
|
|
2054
2054
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2055
2055
|
}
|
|
2056
2056
|
},
|
|
2057
|
+
anamnesisSummaryCard: {
|
|
2058
|
+
regionLabel: "चिकित्सा इतिहास सारांश",
|
|
2059
|
+
highlighted: "हाइलाइट किया गया",
|
|
2060
|
+
highlightedCount_zero: "{{count}} हाइलाइट किए गए",
|
|
2061
|
+
highlightedCount_one: "{{count}} हाइलाइट किया गया",
|
|
2062
|
+
highlightedCount_two: "{{count}} हाइलाइट किए गए",
|
|
2063
|
+
highlightedCount_few: "{{count}} हाइलाइट किए गए",
|
|
2064
|
+
highlightedCount_many: "{{count}} हाइलाइट किए गए",
|
|
2065
|
+
highlightedCount_other: "{{count}} हाइलाइट किए गए",
|
|
2066
|
+
reportedOn: "{{date}} को हाइलाइट किया गया",
|
|
2067
|
+
reportedOnFrom: "{{date}} को हाइलाइट किया गया · {{source}}",
|
|
2068
|
+
unanswered_zero: "{{count}} प्रश्नों के उत्तर नहीं दिए गए",
|
|
2069
|
+
unanswered_one: "{{count}} प्रश्न का उत्तर नहीं दिया गया",
|
|
2070
|
+
unanswered_two: "{{count}} प्रश्नों के उत्तर नहीं दिए गए",
|
|
2071
|
+
unanswered_few: "{{count}} प्रश्नों के उत्तर नहीं दिए गए",
|
|
2072
|
+
unanswered_many: "{{count}} प्रश्नों के उत्तर नहीं दिए गए",
|
|
2073
|
+
unanswered_other: "{{count}} प्रश्नों के उत्तर नहीं दिए गए",
|
|
2074
|
+
empty: "अभी तक कोई उत्तर दर्ज नहीं किया गया",
|
|
2075
|
+
sectionsLabel: "चिकित्सा इतिहास के अनुभाग"
|
|
2076
|
+
},
|
|
2057
2077
|
appointmentCard: {
|
|
2058
2078
|
itemLabel: "{{patient}} — {{state}}",
|
|
2059
2079
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2061,6 +2061,26 @@ export declare const itUi: {
|
|
|
2061
2061
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2062
2062
|
};
|
|
2063
2063
|
};
|
|
2064
|
+
readonly anamnesisSummaryCard: {
|
|
2065
|
+
readonly regionLabel: "Riepilogo anamnesi";
|
|
2066
|
+
readonly highlighted: "In risalto";
|
|
2067
|
+
readonly highlightedCount_zero: "{{count}} in risalto";
|
|
2068
|
+
readonly highlightedCount_one: "{{count}} in risalto";
|
|
2069
|
+
readonly highlightedCount_two: "{{count}} in risalto";
|
|
2070
|
+
readonly highlightedCount_few: "{{count}} in risalto";
|
|
2071
|
+
readonly highlightedCount_many: "{{count}} in risalto";
|
|
2072
|
+
readonly highlightedCount_other: "{{count}} in risalto";
|
|
2073
|
+
readonly reportedOn: "In risalto dal {{date}}";
|
|
2074
|
+
readonly reportedOnFrom: "In risalto dal {{date}} · {{source}}";
|
|
2075
|
+
readonly unanswered_zero: "{{count}} domande non compilate";
|
|
2076
|
+
readonly unanswered_one: "{{count}} domanda non compilata";
|
|
2077
|
+
readonly unanswered_two: "{{count}} domande non compilate";
|
|
2078
|
+
readonly unanswered_few: "{{count}} domande non compilate";
|
|
2079
|
+
readonly unanswered_many: "{{count}} domande non compilate";
|
|
2080
|
+
readonly unanswered_other: "{{count}} domande non compilate";
|
|
2081
|
+
readonly empty: "Nessuna risposta registrata";
|
|
2082
|
+
readonly sectionsLabel: "Sezioni anamnesi";
|
|
2083
|
+
};
|
|
2064
2084
|
readonly appointmentCard: {
|
|
2065
2085
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2066
2086
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|
package/dist/i18n/locales/it.js
CHANGED
|
@@ -2033,6 +2033,26 @@ const e = {
|
|
|
2033
2033
|
unsignedDocuments_other: "{{count}} unsigned documents"
|
|
2034
2034
|
}
|
|
2035
2035
|
},
|
|
2036
|
+
anamnesisSummaryCard: {
|
|
2037
|
+
regionLabel: "Riepilogo anamnesi",
|
|
2038
|
+
highlighted: "In risalto",
|
|
2039
|
+
highlightedCount_zero: "{{count}} in risalto",
|
|
2040
|
+
highlightedCount_one: "{{count}} in risalto",
|
|
2041
|
+
highlightedCount_two: "{{count}} in risalto",
|
|
2042
|
+
highlightedCount_few: "{{count}} in risalto",
|
|
2043
|
+
highlightedCount_many: "{{count}} in risalto",
|
|
2044
|
+
highlightedCount_other: "{{count}} in risalto",
|
|
2045
|
+
reportedOn: "In risalto dal {{date}}",
|
|
2046
|
+
reportedOnFrom: "In risalto dal {{date}} · {{source}}",
|
|
2047
|
+
unanswered_zero: "{{count}} domande non compilate",
|
|
2048
|
+
unanswered_one: "{{count}} domanda non compilata",
|
|
2049
|
+
unanswered_two: "{{count}} domande non compilate",
|
|
2050
|
+
unanswered_few: "{{count}} domande non compilate",
|
|
2051
|
+
unanswered_many: "{{count}} domande non compilate",
|
|
2052
|
+
unanswered_other: "{{count}} domande non compilate",
|
|
2053
|
+
empty: "Nessuna risposta registrata",
|
|
2054
|
+
sectionsLabel: "Sezioni anamnesi"
|
|
2055
|
+
},
|
|
2036
2056
|
appointmentCard: {
|
|
2037
2057
|
itemLabel: "{{patient}} — {{state}}",
|
|
2038
2058
|
itemLabelGeneric: "{{title}} — {{state}}",
|
|
@@ -2064,6 +2064,26 @@ export declare const jaUi: {
|
|
|
2064
2064
|
readonly unsignedDocuments_other: "{{count}} unsigned documents";
|
|
2065
2065
|
};
|
|
2066
2066
|
};
|
|
2067
|
+
readonly anamnesisSummaryCard: {
|
|
2068
|
+
readonly regionLabel: "問診サマリー";
|
|
2069
|
+
readonly highlighted: "ハイライト";
|
|
2070
|
+
readonly highlightedCount_zero: "ハイライト {{count}} 件";
|
|
2071
|
+
readonly highlightedCount_one: "ハイライト {{count}} 件";
|
|
2072
|
+
readonly highlightedCount_two: "ハイライト {{count}} 件";
|
|
2073
|
+
readonly highlightedCount_few: "ハイライト {{count}} 件";
|
|
2074
|
+
readonly highlightedCount_many: "ハイライト {{count}} 件";
|
|
2075
|
+
readonly highlightedCount_other: "ハイライト {{count}} 件";
|
|
2076
|
+
readonly reportedOn: "{{date}} にハイライト";
|
|
2077
|
+
readonly reportedOnFrom: "{{date}} にハイライト · {{source}}";
|
|
2078
|
+
readonly unanswered_zero: "未回答の質問 {{count}} 件";
|
|
2079
|
+
readonly unanswered_one: "未回答の質問 {{count}} 件";
|
|
2080
|
+
readonly unanswered_two: "未回答の質問 {{count}} 件";
|
|
2081
|
+
readonly unanswered_few: "未回答の質問 {{count}} 件";
|
|
2082
|
+
readonly unanswered_many: "未回答の質問 {{count}} 件";
|
|
2083
|
+
readonly unanswered_other: "未回答の質問 {{count}} 件";
|
|
2084
|
+
readonly empty: "まだ回答が記録されていません";
|
|
2085
|
+
readonly sectionsLabel: "問診セクション";
|
|
2086
|
+
};
|
|
2067
2087
|
readonly appointmentCard: {
|
|
2068
2088
|
readonly itemLabel: "{{patient}} — {{state}}";
|
|
2069
2089
|
readonly itemLabelGeneric: "{{title}} — {{state}}";
|