-
Notifications
You must be signed in to change notification settings - Fork 132
/
languages.js
1655 lines (1548 loc) · 76.7 KB
/
languages.js
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
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Material You NewTab
* Copyright (c) 2023-2024 XengShi
* Licensed under the GNU General Public License v3.0 (GPL-3.0)
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*/
// Translation data
const translations = {
"en": {
// Menu Items
"feedback": "Feedback",
"resetsettings": "Reset Settings",
"menuCloseText": "Close",
// Shortcuts
"shortcutsText": "Shortcuts",
"enableShortcutsText": "Show saved shortcuts",
"editShortcutsText": "Edit Shortcuts",
"editShortcutsList": "Saved Shortcuts",
"shortcutsInfoText": "Choose which shortcuts get shown",
"adaptiveIconText": "Adaptive Icon Shapes",
"adaptiveIconInfoText": "Shortcut icons will appear smaller",
"ai_tools_button": "AI-Tools",
"enable_ai_tools": "Show shortcuts for AI tools",
"googleAppsMenuText": "Google Apps",
"googleAppsMenuInfo": "Show shortcuts for Google Apps",
// Digital Clock
"digitalclocktittle": "Digital Clock",
"digitalclockinfo": "Switch to the digital clock",
"timeformattittle": "12-Hour Format",
"timeformatinfo": "Use 12-hour time format",
"greetingtittle": "Greeting",
"greetinginfo": "Show greeting below custom text",
// Misc
"userTextTitle": "Customizable Text",
"userTextInfo": "Show custom text below the clock",
"fahrenheitCelsiusCheckbox": "Switch to Fahrenheit",
"fahrenheitCelsiusText": "Refresh the page to apply changes",
"micIconTitle": "Hide Microphone Icon",
"micIconInfo": "If voice typing is not working",
"search_suggestions_button": "Search Suggestions",
"search_suggestions_text": "Enable search suggestions",
// Proxy
"useproxytitletext": "Proxy Bypass",
"useproxyText": "If search suggestions aren't working",
"ProxyText": "CORS Bypass Proxy",
"ProxySubtext": "Add your own CORS bypass proxy",
"HostproxyButton": "Host your own proxy",
"saveproxy": "Save",
// Location
"UserLocText": "Enter your Location",
"UserLocSubtext": "If the weather location isn't correct",
"userLoc": "Your City or Coordinates (Latitude, Longitude)",
"InputOptionsButton": "Input options",
"saveLoc": "Save",
// Weather
"WeatherApiText": "Enter your WeatherAPI key",
"WeatherApiSubtext": "If the weather functionality isn't working",
"userAPI": "Your weatherAPI key",
"LearnMoreButton": "Learn more",
"saveAPI": "Save",
// End of Menu Items
// Body Items
// Calendar
"days": ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
"months": ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
// End of Calendar
// Weather
"humidityLevel": "Humidity",
"feelsLike": "Feels",
"location": "Earth",
// End of Weather
// New Tab Item
"conditionText": "Hello! How are you today?",
"enterBtn": "Search",
"searchPlaceholder": "Type here...",
"listenPlaceholder": "Listening...",
"searchWithHint": "Search With",
"ai_tools": "AI Tools",
"userText": "Click here to edit",
"googleAppsHover": "Google Apps", // Keep untranslated if text width is longer
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Good Morning!",
"afternoon": "Good Afternoon!",
"evening": "Good Evening!"
},
// Search Engines and rest
"googleEngine": "Google",
"duckEngine": "Duck", // DuckDuckGo
"bingEngine": "Bing",
"braveEngine": "Brave",
"youtubeEngine": "YouTube",
"chatGPT": "ChatGPT",
"gemini": "Gemini",
"copilot": "Copilot",
"firefly": "Adobe Firefly",
"github": "GitHub",
},
// Portuguese
"pt": {
// Menu Items
"feedback": "Feedback",
"resetsettings": "Redefinir Configurações",
"menuCloseText": "Fechar",
// Shortcuts
"shortcutsText": "Atalhos",
"enableShortcutsText": "Ativar/desativar atalhos",
"editShortcutsText": "Editar Atalhos",
"editShortcutsList": "Editar Atalhos",
"shortcutsInfoText": "Escolha quais atalhos serão exibidos",
"adaptiveIconText": "Formas de Ícone Adaptativo",
"adaptiveIconInfoText": "Os ícones de atalhos serão sempre redondos",
"ai_tools_button": "Ferramentas de IA",
"enable_ai_tools": "Ativar/desativar atalhos de ferramentas de IA",
"googleAppsMenuText": "Apps do Google",
"googleAppsMenuInfo": "Mostrar atalhos para os Apps do Google",
// Digital Clock
"digitalclocktittle": "Relógio Digital",
"digitalclockinfo": "Ativar/desativar o Relógio Digital",
"timeformattittle": "Usar Formato de 12h",
"timeformatinfo": "Usar formato de hora de 12 horas",
"greetingtittle": "Saudação",
"greetinginfo": "Mostrar saudação abaixo do texto personalizado",
// Misc
"userTextTitle": "Texto Personalizável",
"userTextInfo": "Mostrar texto personalizado abaixo do relógio",
"fahrenheitCelsiusCheckbox": "Alternar para Fahrenheit",
"fahrenheitCelsiusText": "Atualize a página para ver as atualizações",
"micIconTitle": "Ocultar Icone do Microfone",
"micIconInfo": "Se a digitação por voz não estiver funcionando",
"search_suggestions_button": "Sugestões de Pesquisa",
"search_suggestions_text": "Ativar/desativar Sugestões de Pesquisa",
// Proxy
"useproxytitletext": "Bypass de Proxy",
"useproxyText": "Se as sugestões de pesquisa não estiverem funcionando",
"ProxyText": "Proxy de Bypass CORS",
"ProxySubtext": "Adicione seu próprio Proxy de Bypass CORS",
"HostproxyButton": "Hospede Seu Próprio Proxy",
"saveproxy": "Salvar",
// Location
"UserLocText": "Insira sua localização",
"UserLocSubtext": "Se a localização do clima não estiver correta",
"userLoc": "Sua localização (Cidade/Aletitude,Longitude)",
"InputOptionsButton": "Opções de Entrada",
"saveLoc": "Salvar",
// Weather
"WeatherApiText": "Insira sua própria chave da API de Clima",
"WeatherApiSubtext": "Se a funcionalidade do clima não estiver funcionando",
"userAPI": "Sua chave da WeatherAPI",
"LearnMoreButton": "Saiba Mais",
"saveAPI": "Salvar",
// End of Menu Items
// Body Items
// Calendar
"days": ['Domingo', 'Segunda-feira', 'Terça-feira', 'Quarta-feira', 'Quinta-feira', 'Sexta-feira', 'Sábado'],
"months": ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro', 'Dezembro'],
// End of Calendar
// Weather
"humidityLevel": "Umidade",
"feelsLike": "Sensação de",
"location": "Terra",
// End of Weather
// New Tab Item
"conditionText": "Olá! Como você está hoje?",
"enterBtn": "Pesquisar",
"searchPlaceholder": "Digite sua consulta...",
"listenPlaceholder": "Ouvindo...",
"searchWithHint": "Pesquisar Com",
"ai_tools": "Ferramentas de IA",
"userText": "Clique aqui para editar",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Bom dia!",
"afternoon": "Boa tarde!",
"evening": "Boa noite!"
},
},
// Chinese (Simplified)
// Machine translated some elements, please verify and delete this comment
"zh": {
// Menu Items
"feedback": "反馈",
"resetsettings": "重置设置",
"menuCloseText": "关闭",
// Shortcuts
"shortcutsText": "快捷方式",
"enableShortcutsText": "启用/禁用快捷方式",
"editShortcutsText": "编辑快捷方式",
"editShortcutsList": "编辑快捷方式",
"shortcutsInfoText": "选择要显示的快捷方式",
"adaptiveIconText": "自适应图标形状",
"adaptiveIconInfoText": "快捷方式图标将始终为圆形",
"ai_tools_button": "AI工具",
"enable_ai_tools": "显示AI工具快捷方式",
"googleAppsMenuText": "谷歌应用",
"googleAppsMenuInfo": "显示谷歌应用的快捷方式",
// Digital Clock
"digitalclocktittle": "数字时钟",
"digitalclockinfo": "启用/禁用数字时钟",
"timeformattittle": "使用12小时格式",
"timeformatinfo": "使用12小时制时间格式",
"greetingtittle": "问候",
"greetinginfo": "在自定义文本下显示问候",
// Misc
"userTextTitle": "可自定义文本",
"userTextInfo": "在时钟下方显示自定义文本",
"fahrenheitCelsiusCheckbox": "切换到华氏温度",
"fahrenheitCelsiusText": "刷新页面以查看更新",
"micIconTitle": "隐藏麦克风图标",
"micIconInfo": "如果语音输入不起作用",
"search_suggestions_button": "搜索建议",
"search_suggestions_text": "启用/禁用搜索建议",
// Proxy
"useproxytitletext": "代理绕过",
"useproxyText": "如果搜索建议无法正常工作",
"ProxyText": "CORS绕过代理",
"ProxySubtext": "添加您自己的CORS绕过代理",
"HostproxyButton": "托管您自己的代理",
"saveproxy": "保存",
// Location
"UserLocText": "输入您的位置",
"UserLocSubtext": "如果天气位置不正确",
"userLoc": "您的位置(城市/纬度,经度)",
"InputOptionsButton": "输入选项",
"saveLoc": "保存",
// Weather
"WeatherApiText": "输入您自己的天气API密钥",
"WeatherApiSubtext": "如果天气功能无法正常工作",
"userAPI": "您的天气API密钥",
"LearnMoreButton": "了解更多",
"saveAPI": "保存",
// End of Menu Items
// Body Items
// Calendar
"days": ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六'],
"months": ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
// End of Calendar
// Weather
"humidityLevel": "湿度",
"feelsLike": "体感温度",
"location": "地球",
// End of Weather
// New Tab Item
"conditionText": "你好!今天怎么样?",
"enterBtn": "搜索",
"searchPlaceholder": "输入搜索内容...",
"listenPlaceholder": "正在聆听...",
"searchWithHint": "搜索引擎",
"ai_tools": "AI工具",
"userText": "点击这里编辑",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "早上好!",
"afternoon": "下午好!",
"evening": "晚上好!"
},
// Search Engines and rest
"googleEngine": "谷歌",
"duckEngine": "鸭鸭狗",
"bingEngine": "必应",
"braveEngine": "勇敢",
"youtubeEngine": "优兔",
"chatGPT": "聊天GPT",
"gemini": "双子座",
"copilot": "副驾驶",
"firefly": "Adobe Firefly",
"github": "GitHub",
"googleAppsHover": "谷歌应用",
},
// Hindi
"hi": {
// Menu Items
"feedback": "प्रतिक्रिया",
"resetsettings": "सेटिंग्स रीसेट करें",
"menuCloseText": "बंद करें",
// Shortcuts
"shortcutsText": "शॉर्टकट्स",
"enableShortcutsText": "सहेजे गए शॉर्टकट प्रदर्शित करें",
"editShortcutsText": "शॉर्टकट्स संपादित करें",
"editShortcutsList": "सहेजे गए शॉर्टकट",
"shortcutsInfoText": "निर्धारित करें कि कौन से शॉर्टकट प्रदर्शित किए जाएँ",
"adaptiveIconText": "अनुकूल आइकन आकृतियाँ",
"adaptiveIconInfoText": "शॉर्टकट आइकन छोटे आकार में प्रदर्शित करें",
"ai_tools_button": "AI-उपकरण",
"enable_ai_tools": "AI उपकरणों के शॉर्टकट्स प्रदर्शित करें",
"googleAppsMenuText": "गूगल ऐप्स",
"googleAppsMenuInfo": "गूगल ऐप्स के शॉर्टकट्स प्रदर्शित करें",
// Digital Clock
"digitalclocktittle": "डिजिटल घड़ी",
"digitalclockinfo": "डिजिटल घड़ी पर स्विच करें",
"timeformattittle": "12 घंटे का प्रारूप",
"timeformatinfo": "12 घंटे का समय प्रारूप उपयोग करें",
"greetingtittle": "अभिवादन",
"greetinginfo": "कस्टम टेक्स्ट के नीचे अभिवादन दिखाएँ",
// Misc
"userTextTitle": "कस्टमाइज़ेबल टेक्स्ट",
"userTextInfo": "घड़ी के नीचे कस्टम टेक्स्ट दिखाएँ",
"fahrenheitCelsiusCheckbox": "तापमान फ़ारेनहाइट में बदलें",
"fahrenheitCelsiusText": "बदलाव के लिए पृष्ठ को रीफ्रेश करें",
"micIconTitle": "माइक्रोफोन आइकन छिपाएँ",
"micIconInfo": "अगर वॉइस टाइपिंग काम नहीं कर रहा है",
"search_suggestions_button": "खोज सुझाव",
"search_suggestions_text": "खोज सुझाव सक्षम करें",
// Proxy
"useproxytitletext": "प्रॉक्सी बायपास",
"useproxyText": "यदि खोज सुझाव काम नहीं कर रहे हैं",
"ProxyText": "CORS बायपास प्रॉक्सी",
"ProxySubtext": "अपना CORS बायपास प्रॉक्सी जोड़ें",
"HostproxyButton": "अपना प्रॉक्सी संचालित करें",
"saveproxy": "सहेजें",
// Location
"UserLocText": "अपना स्थान दर्ज करें",
"UserLocSubtext": "यदि मौसम स्थान सही नहीं है",
"userLoc": "आपका शहर या निर्देशांक (अक्षांश, देशांतर)",
"InputOptionsButton": "इनपुट विकल्प",
"saveLoc": "सहेजें",
// Weather
"WeatherApiText": "अपनी WeatherAPI कुंजी दर्ज करें",
"WeatherApiSubtext": "यदि मौसम सुविधा काम नहीं कर रही है",
"userAPI": "आपकी WeatherAPI कुंजी",
"LearnMoreButton": "और जानें",
"saveAPI": "सहेजें",
// End of Menu Items
// Body Items
// Calendar
"days": ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], // Truncated for display
// "days": ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'], // Full
"months": ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितम्बर', 'अक्टूबर', 'नवंबर', 'दिसंबर'],
// "months": ['जन', 'फर', 'मार्च', 'अप्र', 'मई', 'जून', 'जुला', 'अग', 'सित', 'अक्टू', 'नव', 'दिस'], // Truncated
// Weather
"humidityLevel": "नमी",
"feelsLike": "महसूस",
"location": "पृथ्वी",
// End of Weather
// New Tab Item
"conditionText": "नमस्ते! आप आज कैसे हैं?",
"enterBtn": "खोजें",
"searchPlaceholder": "यहाँ लिखें...",
"listenPlaceholder": "सुन रहे हैं...",
"searchWithHint": "खोज माध्यम",
"ai_tools": "AI उपकरण",
"userText": "यहाँ अपना टेक्स्ट लिखें",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "सुप्रभात!",
"afternoon": "शुभ अपराह्न!",
"evening": "शुभ संध्या!"
},
// Search Engines and rest
"googleEngine": "गूगल",
"duckEngine": "डकडकगो",
"bingEngine": "बिंग",
"braveEngine": "ब्रेव",
"youtubeEngine": "यूट्यूब",
"chatGPT": "चैटGPT",
"gemini": "जेमिनी",
"copilot": "कोपायलट",
"firefly": "एडोबी फायरफ्लाई",
"github": "गिटहब",
"googleAppsHover": "गूगल ऐप्स",
},
// Czech
"cs": {
// Menu Items
"feedback": "Zpětná vazba",
"resetsettings": "Resetovat nastavení",
"menuCloseText": "Zavřít",
// Shortcuts
"shortcutsText": "Zkratky",
"enableShortcutsText": "Zobrazí zkratky",
"editShortcutsText": "Upravit zkratky",
"editShortcutsList": "Uložené zkratky",
"shortcutsInfoText": "Vyberte, které zkratky se mají zobrazit",
"adaptiveIconText": "Adaptivní tvary ikon",
"adaptiveIconInfoText": "Ikony zkratek se zmenší",
"ai_tools_button": "AI nástroje",
"enable_ai_tools": "Zobrazí zkratky AI nástrojů",
"googleAppsMenuText": "Google aplikace",
"googleAppsMenuInfo": "Zobrazí zkratky Google aplikací",
// Digital Clock
"digitalclocktittle": "Digitální hodiny",
"digitalclockinfo": "Přepne hodiny na digitální",
"timeformattittle": "12hodinový formát",
"timeformatinfo": "Použije se 12hodinový formát času",
"greetingtittle": "Pozdrav",
"greetinginfo": "Zobrazí pozdrav pod upravitelným textem",
// Misc
"userTextTitle": "Upravitelný text",
"userTextInfo": "Zobrazí upravitelný text pod hodinami",
"fahrenheitCelsiusCheckbox": "Přepnout na stupně Fahrenheita",
"fahrenheitCelsiusText": "Změny se projeví po obnovení stránky",
"micIconTitle": "Skrýt ikonu mikrofonu",
"micIconInfo": "Pokud nefunguje hlasové vyhledávání",
"search_suggestions_button": "Návrhy ve vyhledávání",
"search_suggestions_text": "Zapne návrhy vyhledávání",
// Proxy
"useproxytitletext": "Obcházení proxy",
"useproxyText": "Pokud nefungují návrhy ve vyhledávání",
"ProxyText": "Proxy pro obcházení CORS",
"ProxySubtext": "Nastavte si vlastní proxy pro obcházení CORS",
"HostproxyButton": "Provozování vlastní proxy",
"saveproxy": "Uložit",
// Location
"UserLocText": "Zadejte svou polohu",
"UserLocSubtext": "Pokud není správná poloha počasí",
"userLoc": "Město nebo souřadnice (šířka, délka)",
"InputOptionsButton": "Co lze zadat",
"saveLoc": "Uložit",
// Weather
"WeatherApiText": "Zadejte svůj klíč k WeatherAPI",
"WeatherApiSubtext": "Pokud nefunguje funkce počasí",
"userAPI": "Váš klíč k WeatherAPI",
"LearnMoreButton": "Zjistit více",
"saveAPI": "Uložit",
// End of Menu Items
// Body Items
// Calendar
"days": ["neděle", "pondělí", "úterý", "středa", "čtvrtek", "pátek", "sobota"],
"months": ["ledna", "února", "března", "dubna", "května", "června", "července", "srpna", "září", "října", "listopadu", "prosince"],
// End of Calendar
// Weather
"humidityLevel": "Vlhkost",
"feelsLike": "Pocitová teplota",
"location": "Země",
// End of Weather
// New Tab Item
"conditionText": "Dobrý den! Jak se máte?",
"enterBtn": "Vyhledat",
"searchPlaceholder": "Zadejte hledaný výraz...",
"listenPlaceholder": "Poslouchám...",
"searchWithHint": "Vyhledávat prostřednictvím",
"ai_tools": "AI nástroje",
"userText": "Upravíte po kliknutí",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Dobré ráno!",
"afternoon": "Dobré odpoledne!",
"evening": "Dobrý večer!"
},
},
// Italian
// Machine translated some elements, please verify and delete this comment
"it": {
// Menu Items
"feedback": "Feedback",
"resetsettings": "Reimposta Impostazioni",
"menuCloseText": "Chiudi",
// Shortcuts
"shortcutsText": "Scorciatoie",
"enableShortcutsText": "Abilita/disabilita scorciatoie",
"editShortcutsText": "Modifica Scorciatoie",
"editShortcutsList": "Modifica Scorciatoie",
"shortcutsInfoText": "Scegli quali scorciatoie mostrare",
"adaptiveIconText": "Forme di Icona Adattiva",
"adaptiveIconInfoText": "Le icone delle scorciatoie saranno sempre rotonde",
"ai_tools_button": "Strumenti AI",
"enable_ai_tools": "Abilita/disabilita scorciatoie Strumenti AI",
"googleAppsMenuText": "App Google",
"googleAppsMenuInfo": "Mostra collegamenti App Google",
// Digital Clock
"digitalclocktittle": "Orologio Digitale",
"digitalclockinfo": "Abilita/disabilita Orologio Digitale",
"timeformattittle": "Usa formato 12h",
"timeformatinfo": "Usa formato orario a 12 ore",
"greetingtittle": "Saluto",
"greetinginfo": "Mostra il saluto sotto il testo personalizzato",
// Misc
"userTextTitle": "Testo personalizzabile",
"userTextInfo": "Mostra il testo personalizzato sotto l'orologio",
"fahrenheitCelsiusCheckbox": "Passa a Fahrenheit",
"fahrenheitCelsiusText": "Ricarica la pagina per vedere gli aggiornamenti",
"micIconTitle": "Nascondi icona del microfono",
"micIconInfo": "Se la digitazione vocale non funziona",
"search_suggestions_button": "Suggerimenti di Ricerca",
"search_suggestions_text": "Abilita/disabilita Suggerimenti di Ricerca",
// Proxy
"useproxytitletext": "Bypass Proxy",
"useproxyText": "Se i suggerimenti di ricerca non funzionano",
"ProxyText": "Proxy di Bypass CORS",
"ProxySubtext": "Aggiungi il tuo Proxy di Bypass CORS",
"HostproxyButton": "Hosta il Tuo Proxy",
"saveproxy": "Salva",
// Location
"UserLocText": "Inserisci la tua posizione",
"UserLocSubtext": "Se la posizione meteo non è corretta",
"userLoc": "La tua posizione (Città/Latitudine,Longitudine)",
"InputOptionsButton": "Opzioni di Inserimento",
"saveLoc": "Salva",
// Weather
"WeatherApiText": "Inserisci la tua chiave WeatherAPI",
"WeatherApiSubtext": "Se la funzionalità meteo non funziona",
"userAPI": "La tua chiave WeatherAPI",
"LearnMoreButton": "Scopri di più",
"saveAPI": "Salva",
// End of Menu Items
// Body Items
// Calendar
"days": ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'],
"months": ['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'],
// End of Calendar
// Weather
"humidityLevel": "Umidità",
"feelsLike": "Percepito",
"location": "Terra",
// End of Weather
// New Tab Item
"conditionText": "Ciao! Come stai oggi?",
"enterBtn": "Cerca",
"searchPlaceholder": "Cerca...",
"listenPlaceholder": "In ascolto...",
"searchWithHint": "Cerca con",
"ai_tools": "Strumenti AI",
"userText": "Clicca qui per modificare",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Buongiorno!",
"afternoon": "Buon pomeriggio!",
"evening": "Buona sera!"
},
},
// Turkish
"tr": {
// Menu Items
"feedback": "Geri Bildirim",
"resetsettings": "Ayarları Sıfırla",
"menuCloseText": "Kapat",
// Shortcuts
"shortcutsText": "Kısayollar",
"enableShortcutsText": "Kaydedilen kısayolları göster",
"editShortcutsText": "Kısayolları Düzenle",
"editShortcutsList": "Kaydedilen Kısayollar",
"shortcutsInfoText": "Hangi kısayolların gösterileceğini seçin",
"adaptiveIconText": "Uyarlanabilir İkon Şekilleri",
"adaptiveIconInfoText": "Kısayol ikonları yuvarlak görünecek",
"ai_tools_button": "AI Araçları",
"enable_ai_tools": "AI Araçları kısayollarını göster",
"googleAppsMenuText": "Google Uygulamaları",
"googleAppsMenuInfo": "Google Uygulamaları için kısayollarını göster",
// Digital Clock
"digitalclocktittle": "Dijital Saat",
"digitalclockinfo": "Dijital saate geçiş yap",
"timeformattittle": "12 Saat Formatı",
"timeformatinfo": "12 saat zaman formatını kullanın",
"greetingtittle": "Hoşgeldiniz",
"greetinginfo": "Özel metinin altında hoşgeldiniz mesajını göster",
// Misc
"userTextTitle": "Özelleştirilebilir Metin",
"userTextInfo": "Saatin altında özel metin göster",
"fahrenheitCelsiusCheckbox": "Fahrenheit'a geç",
"fahrenheitCelsiusText": "Güncellemeleri görmek için sayfayı yenileyin",
"micIconTitle": "Mikrofon Simgesini Gizle",
"micIconInfo": "Eğer sesli yazma çalışmıyorsa",
"search_suggestions_button": "Arama Önerileri",
"search_suggestions_text": "Arama Önerilerini etkinleştir",
// Proxy
"useproxytitletext": "Proxy Atlatma",
"useproxyText": "Eğer arama önerileri çalışmıyorsa",
"ProxyText": "CORS Atlatma Proxy",
"ProxySubtext": "Kendi CORS Atlatma Proxy'nizi ekleyin",
"HostproxyButton": "Kendi Proxy'nizi Barındırın",
"saveproxy": "Kaydet",
// Location
"UserLocText": "Konumunuzu girin",
"UserLocSubtext": "Hava durumu konumu doğru değilse",
"userLoc": "Konumunuz (Şehir/Enlem,Boylam)",
"InputOptionsButton": "Girdi Seçenekleri",
"saveLoc": "Kaydet",
// Weather
"WeatherApiText": "Kendi Hava Durumu API anahtarınızı girin",
"WeatherApiSubtext": "Hava durumu işlevi çalışmıyorsa",
"userAPI": "Hava Durumu API anahtarınız",
"LearnMoreButton": "Daha Fazla Bilgi Edinin",
"saveAPI": "Kaydet",
// End of Menu Items
// Body Items
// Calendar
"days": ['Pazar', 'Pazartesi', 'Salı', 'Çarşamba', 'Perşembe', 'Cuma', 'Cumartesi'],
"months": ['Ocak', 'Şubat', 'Mart', 'Nisan', 'Mayıs', 'Haziran', 'Temmuz', 'Ağustos', 'Eylül', 'Ekim', 'Kasım', 'Aralık'],
// End of Calendar
// Weather
"humidityLevel": "Nem",
"feelsLike": "Hissediyor",
"location": "Dünya",
// End of Weather
// New Tab Item
"conditionText": "Merhaba! Bugün nasılsın?",
"enterBtn": "Arama Yap",
"searchPlaceholder": "Aramanız...",
"listenPlaceholder": "Dinliyor...",
"searchWithHint": "ile Ara",
"ai_tools": "AI Araçları",
"userText": "Buraya tıklayarak düzenleyin",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Günaydın!",
"afternoon": "İyi öğleden sonra!",
"evening": "İyi akşamlar!"
},
},
// Bengali
"bn": {
// Menu Items
"feedback": "মতামত",
"resetsettings": "সেটিংস রিসেট করুন",
"menuCloseText": "বন্ধ করুন",
// Shortcuts
"shortcutsText": "শর্টকাট",
"enableShortcutsText": "সংরক্ষিত শর্টকাটগুলি প্রদর্শন করুন",
"editShortcutsText": "শর্টকাট সম্পাদনা করুন",
"editShortcutsList": "সংরক্ষিত শর্টকাট",
"shortcutsInfoText": "যেসব শর্টকাট প্রদর্শিত হবে তা নির্বাচন করুন",
"adaptiveIconText": "অ্যাডাপ্টিভ আইকন আকার",
"adaptiveIconInfoText": "শর্টকাট আইকন ছোট আকারে প্রদর্শন হবে",
"ai_tools_button": "AI সরঞ্জাম",
"enable_ai_tools": "AI সরঞ্জাম শর্টকাট প্রদর্শন করুন",
"googleAppsMenuText": "গুগল অ্যাপস",
"googleAppsMenuInfo": "গুগল অ্যাপসের শর্টকাট প্রদর্শন করুন",
// Digital Clock
"digitalclocktittle": "ডিজিটাল ঘড়ি",
"digitalclockinfo": "ডিজিটাল ঘড়িতে পরিবর্তন করুন",
"timeformattittle": "১২ ঘণ্টার ফরম্যাট",
"timeformatinfo": "১২ ঘণ্টার সময় ফরম্যাট ব্যবহার করুন",
"greetingtittle": "অভিবাদন",
"greetinginfo": "কাস্টম টেক্সটের নিচে অভিবাদন দেখান",
// Misc
"userTextTitle": "কাস্টমাইজেবল টেক্সট",
"userTextInfo": "ঘড়ির নিচে কাস্টম টেক্সট দেখান",
"fahrenheitCelsiusCheckbox": "ফারেনহাইটে পরিবর্তন করুন",
"fahrenheitCelsiusText": "পরিবর্তনের জন্য পৃষ্ঠাটি রিফ্রেশ করুন",
"micIconTitle": "মাইক্রোফোন আইকন লুকান",
"micIconInfo": "যদি ভয়েস টাইপিং কাজ করছে না",
"search_suggestions_button": "অনুসন্ধান পরামর্শ",
"search_suggestions_text": "অনুসন্ধান পরামর্শ সক্ষম করুন",
// Proxy
"useproxytitletext": "প্রক্সি বাইপাস",
"useproxyText": "যদি অনুসন্ধান পরামর্শ কাজ না করে",
"ProxyText": "CORS বাইপাস প্রক্সি",
"ProxySubtext": "আপনার নিজের CORS বাইপাস প্রক্সি যোগ করুন",
"HostproxyButton": "নিজের প্রক্সি হোস্ট করুন",
"saveproxy": "সংরক্ষণ করুন",
// Location
"UserLocText": "আপনার অবস্থান লিখুন",
"UserLocSubtext": "যদি আবহাওয়ার অবস্থান সঠিক না হয়",
"userLoc": "আপনার শহর বা স্থানাঙ্ক (অক্ষাংশ, দ্রাঘিমাংশ)",
"InputOptionsButton": "ইনপুট অপশন",
"saveLoc": "সংরক্ষণ করুন",
// Weather
"WeatherApiText": "আপনার WeatherAPI টীকা লিখুন",
"WeatherApiSubtext": "যদি আবহাওয়া কার্যকারিতা কাজ না করে",
"userAPI": "আপনার WeatherAPI টীকা",
"LearnMoreButton": "আরও জানুন",
"saveAPI": "সংরক্ষণ করুন",
// End of Menu Items
// Body Items
// Calendar
"days": ['রবি', 'সোম', 'মঙ্গল', 'বুধ', 'বৃহস্পতি', 'শুক্র', 'শনি'], // Truncated for display
//"days": ['রবিবার', 'সোমবার', 'মঙ্গলবার', 'বুধবার', 'বৃহস্পতিবার', 'শুক্রবার', 'শনিবার'], // Full
"months": ['জানুয়ারি', 'ফেব্রুয়ারি', 'মার্চ', 'এপ্রিল', 'মে', 'জুন', 'জুলাই', 'আগস্ট', 'সেপ্টেম্বর', 'অক্টোবর', 'নভেম্বর', 'ডিসেম্বর'],
// "months": ['জানু', 'ফেব্রু', 'মার্চ', 'এপ্রি', 'মে', 'জুন', 'জুলাই', 'আগ', 'সেপ্টে', 'অক্টো', 'নভে', 'ডিসে'], // Truncated
// End of Calendar
// Weather
"humidityLevel": "আর্দ্রতা",
"feelsLike": "অনুভব হয়",
"location": "পৃথিবী",
// End of Weather
// New Tab Item
"conditionText": "হ্যালো! আজ আপনি কেমন আছেন?",
"enterBtn": "অনুসন্ধান করুন",
"searchPlaceholder": "আপনার প্রশ্ন...",
"listenPlaceholder": "শোনা হচ্ছে...",
"searchWithHint": "অনুসন্ধানের মাধ্যম",
"ai_tools": "AI সরঞ্জাম",
"userText": "এখানে আপনার টেক্সট লিখুন",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "শুভ সকাল!",
"afternoon": "শুভ বিকেল!",
"evening": "শুভ সন্ধ্যা!"
},
// Search Engines and rest
"googleEngine": "গুগল",
"duckEngine": "ডাকডাকগো",
"bingEngine": "বিং",
"braveEngine": "ব্রেভ",
"youtubeEngine": "ইউটিউব",
"chatGPT": "চ্যাটGPT",
"gemini": "জেমিনি",
"copilot": "কোপাইলট",
"firefly": "এডোবি ফায়ারফ্লাই",
"github": "গিটহাব",
"googleAppsHover": "গুগল অ্যাপস",
},
// Vietnamese
"vi": {
// Menu Items
"feedback": "Phản hồi",
"resetsettings": "Đặt lại Cài đặt",
"menuCloseText": "Đóng",
// Shortcuts
"shortcutsText": "Phím tắt",
"enableShortcutsText": "Bật/tắt phím tắt",
"editShortcutsText": "Chỉnh sửa Phím tắt",
"editShortcutsList": "Chỉnh sửa Danh sách Phím tắt",
"shortcutsInfoText": "Chọn các phím tắt muốn hiển thị",
"adaptiveIconText": "Hình dạng Biểu tượng Thích ứng",
"adaptiveIconInfoText": "Biểu tượng phím tắt sẽ luôn là hình tròn",
"ai_tools_button": "Công cụ AI",
"enable_ai_tools": "Bật/tắt các phím tắt Công cụ AI",
"googleAppsMenuText": "Ứng dụng Google",
"googleAppsMenuInfo": "Hiển thị các phím tắt cho Ứng dụng Google",
// Digital Clock
"digitalclocktittle": "Đồng hồ Kỹ thuật số",
"digitalclockinfo": "Bật/tắt Đồng hồ Kỹ thuật số",
"timeformattittle": "Sử dụng Định dạng 12 giờ",
"timeformatinfo": "Sử dụng định dạng thời gian 12 giờ",
"greetingtittle": "Lời chào",
"greetinginfo": "Hiển thị lời chào dưới văn bản tùy chỉnh",
// Misc
"userTextTitle": "Văn bản tùy chỉnh",
"userTextInfo": "Hiển thị văn bản tùy chỉnh dưới đồng hồ",
"fahrenheitCelsiusCheckbox": "Chuyển sang Fahrenheit",
"fahrenheitCelsiusText": "Tải lại trang để thấy cập nhật",
"micIconTitle": "Ẩn biểu tượng mic",
"micIconInfo": "Nếu gõ bằng giọng nói không hoạt động",
"search_suggestions_button": "Gợi ý Tìm kiếm",
"search_suggestions_text": "Bật/tắt Gợi ý Tìm kiếm",
// Proxy
"useproxytitletext": "Bỏ qua Proxy",
"useproxyText": "Nếu gợi ý tìm kiếm không hoạt động",
"ProxyText": "Proxy Bỏ qua CORS",
"ProxySubtext": "Thêm Proxy Bỏ qua CORS của bạn",
"HostproxyButton": "Tự Chạy Proxy",
"saveproxy": "Lưu",
// Location
"UserLocText": "Nhập vị trí của bạn",
"UserLocSubtext": "Nếu vị trí thời tiết không chính xác",
"userLoc": "Vị trí của bạn (Thành phố/Vĩ độ, Kinh độ)",
"InputOptionsButton": "Tùy chọn Nhập",
"saveLoc": "Lưu",
// Weather
"WeatherApiText": "Nhập khóa WeatherAPI của bạn",
"WeatherApiSubtext": "Nếu tính năng thời tiết không hoạt động",
"userAPI": "Khóa WeatherAPI của bạn",
"LearnMoreButton": "Tìm hiểu Thêm",
"saveAPI": "Lưu",
// End of Menu Items
// Body Items
// Calendar
"days": ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'],
"months": ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai'],
// End of Calendar
// Weather
"humidityLevel": "Độ ẩm",
"feelsLike": "cảm giác như là",
"location": "Trái Đất",
// End of Weather
// New Tab Item
"conditionText": "Xin chào! Bạn cảm thấy thế nào hôm nay?",
"enterBtn": "Tìm kiếm",
"searchPlaceholder": "Nhập câu hỏi của bạn...",
"listenPlaceholder": "Đang nghe...",
"searchWithHint": "Tìm kiếm Với",
"ai_tools": "Công cụ AI",
"userText": "Nhấp vào đây để chỉnh sửa",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Chào buổi sáng!",
"afternoon": "Chào buổi chiều!",
"evening": "Chào buổi tối!"
},
},
// Russian
"ru": {
// Menu Items
"feedback": "Обратная связь",
"resetsettings": "Сброс настроек",
"menuCloseText": "Закрыть",
// Shortcuts
"shortcutsText": "Ярлыки",
"enableShortcutsText": "Включить/Отключить ярлыки",
"editShortcutsText": "Редактировать ярлыки",
"editShortcutsList": "Редактировать ярлыки",
"shortcutsInfoText": "Выберите, какие ярлыки будут отображаться",
"adaptiveIconText": "Адаптивные формы значков",
"adaptiveIconInfoText": "Ярлыки всегда будут круглыми",
"ai_tools_button": "Инструменты ИИ",
"enable_ai_tools": "Включить/Отключить ярлыки ИИ",
"googleAppsMenuText": "Приложения Google",
"googleAppsMenuInfo": "Показать ярлыки для приложений Google",
// Digital Clock
"digitalclocktittle": "Цифровые часы",
"digitalclockinfo": "Включить/Отключить цифровые часы",
"timeformattittle": "12-часовой формат",
"timeformatinfo": "Использовать 12-часовой формат времени",
"greetingtittle": "Приветствие",
"greetinginfo": "Показать приветствие под вашим текстом",
// Misc
"userTextTitle": "Настраиваемый текст",
"userTextInfo": "Отображение текста под часами",
"fahrenheitCelsiusCheckbox": "Использовать Фаренгейт",
"fahrenheitCelsiusText": "Обновите страницу, чтобы применить",
"micIconTitle": "Скрыть значок микрофона",
"micIconInfo": "Если голосовой ввод не работает",
"search_suggestions_button": "Поисковые подсказки",
"search_suggestions_text": "Включить/Отключить поисковые подсказки",
// Proxy
"useproxytitletext": "Использовать прокси",
"useproxyText": "Если поисковые подсказки не работают",
"ProxyText": "CORS обход прокси",
"ProxySubtext": "Добавьте свой CORS-прокси",
"HostproxyButton": "Разместить свой прокси",
"saveproxy": "Сохранить",
// Location
"UserLocText": "Введите ваше местоположение",
"UserLocSubtext": "Если местоположение для погоды неверно",
"userLoc": "Ваше местоположение (Город/Широта,Долгота)",
"InputOptionsButton": "Опции ввода",
"saveLoc": "Сохранить",
// Weather
"WeatherApiText": "Введите свой ключ WeatherAPI",
"WeatherApiSubtext": "Если функция погоды не работает",
"userAPI": "Ваш ключ WeatherAPI",
"LearnMoreButton": "Узнать больше",
"saveAPI": "Сохранить",
// End of Menu Items
// Body Items
// Calendar
"days": ['Воскресенье', 'Понедельник', 'Вторник', 'Среда', 'Четверг', 'Пятница', 'Суббота'],
"months": ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'],
// End of Calendar
// Weather
"humidityLevel": "Влажность",
"feelsLike": "Ощущается",
"location": "Земля",
// End of Weather
// New Tab Item
"conditionText": "Привет! Как ты сегодня?",
"enterBtn": "Поиск",
"searchPlaceholder": "Ваш запрос...",
"listenPlaceholder": "Слушаю...",
"searchWithHint": "Искать с",
"ai_tools": "Инструменты ИИ",
"userText": "Нажмите здесь, чтобы редактировать",
// End of Body and New Tab Items
// Greeting
greeting: {
"morning": "Доброе утро!",
"afternoon": "Добрый день!",
"evening": "Добрый вечер!"
},
// Search Engines and rest
"googleEngine": "Гугл",
"duckEngine": "ДакДакГо",
"bingEngine": "Бинг",
"braveEngine": "Брейв",
"youtubeEngine": "Ютуб",
"chatGPT": "ЧатGPT",
"gemini": "Гемини",
"copilot": "Копилот",
"firefly": "Адоби Файерфлай",
"github": "ГитХаб",
//"googleAppsHover": "Гугл Приложения",
},
// Uzbek
"uz": {
// Menu Items
"feedback": "Fikr-mulohaza",
"resetsettings": "Sozlamalarni tiklash",
"menuCloseText": 'Yopish',
// Shortcuts
"shortcutsText": "Tezkor tugmalar",
"enableShortcutsText": "Tezkor tugmalarni ko'rsatish",
"editShortcutsText": "Tezkor tugmalarni tahrirlash",
"editShortcutsList": "Saqlangan Tezkor tugmalar",
"shortcutsInfoText": "Qaysi tezkor tugmalarni ko'rsatishni tanlang",
"adaptiveIconText": "Adaptiv ikonlar shakllari",
"adaptiveIconInfoText": "Tezkor tugmalar doimiy ravishda doiraviy bo'ladi",
"ai_tools_button": "AI-instrumentlar",
"enable_ai_tools": "Tezkor tugmalarni ko'rsatish AI-instrumentlar",
"googleAppsMenuText": "Google Dasturlari",
"googleAppsMenuInfo": "Google Dasturlariga qisqacha havolani ko'rsating",
// Digital Clock
"digitalclocktittle": "Digital Clock",
"digitalclockinfo": "Digital Clockga o'tish",
"timeformattittle": "12-soat format",
"timeformatinfo": "12-soat formatni qo'llang",
"greetingtittle": "Salomlashish",
"greetinginfo": "Savatchadagi text pastdagi salomlashishni ko'rsatish",
// Misc
"userTextTitle": "Tahrirlash mumkin bo'lgan matn",
"userTextInfo": "Savatchadagi text pastdagi salomlashishni ko'rsatish",
"fahrenheitCelsiusCheckbox": "Fahrenheitga o'tish",
"fahrenheitCelsiusText": "Sahifani yangilash, o'zgarishlarni qo'llash",
"micIconTitle": "Mikrofon belgisini yashirish",
"micIconInfo": "Agar ovozli yozish ishlamasa",
"search_suggestions_button": "Izlash tavsiyalari",
"search_suggestions_text": "Izlash tavsiyalarini yoqish",
// Proxy
"useproxytitletext": "Proxy Bypass",
"useproxyText": "Izlash tavsiyalari ishlamaydi",
"ProxyText": "CORS Bypass Proxy",
"ProxySubtext": "O'zingizning CORS bypass proxyni qo'shing",
"HostproxyButton": "O'zingizning proxyni joylash",
"saveproxy": "Saqlash",
// Location
"UserLocText": "O'zingizning joylashganligingizni kiriting",
"UserLocSubtext": "Agar havo joylashuvi noto'g'ri bo'lsa",
"userLoc": "O'zingizning shahringiz yoki koordinatalaringiz (Kenglik, Uzunlik)",
"InputOptionsButton": "Kirish imkoniyatlari",
"saveLoc": "Saqlash",
// Weather
"WeatherApiText": "O'zingizning WeatherAPI kalitini kiriting",
"WeatherApiSubtext": "Agar havo funktsiyasi ishlamaydi",
"userAPI": "O'zingizning WeatherAPI kaliti",
"LearnMoreButton": "Bilish",
"saveAPI": "Saqlash",
// End of Menu Items
// Body Items
// Calendar
"days": ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba'],
"months": ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr'],
// End of Calendar
// Weather
"humidityLevel": "Namlik",
"feelsLike": "Uxshaydi",
"location": "Yer",
// End of Weather
// New Tab Item
"conditionText": "Salom! Siz bugun qanday holatdasiz?",