-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathastro.config.mjs
More file actions
826 lines (822 loc) · 30.1 KB
/
astro.config.mjs
File metadata and controls
826 lines (822 loc) · 30.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import react from '@astrojs/react';
import tailwindcss from '@tailwindcss/vite';
import starlightKbd from 'starlight-kbd';
import lunaria from '@lunariajs/starlight';
import lunariaConfig from './lunaria.config.json';
const locales = {
root: lunariaConfig.defaultLocale,
...lunariaConfig.locales.reduce((acc, locale) => {
// @ts-expect-error Can't add types for accumulator
acc[locale.lang] = {
label: locale.label,
lang: locale.lang,
};
return acc;
}, {}),
};
const routeMiddleware = ['./src/middleware/ignore-fallback.ts'];
const plugins = [
starlightKbd({
globalPicker: false,
types: [{ id: 'linux', label: 'Linux', default: true }],
}),
];
if (import.meta.env.PROD) {
routeMiddleware.push('./src/middleware/outdated.ts');
plugins.push(
lunaria({
route: '/localization',
})
);
}
const site = 'https://wiki.cachyos.org/';
// https://astro.build/config
export default defineConfig({
site,
vite: {
plugins: [tailwindcss()],
},
integrations: [
react(),
starlight({
locales,
plugins,
routeMiddleware,
favicon: '/favicon.png',
lastUpdated: true,
customCss: ['./src/tailwind.css'],
title: 'CachyOS',
logo: {
src: '/src/assets/logo.svg',
},
editLink: {
baseUrl: 'https://github.com/cachyos/wiki/edit/next/',
},
expressiveCode: {
themes: ['ayu-dark', 'light-plus'],
},
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/cachyos',
},
{
icon: 'twitter',
label: 'Twitter',
href: 'https://twitter.com/cachyos',
},
{
icon: 'discord',
label: 'Discord',
href: 'https://discord.gg/cachyos-862292009423470592',
},
{
icon: 'mastodon',
label: 'Mastodon',
href: 'https://fosstodon.org/@CachyOS',
},
],
head: [
{
tag: 'meta',
attrs: {
property: 'og:image',
content: site + 'og.jpg?v=1',
},
},
{
tag: 'meta',
attrs: {
property: 'twitter:image',
content: site + 'og.jpg?v=1',
},
},
],
sidebar: [
{
label: 'Getting Started',
translations: {
cs: 'Začínáme',
de: 'Erste Schritte',
es: 'Empezando',
fr: 'Bien Débuter',
ja: 'はじめに',
pl: 'Zaczynamy',
ru: 'Начало работы',
sk: 'Začíname',
pt: 'Introdução',
bg: 'Първи стъпки',
},
items: [
{
label: 'How to navigate through the wiki',
translations: {
cs: 'Jak se orientovat v wiki',
de: 'Wie man im Wiki navigiert',
es: 'Cómo navegar por la wiki',
fr: 'Bien utiliser le wiki',
ja: 'Wiki の使い方',
pl: 'Jak poruszać się po wiki',
ru: 'Как ориентироваться в вики',
sk: 'Ako sa orientovať v wiki',
pt: 'Como navegar na wiki',
bg: 'Как да се ориентирате в уикито',
},
link: 'cachyos_basic/navigation-guide',
},
{
label: 'Why CachyOS?',
translations: {
cs: 'Proč CachyOS?',
de: 'Warum CachyOS?',
es: '¿Por qué CachyOS?',
fr: 'Pourquoi CachyOS',
ja: 'CachyOS を選ぶ理由',
pl: 'Dlaczego CachyOS?',
ru: 'Почему CachyOS?',
sk: 'Prečo CachyOS?',
pt: 'Porquê o CachyOS?',
bg: 'Защо CachyOS?',
},
link: 'cachyos_basic/why_cachyos',
},
{
label: 'Download & Verify ISO',
translations: {
cs: 'Stažení a ověření ISO',
de: 'ISO herunterladen & verifizieren',
es: 'Descargar y verificar ISO',
fr: 'Télécharger et vérifier l’ISO',
ja: 'ISO のダウンロードと検証',
pl: 'Pobierz i zweryfikuj ISO',
ru: 'Скачать и проверить ISO',
sk: 'Stiahnutie a overenie ISO',
pt: 'Descarregar e Verificar ISO',
bg: 'Изтегляне и проверка на ISO',
},
link: 'cachyos_basic/download',
},
{
label: 'ISO Changelogs',
autogenerate: { directory: 'cachyos_basic/changelogs' },
translations: {
ja: 'ISO 更新ログ',
ru: 'Журналы изменений ISO',
bg: 'Списък на промените',
},
},
{
label: 'FAQ & Troubleshooting',
translations: {
cs: 'FAQ a řešení problémů',
de: 'FAQ & Fehlerbehebung',
es: 'FAQ y solución de problemas',
fr: 'FAQ & Guide de dépannage',
ja: 'FAQ とトラブルシューティング',
pl: 'FAQ i rozwiązywanie problemów',
ru: 'FAQ и устранение неполадок',
sk: 'FAQ a riešenie problémov',
pt: 'Perguntas Frequentes e Resolução de Problemas',
bg: 'FAQ и отстраняване на проблеми',
},
link: 'cachyos_basic/faq',
},
],
},
{
label: 'Installation',
translations: {
cs: 'Instalace',
de: 'Installation',
es: 'Instalación',
fr: 'Installation',
ja: 'インストール',
pl: 'Instalacja',
ru: 'Установка',
sk: 'Inštalácia',
pt: 'Instalação',
bg: 'Инсталация',
},
items: [
{
label: 'Requirements & USB Preparation',
translations: {
cs: 'Požadavky a příprava USB',
de: 'Anforderungen & USB-Vorbereitung',
es: 'Requisitos y preparación de USB',
fr: 'Exigences & Préinstallation',
ja: '動作要件と USB の準備',
pl: 'Wymagania i przygotowanie USB',
ru: 'Требования и подготовка USB',
sk: 'Požiadavky a príprava USB',
pt: 'Requisitos e Preparação do USB',
bg: 'Изисквания и подготовка на USB',
},
link: 'installation/installation_prepare',
},
{
label: 'Boot Managers',
translations: {
cs: 'Správci zavádění',
de: 'Boot-Manager',
es: 'Gestores de arranque',
fr: "Gestionnaire d'amorçage",
ja: 'ブートマネージャー',
pl: 'Boot menedżer',
ru: 'Boot менеджер',
sk: 'Boot manažéry',
pt: 'Gestores de Arranque',
bg: 'Boot мениджъри',
},
link: 'installation/boot_managers',
},
{
label: 'Filesystem',
translations: {
cs: 'Souborový systém',
de: 'Dateisystem',
es: 'Sistema de archivos',
fr: 'Système de fichier',
ja: 'ファイルシステム',
pl: 'System plików',
ru: 'Файловая система',
sk: 'Súborový systém',
pt: 'Sistema de Ficheiros',
bg: 'Файлова система',
},
link: 'installation/filesystem',
},
{
label: 'Desktop Environments',
translations: {
cs: 'Desktop prostředí',
de: 'Desktop-Umgebungen',
es: 'Entornos de escritorio',
fr: 'Environnements de bureau',
ja: 'デスクトップ環境',
pl: 'Środowiska graficzne',
ru: 'Окружения рабочего стола',
sk: 'Desktopové prostredia',
pt: 'Ambientes de Trabalho',
bg: 'Графични среди',
},
link: 'installation/desktop_environments',
},
{
label: 'Guides',
translations: {
cs: 'Průvodce',
de: 'Anleitungen',
es: 'Guías',
fr: 'Guides',
ja: 'ガイド',
pl: 'Przewodniki',
ru: 'Руководства',
sk: 'Príručky',
pt: 'Guias',
bg: 'Ръководства',
},
items: [
{
label: 'Desktop Edition',
translations: {
cs: 'Desktop verze',
de: 'Desktop Edition',
es: 'Edición de escritorio',
fr: 'Edition Desktop',
ja: 'デスクトップ版',
pl: 'Wersja desktop',
ru: 'Десктоп версия',
sk: 'Desktop verzia',
pt: 'Edição Desktop',
bg: 'Desktop версия',
},
link: 'installation/installation_on_root',
},
{
label: 'Handheld Edition',
translations: {
cs: 'Handheld verze',
de: 'Handheld Edition',
es: 'Edición para dispositivos portátiles',
fr: 'Edition Handheld',
ja: 'ハンドヘルド版',
pl: 'Wersja handheld',
ru: 'Портативная версия',
sk: 'Handheld verzia',
pt: 'Edição Handheld',
bg: 'Handheld версия',
},
link: 'installation/installation_handheld',
},
{
label: 'T2 MacBook',
link: 'installation/installation_t2macbook',
},
],
},
],
},
{
label: 'CachyOS Features',
translations: {
cs: 'Funkce CachyOS',
de: 'CachyOS Funktionen',
es: 'Funciones de CachyOS',
fr: 'Fonctionnalités de CachyOS',
ja: 'CachyOS の機能',
pl: 'Funkcje CachyOS',
ru: 'Возможности CachyOS',
sk: 'Funkcie CachyOS',
pt: 'Funcionalidades do CachyOS',
bg: 'Функции на CachyOS',
},
items: [
{
label: 'CachyOS chroot Helper (cachy-chroot)',
link: 'features/cachy_chroot',
translations: {
cs: 'Pomůcka pro chroot CachyOS (cachy-chroot)',
de: 'CachyOS chroot-Helfer (cachy-chroot)',
es: 'CachyOS chroot asistente (cachy-chroot)',
fr: 'CachyOS chroot assistant (cachy-chroot)',
ja: 'CachyOS chroot ヘルパー (cachy-chroot)',
pl: 'CachyOS chroot menedżer (cachy-chroot)',
ru: 'CachyOS chroot помощник (cachy-chroot)',
sk: 'Pomôcka pre chroot CachyOS (cachy-chroot)',
pt: 'Assistente chroot do CachyOS (cachy-chroot)',
bg: 'CachyOS chroot Помощник (cachy-chroot)',
},
},
{
label: 'CachyOS Hardware Detection (chwd)',
autogenerate: { directory: 'features/chwd' },
translations: {
cs: 'Detekce hardwaru CachyOS (chwd)',
de: 'CachyOS Hardware-Erkennung (chwd)',
es: 'CachyOS detección de hardware (chwd)',
fr: 'CachyOS Détection de Matériel (chwd)',
ja: 'CachyOS ハードウェア検出 (chwd)',
pl: 'CachyOS Wykrywanie sprzętu (chwd)',
ru: 'CachyOS Обнаружение оборудования (chwd)',
sk: 'Detekcia hardvéru CachyOS (chwd)',
pt: 'Deteção de Hardware do CachyOS (chwd)',
bg: 'CachyOS откриване на хардуер (chwd)',
},
},
{
label: 'CachyOS Kernel',
translations: {
cs: 'Jádro CachyOS',
de: 'CachyOS-Kernel',
es: 'Kernel CachyOS',
fr: 'Noyau CachyOS',
ja: 'CachyOS カーネル',
pl: 'Jądro CachyOS',
ru: 'Ядро CachyOS',
sk: 'Jadro CachyOS',
pt: 'Kernel do CachyOS',
bg: 'Ядро на CachyOS',
},
link: 'features/kernel',
},
{
label: 'Kernel Manager',
translations: {
cs: 'Správce jader',
de: 'Kernel-Manager',
es: 'Gestor de núcleos',
fr: 'Gestion de Noyaux',
ja: 'カーネルマネージャー',
pl: 'Menedżer jądra',
ru: 'Менеджер ядер',
sk: 'Správca jadra',
pt: 'Gestor de Kernel',
bg: 'Мениджър на ядра',
},
link: 'features/kernel_manager',
},
{
label: 'CachyOS Settings',
translations: {
cs: 'Nastavení CachyOS',
de: 'CachyOS-Einstellungen',
es: 'Ajustes de CachyOS',
fr: 'Paramètres de CachyOS',
ja: 'CachyOS 設定',
pl: 'Ustawienia CachyOS',
ru: 'Настройки CachyOS',
sk: 'Nastavenia CachyOS',
pt: 'Definições do CachyOS',
bg: 'Настройки на CachyOS',
},
link: 'features/cachyos_settings',
},
{
label: 'Optimized Repositories',
translations: {
cs: 'Optimalizované repozitáře',
de: 'Optimierte Repositories',
es: 'Repositorios optimizados',
fr: 'Dépôts Optimisés',
ja: '最適化リポジトリ',
pl: 'Zoptymalizowane repozytoria',
ru: 'Оптимизированные репозитории',
sk: 'Optimalizované repozitáre',
pt: 'Repositórios Otimizados',
bg: 'Оптимизирани репоситорита',
},
link: 'features/optimized_repos',
},
],
},
{
label: 'Configuration',
translations: {
cs: 'Nastavení',
de: 'Konfiguration',
es: 'Configuración',
fr: 'Configuration',
ja: '設定',
pl: 'Konfiguracja',
ru: 'Конфигурация',
sk: 'Konfigurácia',
pt: 'Configuração',
bg: 'Конфигурация',
},
items: [
{
label: 'Secure Boot Setup',
translations: {
cs: 'Nastavení zabezpečeného spouštění',
de: 'Secure Boot-Einrichtung',
es: 'Configuración de arranque seguro',
fr: 'Configuration de Secure Boot',
ja: 'セキュアブートの設定',
pl: 'Konfiguracja Secure Boot',
ru: 'Настройка Secure Boot',
sk: 'Nastavenie zabezpečeného spúšťania',
pt: 'Configuração do Secure Boot',
bg: 'Настройка на Secure Boot',
},
link: 'configuration/secure_boot_setup',
},
{
label: 'Post Install Recommendations',
translations: {
cs: 'Návrhy po instalaci',
de: 'Post-Install-Raten',
es: 'Recomendaciones post-instalación',
fr: 'Recommendations Post-Installation',
ja: 'インストール後の推奨設定',
pl: 'Rekomendacje po instalacji',
ru: 'Рекомендации после установки',
sk: 'Rekomendácie po inštalácii',
pt: 'Recomendações Pós-Instalação',
bg: 'Препоръки след инсталация',
},
link: 'configuration/post_install_setup',
},
{
label: 'Boot Manager Configuration',
translations: {
cs: 'Konfigurace správce spouštění',
de: 'Boot-Manager-Konfiguration',
es: 'Configuración del gestor de arranque',
fr: "Configuration du gestionnaire d'amorçage",
ja: 'ブートマネージャーの設定',
pl: 'Konfiguracja Boot Managera',
ru: 'Конфигурация Boot менеджера',
sk: 'Konfigurácia Boot manažéra',
pt: 'Configuração do Gestor de Arranque',
bg: 'Конфигурация на мениджъра за зареждане',
},
link: 'configuration/boot_manager_configuration',
},
{
label: 'Btrfs Snapshots',
translations: {
cs: 'Btrfs snapshoty',
de: 'Btrfs-Snapshots',
es: 'Snapshots de Btrfs',
fr: 'Snapshots Btrfs',
ja: 'Btrfs スナップショット',
pl: 'Snapshoty Btrfs',
ru: 'Снимки Btrfs',
sk: 'Btrfs snapshoty',
pt: 'Snapshots Btrfs',
bg: 'Btrfs snapshots',
},
link: 'configuration/btrfs_snapshots',
},
{
label: 'Dual GPU',
translations: {
cs: 'Dvojité GPU',
de: 'Doppelte GPU',
es: 'GPU dual',
fr: 'Double GPU',
ja: 'デュアル GPU',
pl: 'Dwie GPU',
ru: 'Двойная GPU',
sk: 'Dvojité GPU',
pt: 'GPU Dupla',
bg: 'Две графични карти',
},
link: 'configuration/dual_gpu',
},
{
label: 'Gaming',
link: 'configuration/gaming',
translations: {
cs: 'Hraní her',
de: 'Gaming',
es: 'Juegos',
fr: 'Gaming',
ja: 'ゲーム',
pl: 'Gry',
ru: 'Игры',
sk: 'Hranie hier',
pt: 'Jogos / Gaming',
bg: 'Гейминг',
},
},
{
label: 'General System Tweaks',
translations: {
cs: 'Obecné úpravy systému',
de: 'Allgemeine Systemanpassungen',
es: 'Ajustes generales del sistema',
fr: 'Ajustements généraux du système',
ja: 'システムの全般的なチューニング',
pl: 'Ogólne poprawki systemowe',
ru: 'Общие настройки системы',
sk: 'Všeobecné systémové úpravy',
pt: 'Ajustes Gerais do Sistema',
bg: 'Общи системни настройки',
},
link: 'configuration/general_system_tweaks',
},
{
label: 'sched-ext Tutorial',
translations: {
cs: 'sched-ext Tutoriál',
de: 'sched-ext Anleitung',
es: 'Tutorial de sched-ext',
fr: 'Tutorial sur sched-ext',
ja: 'sched-ext チュートリアル',
pl: 'sched-ext Poradnik',
ru: 'Руководство по sched-ext',
sk: 'sched-ext návod',
pt: 'Tutorial do sched-ext',
bg: 'Ръководство за sched-ext',
},
link: 'configuration/sched-ext',
},
{
label: 'Automounting Additional Drives',
translations: {
cs: 'Automatické připojování dalších disků',
de: 'Automatisches Einhängen zusätzlicher Laufwerke',
es: 'Montaje automático de unidades adicionales',
fr: 'Montage automatique de disques supplémentaires',
ja: '追加ドライブの自動マウント',
pl: 'Automatyczne montowanie dodatkowych dysków',
ru: 'Автоматическое монтирование дополнительных дисков',
sk: 'Automatické pripájanie ďalších diskov',
pt: 'Montagem Automática de Unidades Adicionais',
bg: 'Автомонтиране на допълнителни дискове',
},
link: 'configuration/automount_with_fstab',
},
{
label: 'Enabling Hardware Acceleration in Google Chrome',
translations: {
cs: 'Povolení hardwarové akcelerace v Google Chrome',
de: 'Hardware-Beschleunigung in Google Chrome aktivieren',
es: 'Habilitar la aceleración por hardware en Google Chrome',
fr: "Activer l'accélération matérielle sur Google Chrome",
ja: 'Google Chrome でハードウェアアクセラレーションを有効にする',
pl: 'Włączanie akceleracji sprzętowej w Google Chrome',
ru: 'Включение аппаратного ускорения в Google Chrome',
sk: 'Povolenie hardvérovej akcelerácie v Google Chrome',
pt: 'Ativar Aceleração de Hardware no Google Chrome',
bg: 'Включване на хардуерно ускорение в Google Chrome',
},
link: 'configuration/enabling_hardware_acceleration_in_google_chrome',
},
{
label: 'Desktop Environments',
autogenerate: { directory: 'configuration/desktop_environments' },
translations: {
ja: 'デスクトップ環境',
ru: 'Окружения рабочего стола',
bg: 'Графични среди',
},
},
],
},
{
label: 'Virtualization',
translations: {
ja: '仮想化',
pt: 'Virtualização',
ru: 'Виртуализация',
bg: 'Виртуализация',
},
items: [
{
label: 'QEMU and VMM Setup',
translations: {
ja: 'QEMU と VMM のセットアップ',
pt: 'Configuração do QEMU e VMM',
ru: 'Настройка QEMU и VMM',
bg: 'Настройка на QEMU и VMM',
},
link: 'virtualization/qemu_and_vmm_setup',
},
{
label: 'QEMU User Session',
translations: {
ja: 'QEMU ユーザーセッション',
pt: 'Sessão de Utilizador QEMU',
ru: 'Пользовательская сессия QEMU',
bg: 'Потребителска сесия на QEMU',
},
link: 'virtualization/qemu_user_session',
},
{
label: 'EGL Headless',
translations: {
ja: 'EGL ヘッドレス',
pt: 'EGL Headless',
ru: 'Безэкранный EGL',
bg: 'EGL Headless',
},
link: 'virtualization/egl_headless',
},
{
label: 'Virtio-Venus',
translations: {
ja: 'Virtio-Venus',
pt: 'Virtio-Venus',
ru: 'Virtio-Venus',
bg: 'Virtio-Venus',
},
link: 'virtualization/virtio-venus',
},
],
},
{
label: 'Support',
translations: {
cs: 'Podpora',
de: 'Unterstützung',
es: 'Soporte',
fr: 'Support',
ja: 'サポート',
pl: 'Wsparcie',
ru: 'Поддержка',
sk: 'Podpora',
pt: 'Suporte',
bg: 'Поддръжка',
},
items: [
{
label: 'Donation',
translations: {
cs: 'Dobrovolné příspěvky',
de: 'Spende',
es: 'Donación',
fr: 'Donations',
ja: '寄付',
pl: 'Darowizna',
ru: 'Пожертвования',
sk: 'Darcovstvo',
pt: 'Doações',
bg: 'Подкрепи ни',
},
link: 'support/donation',
},
{
label: 'Social',
translations: {
cs: 'Sociální sítě',
de: 'Soziale Medien',
es: 'Redes sociales',
fr: 'Réseaux Sociaux',
ja: 'コミュニティ',
pl: 'Media społecznościowe',
ru: 'Социальные сети',
sk: 'Sociálne siete',
pt: 'Redes Sociais',
bg: 'Социални мрежи',
},
link: 'support/social',
},
],
},
{
label: 'Policy',
translations: {
cs: 'Podmínky',
de: 'Regeln',
es: 'Política',
fr: 'Politique',
ja: 'ポリシー',
pl: 'Zasady',
ru: 'Правила',
sk: 'Politika',
pt: 'Políticas',
bg: 'Политики',
},
items: [
{
label: 'Community Rules',
translations: {
cs: 'Pravidla komunity',
de: 'Gemeinschaftsregeln',
es: 'Reglas de la comunidad',
fr: 'Règles de la communauté',
ja: 'コミュニティルール',
pl: 'Zasady społeczności',
ru: 'Правила сообщества',
sk: 'Pravidlá komunity',
pt: 'Regras da Comunidade',
bg: 'Правила на общността',
},
link: 'policy/community-rules',
},
{
label: 'Code of Conduct',
translations: {
cs: 'Kodex chování',
de: 'Verhaltenskodex',
es: 'Código de conducta',
fr: 'Code de Conduite',
ja: '行動規範',
pl: 'Kodeks postępowania',
ru: 'Кодекс поведения',
sk: 'Kódex správania',
pt: 'Código de Conduta',
bg: 'Кодекс за Поведение',
},
link: 'policy/code_of_conduct',
},
{
label: 'Terms of Service',
translations: {
cs: 'Obchodní podmínky',
de: 'Nutzungsbedingungen',
es: 'Términos de servicio',
fr: "Conditions générales d'utilisation",
ja: '利用規約',
pl: 'Warunki korzystania z usługi',
ru: 'Условия обслуживания',
sk: 'Podmienky služby',
pt: 'Termos de Serviço',
bg: 'Условия за ползване',
},
link: 'policy/terms_of_service',
},
{
label: 'Privacy Policy',
translations: {
cs: 'Zásady ochrany osobních údajů',
de: 'Datenschutz-Bestimmungen',
es: 'Política de privacidad',
fr: 'Vie Privée',
ja: 'プライバシーポリシー',
pl: 'Polityka prywatności',
ru: 'Политика конфиденциальности',
sk: 'Zásady ochrany osobných údajov',
pt: 'Política de Privacidade',
bg: 'Политика за поверителност',
},
link: 'policy/privacy_policy',
},
{
label: 'Repository Policy',
translations: {
cs: 'Repozitářní politika',
de: 'Repository Regeln',
es: 'Política de repositorios',
fr: 'Politique des dépôts',
ja: 'リポジトリポリシー',
pl: 'Polityka repozytoriów',
ru: 'Правила репозитория',
sk: 'Politika repozitárov',
pt: 'Política de Repositórios',
bg: 'Политика за репоситорита',
},
link: 'policy/repository_policy',
},
],
},
],
}),
],
});