@kernhq/module-quire 0.9.2 → 0.9.3
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/package.json
CHANGED
|
@@ -314,7 +314,8 @@ $effect(() => {
|
|
|
314
314
|
{#if relations.length === 0}
|
|
315
315
|
<p class="hint">{t('db_rollup_needs_relation')}</p>
|
|
316
316
|
{/if}
|
|
317
|
-
|
|
317
|
+
<!-- Disabled *with a reason*: there is nothing to gather until a relation is chosen. -->
|
|
318
|
+
<Field label={t('db_rollup_target')} hint={viaDatabaseId ? undefined : t('db_rollup_target_hint')}>
|
|
318
319
|
{#snippet children(id: string)}
|
|
319
320
|
<Select
|
|
320
321
|
{id}
|
package/src/client/i18n.ts
CHANGED
|
@@ -333,6 +333,8 @@ export const en: Record<string, Message> = {
|
|
|
333
333
|
'quire.loading': 'Loading…',
|
|
334
334
|
'quire.retry': 'Try again',
|
|
335
335
|
'quire.save': 'Save',
|
|
336
|
+
'quire.db_rollup_target_hint':
|
|
337
|
+
'Choose the relation first; the column comes from the database on its other side.',
|
|
336
338
|
}
|
|
337
339
|
|
|
338
340
|
export type QuireMessageKey = keyof typeof en
|
|
@@ -673,6 +675,7 @@ const ar: Record<string, Message> = {
|
|
|
673
675
|
'quire.loading': 'جارٍ التحميل…',
|
|
674
676
|
'quire.retry': 'أعد المحاولة',
|
|
675
677
|
'quire.save': 'حفظ',
|
|
678
|
+
'quire.db_rollup_target_hint': 'اختر العلاقة أولًا؛ يأتي العمود من قاعدة البيانات على الطرف الآخر.',
|
|
676
679
|
}
|
|
677
680
|
|
|
678
681
|
const de: Record<string, Message> = {
|
|
@@ -1002,6 +1005,8 @@ const de: Record<string, Message> = {
|
|
|
1002
1005
|
'quire.loading': 'Wird geladen…',
|
|
1003
1006
|
'quire.retry': 'Erneut versuchen',
|
|
1004
1007
|
'quire.save': 'Speichern',
|
|
1008
|
+
'quire.db_rollup_target_hint':
|
|
1009
|
+
'Wähle zuerst die Beziehung; die Spalte kommt aus der Datenbank auf ihrer anderen Seite.',
|
|
1005
1010
|
}
|
|
1006
1011
|
|
|
1007
1012
|
const fa: Record<string, Message> = {
|
|
@@ -1322,6 +1327,7 @@ const fa: Record<string, Message> = {
|
|
|
1322
1327
|
'quire.loading': 'در حال بارگذاری…',
|
|
1323
1328
|
'quire.retry': 'دوباره تلاش کنید',
|
|
1324
1329
|
'quire.save': 'ذخیره',
|
|
1330
|
+
'quire.db_rollup_target_hint': 'نخست پیوند را برگزینید؛ ستون از پایگاهدادهٔ آن سوی پیوند میآید.',
|
|
1325
1331
|
}
|
|
1326
1332
|
|
|
1327
1333
|
const tr: Record<string, Message> = {
|
|
@@ -1644,6 +1650,7 @@ const tr: Record<string, Message> = {
|
|
|
1644
1650
|
'quire.loading': 'Yükleniyor…',
|
|
1645
1651
|
'quire.retry': 'Yeniden dene',
|
|
1646
1652
|
'quire.save': 'Kaydet',
|
|
1653
|
+
'quire.db_rollup_target_hint': 'Önce ilişkiyi seçin; sütun onun diğer ucundaki veritabanından gelir.',
|
|
1647
1654
|
}
|
|
1648
1655
|
|
|
1649
1656
|
/** In the shape `defineClientModule().messages` expects. */
|