-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathstrings.po
More file actions
1127 lines (850 loc) · 23.2 KB
/
Copy pathstrings.po
File metadata and controls
1127 lines (850 loc) · 23.2 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
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
# Kodi Media Center language file
# Addon Name: @DISTRONAME@ Configuration
# Addon id: service.libreelec.settings
# Addon Provider: LibreELEC
msgid ""
msgstr ""
"PO-Revision-Date: 2022-02-25 19:10+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
"Language-Team: Amharic (Ethiopia) <https://kodi.weblate.cloud/projects/kodi-add-ons-services/service-libreelec-settings/am_et/>\n"
"Language: am_et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.11\n"
msgctxt "Addon Summary"
msgid "@DISTRONAME@ Configuration"
msgstr ""
msgctxt "Addon Description"
msgid "Use this addon to manage @DISTRONAME@ services, updates, networking, bluetooth, backups, and other OS settings."
msgstr ""
msgctxt "#600"
msgid "@DISTRONAME@ Settings"
msgstr ""
msgctxt "#601"
msgid "Interface"
msgstr ""
msgctxt "#602"
msgid "Address"
msgstr ""
msgctxt "#603"
msgid "Type"
msgstr ""
msgctxt "#604"
msgid "State"
msgstr ""
msgctxt "#605"
msgid "Address"
msgstr ""
msgctxt "#606"
msgid "Distribution: "
msgstr ""
msgctxt "#607"
msgid "Version: "
msgstr ""
msgctxt "#608"
msgid "Architecture: "
msgstr ""
msgctxt "#609"
msgid "LibreELEC is created by a global team of Linux and Kodi enthusiasts who contribute time and effort to manage the project, write code, and provide support. We have fun making it. We hope you have fun using it!"
msgstr ""
msgctxt "#610"
msgid "[B]Support[/B] is provided via our forum:[CR]https://forum.libreelec.tv[CR][CR][B]Documentation[/B] can be read in our wiki:[CR]https://libreelec.wiki[CR][CR][B]Code[/B] can be found on GitHub:[CR]https://github.com/LibreELEC[CR][CR][B]Donations[/B] towards project expenses are accepted via OpenCollective:[CR]https://opencollective.com/libreelec/donate"
msgstr ""
msgctxt "#700"
msgid "Configure a hostname, keyboard type, perform a reset, update, or backups and restores"
msgstr ""
msgctxt "#701"
msgid "Configure network startup options, NTP and VPNs"
msgstr ""
msgctxt "#702"
msgid "Manage the Ethernet, Wireless and VPN connections available to the system"
msgstr ""
msgctxt "#703"
msgid "Configure system services like Samba, SSH, Cron, Avahi and Syslog"
msgstr ""
msgctxt "#704"
msgid "Configure and pair Bluetooth devices"
msgstr ""
msgctxt "#705"
msgid "Useful information like version and architecture details, support and documentation links, and how to donate and support the project."
msgstr ""
msgctxt "#707"
msgid "Configure updates"
msgstr ""
msgctxt "#709"
msgid "Select the timezone for this device."
msgstr ""
msgctxt "#710"
msgid "Configure the Hostname of your @DISTRONAME@ system. This will be used for the HTPC \\\\hostname in Windows and SMB server name in the Mac OS Finder"
msgstr ""
msgctxt "#711"
msgid "Configure the 1st keyboard software layout"
msgstr ""
msgctxt "#712"
msgid "Configure the 2nd keyboard software layout"
msgstr ""
msgctxt "#713"
msgid "Configure the physical keyboard type"
msgstr ""
msgctxt "#714"
msgid "Enable for automatic updates to @DISTRONAME@. Automatic updates are available for stable releases. Automatic update will not update to pre-release or development builds."
msgstr ""
msgctxt "#715"
msgid "Enable for on-screen notifications when a new update is available"
msgstr ""
msgctxt "#716"
msgid "Choose between stable, testing, or a custom release channel for @DISTRONAME@. Stable has releases a few times each year. Test releases are automated nightly builds of the current state of development. Testing releases receive less review than stable releases."
msgstr ""
msgctxt "#717"
msgid "Enable to determine if a system update is available locally instead of requesting this information from the distribution's servers"
msgstr ""
msgctxt "#718"
msgid "Send boot config files from /flash, kodi.log, kernel log and Samba configs to http://ix.io, and display the short URL"
msgstr ""
msgctxt "#719"
msgid "Send boot config files from /flash, kodi_crash.log, kernel log and Samba configs to http://ix.io, and display the short URL"
msgstr ""
msgctxt "#720"
msgid "Set to ON to enable the Bluetooth service"
msgstr ""
msgctxt "#722"
msgid "Create a tar archive containing all @DISTRONAME@ and Kodi configuration settings, databases and thumbnail content. Backup files will be stored in /storage/backup/"
msgstr ""
msgctxt "#723"
msgid "Restore a tar archive backup previously created using the backup option above"
msgstr ""
msgctxt "#724"
msgid ""
"[COLOR FF00FF00]SOFT RESET[/COLOR]\n"
"Permanently reset @DISTRONAME@ configuration to defaults (resets also Kodi to default including your library. your media - music/videos/etc are not touched)"
msgstr ""
msgctxt "#725"
msgid ""
"[COLOR FFFF0000]HARD RESET[/COLOR]\n"
"Permanently reset @DISTRONAME@ and Kodi configuration to defaults (everything in your storage partition will be deleted)"
msgstr ""
msgctxt "#726"
msgid "Enable or disable support for Wireless (WLAN) networks"
msgstr ""
msgctxt "#727"
msgid "Enable a 'tethered' Wireless Access Point. This requires your wireless card (and driver) to support bridging and access point mode. Not all cards are capable."
msgstr ""
msgctxt "#728"
msgid "Configure the Access Point SSID"
msgstr ""
msgctxt "#729"
msgid "Configure the Access Point Passphrase"
msgstr ""
msgctxt "#730"
msgid "Enable or disable support for Wired (Ethernet) networks"
msgstr ""
msgctxt "#732"
msgid "Configure the 1st time (NTP) server"
msgstr ""
msgctxt "#733"
msgid "Configure the 2nd time (NTP) server"
msgstr ""
msgctxt "#734"
msgid "Configure the 3rd time (NTP) server"
msgstr ""
msgctxt "#736"
msgid "Set to ON to delay Kodi startup until the network is available. Use this if the OS is booting into Kodi before the network is up and central MySQL databases are accessible."
msgstr ""
msgctxt "#737"
msgid "Time in seconds to wait for an established network connection."
msgstr ""
msgctxt "#738"
msgid "Set to ON to enable the embedded Samba (SMB) filesharing service"
msgstr ""
msgctxt "#739"
msgid "Set to ON to require username/password access to local Samba fileshares"
msgstr ""
msgctxt "#740"
msgid "Set the username for Samba sharing"
msgstr ""
msgctxt "#741"
msgid "Set the password for Samba sharing"
msgstr ""
msgctxt "#742"
msgid "Set to ON to enable the embedded SSH server. The SSH console can be accessed with username 'root' and password '@ROOT_PASSWORD@'."
msgstr ""
msgctxt "#743"
msgid "Set to ON if you have copied private SSH keys to your HTPC and would like to improve security by disabling SSH username and password authentication."
msgstr ""
msgctxt "#744"
msgid "Set to ON to enable the Avahi (Zeroconf/Bonjour) network discovery service"
msgstr ""
msgctxt "#745"
msgid "Set to ON to enable the cron daemon"
msgstr ""
msgctxt "#746"
msgid "Set the password for SSH"
msgstr ""
msgctxt "#747"
msgid "Enable a PIN for @DISTRONAME@ Settings access"
msgstr ""
msgctxt "#748"
msgid "Change the PIN Lock for @DISTRONAME@ Settings access"
msgstr ""
msgctxt "#749"
msgid "Overrride the Wireless Regulatory Domain so radio properties (channels and transmit power) comply with local laws or match the country configuration of your router."
msgstr ""
msgctxt "#750"
msgid "750"
msgstr ""
msgctxt "#751"
msgid "With OBEX filetransfer you can send files, for example movies or pictures over bluetooth to @DISTRONAME@."
msgstr ""
msgctxt "#752"
msgid "Here you can set the folder location where OBEX file transfer should store incoming files"
msgstr ""
msgctxt "#753"
msgid "Configure the 1st keyboard software Variant"
msgstr ""
msgctxt "#754"
msgid "Configure the 2nd keyboard software Variant"
msgstr ""
msgctxt "#755"
msgid "Auto share external drives / partitions"
msgstr ""
msgctxt "#756"
msgid "Disable older SMB protocols by specifying the minimum supported protocol."
msgstr ""
msgctxt "#757"
msgid "Disable more recent SMB protocols for backward compatability with legacy clients."
msgstr ""
msgctxt "#758"
msgid "NetBIOS group to which the server belongs. Default is WORKGROUP."
msgstr ""
msgctxt "#760"
msgid "Select an update channel"
msgstr ""
msgctxt "#762"
msgid "Enter a custom update URL. URL should point directly to a json update file or a directory containing 'releases.json'."
msgstr ""
msgctxt "#770"
msgid "Select an available version"
msgstr ""
msgctxt "#771"
msgid "The firewall blocks unwanted network traffic. Home (default) allows traffic from private network ranges (192.168.x.x, 172.16.x.x and 10.x.x.x) only. Public blocks all traffic from all networks. Custom uses rules in /storage/.config/iptables. Off disables the firewall."
msgstr ""
msgctxt "#772"
msgid "Enable to share the installed distribution, version, and related device information periodically with the developers. This data is used to gather information on how distribution is used. Disable to opt out of reporting device information."
msgstr ""
msgctxt "#773"
msgid "Set the idle timeout (in minutes) before devices will be disconnected (defaults to 0 for no timeout). Applies to devices where \"Enable Standby\" has been activated in the LibreELEC device connection context menu."
msgstr ""
msgctxt "#32001"
msgid "Services"
msgstr ""
msgctxt "#32002"
msgid "System"
msgstr ""
msgctxt "#32003"
msgid "Interface"
msgstr ""
msgctxt "#32005"
msgid "Updates"
msgstr ""
msgctxt "#32009"
msgid "Keyboard"
msgstr ""
msgctxt "#32010"
msgid "Keyboard Layout"
msgstr ""
msgctxt "#32012"
msgid "Select Action"
msgstr ""
msgctxt "#32013"
msgid "OS Updates"
msgstr ""
msgctxt "#32014"
msgid "Automatic Updates"
msgstr ""
msgctxt "#32015"
msgid "Release"
msgstr ""
msgctxt "#32016"
msgid "Client Side Update"
msgstr ""
msgctxt "#32017"
msgid "Custom Channel"
msgstr ""
msgctxt "#32020"
msgid "Available Versions"
msgstr ""
msgctxt "#32021"
msgid "Share Statistics"
msgstr ""
msgctxt "#32022"
msgid "Firmware Updates"
msgstr ""
msgctxt "#32023"
msgid "Updating will occur once the system is rebooted."
msgstr ""
msgctxt "#32024"
msgid "Bootloader EEPROM"
msgstr ""
msgctxt "#32025"
msgid "Update the Raspberry Pi Bootloader EEPROM to the latest version. This option is automatically disabled after rebooting. Reboot the system to apply the update."
msgstr ""
msgctxt "#32026"
msgid "VIA USB3 Firmware"
msgstr ""
msgctxt "#32027"
msgid "Update the Raspberry Pi VIA USB3 firmware to the latest version. This option is automatically disabled after rebooting. Reboot the system to apply the update."
msgstr ""
msgctxt "#32028"
msgid "update from %s to %s"
msgstr ""
msgctxt "#32029"
msgid "up to date: %s"
msgstr ""
msgctxt "#32030"
msgid "Release Channel"
msgstr ""
msgctxt "#32100"
msgid "Connections"
msgstr ""
msgctxt "#32101"
msgid "Network"
msgstr ""
msgctxt "#32102"
msgid "Wireless Networks"
msgstr ""
msgctxt "#32103"
msgid "Wired Networks"
msgstr ""
msgctxt "#32105"
msgid "Active"
msgstr ""
msgctxt "#32106"
msgid "Username"
msgstr ""
msgctxt "#32107"
msgid "Passphrase"
msgstr ""
msgctxt "#32108"
msgid "Enable 'tethered' Wireless Access Point"
msgstr ""
msgctxt "#32109"
msgid "Connect Automatically"
msgstr ""
msgctxt "#32110"
msgid "Connection"
msgstr ""
msgctxt "#32111"
msgid "IPv4"
msgstr ""
msgctxt "#32112"
msgid "IPv6"
msgstr ""
msgctxt "#32113"
msgid "IP Address Method"
msgstr ""
msgctxt "#32114"
msgid "IP Address"
msgstr ""
msgctxt "#32115"
msgid "Subnet Mask"
msgstr ""
msgctxt "#32116"
msgid "Default Gateway"
msgstr ""
msgctxt "#32117"
msgid "Prefix Length"
msgstr ""
msgctxt "#32118"
msgid "Privacy"
msgstr ""
msgctxt "#32119"
msgid "DNS Servers"
msgstr ""
msgctxt "#32120"
msgid "Nameserver #1"
msgstr ""
msgctxt "#32121"
msgid "Nameserver #2"
msgstr ""
msgctxt "#32122"
msgid "Nameserver #3"
msgstr ""
msgctxt "#32123"
msgid "NTP Servers"
msgstr ""
msgctxt "#32124"
msgid "Timeserver #1"
msgstr ""
msgctxt "#32125"
msgid "Timeserver #2"
msgstr ""
msgctxt "#32126"
msgid "Timeserver #3"
msgstr ""
msgctxt "#32127"
msgid "DNS Domains"
msgstr ""
msgctxt "#32128"
msgid "Domain #1"
msgstr ""
msgctxt "#32129"
msgid "Domain #2"
msgstr ""
msgctxt "#32130"
msgid "Domain #3"
msgstr ""
msgctxt "#32140"
msgid "Save"
msgstr ""
msgctxt "#32141"
msgid "Delete"
msgstr ""
msgctxt "#32142"
msgid "Refresh"
msgstr ""
msgctxt "#32143"
msgid "Disconnect"
msgstr ""
msgctxt "#32144"
msgid "Connect"
msgstr ""
msgctxt "#32145"
msgid "Pair"
msgstr ""
msgctxt "#32146"
msgid "Hidden Network Name"
msgstr ""
msgctxt "#32147"
msgid "Wireless Network Passphrase"
msgstr ""
msgctxt "#32148"
msgid "Wireless Network Username"
msgstr ""
msgctxt "#32150"
msgid "Edit"
msgstr ""
msgctxt "#32180"
msgid "Would you like to update @DISTRONAME@ now?"
msgstr ""
msgctxt "#32181"
msgid "Filename"
msgstr ""
msgctxt "#32182"
msgid "Download speed"
msgstr ""
msgctxt "#32183"
msgid "Time remaining"
msgstr ""
msgctxt "#32184"
msgid "Extract file"
msgstr ""
msgctxt "#32185"
msgid "Extract speed"
msgstr ""
msgctxt "#32186"
msgid "Initialize Archive File"
msgstr ""
msgctxt "#32187"
msgid "New Version"
msgstr ""
msgctxt "#32188"
msgid "Current Version"
msgstr ""
msgctxt "#32189"
msgid "OS Configuration"
msgstr ""
msgctxt "#32190"
msgid "System Name"
msgstr ""
msgctxt "#32191"
msgid "Invalid URL"
msgstr ""
msgctxt "#32192"
msgid "PIN lock"
msgstr ""
msgctxt "#32193"
msgid "Enable @DISTRONAME@ Settings PIN Lock"
msgstr ""
msgctxt "#32194"
msgid "Change @DISTRONAME@ Settings PIN Lock"
msgstr ""
msgctxt "#32196"
msgid "About"
msgstr ""
msgctxt "#32198"
msgid "SSID"
msgstr ""
msgctxt "#32200"
msgid "Samba"
msgstr ""
msgctxt "#32201"
msgid "SSH"
msgstr ""
msgctxt "#32202"
msgid "Use Samba Password Authentication"
msgstr ""
msgctxt "#32203"
msgid "Disable SSH Password"
msgstr ""
msgctxt "#32204"
msgid "Enable Samba"
msgstr ""
msgctxt "#32205"
msgid "Enable SSH"
msgstr ""
msgctxt "#32206"
msgid "Enable Avahi (Zeroconf)"
msgstr ""
msgctxt "#32207"
msgid "Avahi"
msgstr ""
msgctxt "#32208"
msgid "Hidden Wlan"
msgstr ""
msgctxt "#32209"
msgid "SSH Password"
msgstr ""
msgctxt "#32210"
msgid "The default SSH password is widely known and considered insecure.[CR][CR]Setting a personal password is recommended."
msgstr ""
msgctxt "#32212"
msgid "Cancel"
msgstr ""
msgctxt "#32213"
msgid "Keep Existing"
msgstr ""
msgctxt "#32214"
msgid "Set Password"
msgstr ""
msgctxt "#32215"
msgid "Workgroup name"
msgstr ""
msgctxt "#32216"
msgid "Auto-Share External Drives"
msgstr ""
msgctxt "#32217"
msgid "Minimum supported protocol"
msgstr ""
msgctxt "#32218"
msgid "Maximum supported protocol"
msgstr ""
msgctxt "#32220"
msgid "Bad password!"
msgstr ""
msgctxt "#32221"
msgid "The entered password is too weak.[CR]SSH password is unchanged."
msgstr ""
msgctxt "#32222"
msgid "Password changed!"
msgstr ""
msgctxt "#32223"
msgid "The SSH password has been successfully changed."
msgstr ""
msgctxt "#32224"
msgid "Unknown error!"
msgstr ""
msgctxt "#32225"
msgid "There was an error during the process.[CR]SSH password is unchanged."
msgstr ""
msgctxt "#32226"
msgid "Enter new 4 digit PIN"
msgstr ""
msgctxt "#32227"
msgid "Re-enter PIN"
msgstr ""
msgctxt "#32228"
msgid "Error - PIN codes did not match!"
msgstr ""
msgctxt "#32229"
msgid "@DISTRONAME@ Settings PIN lock not set.[CR][CR]Please try again."
msgstr ""
msgctxt "#32230"
msgid "@DISTRONAME@ Settings PIN lock set."
msgstr ""
msgctxt "#32231"
msgid "Your @DISTRONAME@ Settings PIN lock has been set to:"
msgstr ""
msgctxt "#32232"
msgid "Error - PIN code not 4 digits!"
msgstr ""
msgctxt "#32233"
msgid "@DISTRONAME@ Settings Locked[CR]Enter 4 digit PIN"
msgstr ""
msgctxt "#32234"
msgid "Incorrect PIN!"
msgstr ""
msgctxt "#32235"
msgid " attempts remaining."
msgstr ""
msgctxt "#32236"
msgid "You have entered an incorrect PIN too many times.[CR][CR]You will need to wait 5 minutes before trying again."
msgstr ""
msgctxt "#32237"
msgid "@DISTRONAME@ Settings Locked!"
msgstr ""
msgctxt "#32238"
msgid "Time remaining before PIN can be entered: %02d:%02d[CR][CR]Too many previous failed attempts."
msgstr ""
msgctxt "#32240"
msgid "Wireless Regulatory Domain"
msgstr ""
msgctxt "#32300"
msgid "Welcome to @DISTRONAME@"
msgstr ""
msgctxt "#32301"
msgid "Welcome"
msgstr ""
msgctxt "#32302"
msgid "This wizard will guide you through the process of setting up your new @DISTRONAME@ installation - setting your location, timezone and connecting you to the internet.[CR][CR]These settings can be changed later by navigating to Programs > @DISTRONAME@ Settings."
msgstr ""
msgctxt "#32303"
msgid "Next"
msgstr ""
msgctxt "#32304"
msgid "To be identified easily on the network, your new @DISTRONAME@ machine needs a name.[CR][CR]Try to choose something meaningful - like the room it's in - so you'll know what it is when you see it on the network.[CR][CR]This name is used when configuring network services, like file sharing using samba."
msgstr ""
msgctxt "#32305"
msgid "Networking"
msgstr ""
msgctxt "#32306"
msgid "In order to download backdrops, banners and thumbnails for your movies and TV shows and to stream online content from sites like YouTube, @DISTRONAME@ needs to be connected the Internet.[CR][CR]An Internet connection is also required for @DISTRONAME@ to automatically update itself."
msgstr ""
msgctxt "#32307"
msgid "Previous"
msgstr ""
msgctxt "#32308"
msgid "Hostname:"
msgstr ""
msgctxt "#32309"
msgid "The following Networks are currently available:"
msgstr ""
msgctxt "#32310"
msgid "Language:"
msgstr ""
msgctxt "#32311"
msgid "Sharing and Remote Access"
msgstr ""
msgctxt "#32312"
msgid "@DISTRONAME@ also supports SSH for remote access. This is for advanced users who wish to interact with @DISTRONAME@'s underlying operating system. The default user is [COLOR blue]root[/COLOR] and the default password is [COLOR blue]@ROOT_PASSWORD@[/COLOR]."
msgstr ""
msgctxt "#32313"
msgid "In order to share your files between your computers @DISTRONAME@ has incorporated a samba server. This samba server can be integrated into your local network by accessing it in a familiar way with Finder or Windows Explorer."
msgstr ""
msgctxt "#32316"
msgid "Configure Services:"
msgstr ""
msgctxt "#32317"
msgid "Thank you"
msgstr ""
msgctxt "#32318"
msgid "Your @DISTRONAME@ installation is now complete and you are about to enter Kodi where you can set up your media libraries. For help with this, there is a guide available at wiki.kodi.tv[CR][CR]@DISTRONAME@ is developed by a dedicated team of developers who work purely in their spare time. Even as a volunteer project, we still have to pay for our internet bandwidth and development resources so if you find @DISTRONAME@ useful we will always appreciate a donation of any amount.[CR][CR]Finally, we hope you enjoy using @DISTRONAME@ as much as we've enjoyed building it. If you need any more help, you can find links to our support forum along with latest news at our website."
msgstr ""
msgctxt "#32319"
msgid "Cron"
msgstr ""
msgctxt "#32320"
msgid "Enable Cron"
msgstr ""
msgctxt "#32323"
msgid "Reset to Defaults"
msgstr ""
msgctxt "#32324"
msgid "Reset System Settings to defaults"
msgstr ""
msgctxt "#32325"
msgid "Reset @DISTRONAME@ to defaults"
msgstr ""
msgctxt "#32326"
msgid "Are you sure?"
msgstr ""
msgctxt "#32328"
msgid "The system must reboot."
msgstr ""
msgctxt "#32329"
msgid "Rebooting in %d seconds"
msgstr ""
msgctxt "#32330"
msgid "Keyboard Type"
msgstr ""
msgctxt "#32331"
msgid "Bluetooth"
msgstr ""
msgctxt "#32333"
msgid "Connected: "
msgstr ""
msgctxt "#32334"
msgid "Yes"
msgstr "አዎ"
msgctxt "#32335"
msgid "No"
msgstr "አይ"
msgctxt "#32338"
msgid "No Bluetooth adapter found."
msgstr ""
msgctxt "#32339"
msgid "No Bluetooth device found. Please put your Bluetooth device into discovery mode[CR]and start the scan"
msgstr ""
msgctxt "#32343"
msgid "Enter the following Key on your Device."
msgstr ""
msgctxt "#32344"
msgid "Enable Bluetooth"
msgstr ""
msgctxt "#32346"
msgid "Bluetooth is disabled"
msgstr ""
msgctxt "#32358"
msgid "Trust and Connect"
msgstr ""
msgctxt "#32362"
msgid "Check for updates now:"
msgstr ""
msgctxt "#32363"
msgid "@DISTRONAME@"
msgstr ""
msgctxt "#32364"
msgid "Update available"
msgstr ""
msgctxt "#32365"
msgid "Show Notifications"
msgstr ""
msgctxt "#32366"
msgid "Update Download Completed"
msgstr ""
msgctxt "#32367"
msgid "Update Extract Complete"
msgstr ""
msgctxt "#32368"
msgid "Advanced Network Settings"
msgstr ""
msgctxt "#32369"
msgid "Wait for network before starting Kodi"
msgstr ""
msgctxt "#32370"
msgid "Maximum Wait Time (Sec.)"
msgstr ""
msgctxt "#32371"
msgid "Backup"
msgstr ""
msgctxt "#32372"
msgid "Create System and Kodi Backup"
msgstr ""
msgctxt "#32373"
msgid "Restore Backup"
msgstr ""
msgctxt "#32374"
msgid "Error: Invalid backup file. Filename must end in: .tar, .tar.gz, .tar.bz2, or .tar.xz"
msgstr ""
msgctxt "#32375"
msgid "Backup Progress"
msgstr ""
msgctxt "#32376"
msgid "Submit Log"
msgstr ""
msgctxt "#32377"
msgid "Upload latest Kodi log and configs, and view the short URL"
msgstr ""
msgctxt "#32378"
msgid "Upload latest Kodi crash log and configs, and view the short URL"
msgstr ""
msgctxt "#32379"
msgid "There is not enough free storage space to continue!"
msgstr ""