mirror of
https://github.com/Squidly271/AppFeed.git
synced 2025-05-15 16:13:18 +00:00
Redo
This commit is contained in:
commit
b3878cd225
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
3
applicationFeed-lastUpdated.json
Normal file
3
applicationFeed-lastUpdated.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"last_updated_timestamp": 1606993724
|
||||
}
|
170364
applicationFeed-raw.json
Normal file
170364
applicationFeed-raw.json
Normal file
File diff suppressed because it is too large
Load Diff
171282
applicationFeed.json
Normal file
171282
applicationFeed.json
Normal file
File diff suppressed because it is too large
Load Diff
1
blacklistedRepos.json
Normal file
1
blacklistedRepos.json
Normal file
@ -0,0 +1 @@
|
||||
[]
|
1362
firstSeen.json
Normal file
1362
firstSeen.json
Normal file
File diff suppressed because it is too large
Load Diff
1
languageErrors.html
Normal file
1
languageErrors.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>Unraid Missing Translations</title></head><body>The following entries are missing translations:<br><br><font size='8'>German</font><br><br><br><br><font size='6' color='green'>ca_settings.txt</font><br><br>This setting allows CA to periodically scan your system and alert you to the presence of<br><font size='8'>Spanish</font><br><br><br><br><font size='6' color='green'>apps.txt</font><br><br>A note about translations<br><br><br><font size='6' color='green'>javascript.ca.txt</font><br><br>Are you sure you want to delete %s applications from the previously installed list<br><br><br><font size='6' color='green'>javascript.txt</font><br><br>Autostart disabled<br>Missing encryption key<br>Opening encrypted volumes<br><br><br><font size='6' color='green'>users.txt</font><br><br>Click to select PNG file<br><font size='8'>French</font><br><br><br><br><font size='6' color='green'>apps.txt</font><br><br>A note about translations<br><br><br><font size='6' color='green'>javascript.ca.txt</font><br><br>Install %s Selected Application<br>Install %s Selected Applications<br>Are you sure you want to delete %s applications from the previously installed list<br><br><br><font size='6' color='green'>javascript.txt</font><br><br>Autostart disabled<br>Missing encryption key<br>Opening encrypted volumes<br><br><br><font size='6' color='green'>shares.txt</font><br><br>Export<br>Read<br>Write<br><br><br><font size='6' color='green'>tools.txt</font><br><br>A reboot is required to apply changes<br>ALERT<br>Bind selected to VFIO at Boot<br>CPU Thread Pairings<br>Changes saved<br>In use by Unraid<br>No changes<br>PCI Devices and IOMMU Groups<br>Reboot to take effect<br>SCSI Devices<br>This controller is bound to vfio, connected USB devices are not visible<br>This controller is bound to vfio, connected drives are not visible<br>USB Devices<br>Your system has booted with the PCIe ACS Override setting enabled<br><br><br><font size='6' color='green'>users.txt</font><br><br>Click to select PNG file<br>Description<br>Only PNG images are allowed<br><br><br><font size='6' color='green'>vms.txt</font><br><br>Emulated<br></body></html>
|
7030
languageErrors.json
Normal file
7030
languageErrors.json
Normal file
File diff suppressed because it is too large
Load Diff
43
languageHTML.php
Normal file
43
languageHTML.php
Normal file
@ -0,0 +1,43 @@
|
||||
#!/usr/bin/php
|
||||
<?
|
||||
$appPaths['languageErrors'] = "/tmp/GitHub/AppFeed/languageErrors.json";
|
||||
$appPaths['languageHTML'] = "/tmp/GitHub/Squidly271.github.io/languageErrors.html";
|
||||
|
||||
$languageErrors = json_decode(file_get_contents($appPaths['languageErrors']),true);
|
||||
|
||||
$o = "<!DOCTYPE html><html><head><title>Unraid Missing Translations</title></head><body>";
|
||||
$o .= "The following entries are missing translations.<br>";
|
||||
$o .= "Please feel free to contribute to Unraid and fill out these missing translations. See <a href='https://forums.unraid.net/topic/93770-unraid-webgui-translations-disclaimer/' target='_blank'>This Post</a> for more details";
|
||||
$o .= "<br><br>NOTE: due to the design of the language files, missing translations within helptext.txt are not able to be listed here";
|
||||
$o .= "<br><br><font color='green' size='4'>Jump to:</font><br><br>";
|
||||
|
||||
foreach ( $languageErrors as $language => $files ) {
|
||||
$countryCode = explode(" ",$language)[0];
|
||||
$bookmarks .= "<a href='#$countryCode'>$language</a><br>";
|
||||
$l .= "<font size='8' id='$countryCode'>$language</font>";
|
||||
if ( is_array($files['files']) ) {
|
||||
$l .= "<br><br><font size='5'>The following files are missing from the language, and none of the translations are present: (You must copy the files from the en_US repository to the applicable language repository)</font><br><br>";
|
||||
foreach ($files['files'] as $file) {
|
||||
$l .= "<font color='green'>$file</font><br>";
|
||||
}
|
||||
}
|
||||
|
||||
if ( is_array($files['missing']) ) {
|
||||
$l .= "<br><br><font size='5'>The following files do not have these phrases translated:</font>";
|
||||
foreach ( $files['missing'] as $file => $errors ) {
|
||||
$l .= "<br><br><font size='6' color='green'>$file</font><br>";
|
||||
foreach ($errors as $error) {
|
||||
$l .= "<i>\"$error\"</i><br>";
|
||||
}
|
||||
}
|
||||
$l .= "<br><br>";
|
||||
}
|
||||
|
||||
if ( ! is_array($files['missing']) && ! is_array($files['files']) ) {
|
||||
$l .= "<br><br><font size='5' color='green'>Language is currently up to date</font>";
|
||||
}
|
||||
$l .= "<br><br>";
|
||||
}
|
||||
$o .= "$bookmarks<br><br>$l</body></html>";
|
||||
file_put_contents($appPaths['languageHTML'],$o);
|
||||
?>
|
862
languages/ar_AR
Normal file
862
languages/ar_AR
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=إلغاء
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=كل عام وأنتم بخير
|
||||
Happy Holidays from Andrew, Tracey, and family=أعياد سعيدة من أندرو، وتريسي والعائلة
|
||||
Please Enjoy Responsibly=استمتعوا بمسؤولية رجاءً
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=تتطلب نوافذ تطبيقات المجتمع المنبثقة للإتاحة تحت ظروف معينة،عليكالسماح بالقوائم المنبثقة خلال تسجيلك للخادم
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=خدمة حاويات دوكر غير متوفرة - تتوفر الملحقات الإضافية فقط للتثبيت أو الإدارة
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=تعمل تطبيقات المجتمع بشكل أفضل عندما تكون ملفات تعريف الارتباط مُمَكّنة في متصفحك، قد لا تتوفر بعض الميزات
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=الخادم الاحتياطي نشط، قد لا تظهر بعض الرموز ، وقد تتأثر تثبيتات بعض المكونات الإضافية
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=خيارات الترتيب
|
||||
Sorting options unavailable=خيارات الترتيب غير متاحة
|
||||
Sort By Name Ascending=ترتيب الأسماء تصاعديًا
|
||||
Sort By Name Descending=ترتيب الأسماء تنازليًا
|
||||
Sort By Downloads=ترتيب حسب عدد التنزيلات
|
||||
Sort By Trend=ترتيب حسب الاتجاه الرائج
|
||||
Sort By Date Added=ترتيب حسب التاريخ
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=إخلاء مسؤولية
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=جميع التطبيقات المدرجة هنا هي إضافات من طرف ثالث إلى Unraid، لا يقدم أصحاب تطبيقات المجتمع وشركة Limetech أي ضمان فيما يتعلق بملاءمة أي تطبيق مدرج هنا
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=نحاول قدر الإمكان التأكد من أمان وتوافق كل تطبيق متاح
|
||||
Application Policy=نهج التطبيقات
|
||||
I Understand=أقر بالشروط
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=تم تعطيل عمليات تثبيت التطبيقات، يجب قبول التحذير لتتمكن من تثبيت التطبيقات
|
||||
Click here=انقر هنا
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=تحتوي تطبيقات المجتمع على حاويات دوكر وتطبيقات ملحقات إضافية مصممة لتحسين نظام التشغيل، يتم تشغيلها بامتيازات كاملة على نظامك وتحديدها بوضوح داخل تطبيقات المجتمع
|
||||
Plugin Note=ملاحطة الملحق الإضافي
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=ثبت **تطبيقات الملحقات الإضافية**
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=بحث
|
||||
Please enter search term=ادخل كلمة البحث
|
||||
Click Here To Get More Results From DockerHub=اضغط هنا للحصول على نتائج من DockerHub
|
||||
No Matching Applications Found On Docker Hub=لا توجد نتائج متوفرة من DockerHub
|
||||
No Matching Applications Found=لا توجد نتائج للتطبيقات
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=تثبيت الملحق الإضافي
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=حذف القالب
|
||||
Yes, delete it=نعم، احذفه
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=حذف التطبيق
|
||||
Yes uninstall it=نعم، احذفه
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=حذف التطبيق الخاص
|
||||
Yes, remove it=نعم، احذفه
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=انقر لتعليق التطبيق
|
||||
Click to unpin this application=اضغط لإلغاء تعليق التطبيق
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=اختر فرع للتثبيت
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=تثبيت التطبيقات المختارة
|
||||
|
||||
Yes, install it=نعم، ثبتها
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=نعم، ثبتهم
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=ملفات تعريف الارتباط غير ممكنة، يجب تثبيت الملحقات الإضافية بشكل منفصل عن تطبيقات دوكر
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=سيتم تثبيت تطبيقات دوكر باستخدام أحدث قالب محفوظ دون تدخل المستخدم من جهتك
|
||||
Updating Support Links=تحديث روابط الدعم
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=انتهى التثبيت، إذا لم يظهر زر **تم**، عليك النقر على **X** الأحمر في أعلى النافذة
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=لا توجد معلومات للعرض، على الأغلب، طلب متصفح آخر لإعادة تشغيل الخادم، يمكن حل المشكلة بتحديث صفحة المتصفح على الأغلب
|
||||
An error occurred Could not find any %s Apps=حدث خطأ لم نستطع إيجاد %s أي من التطبيقات
|
||||
Download of appfeed failed=فشل تنزيل صفحة التطبيقات
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=حدث خطأ ما
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=انشر محتويات هذه الرسالة بالكامل في منتدى الدعم تطبيقات المجتمع
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=حدث خطأ غير معروف، أرسل صورة إحصائيات الخطأ في منتدى الدعم
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=حدث خطأ ما، تحديث صفحة التطبيقات قد يصلح المشكلة
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=يحتوي هذا الملحق الإضافي على اسم مكرر من ملحق إضافي آخر **%s** سيؤثر هذا على قدرتك على تثبيت كلا الملحقين الإضافيين في وقت واحد
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=القائمة
|
||||
Installed Apps=التطبيقات المثبتة
|
||||
Previous Apps=التطبيقات السابقة
|
||||
Pinned Apps=التطبيقات المعلقة
|
||||
CATEGORIES=التصنفيات
|
||||
New Apps=التطبيقات الجديدة
|
||||
Updated Apps=التطبيقات المحدثة
|
||||
Random Apps=تطبيقات عشوائية
|
||||
Top New Installs=أفضل أحدث التثبيتات
|
||||
Trending Apps=التطبيقات الرائجة
|
||||
All Apps=جميع التطبيقات
|
||||
OTHER=أخرى
|
||||
Statistics=إحصائيات
|
||||
Credits=الحقوق
|
||||
Support=الدعم
|
||||
VERSION=الإصدار
|
||||
Change Log=سجل التغييرات
|
||||
|
||||
; Credits
|
||||
Development=التطوير
|
||||
Additional Contributions=مشاركات إضافية
|
||||
GUI Layout Design=تصميم واجهة GUI
|
||||
Application Feed=موجز التطبيقات
|
||||
Additional Testing=تجارب إضافية
|
||||
Moderation=الإشراف
|
||||
Additional Libraries=مكتبات إضافية
|
||||
Copyright=حقوق الطبع
|
||||
Translation=الترجمة
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=هناك إمكانية لتثبيت التطبيقات المهملة إذا سبق لك تثبيتها، تحظر عمليات التثبيت الجديدة لهذه التطبيقات ما لم تقم بالتمكن من عرض التطبيقات المهملة داخل الإعدادات العامة لتطبيقات المجتمع
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=هذه التطبيقات محظورة ولن تدعك تطبيقات المجتمع بتثبيتها أو إعادة تثبيتها أبدًا
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=**على الرغم من عدم نصحنا بهذا الإجراء، ** يمكن تثبيت تطبيقات غير متوافقة بعد تمكين عرض التطبيقات غير المتوافقة في إعدادات تطبيقات المجتمع
|
||||
This display is informational ONLY=هذا العرض للعلم فقط
|
||||
unknown=غير معروف
|
||||
Last Change To Application Feed=آخر تعديل في موجز التطبيقات
|
||||
Number Of Docker Applications=عدد تطبيقات دوكر
|
||||
Number Of Plugin Applications=عدد تطبيقات الملحقات الإضافية
|
||||
Number Of Templates=عدد القوالب
|
||||
Number Of Repositories=عدد المستودعات
|
||||
Number Of Private Docker Applications=عدد تطبيقات دوكر الشخصية
|
||||
Number Of Invalid Templates=عدد القوالب غير الصالحة
|
||||
Number Of Template Errors=عدد أخطاء القوالب
|
||||
Number Of Blacklisted Apps=عدد التطبيقات المحظورة
|
||||
Number Of Incompatible Applications=عدد التطبيقات غير المتوافقة
|
||||
Number Of Deprecated Applications=عدد التطبيقات المهملة
|
||||
Number Of Moderation Entries=عدد تغييرات الإشراف
|
||||
Primary Server=الخادم الرئيسي
|
||||
Backup Server=الخادم الاحتياطي
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=قائمة المستودعات
|
||||
All Invalid Templates Found=جميع القوالب غير الصالحة
|
||||
Template Errors=أخطاء القوالب
|
||||
All Moderation Entries=كل تغييرات الإشراف
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=لا يوجد قوالب غير صالحة
|
||||
These templates are invalid and the application they are referring to is unknown=هذه القوالب غير صالحة والتطبيق المشار إليه غير معروف
|
||||
No templates were automatically fixed=لم يتم إصلاح أي قالب بشكل أتوماتيكي
|
||||
All of these errors found have been fixed automatically=تم إصلاح جميع هذه الأخطاء بشكل أتوماتيكي
|
||||
Note that many of these errors can be avoided by following the directions=يمكنك تجنب أغلب هذه الأخطاء باتباع التعليمات
|
||||
HERE=**هنا**
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=هذه الإضافات ذات أسماء متكررة ولا يمكن تثبيتها بشكل متزامن
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=تطبيقات دوكر هذه تشير لنفس مستودع دوكر ولكن تحمل تغييرات في القالب لضمان هذا الأمر
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=حال كانت أي من هذه التغييرات خاطئة، الرجاء التواصل مع مشرفي تطبيقات المجتمع
|
||||
Global Repository Comments=تعليقات المستودع العمومي
|
||||
Applied to all applications=مطبق على كل التطبيقات
|
||||
Individual Application Moderation=الإشراف الفردي على التطبيق
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=سجل تغييرات تطبيقات المجتمع
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=نسخ احتياطي
|
||||
Cloud=سحابة
|
||||
Downloaders=أدوات التنزيل
|
||||
Game Servers=خوادم الألعاب
|
||||
Home Automation=أنظمة تحكم منزلية تلقائية
|
||||
Media Applications=تطبيقات الوسائط
|
||||
Books=كتب
|
||||
Music=موسيقى
|
||||
Photos=صور
|
||||
Video=فيديوهات
|
||||
Other=أخرى
|
||||
Media Servers=خوادم الوسائط
|
||||
Network Services=خدمات الشبكة
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=إدارة
|
||||
Messenger=مسنجر
|
||||
Proxy=وكيل
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=ويب
|
||||
Productivity=الإنتاجية
|
||||
Security=الأمن
|
||||
Tools Utilities=أدوات/ أدوات مساعدة
|
||||
System=نظام
|
||||
Themes=سمات
|
||||
Utilities=أدوات مساعدة
|
||||
Private Apps=تطبيقات خاصة
|
||||
Uncategorized=غير مصنف
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=خواد الألعاب
|
||||
HomeAutomation=أنظمة تحكم منزلية تلقائية
|
||||
MediaApp=تطبيق وسائط
|
||||
MediaAppBooks=تطبيق وسائط كتب
|
||||
MediaAppMusic=تطبيق وسائط موسيقى
|
||||
MediaAppPhotos=تطبيق وسائط صور
|
||||
MediaAppVideo=تطبيق وسائط فيديو
|
||||
MediaAppOther=تطبيق وسائط أخرى
|
||||
MediaServer=سيرفر وسائط متعددة
|
||||
MediaServerBooks=خادم وسائط كتب
|
||||
MediaServerMusic=خادم وسائط موسيقى
|
||||
MediaServerPhotos=خادم وسائط صور
|
||||
MediaServerVideo=خادم وسائط فيديو
|
||||
MediaServerOther=خادم وسائط أخرى
|
||||
Network=شبكة
|
||||
NetworkDNS=شبكة DNS
|
||||
NetworkFTP=شبكة FTP
|
||||
NetworkManagement=شبكةالإدارة
|
||||
NetworkProxy=شبكة وكيل
|
||||
NetworkVOIP=شبكة VOIP
|
||||
NetworkVPN=شبكة VPN
|
||||
NetworkWeb=شبكة ويب
|
||||
NetworkOther=شبكة أخرى
|
||||
ToolsSystem=أدوات النظام
|
||||
ToolsThemes=أدوات السمات
|
||||
ToolsUtilities=أدوات أدوات مساعدة
|
||||
Other=أخرى
|
||||
OtherUncategorized=أخرى غير مصنفة
|
||||
and %s more=و أخرى %s
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=تبرع للمؤلف
|
||||
Donate To Maintainer=تبرع للمصلح
|
||||
Author=الناشر
|
||||
Maintainer=المصلح
|
||||
DockerHub=DockerHub
|
||||
Application Template=قالب التطبيق
|
||||
Base OS=قاعدة نظام التشغيل
|
||||
DockerHub Stars=نجوم DockerHub
|
||||
Added to CA=أضف إلى تطبيقات المجتمع
|
||||
Date Updated=تاريخ التحديث
|
||||
Current Version=الإصدار الحالي
|
||||
Minimum OS=نظام تشغيل الأدنى
|
||||
Max OS=نظام التشغيل الأقصى
|
||||
Total Downloads=عدد التنزيلات
|
||||
Licence=الترخيص
|
||||
30 Day Trend=اتجاه 30 يوم
|
||||
Ranked #%s=قيم **#%s**
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=الاتجاه %s
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=تم حظر قالب هذا التطبيق
|
||||
This application template has been deprecated=تم إهمال قالب هذا التطبيق
|
||||
This application is not compatible with your version of Unraid=هذا التطبيق غير متوافق مع إصدار نظام Unraid خاصتك
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=قام صفحة متصفح أو جهاز آخر بتحديث بعض القوالب المعروضة، بعض الإجراءات غير متاحة
|
||||
Reinstall default=إعادة تثبيت الخيار الافتراضي
|
||||
WebUI=WebUI
|
||||
Reinstall=إعادة التثبيت
|
||||
Install=تثبيت
|
||||
Project=مشروع
|
||||
Install Using The Templates Default Tag=استخدم علامة القالب الافتراضي للتثبيت
|
||||
Moderator Comments=تعليقات المشرف
|
||||
Note not all authors keep up to date on change logs=**تنبيه** لا يقوم جميع الكؤلفون بتحديث سجل التغييرات
|
||||
Note not all maintainers keep up to date on change logs=**تنبيه** لايقوم جميع المصلحون بتحديث سجل التغييرات
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=تبرع
|
||||
Currently Installed Version=الإصدار المثبت الحالي
|
||||
Install The Update=تثبيت التحديث
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=أحدث إصدار
|
||||
Multi Language Support=دعم لغات متعددة
|
||||
; as in more than 100000
|
||||
More than %s=اكثر من %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=الاتجاه حسب الشهر
|
||||
Downloads Per Month=التنزيل حسب الشهر
|
||||
Total Downloads=إجمالي التنزيلات
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=تثبيت تطبيقات دوكر %s
|
||||
Starting %s=البدء %s
|
||||
%s failed to start You should install it by itself to fix the errors=%s لإصلاح الأخطاء فشل البدء، يجب تثبيته بنفسك
|
||||
Setting installed applications to autostart=إعدادات التطبيقات المثبتة للبدء التلقائي
|
||||
Docker Application Installation finished=انتهاء تثبيت تطبيق دوكر
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=خاص DockerHub تحويل
|
||||
Go to the project page=اذهب إلى صفحة المشروع
|
||||
Go to the support thread=اذهب إلى صفحة الدعم
|
||||
Uninstall Application=إزالة التطبيق
|
||||
Remove Private Application=إزالة التطبيق الخاص
|
||||
Remove Application From List=إزالة التطبيق من القائمة
|
||||
Check off to select multiple reinstalls=تحقق من إعادة التثبيت المتعددة
|
||||
Go to the plugin settings=إذهب إلى إعدادات الملحق الإضافي
|
||||
Click to reinstall the application using default values=انقر لإعادة تثبيت التطبيق باستخدام القيم الافتراضية
|
||||
Click to edit the application values=انقر لتحرير قيم التطبيق
|
||||
Click to reinstall=انقر لإعادة التثبيت
|
||||
Click to install=انقر للتثبيت
|
||||
Install plugin=تثبيت الملحق الإضافي
|
||||
Click to go to the WebUI=انقر للذهاب إلى WebUI
|
||||
This application has been marked as being Beta=تم تصنيف هذا التطبيق من الصنف بيتا
|
||||
This application template has been deprecated=تم إهمال قالب التطبيق هذا
|
||||
This application is not compatible with your version of Unraid=هذا التطبيق غير متوافق مع إصدار نظام Unraid خاصتك
|
||||
This application template has been blacklisted=قالب التطبيق هذا محظور
|
||||
Search for more applications from %s=ابحث عن المزيد من التطبيقات من %s
|
||||
Click for more information=انقر لمزيد من المعلومات
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=ابحث عن حاويات من %s
|
||||
Search for similar containers=ابحث عن حاويات مشابهة
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=عرض %1$s - %2$s (من %3$s)
|
||||
|
||||
Updating Content=تحديث المحتوى
|
||||
Language=اللغة
|
||||
Switch to this language=تحول إلى هذه اللغة
|
||||
Country Code=رمز الدولة
|
||||
Install Language Pack=تثبيت حزمة اللغة
|
||||
Remove Language Pack=حذف حزمة اللغة
|
||||
Update Language Pack=تحديث حزمة اللغة
|
||||
Installed Version=الإصدار المثبت
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=لاختيار كيفية تصنيف النتائج
|
||||
These icons respectively will Install or Edit an application=ستثبت أو تحرر هذه الأيقونات على التوالي تطبيق ما
|
||||
Clicking these icons will take you to an applications GUI or settings=النقر على هذه الأيقونات سينقلك لصفحة التطبيقات GUI أو الإعدادات
|
||||
This will update an application=هذا سيحدّث تطبيقًا
|
||||
This will take you to the appropriate support thread for an application=هذا سينقلك لمنتدى الدعم الموافق للتطبيق
|
||||
This will immediately switch to the language=هذا سينتقل مباشرة إلى اللغة
|
||||
This will take you to the project page for an application=هذا سينقلك لصفحة مشروع التطبيق
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=النقر على هذه الأيقونة سيزيل التطبيق أو يحذفه من القائمة حسب خيارك الحالي
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=النقر على هذه الأيقونات سيعلق أو يزيل تعليق تطبيق لمشاهد لاحق من قسم تطبيق معلق
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=النقر على هذا سيظهر المزيد من المعلومات عن التطبيق، يمكنك أيضًا النقر على أيقونة التطبيق لعرض المزيد من المعلومات
|
||||
Clicking this will display any warnings or extra comments about the application=النقر على هذا سيعرض تحذيرات أو تعليقات إضافية عن التطبيق
|
||||
On the previous apps section you can select multiple applications to install simultaneously=في قسم التطبيقات السابقة، يمكنك تحديد عدة تطبيقات لتثبيتها في نفس الوقت
|
||||
This is the recommended version to install by the application author themselves=هذا الإصدار الموصى بتثبيته من قبل مؤلف التطبيق نفسه
|
||||
For support for this plugin visit=لمزيد من الدعم للملحق الإضافي هذا قم بزيارة
|
||||
To view the policies Community Applications has=لقراءة نهج تطبيقات المجتمع
|
||||
Access Mode=وضع الوصول
|
||||
Add another Path, Port, Variable, Label or Device=أضف مسار، منفذ، متغير، تسمية، أو جهاز
|
||||
Add Configuration=أضف تكوينات
|
||||
Add=أضف
|
||||
Always=دائمًا
|
||||
App to Host=تطبيق إلى المضيف
|
||||
Application=تطبيق
|
||||
apply update=تطبيق التحديث
|
||||
Array must be Started to view Docker containers=يجب **بدء** المصفوفة لإظهار حاويات دوكر
|
||||
Are you sure=هل أنت متأكد
|
||||
Autostart=بدء تلقائي
|
||||
Back=خلف
|
||||
Backup=نسخة احتياطية
|
||||
Beta=بيتا
|
||||
Books=كتب
|
||||
By=بواسطة
|
||||
Categories=فئات
|
||||
Check for Updates=تأكد من التحديثات
|
||||
Cloud=سحاب
|
||||
Config Type=نوع التكوين
|
||||
Configuration not found=لا يوجد تكوينات
|
||||
Connection Type=نوع الاتصال
|
||||
Console shell command=أوامر وحدة التحكم
|
||||
Container ID=معرف الحاوية
|
||||
Container Path=مسار الحاوية
|
||||
Container Port=منفذ الحاوية
|
||||
Container Size=حجم الحاوية
|
||||
Container=الحاوية
|
||||
CPU Memory load=تحميل وحدة المعالجة المركزية والذاكرة
|
||||
CPU Pinning=تثبيت وحدة المعالجة المركزية
|
||||
Created=إنشاء
|
||||
Default Value=قيمة افتراضية
|
||||
Device=جهاز
|
||||
Display=عرض
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=رابط DockerHub
|
||||
Docker Service failed to start=فشل تفعيل خدامات دوكر
|
||||
Donation Link=رابط التبرع
|
||||
Donation Text=نص التبرع
|
||||
Downloaders=أدوات التنزيل
|
||||
Edit Configuration=تعديل التكوينات
|
||||
Exited=تم الخروج
|
||||
Extra Parameters=معلمات إضافية
|
||||
Fixed IP address=عنوان IP ثابت
|
||||
force update=فرض التحديث
|
||||
FTP=FTP
|
||||
Game Servers=خوادم الألعاب
|
||||
healthy=سليمة
|
||||
Hide Buttons=إخفاء الأزرار
|
||||
Hide docker allocations=إخفاء تخصيصات دوكر
|
||||
Hide more settings=إخفاء المزيد من الإعدادات
|
||||
Home Automation=أنظمة تحكم منزلية تلقائية
|
||||
Host Path=مسار المضيف
|
||||
Host Port=منفذ المضيف
|
||||
HT=HT
|
||||
Icon URL=رابط أيقونة
|
||||
Image ID=رابط الصورة
|
||||
Key=مفتاح
|
||||
Label=تسمية
|
||||
latest=الأحدث
|
||||
Management=الإدارة
|
||||
MediaApp=تطبيق وسائط
|
||||
MediaServer=خادم وسائط
|
||||
Messenger=المراسلة
|
||||
Missing parameters=معلمات مفقودة
|
||||
Music=موسيقى
|
||||
Network Type=نوع الشبكة
|
||||
No Docker containers installed=ما من حاويات دوكر مثبتة
|
||||
of=من
|
||||
orphan image=صورة وحيدة
|
||||
Other=أخرى
|
||||
Overview=نظرة عامة
|
||||
Path=مسار
|
||||
Pause All=إيقاف الكل
|
||||
Photos=صور
|
||||
Port Mappings=تعيينات المنافذ
|
||||
Port=منفذ
|
||||
Post Arguments=وسيطات
|
||||
Privileged=متميزة
|
||||
Productivity=الإنتاجية
|
||||
Project Page=صفحة المشروع
|
||||
Proxy=وكيل
|
||||
Pulling image=سحب صورة
|
||||
Read Only - Shared=للقراءة فقط - مشترك
|
||||
Read Only - Slave=للقراءة فقط - تابع
|
||||
Read Only=للقراءة فقط
|
||||
ReadWrite - Shared=قراءة/كتابة - مشترك
|
||||
ReadWrite - Slave=قراءة/كتابة - تابع
|
||||
rebuild ready=إعادة البناء جاهزة
|
||||
rebuilding=إعادة البناء
|
||||
Remove template=إزالة قالب
|
||||
Removing container=إزالة حاوية
|
||||
Removing orphan image=إزالة صورة وحيدة
|
||||
Repository=مستودع
|
||||
Required=مطلوب
|
||||
Resume All=استئناف الكل
|
||||
Save=حفظ
|
||||
Select a template=تحديد قالب
|
||||
Select categories=تحديد فئة
|
||||
Show docker allocations=إظهار تخصيصات دوكر
|
||||
Show more settings=إظهار المزيد من الإعدادات
|
||||
Stable=مستقر
|
||||
Start All=بدء الكل
|
||||
starting up containers=بدء الحاويات
|
||||
Stop All=وقف الكل
|
||||
Stopping container=إيقاف حاوية
|
||||
Successfully removed container=تم إزالة الحاوية بنجاح
|
||||
Successfully removed orphan image=تم إزالة الصورة الوحيدة بنجاح
|
||||
Successfully stopped container=تم إيقاف الحاوية بنجاح
|
||||
Support Thread=مؤشر ترابط الدعم
|
||||
Template repositories=مستودعات القوالب
|
||||
Template URL=رابط القالب
|
||||
Template=قالب
|
||||
The command failed=فشل الأمر
|
||||
The command finished successfully=نجاح الأمر النهائي
|
||||
TOTAL DATA PULLED=**إجمالي البيانات المسحوبة**
|
||||
Unknown action=أمر غير معروف
|
||||
Update All=تحديث الكل
|
||||
update ready=التحديث جاهز
|
||||
Value=قيمة
|
||||
Variable=متغير
|
||||
Video=فيديو
|
||||
Voip=VOIP
|
||||
Volume Mappings=تعيينات وحدة تخزين
|
||||
wait=انتظر
|
||||
Was this container created using this plugin=هل تم إنشاء الحاوية باستخدام هذا المكون الإضافي
|
||||
Web=ويب
|
||||
WebUI=WebUI
|
||||
Writable=قابل للكتابة
|
||||
Absolute=مطلق
|
||||
Acknowledge=إقرار
|
||||
Active=نشط
|
||||
active=نشط
|
||||
Actual results=نتائج فعلية
|
||||
Add Container=أضف حاوية
|
||||
Add VM=أضف جهاز افتراضي
|
||||
Advanced View=عرض متقدم
|
||||
AFP Security Settings=إعدادات الأمان لبروتوكول AFP
|
||||
All=الكل
|
||||
Anonymize diagnostics may make troubleshooting more difficult=التشخيص الخفي قد يجعل استكشاف الأخطاء وإصلاحها أكثر صعوبة
|
||||
Apply=تطبيق
|
||||
Apps=تطبيقات
|
||||
Array must be Stopped to change=يجب أن تكون المصفوفة **متوقفة** للتغيير
|
||||
Array Started=تم تشغيل المصفوفة
|
||||
Array Starting=تشغيل المصفوفة
|
||||
Array Stopped=تم إيقاف المصفوفة
|
||||
Array Stopping=إيقاف المصفوفة
|
||||
Array=المصفوفة
|
||||
Attributes=سمات
|
||||
Auto=تلقائي
|
||||
Automatic=تلقائي
|
||||
Average speed=متوسط السرعة
|
||||
Azure=أزرق سماوي
|
||||
B=B
|
||||
Back To Top=عودة إلى الأعلى
|
||||
Basic=أساسي
|
||||
Basic View=العرض الأساسي
|
||||
BIOS=نظام الإدخال/الإخراج الأساسي
|
||||
Black=أسود
|
||||
Browse=تصفح
|
||||
Browser error=خطأ في المتفصح
|
||||
btrfs=نظام الملفات المتسلسلة شجرياً
|
||||
Bug Description=وصف الخطأ
|
||||
Bug Report=تقرير الخطأ
|
||||
bytes=بايتات
|
||||
Cancel=إلغاء
|
||||
Capabilities=القدرات
|
||||
Case-sensitive names=أسماء حساسة لحالة الأحرف
|
||||
Center=وسطي
|
||||
Change=تغيير
|
||||
Check=تحقق
|
||||
Clear=مسح
|
||||
Clearing=جارٍ المسح
|
||||
Click for context menu=انقر لقائمة السياق
|
||||
Click=انقر
|
||||
close all notifications=إغلاق جميع الإشعارات
|
||||
Close=إغلاق
|
||||
close=إغلاق
|
||||
Comment=تعليق
|
||||
Contact Email Address=عنوان البريد الإلكتروني لجهة الاتصال
|
||||
Contact Support=الاتصال بالدعم
|
||||
containing your key file URL=تحتوي على رابط ملفك المفتاح
|
||||
Copy=نسخ
|
||||
CPU=وحدة المعالجة المركزية
|
||||
Dashboard=لوحة المعلومات
|
||||
day=اليوم
|
||||
%s day ago=قبل %s يوم
|
||||
%s days ago=قبل %s أيام
|
||||
Days_array=Sunday:الأحد Monday:الاثنين Tuesday:الثلاثاء Wednesday:الأربعاء Thursday:الخميس Friday:الجمعة Saturday:السبت Sun:الأحد Mon:الاثنين Tue:الثلاثاء Wed:الأربعاء Thu:الخميس Fri:الجمعة Sat:السبت
|
||||
days=الأيام
|
||||
Default=افتراضي
|
||||
default=افتراضي
|
||||
Delete=حذف
|
||||
Description=الوصف
|
||||
Device contents emulated, in standby mode spun-down=تمت مضاهاة محتويات الجهاز، في وضع الاستعداد (مثبط)
|
||||
Device contents emulated=تمت مضاهاة محتويات الجهاز
|
||||
Device is disabled, contents emulated=الجهاز معطل، تمت مضاهاة المحتويات
|
||||
Device is in standby mode spun-down=الجهاز في وضع الاستعداد (مثبط)
|
||||
Device is missing disabled, contents emulated=الجهاز مفقود (معطل)، تمت مضاهاة المحتويات
|
||||
Device not present=الجهاز غير موجود
|
||||
Device=جهاز
|
||||
directories=دلائل
|
||||
directory=دليل
|
||||
Disabled=معطل
|
||||
disabled=معطل
|
||||
Disk=قرص
|
||||
disk=قرص
|
||||
Do you want to update to the new version=هل تريد التحديث إلى الإصدار الجديد
|
||||
Docker=
|
||||
Done=تم
|
||||
Download=تحميل
|
||||
Duration=المدة الزمنية
|
||||
Edit=تحرير
|
||||
edit=تحرير
|
||||
Emulated=تمت مضاهاته
|
||||
emulated=تمت مضاهاته
|
||||
Enabled=ممكّن
|
||||
enabled=ممكّن
|
||||
Encrypted and unlocked=مشفر وغير مؤمن
|
||||
Error code=رقم الخطأ
|
||||
Error=خطأ
|
||||
error=خطأ
|
||||
Errors=الأخطاء
|
||||
errors=أخطاء
|
||||
Expected results=النتائج المتوقعة
|
||||
Export=تصدير
|
||||
Faulty=معيب
|
||||
faulty=معيب
|
||||
Feedback=ملاحظات
|
||||
File too large=الملف كبير جدًا
|
||||
file=ملف
|
||||
files=ملفات
|
||||
Fixed=أُصلح
|
||||
Flash=ذاكرة محمولة
|
||||
flash=ذاكرة محمولة
|
||||
Flash GUID=GUID الذاكرة المحمولة
|
||||
Flash Product=منتج الذاكرة المحمولة
|
||||
Flash Vendor=بائع الذاكرة المحمولة
|
||||
FOLDER=المجلد
|
||||
folder=
|
||||
Force lower=القوة الأقل
|
||||
Format=تنسيق
|
||||
Formatting devices=تنسيق الأجهزة
|
||||
Forum=المنتدى
|
||||
GB=جيجابايت
|
||||
Go to Registration page=اذهب إلى صفحة التسجيل
|
||||
GPT 4KiB-aligned=جدول التقسيم ذو المعرفات الفريدة الشامل (محاذاة 4K)
|
||||
Gray=رمادي
|
||||
Guests have no access=**لا يمتلك **الزوار صلاحيات الوصول
|
||||
Guests have read-only access=يمتلك الزوار صلاحيات** القراءة فقط**
|
||||
Heat alarm=إنذار الحرارة
|
||||
Help=المساعدة
|
||||
here=هنا
|
||||
History=سجل
|
||||
hour=ساعة
|
||||
hours=ساعات
|
||||
%s hour ago=قبل %s ساعة
|
||||
%s hours ago=قبل %s ساعات
|
||||
How to reproduce=كيفية إعادة الإنتاج
|
||||
hr=ساعة
|
||||
HVM=آلية الجهاز الافتراضي
|
||||
Identity=الهوية
|
||||
Inactive=خامل
|
||||
Index of=فهرس
|
||||
Info=معلومات
|
||||
Install Key=مفتاح التثبيت
|
||||
interface down=الواجهة غير متصلة
|
||||
Interface=الواجهة
|
||||
IOMMU=وحدة إدارة ذاكرة الإدخال والإخراج
|
||||
is available=متوفر
|
||||
KB=كيلو بايت
|
||||
Kernel=Kernel
|
||||
Last Modified=آخر تعديل
|
||||
Left=اليسار
|
||||
less than a minute remaining=متبقي أقل من دقيقة
|
||||
less than a minute=أقل من دقيقة
|
||||
Load=الحمولة
|
||||
Location=الموقع
|
||||
Locked missing encryption key=مؤمن: مفتاح التشفير مفقود
|
||||
Locked unknown error=مؤمن: خطأ غير معروف
|
||||
Locked wrong encryption key=مؤمن: مفتاح تشفير خاطئ
|
||||
Log=سجل
|
||||
Login=تسجيل الدخول
|
||||
Logout=تسجيل الخروج
|
||||
Main=الرئيسي
|
||||
manual=يدوي
|
||||
max installable capacity=أقصى سعة قابلة للتثبيت
|
||||
Maximum file upload size is 512K=الحجم الأقصى لتحميل الملف هو 512 كيلوبايت
|
||||
MB=ميجا بايت
|
||||
MBR 1MiB-aligned=
|
||||
MBR 4KiB-aligned=سجل الإقلاع الرئيسي: (محاذاة 4K)
|
||||
MBR unaligned=سجل الإقلاع الرئيسي: غير محاذ
|
||||
Memory=الذاكرة
|
||||
min=دقيقة
|
||||
minute=دقيقة
|
||||
minutes=دقائق
|
||||
%s minute ago=قبل %s دقيقة
|
||||
%s minutes ago=قبل %s دقائق
|
||||
Model=طراز
|
||||
%s month ago=قبل %s شهر
|
||||
%s months ago=قبل %s شهور
|
||||
Months_array=January:يناير February:فبراير March:مارس April:أبريل May:مايو June:يونيو July:يوليو August:أغسطس September:سبتمبر October:أكتوبر November:نوفمبر December:ديسمبر Jan:يناير Feb:فبراير Mar:مارس Apr:أبريل May:مايو Jun:يونيو Jul:يوليو Aug:أغسطس Sep:سبتمبر Oct:أكتوبر Nov:نوفمبر Dec:ديسمبر
|
||||
months=شهور
|
||||
More=المزيد
|
||||
Motherboard=اللوحة الأم
|
||||
Move=نقل
|
||||
NA=لا يوجد
|
||||
Name=الاسم
|
||||
Network=الشبكة
|
||||
Never=أبدًا
|
||||
New device, in standby mode spun-down=جهاز جديد، في وضع الاستعداد مثبط
|
||||
New device=جهاز جديد
|
||||
NFS Security Settings=إعدادات أمان لنظام ملفات الشبكة
|
||||
No Access=ممنوع الدخول
|
||||
No device=لا يوجد جهاز
|
||||
no device=لا يوجد جهاز
|
||||
No errors reported=لم يتم الإبلاغ عن أخطاء
|
||||
No information available=لا توجد معلومات متاحة
|
||||
No listing Too many files=بلا قائمة، عدد كبير جدًا من الملفات
|
||||
No reply from mail server=لا يوجد رد من خادم البريد
|
||||
No=لا
|
||||
no=لا
|
||||
None=لا يوجد
|
||||
none=لا يوجد
|
||||
Normal operation, device is active=التشغيل العادي، الجهاز نشط
|
||||
Normal=قياسي
|
||||
Normalized=مُعاير
|
||||
Not Available=غير متاح
|
||||
not available=غير متاح
|
||||
not connected=غير متصل
|
||||
Not encrypted=غير مشفر
|
||||
not encrypted=غير مشفر
|
||||
NOTE=ملاحظة
|
||||
Numbers_array=أرقام المصفوفة thirty:ثلاثون twenty-nine:تسعة-وعشرون twenty-eight:ثمانية-وعشرون twenty-seven:سبعة-وعشرون twenty-six:ستة-وعشرون twenty-five:خمسة-وعشرون twenty-four:أربعة-وعشرون twenty-three:ثلاثة-و-عشرون twenty-two:اثنان-و-عشرون twenty-one:واحد-وعشرون twenty:عشرون nineteen:تسعة-عشر eighteen:ثامنة-عشر seventeen:سبعة-عشر sixteen:ستة-عشر fifteen:خمسة-عشر fourteen:أربعة-عشرة thirteen:ثلاثة-عشر twelve:اثنا-عشر eleven:أحد-عشر ten:عشرة nine:تسعة eight:ثمانية seven:سبعة six:ستة five:خمسة four:أربعة three:ثلاثة two:اثنان one:واحد zero:صفر
|
||||
objects=كائنات
|
||||
Off=متوقف
|
||||
off-line=غير متصل
|
||||
OK=موافق
|
||||
Ok=موافق
|
||||
ok=موافق
|
||||
On=تشغيل
|
||||
Online Manual=دليل على الإنترنت
|
||||
Online manual=دليل على الإنترنت
|
||||
OpenSSL=OpenSSL
|
||||
optional=اختياري
|
||||
Other Comment=تعليق آخر
|
||||
Other information=معلومات أخرى
|
||||
Parity device is disabled=تم تعطيل جهاز التماثل
|
||||
Parity device is missing=جهاز التماثل مفقود
|
||||
Parity is invalid, in standby mode spun-down=التماثل غير صالح، في وضع الاستعداد مثبط
|
||||
Parity is invalid=التماثل غير صالح
|
||||
Parity is valid=التماثل صالح
|
||||
Parity=التماثل
|
||||
parity=التماثل
|
||||
Parity-Check=فحص-التماثل
|
||||
Parity-Sync Data-Rebuild=مزامنة التماثل/إعادة بناء البيانات
|
||||
Pause=إيقاف
|
||||
Paused=متوقف
|
||||
paused=متوقف
|
||||
PB=بيتا بايت
|
||||
Please select one file only=يرجى تحديد ملف واحد فقط
|
||||
Please summarize your suggestion here=يرجى تلخيص اقتراحك هنا
|
||||
Please try again later=الرجاء معاودة المحاولة في وقت لاحق
|
||||
Please wait=الرجاء الانتظار
|
||||
Plugins=الملحقات الإضافية
|
||||
Plus=إضافي
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=خاص
|
||||
Pro=مميز
|
||||
Proceed=متابعة
|
||||
Processor=المعالج
|
||||
Product Suggestion=اقتراح المنتج
|
||||
Public=عام
|
||||
RAM=ذاكرة الوصول العشوائي
|
||||
Raw=خام
|
||||
Read=قراءة
|
||||
Read settings from=قراءة الإعدادات من
|
||||
Read-Check=فحص القراءة
|
||||
Read-only=للقراءة فقط
|
||||
Reads=يقرأ
|
||||
ReadWrite=قراءة/كتابة
|
||||
Reboot Now=إعادة التشغيل الآن
|
||||
Reboot=إعادة التشغيل
|
||||
Refresh=تحديث
|
||||
Registration=التسجيل
|
||||
reiserfs=ريسير أف أس
|
||||
Release Notes=ملاحظات الإصدار
|
||||
Remove=إزالة
|
||||
Renew=تجديد
|
||||
Reset=إعادة
|
||||
Restart=إعادة التشغيل
|
||||
Resume=استئناف
|
||||
Right=اليمين
|
||||
RPM=دورة في الدقيقة
|
||||
Running=قيد التشغيل
|
||||
running=قيد التشغيل
|
||||
safe mode=الوضع الآمن
|
||||
sec=ثانية
|
||||
second=الثانية
|
||||
seconds=ثواني
|
||||
%s second ago=قبل %s ثانية
|
||||
%s seconds ago=قبل %s ثواني
|
||||
Secure=آمن
|
||||
Security=الأمن
|
||||
Security Settings=إعدادات الأمان
|
||||
select=حدد
|
||||
Self-Test=الاختبار الذاتي
|
||||
Server=الخادم
|
||||
Settings=الإعدادات
|
||||
Share=المشاركة
|
||||
Share name=اسم المشاركة
|
||||
Shares List=قائمة المشاركات
|
||||
Shares=المشاركات
|
||||
Shutdown=إيقاف التشغيل
|
||||
Size=السعة
|
||||
SMB Security Settings=إعدادات أمان SMB
|
||||
sn=الرقم التسلسلي
|
||||
Sorry, an error occurred=عذرًا، حدث خطأ
|
||||
Standby=وضع الاستعداد
|
||||
standby=وضع الاستعداد
|
||||
Start=ابدأ
|
||||
Started=بدأ
|
||||
started=بدأ
|
||||
Status=الحالة
|
||||
status=الحالة
|
||||
Stop=توقف
|
||||
Stopped=متوقف
|
||||
stopped=متوقف
|
||||
Streams=التدفقات
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=سيؤدي إرسال تقرير الخطأ هذا إلى إرسال تشخيصات نظامك تلقائيًا إلى Lime Technology
|
||||
Submit=إرسال
|
||||
System Information=معلومات النظام
|
||||
System is going down=النظام قيد إيقاف تشغيل
|
||||
System is offline=النظام غير متصل
|
||||
System is powered off=تم إيقاف تشغيل النظام
|
||||
System is rebooting=يقوم النظام بإعادة التشغيل
|
||||
System Log=سجل النظام
|
||||
System notifications are=إخطارات النظام هي
|
||||
System running in=يعمل النظام في
|
||||
System=النظام
|
||||
TB=تيرا بايت
|
||||
Temperature=درجة الحرارة
|
||||
Template Repositories=مستودعات القالب
|
||||
Terminal=الوحدة الطرفية
|
||||
Test result=نتيجة الاختبار
|
||||
Thank You=شكرًا لك
|
||||
The error is=الخطأ هو
|
||||
to change notification settings=لتغيير إعدادات الإشعار
|
||||
to downgrade Unraid OS=الرجوع إلى إصدار أقدم من نظام تشغيل اونرايد
|
||||
to upgrade Unraid OS=لترقية نظام التشغيل اونرايد
|
||||
today=اليوم
|
||||
Too many files=ملفات كثيرة جدًا
|
||||
Tools=أدوات
|
||||
Total=المجموع
|
||||
total=المجموع
|
||||
Type your question or comment to Lime Technology here=اكتب سؤالك أو تعليقك لشركةLime Technology هنا
|
||||
Type=نوع
|
||||
Unable to generate system diagnostics=تعذر إنشاء تشخيصات النظام
|
||||
Unassigned=غير معين
|
||||
unassigned=غير معين
|
||||
Unknown=غير معروف
|
||||
unknown=غير معروف
|
||||
Unraid OS=نظام تشغيل Unraid
|
||||
Update Container=تحديث الحاوية
|
||||
Update Now=حدّث الآن
|
||||
Update VM=تحديث الجهاز الافتراضي
|
||||
Update=تحديث
|
||||
update=تحديث
|
||||
Updated=محدث
|
||||
Upload error=خطأ في التحميل
|
||||
Upload=تحميل
|
||||
Uptime=وقت التشغيل
|
||||
up-to-date=محدث
|
||||
User Access=صلاحيات المستخدم
|
||||
Users=المستخدمين
|
||||
Utilization=الاستعمال
|
||||
Version=الإصدار
|
||||
View Release Notes=عرض ملاحظات الإصدار
|
||||
View=عرض
|
||||
VMs=
|
||||
VPN=شبكة خاصة افتراضية
|
||||
Warning=تحذير
|
||||
Website=الموقع
|
||||
%s week ago=قبل %s أسبوع
|
||||
%s weeks ago=قبل %s أسابيع
|
||||
White=أبيض
|
||||
Wiki=Wiki
|
||||
Write=الكتابة
|
||||
Write settings to=كتابة الإعدادات إلى
|
||||
Wrong=خاطئ
|
||||
wrong=خاطئ
|
||||
xfs=xfs
|
||||
Yes, I want to do this=نعم، أريد القيام بذلك
|
||||
Yes=نعم
|
||||
yes=نعم
|
||||
Yes hidden=نعم مخفي
|
||||
Yes Time Machine=نعم آلة الزمن
|
||||
YesTime Machine hidden=نعم آلة الزمن مخفية
|
||||
YesTime Machine=نعم آلة الزمن
|
||||
yesterday=أمس
|
||||
You must reboot for changes to take effect=يجب إعادة التشغيل لتصبح التغييرات نافذة المفعول
|
||||
Your browser does not support HTML5 file uploads=متصفحك لا يدعم تحميل ملف HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=المصفوفة مشغولة
|
||||
Buttons=أزرار
|
||||
Parity operation or mover is running=عملية التماثل أو الناقل قيد التشغيل
|
||||
preparing for reboot=التحضير لإعادة التشغيل
|
||||
preparing for shutdown=التحضير لإيقاف التشغيل
|
||||
Sleep=وضع السكون
|
||||
Start Array=بدء المصفوفة
|
||||
starting the array=جاري بدء المصفوفة
|
||||
Stop Array=إيقاف المصفوفة
|
||||
stopping the array=جاري إيقاف المصفوفة
|
||||
System in sleep mode=النظام في وضع السكون
|
||||
This will put the system to sleep=هذا سيضع النظام في وضع السكون
|
||||
This will reboot the system=سيؤدي هذا لإعادة تشغيل النظام
|
||||
This will shutdown the system=سيؤدي هذا لإيقاف تشغيل النظام
|
||||
This will start the array=سيؤدي هذا لبدء المصفوفة
|
||||
This will stop the array=سيؤدي هذا لإيقاف المصفوفة
|
862
languages/de_DE
Normal file
862
languages/de_DE
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=Abbrechen
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=Frohes neues Jahr
|
||||
Happy Holidays from Andrew, Tracey, and family=Frohe Feiertage von Andrew, Tracey und der Familie
|
||||
Please Enjoy Responsibly=Genieße, Verantwortungsvoll
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=Ein Popup wurde blockiert CA braucht Popups unter bestimmten Bedingungen. Du musst Popups für deinen Server in deinem Browser erlauben.
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=Docker Service nicht aktiviert - Es sind nur Plugins zum Installieren oder Verwalten verfügbar
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=Community Applications funktioniert am besten wenn Browser Cookies aktiviert sind. Bestimmte Funktionen könnten nicht verfügbar sein.
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=Server Backup aktiv. Einige Icons werden vielleicht nicht angezeigt und die Installation von Plugins ist eventuell beeinträchtigt.
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=Sortieroptionen
|
||||
Sorting options unavailable=Sortieroptionen nicht verfügbar
|
||||
Sort By Name Ascending=Aufsteigend nach Name sortieren
|
||||
Sort By Name Descending=Absteigend nach Name sortieren
|
||||
Sort By Downloads=Nach Downloads sortieren
|
||||
Sort By Trend=Nach Trend sortieren
|
||||
Sort By Date Added=Nach Hinzufügedatum sortieren
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=Haftungsausschluss
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=Alle hier aufgelisteten Programme für Unraid stammen von Drittanbietern, weder die Autoren der Community Applications noch Limetech übernehmen jegliche Garantie über die Angemessenheit der aufgeführten Programme
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=Es wird alles unternommen nur sichere und kompatible Programme anzubieten
|
||||
Application Policy=Anwendungsrichtlinie
|
||||
I Understand=Einverstanden
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=Die Installation von Apps ist deaktiviert. Bitte die Warnung akzeptieren um Programme installieren zu können
|
||||
Click here=Klicke hier
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Community Applications enthält Docker Container und Plugins. Plugins sind zur Systemverbesserungen entwickelt, werden mit allen Benutzerrechten auf dem System ausgeführt und sind klar innerhalb CA identifiziert
|
||||
Plugin Note=Plugin Hinweis
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=Plugin installieren
|
||||
Select all on page=Alle auf der Seite auswählen
|
||||
|
||||
; Searches
|
||||
Search=Suche
|
||||
Please enter search term=Bitte Suchtext eingeben
|
||||
Click Here To Get More Results From DockerHub=Klick hier um zusätzliche Ergebnisse von DockerHub zu erhalten
|
||||
No Matching Applications Found On Docker Hub=Keine passenden Container auf DockerHub gefunden
|
||||
No Matching Applications Found=Keine passenden Anwendungen gefunden
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=Plugin installieren
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=Vorlage löschen
|
||||
Yes, delete it=Ja, löschen
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=Anwendung deinstallieren
|
||||
Yes uninstall it=Ja, deinstallieren
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=Private Anwendung entfernen
|
||||
Yes, remove it=Ja, entfernen
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=Klicke um Anwendung zu makieren
|
||||
Click to unpin this application=Klicke um die Makierung der Anwendung aufzuheben
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=Wähle einen Branch zum installieren
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=Ausgewählte Anwendung installieren
|
||||
|
||||
Yes, install it=Ja, installieren
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=Ja, installieren
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=Cookies sind nicht aktiviert Plugins müssen getrennt von Docker Container installiert werden
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=Docker Container werden mit der aktuellsten Vorlage ohne benutzerdefinierte Eingaben installiert
|
||||
Updating Support Links=Hilfe Links werden aktualisiert
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=Installation abgeschlossen. Falls der FERTIG Button nicht erscheint, klicke bitte das rote X in der oberen rechten Ecke
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=Keine Daten erhalten. Es kann sein, dass eine andere Browserinstanz den Server neu gestartet hat. Das Neuladen dieses Tabs behebt das Problem wahrscheinlich
|
||||
An error occurred Could not find any %s Apps=Es ist ein Fehler aufgetreten. Es konnten keine %s Anwendungen gefunden werden.
|
||||
Download of appfeed failed=Herunterladen des Appfeed fehlgeschlagen
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=Etwas ist schief gegangen
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=Poste den GESAMTEN Inhalt dieser Nachricht in den Community Application Support Post im Forum
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=Ein unbekannter Fehler ist aufgetreten. Bitte poste einen Screenshot vom Statistik Fenster in den Support Thread
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=Etwas ist schief gegangen. Das Neuladen des App Tabs behebt das Problem wahrscheinlich
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=Dieses Plugin verwendeten bereits einen Name von einem anderen Plugin %s. Dies beeinträchtigt die Installation beider Plugins gleichzeitig
|
||||
You have been logged out=Sie wurden abgemeldet
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=MENÜ
|
||||
Installed Apps=Installierte Apps
|
||||
Previous Apps=Vorherige Apps
|
||||
Pinned Apps=Markierte Apps
|
||||
CATEGORIES=KATEGORIE
|
||||
New Apps=Neue Apps
|
||||
Updated Apps=Aktualisierte Apps
|
||||
Random Apps=Zufällig Apps
|
||||
Top New Installs=Top neue Installationen
|
||||
Trending Apps=Trend-Apps
|
||||
All Apps=Alle Apps
|
||||
OTHER=ANDERE
|
||||
Statistics=Statistiken
|
||||
Credits=Credits
|
||||
Support=Hilfe
|
||||
VERSION=VERSION
|
||||
Change Log=Changelog
|
||||
|
||||
; Credits
|
||||
Development=Entwicklung
|
||||
Additional Contributions=Zusätzliche Beteiligung
|
||||
GUI Layout Design=GUI Layoutgestaltung
|
||||
Application Feed=Anwendungs Feed
|
||||
Additional Testing=Zusätzliche Tests
|
||||
Moderation=Leitung
|
||||
Additional Libraries=Zusätzliche Bibliotheken
|
||||
Copyright=Copyright
|
||||
Translation=Übersetzung
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=Veralterte Anwendungen können immer noch installiert werden falls du sie bereits installiert hattest. Neue Installationen diese Anwendungen sind blockiert außer du hast die Option Zeige veralterte Anwendungen in den Einstellungen von CA aktiviert
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=Die folgenden Anwndungen sind gesperrt. CA wird nicht mehr erlauben diese zu installieren
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=Es ist möglich inkomaptible Anwendungen zu installieren wenn in den Einstellungen von CA Zeige nicht kompatible Anwendungen aktiviert wurde. Allerdings wird stark davon abgeraten
|
||||
This display is informational ONLY=Diese Anzeige dient NUR zur Information
|
||||
unknown=unbekannt
|
||||
Last Change To Application Feed=Letzte änderungen im Anwendungs Feed
|
||||
Number Of Docker Applications=Anzahl Docker Container
|
||||
Number Of Plugin Applications=Anzahl Plugin Anwendungen
|
||||
Number Of Templates=Anzahl Vorlagen
|
||||
Number Of Repositories=Anzahl Repositories
|
||||
Number Of Private Docker Applications=Anzahl privater Docker Container
|
||||
Number Of Invalid Templates=Anzahl ungültige Vorlagen
|
||||
Number Of Template Errors=Anzahl mit Fehler in Vorlagen
|
||||
Number Of Blacklisted Apps=Anzahl gesperrter Anwendungen
|
||||
Number Of Incompatible Applications=Anzahl inkomaptibler Anwendungen
|
||||
Number Of Deprecated Applications=Anzahl veralteter Anwendungen
|
||||
Number Of Moderation Entries=Anzahl der Moderationsbeiträge
|
||||
Primary Server=Primärer Server
|
||||
Backup Server=Backup Server
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=Repository Liste
|
||||
All Invalid Templates Found=Alle gefunden ungültigen Vorlagen
|
||||
Template Errors=Vorlagefehler
|
||||
All Moderation Entries=Alle Moderationsbeiträge
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=Keine ungültigen Vorlagen gefunden
|
||||
These templates are invalid and the application they are referring to is unknown=Diese Vorlagen sind ungültig und die Bezug nehmende Anwendung ist unbekannt
|
||||
No templates were automatically fixed=Keine Vorlage wurde automatisch korregiert
|
||||
All of these errors found have been fixed automatically=Alle Fehler wurde automatisch behoben
|
||||
Note that many of these errors can be avoided by following the directions=Viele dieser Fehler können vermieden werden wenn den Vorgaben gefolgt wird
|
||||
HERE=HIER
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=Die folgenden Plugins haben doppelte Dateinamen und können daher nicht gleichzeitig installiert sein
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=Die folgenden Docker Anwendung verweisen auf das gleiche Docker Repository, beinhalten eventuall Änderungen die dies rechtfertigen
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=Falls einer der Einträge falsch ist, kontaktiere die Moderatoren von CA
|
||||
Global Repository Comments=Globale Repository Kommentare
|
||||
Applied to all applications=(Auf alle Anwendungen angewandt)
|
||||
Individual Application Moderation=Individuelle Anwendungsmoderation
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Community Applications Versionshinweise
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=Backup
|
||||
Cloud=Cloud
|
||||
Downloaders=Downloader
|
||||
Game Servers=Spieleserver
|
||||
Home Automation=Heimautomatisierung
|
||||
Media Applications=Medienanwendungen
|
||||
Books=Bücher
|
||||
Music=Musik
|
||||
Photos=Bilder
|
||||
Video=Video
|
||||
Other=Andere
|
||||
Media Servers=Medienserver
|
||||
Network Services=Netzwerkanwendungen
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=Verwaltung
|
||||
Messenger=Kommunikation
|
||||
Proxy=Proxy
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=Produktivität
|
||||
Security=Sicherheit
|
||||
Tools Utilities=Werkzeuge / Dienstprogramme
|
||||
System=System
|
||||
Themes=Themes
|
||||
Utilities=Dienstprogramme
|
||||
Private Apps=Private Anwendungen
|
||||
Uncategorized=Ohne Kategorie
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=Spieleserver
|
||||
HomeAutomation=Heimautomatisierung
|
||||
MediaApp=Medienanwendungen
|
||||
MediaAppBooks=Medienanwendungen:Bücher
|
||||
MediaAppMusic=Medienanwendungen:Musik
|
||||
MediaAppPhotos=Medienanwendungen:Bilder
|
||||
MediaAppVideo=Medienanwendungen:Video
|
||||
MediaAppOther=Medieanwendungen:Andere
|
||||
MediaServer=Medienserver
|
||||
MediaServerBooks=Medienserver:Bücher
|
||||
MediaServerMusic=Medienserver:Musik
|
||||
MediaServerPhotos=Medienserver:Bilder
|
||||
MediaServerVideo=Medienserver:Video
|
||||
MediaServerOther=Medienserver:Andere
|
||||
Network=Netzwerk
|
||||
NetworkDNS=Netzwerk:DNS
|
||||
NetworkFTP=Netzwerk:FTP
|
||||
NetworkManagement=Netzwerk:Verwaltung
|
||||
NetworkProxy=Netzwerk:Proxy
|
||||
NetworkVOIP=Netzwerk:VOIP
|
||||
NetworkVPN=Netzwerk:VPN
|
||||
NetworkWeb=Netzwerk:Web
|
||||
NetworkOther=Netzwerk:Andere
|
||||
ToolsSystem=Werkzeuge:System
|
||||
ToolsThemes=Werkzeuge:Themes
|
||||
ToolsUtilities=Werkzeuge:Utilities
|
||||
Other=Andere
|
||||
OtherUncategorized=Andere:Ohne Kategorie
|
||||
and %s more=und %s mehr
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=Spende an AutorIn
|
||||
Donate To Maintainer=Spende an BetreuerIn
|
||||
Author=AutorIn
|
||||
Maintainer=BetreuerIn
|
||||
DockerHub=DockerHub
|
||||
Application Template=Anwendungsvorlage
|
||||
Base OS=Basis OS
|
||||
DockerHub Stars=DockerHub Sterne
|
||||
Added to CA=Hinzugefügt zu CA
|
||||
Date Updated=Aktualisierungsdatum
|
||||
Current Version=Aktuelle Version
|
||||
Minimum OS=Mindest OS
|
||||
Max OS=Maximales OS
|
||||
Total Downloads=Gesamt Downloads
|
||||
Licence=Lizenz
|
||||
30 Day Trend=Trend 30 Tage
|
||||
Ranked #%s=Platz #%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=Trendgin %s
|
||||
; as in As of some date
|
||||
As of %s=Stand %s
|
||||
This application template has been blacklisted=Diese Anwendungsvorlage wurde gesperrt
|
||||
This application template has been deprecated=Diese Anwendungsvorlage ist veraltet
|
||||
This application is not compatible with your version of Unraid=Diese Anwendung ist nicht kompatibel mit dieser Version von Unraid
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Ein anderer Browser Tab oder ein anderes Gerät hat die angezeige Vorlage aktualisiert. Einige Aktionen sind nicht verfügbar
|
||||
Reinstall default=Neuinstallation (standard)
|
||||
WebUI=WebUI
|
||||
Reinstall=Neuinstallieren
|
||||
Install=Intallieren
|
||||
Project=Projekt
|
||||
Install Using The Templates Default Tag=Instalieren mit den standard Vorgaben der Vorlage
|
||||
Moderator Comments=Moderator Kommentare
|
||||
Note not all authors keep up to date on change logs=Beachte, dass nicht alle Autoren das Changelog regelmäßig aktualisieren
|
||||
Note not all maintainers keep up to date on change logs=Beachte, dass nicht alle Betreuer das Changelog regelmäßig aktualisieren
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=Spende
|
||||
Currently Installed Version=Aktuell installierte Version
|
||||
Install The Update=Update installieren
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=Aktuellste Version
|
||||
Multi Language Support=Mehrsprachenunterstützung
|
||||
; as in more than 100000
|
||||
More than %s=Mehr als %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=Trend pro Monat
|
||||
Downloads Per Month=Downloads pro Monat
|
||||
Total Downloads=Gesamte Downloads
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=Docker Container %s wird installiert
|
||||
Starting %s=%s startet
|
||||
%s failed to start You should install it by itself to fix the errors=%s starten fehlgeschlagen. Bitte selbst installieren, um die Fehler zu beheben
|
||||
Setting installed applications to autostart=Autostart der Anwendung einschalten
|
||||
Docker Application Installation finished=Installation des Docker Containers abgeschlossen
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (DockerHub Konversation)
|
||||
Go to the project page=Gehe zur Projektseite
|
||||
Go to the support thread=Gehe zum Hilfe-Thread
|
||||
Uninstall Application=Anwendung deinstallieren
|
||||
Remove Private Application=Private Anwendung entfernen
|
||||
Remove Application From List=Anwendung von Liste entfernen
|
||||
Check off to select multiple reinstalls=Abwählen um Multiple Neuinstalltionen ausführen zu können
|
||||
Go to the plugin settings=Gehe zu den Plugin Einstellungen
|
||||
Click to reinstall the application using default values=Klicke um die Anwendung mit Standardvorgaben neu zu installieren
|
||||
Click to edit the application values=Klicke, um die Anwendungsparameter zu ändern
|
||||
Click to reinstall=Klicken zum Neuinstallieren
|
||||
Click to install=Klicken zum Installieren
|
||||
Install plugin=Plugin installieren
|
||||
Click to go to the WebUI=Klicke um zur WebUI zu gehen
|
||||
This application has been marked as being Beta=Diese Anwendung ist als Beta markiert
|
||||
This application template has been deprecated=Diese Anwenungsvorlage ist veraltet
|
||||
This application is not compatible with your version of Unraid=Diese Anwendung ist nicht kompatible mit dieser Version von Unraid
|
||||
This application template has been blacklisted=Diese Anwendungsvorlage ist gesperrt
|
||||
Search for more applications from %s=Suche mehr Anwendungen von %s
|
||||
Click for more information=Klicke für mehr Informationen
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=Suche Container von %s
|
||||
Search for similar containers=Suche ähnliche Container
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Zeige %1$s - %2$s (von %3$s)
|
||||
|
||||
Updating Content=Aktualisiere Inhalte
|
||||
Language=Sprache
|
||||
Switch to this language=Wechsle zur Sprache
|
||||
Country Code=Ländercode
|
||||
Install Language Pack=Sprachpaket installieren
|
||||
Remove Language Pack=Sprachpaket entfernen
|
||||
Update Language Pack=Sprachpaket aktualisieren
|
||||
Installed Version=Installierte Version
|
||||
A note about translations=Hinweis zu den Übersetzungen
|
||||
Click here to view the language changelog=Klicken um die Übersetzungs Versionhinweise anzuzeigen
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=Diese Auswahl bestimmt die Sortierreihenfolge
|
||||
These icons respectively will Install or Edit an application=Diese Icons installieren oder ändern eine Anwendung
|
||||
Clicking these icons will take you to an applications GUI or settings=Klicken auf diese Icons geht zur GUI der Anwendung oder in die Einstellungen
|
||||
This will update an application=Aktualisiert die Anwendung
|
||||
This will take you to the appropriate support thread for an application=Geht zum Hilfe-Thread der Anwendung
|
||||
This will immediately switch to the language=Ändert die Sprache sofort
|
||||
This will take you to the project page for an application=Geht zur Projektseite der Anwendung
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=Klicken auf das Icon deinstalliert die Anwendung oder löscht sie je nach Auswahlt
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=Klicken auf diese Icons setzt oder entfernt die Anwendung von der Merkliste zur späteren Durchsicht in der Merkliste
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=Klicke für mehr Informationen zur Anwendung. HINWEIS Klicken auf das Anwendungicon zeigt ebenfalls mehr Informationen der Anwendung
|
||||
Clicking this will display any warnings or extra comments about the application=Klicken zeigt Warnungen oder weitere Kommentare zur Anwendung
|
||||
On the previous apps section you can select multiple applications to install simultaneously=Im Menü Vorherige Apps können mehrer Anwendungen gleichzeitig installiert werden
|
||||
This is the recommended version to install by the application author themselves=Dies ist die vom/von der AutorIn empfohlene Version zur Installation
|
||||
For support for this plugin visit=Für Hilfe zu diesem Plugin gehe zu
|
||||
To view the policies Community Applications has=Um die Richtlinien der Community Applications zu sehen
|
||||
Access Mode=Zugriffsrechte
|
||||
Add another Path, Port, Variable, Label or Device=Weiteren Pfad, Port, Variable oder Bezeichnung hinzufügen
|
||||
Add Configuration=Konfiguration hinzufügen
|
||||
Add=Hinzufügen
|
||||
Always=Immer
|
||||
App to Host=App zu Host
|
||||
Application=Anwendung
|
||||
apply update=Aktualisierung anwenden
|
||||
Array must be Started to view Docker containers=Array muss **gestartet** sein um Docker Container zu sehen
|
||||
Are you sure=Sind sie sicher
|
||||
Autostart=Autostart
|
||||
Back=Zurück
|
||||
Backup=Sicherung
|
||||
Beta=Beta
|
||||
Books=Bücher
|
||||
By=Von
|
||||
Categories=Kategorien
|
||||
Check for Updates=Prüfe auf Aktualisierungen
|
||||
Cloud=Cloud
|
||||
Config Type=Konfigurationstyp
|
||||
Configuration not found=Konfiguration nicht gefunden
|
||||
Connection Type=Protokoll
|
||||
Console shell command=Konsole
|
||||
Container ID=Container ID
|
||||
Container Path=Container Pfad
|
||||
Container Port=Container Port
|
||||
Container Size=Containergröße
|
||||
Container=Container
|
||||
CPU Memory load=Prozessor/Speicher Auslastung
|
||||
CPU Pinning=CPU Zuweisung
|
||||
Created=Erstellt
|
||||
Default Value=Standardwert
|
||||
Device=Gerät
|
||||
Display=Anzeigen
|
||||
DNS=DNS
|
||||
Docker Containers=Docker Container
|
||||
Docker Hub URL=Docker Hub URL
|
||||
Docker Service failed to start=Docker Dienst konnte nicht gestartet werden
|
||||
Donation Link=Spendenlink
|
||||
Donation Text=Spendentext
|
||||
Downloaders=Download Tools
|
||||
Edit Configuration=Konfiguration bearbeiten
|
||||
Exited=Beendet
|
||||
Extra Parameters=Extra Parameter
|
||||
Fixed IP address=Statische IP-Adresse
|
||||
force update=Aktualisierung erzwingen
|
||||
FTP=FTP
|
||||
Game Servers=Spieleserver
|
||||
healthy=normal
|
||||
Hide Buttons=Schaltflächen verstecken
|
||||
Hide docker allocations=Verstecke aktuelle Docker Zuweisungen
|
||||
Hide more settings=Verstecke mehr Einstellungen
|
||||
Home Automation=Heimautomation
|
||||
Host Path=Host Pfad
|
||||
Host Port=Host Port
|
||||
HT=HT
|
||||
Icon URL=Symbol URL
|
||||
Image ID=Abbild ID
|
||||
Key=Schlüssel
|
||||
Label=Bezeichnung
|
||||
latest=latest
|
||||
Management=Management
|
||||
MediaApp=Media-App
|
||||
MediaServer=Media-Server
|
||||
Messenger=Messenger
|
||||
Missing parameters=Fehlende Parameter
|
||||
Music=Musik
|
||||
Network Type=Netzwerktyp
|
||||
No Docker containers installed=Keine Docker Container installiert
|
||||
of=von
|
||||
orphan image=verwaistes Abbild
|
||||
Other=Andere
|
||||
Overview=Beschreibung
|
||||
Path=Pfad
|
||||
Pause All=Alle pausieren
|
||||
Photos=Fotos
|
||||
Port Mappings=Port Zuordnungen
|
||||
Port=Port
|
||||
Post Arguments=Post Argumente
|
||||
Privileged=Privilegierte Rechte
|
||||
Productivity=Produktivität
|
||||
Project Page=Projektseite
|
||||
Proxy=Proxy
|
||||
Pulling image=Abbild holen
|
||||
Read Only - Shared=Nur Lesen - geteilt
|
||||
Read Only - Slave=Nur Lesen - sekundär
|
||||
Read Only=Nur Lesen
|
||||
ReadWrite - Shared=Lesen/Schreiben - geteilt
|
||||
ReadWrite - Slave=Lesen/Schreiben - sekundär
|
||||
rebuild ready=bereit zur Neuerstellung
|
||||
rebuilding=wird neu erstellt
|
||||
Remove template=Vorlage entfernen
|
||||
Removing container=Container wird entfernt
|
||||
Removing orphan image=verwaistes Abbild wird entfernt
|
||||
Repository=Quelle
|
||||
Required=Erforderlich
|
||||
Resume All=Alle fortsetzen
|
||||
Save=Speichern
|
||||
Select a template=Vorlage auswählen
|
||||
Select categories=Kategorien auswählen
|
||||
Show docker allocations=Zeige aktuelle Docker Zuweisungen
|
||||
Show more settings=Mehr Einstellungen zeigen
|
||||
Stable=Stabil
|
||||
Start All=Alle starten
|
||||
starting up containers=Starte Container
|
||||
Stop All=Alle beenden
|
||||
Stopping container=Container wird beendet
|
||||
Successfully removed container=Der Container wurde erfolgreich entfernt
|
||||
Successfully removed orphan image=Das verwaiste Abbild wurde erfolgreich entfernt
|
||||
Successfully stopped container=Der Container wurde erfolgreich beendet
|
||||
Support Thread=Hilfe Thread
|
||||
Template repositories=Vorlagen Quelle
|
||||
Template URL=Vorlagen URL
|
||||
Template=Vorlage
|
||||
The command failed=Der Befehl ist fehlgeschlagen
|
||||
The command finished successfully=Der Befehl wurde erfolgreich ausgeführt
|
||||
TOTAL DATA PULLED=GEHOLTE DATENMENGE
|
||||
Unknown action=Unbekannte Aktion
|
||||
Update All=Alle Aktualisieren
|
||||
update ready=Bereit zum Aktualisieren
|
||||
Value=Wert
|
||||
Variable=Variable
|
||||
Video=Video
|
||||
Voip=VoIP
|
||||
Volume Mappings=Volumenzuordnungen
|
||||
wait=warte
|
||||
Was this container created using this plugin=Wurde dieser Container mit diesem Plugin erstellt
|
||||
Web=Web
|
||||
WebUI=WebUI
|
||||
Writable=Beschreibbar
|
||||
Absolute=Absolut
|
||||
Acknowledge=Bestätigen
|
||||
Active=Aktiv
|
||||
active=aktiv
|
||||
Actual results=Aktuelle Ergebnisse
|
||||
Add Container=Container hinzufügen
|
||||
Add VM=VM hinzufügen
|
||||
Advanced View=Erweiterte Ansicht
|
||||
AFP Security Settings=AFP Sicherheitseinstellungen
|
||||
All=Alle
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Diagnosedaten anonymisieren (erschwert die Fehlerbehebung möglicherweise)
|
||||
Apply=Anwenden
|
||||
Apps=Apps
|
||||
Array must be Stopped to change=Array muss **Gestoppt** werden, um Änderungen durchzuführen
|
||||
Array Started=Array Gestartet
|
||||
Array Starting=Array startet
|
||||
Array Stopped=Array Gestoppt
|
||||
Array Stopping=Array stoppt
|
||||
Array=Array
|
||||
Attributes=Attribute
|
||||
Auto=Auto
|
||||
Automatic=Automatisch
|
||||
Average speed=Durchschnittliche Geschwindigkeit
|
||||
Azure=Azurblau
|
||||
B=B
|
||||
Back To Top=Zurück nach oben
|
||||
Basic=Basic
|
||||
Basic View=Einfache Ansicht
|
||||
BIOS=BIOS
|
||||
Black=Schwarz
|
||||
Browse=Durchsuchen
|
||||
Browser error=Browser Fehler
|
||||
btrfs=btrfs
|
||||
Bug Description=Fehlerbeschreibung
|
||||
Bug Report=Fehlerbericht
|
||||
bytes=bytes
|
||||
Cancel=Abbruch
|
||||
Capabilities=Fähigkeiten
|
||||
Case-sensitive names=Groß-/Kleinschreibung beachten
|
||||
Center=Zentrieren
|
||||
Change=Ändern
|
||||
Check=Prüfen
|
||||
Clear=Löschen
|
||||
Clearing=Löschen
|
||||
Click for context menu=Klicken für das Kontextmenü
|
||||
Click=Klicken
|
||||
close all notifications=Alle Benachrichtigungen schließen
|
||||
Close=Schließen
|
||||
close=schließen
|
||||
Comment=Kommentar
|
||||
Contact Email Address=Kontakt E-Mail-Adresse
|
||||
Contact Support=Support kontaktieren
|
||||
containing your key file URL=beinhaltet die URL der Lizenzdatei
|
||||
Copy=Kopieren
|
||||
CPU=CPU
|
||||
Dashboard=Übersicht
|
||||
day=Tag
|
||||
%s day ago=vor %s Tag
|
||||
%s days ago=vor %s Tagen
|
||||
Days_array=Sunday:Sonntag Monday:Montag Tuesday:Dienstag Wednesday:Mittwoch Thursday:Donnerstag Friday:Freitag Saturday:Samstag Sun:So Mon:Mo Tue:Di Wed:Mi Thu:Do Fri:Fr Sat:Sa
|
||||
days=Tage
|
||||
Default=Standard
|
||||
default=standard
|
||||
Delete=Löschen
|
||||
Description=Beschreibung
|
||||
Device contents emulated, in standby mode spun-down=Datenträgerinhalt emuliert, im Standby-Modus (heruntergefahren)
|
||||
Device contents emulated=Datenträgerinhalt emuliert
|
||||
Device is disabled, contents emulated=Datenträger deaktiviert, Inhalt Emuliert
|
||||
Device is in standby mode spun-down=Datenträger im Standby-Modus (heruntergefahren)
|
||||
Device is missing disabled, contents emulated=Datenträger fehlt (deaktiviert), Inhalt emuliert
|
||||
Device not present=Datenträger nicht vorhanden
|
||||
Device=Gerät
|
||||
directories=Verzeichnisse
|
||||
directory=Verzeichnis
|
||||
Disabled=Deaktiviert
|
||||
disabled=deaktiviert
|
||||
Disk=Datenträger
|
||||
disk=Datenträger
|
||||
Do you want to update to the new version=Möchten Sie auf die neue Version aktualisieren
|
||||
Docker=Docker
|
||||
Done=Fertig
|
||||
Download=Download
|
||||
Duration=Dauer
|
||||
Edit=Bearbeiten
|
||||
edit=bearbeiten
|
||||
Emulated=Emuliert
|
||||
emulated=emuliert
|
||||
Enabled=Aktiviert
|
||||
enabled=aktiviert
|
||||
Encrypted and unlocked=Verschlüsselt und freigeschaltet
|
||||
Error code=Fehler Code
|
||||
Error=Fehler
|
||||
error=Fehler
|
||||
Errors=Fehler
|
||||
errors=Fehler
|
||||
Expected results=Erwartete Ergebnisse
|
||||
Export=Exportieren
|
||||
Faulty=Fehlerhaft
|
||||
faulty=fehlerhaft
|
||||
Feedback=Feedback
|
||||
File too large=Datei zu groß
|
||||
file=Datei
|
||||
files=Dateien
|
||||
Fixed=Festgelegt
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Flash Produkt
|
||||
Flash Vendor=Flash Hersteller
|
||||
FOLDER=ORDNER
|
||||
folder=Ordner
|
||||
Force lower=kleiner erzwingen
|
||||
Format=Formatieren
|
||||
Formatting devices=Formatiert Datenträger
|
||||
Forum=Forum
|
||||
GB=GB
|
||||
Go to Registration page=Zur Registrierungsseite
|
||||
GPT 4KiB-aligned=GPT 4KiB-aligned
|
||||
Gray=Grau
|
||||
Guests have no access=Gäste haben **keinen** Zugriff
|
||||
Guests have read-only access=Gäste haben **Lese** Zugriff
|
||||
Heat alarm=Temparaturalarm
|
||||
Help=Hilfe
|
||||
here=hier
|
||||
History=Verlauf
|
||||
hour=Stunde
|
||||
hours=Stunden
|
||||
%s hour ago=vor %s Stunde
|
||||
%s hours ago=vor %s Stunden
|
||||
How to reproduce=Wie zu Reproduzieren
|
||||
hr=std
|
||||
HVM=HVM
|
||||
Identity=Identität
|
||||
Inactive=Inaktiv
|
||||
Index of=Index von
|
||||
Info=Info
|
||||
Install Key=Schlüssel Installieren
|
||||
interface down=Schnittstelle inaktiv
|
||||
Interface=Schnittstelle
|
||||
IOMMU=IOMMU
|
||||
is available=ist verfügbar
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Zuletzt Geändert
|
||||
Left=Links
|
||||
less than a minute remaining=weniger als eine Minute verbleibend
|
||||
less than a minute=weniger als eine Minute
|
||||
Load=Auslastung
|
||||
Location=Speicherort
|
||||
Locked missing encryption key=Gesperrt: fehlender Verschlüsselungsschlüssel
|
||||
Locked unknown error=Gesperrt: unbekannter Fehler
|
||||
Locked wrong encryption key=Gesperrt: falscher Verschlüsselungsschlüssel
|
||||
Log=Protokoll
|
||||
Login=Anmelden
|
||||
Logout=Abmelden
|
||||
Main=Start
|
||||
manual=Handbuch
|
||||
max installable capacity=maximal installierbar
|
||||
Maximum file upload size is 512K=Maximale Upload Größe beträgt 512K
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=Arbeitsspeicher
|
||||
min=min
|
||||
minute=Minute
|
||||
minutes=Minuten
|
||||
%s minute ago=vor %s Minute
|
||||
%s minutes ago=vor %s Minuten
|
||||
Model=Model
|
||||
%s month ago=vor %s Monat
|
||||
%s months ago=vor %s Monaten
|
||||
Months_array=January:Januar February:Februar March:März April:April May:Mai June:Juni July:Juli August:August September:September October:Oktober November:November December:Dezember Jan:Jan Feb:Feb Mar:Mär Apr:Apr May:Mai Jun:Jun Jul:Jul Aug:Aug Sep:Sep Oct:Okt Nov:Nov Dec:Dez
|
||||
months=Monate
|
||||
More=Mehr
|
||||
Motherboard=Mainboard
|
||||
Move=Verschieben
|
||||
NA=N/A
|
||||
Name=Name
|
||||
Network=Netzwerk
|
||||
Never=Nie
|
||||
New device, in standby mode spun-down=Neuer Datenträger, im Standby-Modus (heruntergefahren)
|
||||
New device=Neuer Datenträger
|
||||
NFS Security Settings=NFS Sicherheitseinstellungen
|
||||
No Access=Kein Zugriff
|
||||
No device=Kein Datenträger
|
||||
no device=Kein Datenträger
|
||||
No errors reported=Keine Fehler gemeldet
|
||||
No information available=Keine Informationen Verfügbar
|
||||
No listing Too many files=Keine Auflistung: Zu viele Dateien
|
||||
No reply from mail server=Keine Rückmeldung vom Mail-Server
|
||||
No=Nein
|
||||
no=Nein
|
||||
None=Keine
|
||||
none=Kein
|
||||
Normal operation, device is active=Normaler Betrieb, Datenträger aktiv
|
||||
Normal=Normal
|
||||
Normalized=Normalisiert
|
||||
Not Available=Nicht verfügbar
|
||||
not available=Nicht verfügbar
|
||||
not connected=nicht verbunden
|
||||
Not encrypted=Nicht Verschlüsselt
|
||||
not encrypted=Nicht Verschlüsselt
|
||||
NOTE=HINWEIS
|
||||
Numbers_array=thirty:dreißig twenty-nine:neunundzwanzig twenty-eight:achtundzwanzig twenty-seven:siebnundzwanzig twenty-six:sechsundzwanzig twenty-five:fünfundzwanzig twenty-four:vierundzwanzig twenty-three:dreiundzwanzig twenty-two:zweiundzwanzig twenty-one:einundzwanzig twenty:zwanzig nineteen:neunzehn eighteen:achtzehn seventeen:siebzehn sixteen:sechzehn fifteen:fünfzehn fourteen:vierzehn thirteen:dreizehn twelve:zwölf eleven:elf ten:zehn nine:neun eight:acht seven:sieben six:sechs five:fünf four:vier three:drei two:zwei one:eins zero:null
|
||||
objects=Objekte
|
||||
Off=Aus
|
||||
off-line=Off-Line
|
||||
OK=OK
|
||||
Ok=OK
|
||||
ok=ok
|
||||
On=An
|
||||
Online Manual=Online Handbuch
|
||||
Online manual=Online Handbuch
|
||||
OpenSSL=OpenSSL
|
||||
optional=optional
|
||||
Other Comment=Anderer Kommentar
|
||||
Other information=Andere Information
|
||||
Parity device is disabled=Paritäts Datenträger deaktiviert
|
||||
Parity device is missing=Paritäts Datenträger fehlt
|
||||
Parity is invalid, in standby mode spun-down=Parität ungültig, im Standby-Modus (heruntergefahren)
|
||||
Parity is invalid=Parität ist ungültig
|
||||
Parity is valid=Parität ist gültig
|
||||
Parity=Parität
|
||||
parity=Parität
|
||||
Parity-Check=Paritätsprüfung
|
||||
Parity-Sync Data-Rebuild=Parity-Sync/Datenwiederherstellung
|
||||
Pause=Pause
|
||||
Paused=Pausiert
|
||||
paused=pausiert
|
||||
PB=PB
|
||||
Please select one file only=Bitte nur eine Datei auswählen
|
||||
Please summarize your suggestion here=Bitte Vorschläge hier zusammenfassen
|
||||
Please try again later=Bitte später versuchen
|
||||
Please wait=Bitte warten
|
||||
Plugins=Plugins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privat
|
||||
Pro=Pro
|
||||
Proceed=Fortfahren
|
||||
Processor=Prozessor
|
||||
Product Suggestion=Verbesserungs Vorschläge
|
||||
Public=Öffentlich
|
||||
RAM=RAM
|
||||
Raw=Roh
|
||||
Read=Lesen
|
||||
Read settings from=Lese Einstellungen von
|
||||
Read-Check=Lese-Prüfung
|
||||
Read-only=nur Lesen
|
||||
Reads=gelesen
|
||||
ReadWrite=lesen/schreiben
|
||||
Reboot Now=Jetzt neu Starten
|
||||
Reboot=Neustarten
|
||||
Refresh=Aktualisieren
|
||||
Registration=Lizenz
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Versionshinweise
|
||||
Remove=Entfernen
|
||||
Renew=Aktualisieren
|
||||
Reset=Zurücksetzen
|
||||
Restart=neu Starten
|
||||
Resume=wieder aufnehmen
|
||||
Right=Rechts
|
||||
RPM=RPM
|
||||
Running=Läuft
|
||||
running=läuft
|
||||
safe mode=Abgesicherter Modus
|
||||
sec=sek
|
||||
second=Sekunde
|
||||
seconds=Sekunden
|
||||
%s second ago=vor %s Sekunde
|
||||
%s seconds ago=vor %s Sekunden
|
||||
Secure=Sicher
|
||||
Security=Sicherheit
|
||||
Security Settings=Sicherheitseinstellungen
|
||||
select=auswählen
|
||||
Self-Test=Selbsttest
|
||||
Server=Server
|
||||
Settings=Einstellungen
|
||||
Share=Freigabe
|
||||
Share name=Freigabe Name
|
||||
Shares List=Freigabe Liste
|
||||
Shares=Freigaben
|
||||
Shutdown=Herunterfahren
|
||||
Size=Größe
|
||||
SMB Security Settings=SMB Sicherheitseinstellungen
|
||||
sn=S/N
|
||||
Sorry, an error occurred=Entschuldigung, ein Fehler ist aufgetreten
|
||||
Standby=Standby
|
||||
standby=standby
|
||||
Start=Start
|
||||
Started=Gestartet
|
||||
started=Gestartet
|
||||
Status=Status
|
||||
status=Status
|
||||
Stop=Stopp
|
||||
Stopped=Gestoppt
|
||||
stopped=Gestoppt
|
||||
Streams=Streams
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Die Übermittlung dieses Fehlerberichts sendet Ihre Systemdiagnose automatisch an Lime Technology
|
||||
Submit=Übermitteln
|
||||
System Information=System Information
|
||||
System is going down=System fährt herunter
|
||||
System is offline=System ist Offline
|
||||
System is powered off=System ist Ausgeschaltet
|
||||
System is rebooting=System startet neu
|
||||
System Log=System Protokoll
|
||||
System notifications are=System Benachrichtigungen sind
|
||||
System running in=System läuft in
|
||||
System=System
|
||||
TB=TB
|
||||
Temperature=Temperatur
|
||||
Template Repositories=Vorlage Quellen
|
||||
Terminal=Terminal
|
||||
Test result=Testergebnis
|
||||
Thank You=Vielen Dank
|
||||
The error is=Der Fehler lautet
|
||||
to change notification settings=um Benachrichtigungseinstellungen zu ändern
|
||||
to downgrade Unraid OS=um Unraid OS Downzugraden
|
||||
to upgrade Unraid OS=um Unraid OS zu aktualisieren
|
||||
today=Heute
|
||||
Too many files=Zu viele Dateien
|
||||
Tools=Werkzeuge
|
||||
Total=Gesamt
|
||||
total=Gesamt
|
||||
Type your question or comment to Lime Technology here=Ihre Frage oder Kommentar an Lime Technology hier eingeben
|
||||
Type=Typ
|
||||
Unable to generate system diagnostics=Konnte keine Systemdiagnose erstellen
|
||||
Unassigned=Nicht zugewiesen
|
||||
unassigned=nicht zugewiesen
|
||||
Unknown=Unbekannt
|
||||
unknown=unbekannt
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Aktualisiere Container
|
||||
Update Now=Jetzt Aktualisieren
|
||||
Update VM=Aktualisiere VM
|
||||
Update=Aktualisierung
|
||||
update=aktualisieren
|
||||
Updated=Aktualisiert
|
||||
Upload error=Fehler beim Hochladen
|
||||
Upload=Hochladen
|
||||
Uptime=Betriebszeit
|
||||
up-to-date=Up-To-Date
|
||||
User Access=Benutzer Zugriff
|
||||
Users=Benutzer
|
||||
Utilization=Auslastung
|
||||
Version=Version
|
||||
View Release Notes=Versionshinweise Anzeigen
|
||||
View=Ansicht
|
||||
VMs=VMs
|
||||
VPN=VPN
|
||||
Warning=Warnung
|
||||
Website=Website
|
||||
%s week ago=vor %s Woche
|
||||
%s weeks ago=vor %s Wochen
|
||||
White=Weiß
|
||||
Wiki=Wiki
|
||||
Write=Schreiben
|
||||
Write settings to=Schreibe Einstellungen zu
|
||||
Wrong=Falsch
|
||||
wrong=falsche
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Ja, durchführen
|
||||
Yes=Ja
|
||||
yes=ja
|
||||
Yes hidden=Ja (versteckt)
|
||||
Yes Time Machine=Ja (Time-Machine)
|
||||
YesTime Machine hidden=Ja/Time-Machine (versteckt)
|
||||
YesTime Machine=Ja/Time-Machine
|
||||
yesterday=Gestern
|
||||
You must reboot for changes to take effect=Sie müssen den Server neu starten um die Änderungen zu übernehmen
|
||||
Your browser does not support HTML5 file uploads=Ihr Browser unterstützt keine HTML5 Uploads
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Array beschäftigt
|
||||
Buttons=Knöpfe
|
||||
Parity operation or mover is running=Paritätsvorgang oder Mover läuft gerade
|
||||
preparing for reboot=Bereite Neustart vor
|
||||
preparing for shutdown=Bereite Herunterfahren vor
|
||||
Sleep=Ruhezustand
|
||||
Start Array=Starte Array
|
||||
starting the array=starte das Array
|
||||
Stop Array=Stoppe Array
|
||||
stopping the array=stoppe das Array
|
||||
System in sleep mode=System befindet sich im Ruhezustand
|
||||
This will put the system to sleep=Versetzt das System in den Ruhezustand
|
||||
This will reboot the system=Starte das System neu
|
||||
This will shutdown the system=Fährt das System Herunter
|
||||
This will start the array=Startet das Array
|
||||
This will stop the array=Stoppt das Array
|
862
languages/es_ES
Normal file
862
languages/es_ES
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=Cancelar
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=Feliz Año Nuevo
|
||||
Happy Holidays from Andrew, Tracey, and family=Felices Fiestas de parte de Andrew, Tracey y familia
|
||||
Please Enjoy Responsibly=Por Favor, Disfrute Responsablemente
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=Ventana emergente bloqueada. Aplicaciones de la Comunidad (CA) requiere que las ventanas emergentes estén habilitadas bajo ciertas circunstancias. Debe incluir su servidor a la lista de excepciones del navegador para que permita las ventanas emergentes.
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=Servicio Docker deshabilitado. Únicamente se pueden instalar o administrar plugins.
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=Aplicaciones de la Comunidad (CA) requiere que las cookies están habilitadas en su navegador. De lo contrario algunas funciones podrían no estar disponibles.
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=Servidor de reserva de CA activo. No se ha podido obtener la lista de aplicaciones del servidor principal. Puede que algunos iconos no aparezcan y se vea afectada la instalación de plugins.
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=Ordenar lista
|
||||
Sorting options unavailable=Ordenar lista no disponible
|
||||
Sort By Name Ascending=Ordenar por Nombre Ascendente
|
||||
Sort By Name Descending=Ordenar por Nombre Descendente
|
||||
Sort By Downloads=Ordenar por Descargas
|
||||
Sort By Trend=Ordenar por Popularidad
|
||||
Sort By Date Added=Ordenar por Fecha
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=Exención de responsabilidad
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=Todas las aplicaciones mostradas aquí son programas de terceros ajenos a Unraid. Ni los autores del plugin Aplicaciones de la Comunidad (CA) ni Limetech garantizan la idoneidad de las aplicaciones de este listado.
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=Se hace todo lo posible para asegurar que solo las aplicaciones seguras y compatibles estén disponibles.
|
||||
Application Policy=Política de CA
|
||||
I Understand=Entendido
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=La instalacion de aplicaciones está deshabilitada. Debe aceptar el aviso para poder instalar aplicaciones.
|
||||
Click here=haga clic aquí
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Aplicaciones de la Comunidad (CA) tiene dos tipos de aplicaciones: contenedores Docker y plugins. Los plugins añaden funciones adicionales al sistema operativo, se ejecutan con derechos de administrador en el sistema y están claramente identificados en CA.
|
||||
Plugin Note=Nota del Plugin
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=Instalar Plugins
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=Buscar
|
||||
Please enter search term=Por favor, introduzca el término a buscar
|
||||
Click Here To Get More Results From DockerHub=Pulse aquí para obtener más resultados de DockerHub
|
||||
No Matching Applications Found On Docker Hub=No se encontró ninguna aplicación en DockerHub
|
||||
No Matching Applications Found=No se encontró ninguna aplicación
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=Instalar Plugin
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=Eliminar Plantilla
|
||||
Yes, delete it=Sí, eliminar
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=Desinstalar Aplicación
|
||||
Yes uninstall it=Sí, desinstalar
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=Eliminar Aplicación Privada
|
||||
Yes, remove it=Sí, eliminar
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=Haga clic para anclar esta aplicación
|
||||
Click to unpin this application=Haga clic para desanclar esta aplicación
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=Elija la Rama a Instalar
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=Instalar las Aplicaciones Seleccionadas
|
||||
|
||||
Yes, install it=Sí, instalar
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=Sí, instalarlas
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=Las cookies no están habilitadas. Los plugins deben de ser instalados por separado de las aplicaciones Docker.
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=Las aplicaciones Docker serán instalados utilizando la última versión guardada de la plantilla sin ninguna interacción por su parte.
|
||||
Updating Support Links=Actualizando Los Enlaces De Soporte
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=Instalación Finalizada. Si el botón HECHO no aparece, haga clic en la X roja de la esquina superior derecha.
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=No se obtuvo respuesta. Es posible que otra sesión del navegador haya reiniciado el servidor. Para arreglar este error es probable que tenga que actualizar la página.
|
||||
An error occurred Could not find any %s Apps=A ocurrido un error. No se pudieron encontrar las Apps %s
|
||||
Download of appfeed failed=La descarga de la lista de aplicaciones ha fallado
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=Ha sucedido un problema aquí
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=Publique el contenido COMPLETO de este mensaje en el sitio de soporte de Aplicaciones de la Comunidad (CA).
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=Ha ocurrido un error desconocido. Por favor, publique una captura de pantalla de la página de Estadísticas en el sitio de soporte de Aplicaciones de la Comunidad (CA).
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=Ha sucedido un error. Para solucionar este problema es probable que tenga que recargar la página de su navegador.
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=Este plugin tiene el mismo nombre que el plugin %s . Debido a esto no podrá instalar ambos plugins a la vez.
|
||||
You have been logged out=Su sesión ha sido cerrada
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=MENÚ
|
||||
Installed Apps=Apps Instaladas
|
||||
Previous Apps=Apps Anteriores
|
||||
Pinned Apps=Apps Ancladas
|
||||
CATEGORIES=CATEGORÍAS
|
||||
New Apps=Apps Nuevas
|
||||
Updated Apps=Apps Actualizadas
|
||||
Random Apps=Apps Aleatorias
|
||||
Top New Installs=Top Nuevas Instalaciones
|
||||
Trending Apps=Apps Populares
|
||||
All Apps=Todas las Apps
|
||||
OTHER=OTROS
|
||||
Statistics=Estadísticas
|
||||
Credits=Créditos
|
||||
Support=Soporte
|
||||
VERSION=VERSIÓN
|
||||
Change Log=Notas de la Versión
|
||||
|
||||
; Credits
|
||||
Development=Desarrollo
|
||||
Additional Contributions=Contribuciones Adicionales
|
||||
GUI Layout Design=Diseño de la Interfaz Gráfica
|
||||
Application Feed=Lista De Aplicaciones
|
||||
Additional Testing=Pruebas Adicionales
|
||||
Moderation=Moderación
|
||||
Additional Libraries=Librerías Adicionales
|
||||
Copyright=Derechos de Autor
|
||||
Translation=Traducción
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=Aún es posible instalar las aplicaciones obsoletas que ya estuvieran instaladas con anterioridad. Las nuevas instalaciones de estas aplicaciones están bloqueadas a menos que tenga deshabilitada la opción "Ocultar aplicaciones obsoletas" en la sección de Ajustes.
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=Las siguientes aplicaciones están en la lista negra. Aplicaciones de la Comunidad (CA) bloqueará la instalación o reinstalación de estas aplicaciones.
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=Aunque no sea recomendable en absoluto, se pueden instalar aplicaciones incompatibles si se deshabilita la opción "Ocultar aplicaciones incompatibles" en la sección de Ajustes.
|
||||
This display is informational ONLY=Esta pantalla es SOLO informativa
|
||||
unknown=desconocido
|
||||
Last Change To Application Feed=Último cambio en la lista de aplicaciones
|
||||
Number Of Docker Applications=Número de aplicaciones Docker
|
||||
Number Of Plugin Applications=Número de plugins
|
||||
Number Of Templates=Número de plantillas
|
||||
Number Of Repositories=Número de repositorios
|
||||
Number Of Private Docker Applications=Número de aplicaciones Docker privadas
|
||||
Number Of Invalid Templates=Número de plantillas inválidas
|
||||
Number Of Template Errors=Número errores en plantillas
|
||||
Number Of Blacklisted Apps=Número de aplicaciones en la lista negra
|
||||
Number Of Incompatible Applications=Número de aplicaciones incompatibles
|
||||
Number Of Deprecated Applications=Número de aplicaciones obsoletas
|
||||
Number Of Moderation Entries=Numero de anotaciones de moderación
|
||||
Primary Server=Servidor principal
|
||||
Backup Server=Servidor de reserva
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=Lista de Repositorios
|
||||
All Invalid Templates Found=Plantillas Inválidas Encontradas
|
||||
Template Errors=Errores en Plantillas
|
||||
All Moderation Entries=Anotaciones de Moderación
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=No se encontraron plantillas inválidas
|
||||
These templates are invalid and the application they are referring to is unknown=Estas plantillas son inválidas y la aplicación a la que hacen referencia es desconocida
|
||||
No templates were automatically fixed=No se corrigió automáticamente ninguna plantilla
|
||||
All of these errors found have been fixed automatically=Los siguientes errores encontrados han sido corregidos automaticamente
|
||||
Note that many of these errors can be avoided by following the directions=Tenga en cuenta que muchos de estos errores se pueden evitar si se siguen las instrucciones mostradas
|
||||
HERE=AQUÍ
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=Los siguientes plugins tienen nombres repetidos y no se pueden instalar simultáneamente.
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=Las siguientes aplicaciones Docker hacen referencia al mismo repositorio Docker, pero pueden tener cambios sutiles en la plantilla para que funcionen correctamente.
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=Si alguna de estas anotaciones es incorrecta, por favor, póngase en contacto con los moderadores de Aplicaciones de la Comunidad (CA).
|
||||
Global Repository Comments=Commentarios Globales por Repositorio
|
||||
Applied to all applications=(Aplica a todas las aplicaciones)
|
||||
Individual Application Moderation=Moderación Individual por Aplicación
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Registro de Cambios de Aplicaciones de la Comunidad (CA)
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=Copia de Seguridad
|
||||
Cloud=Nube
|
||||
Downloaders=Gestores de Descarga
|
||||
Game Servers=Servidores de Juego
|
||||
Home Automation=Automatización del Hogar
|
||||
Media Applications=Apps Multimedia
|
||||
Books=Libros
|
||||
Music=Música
|
||||
Photos=Fotos
|
||||
Video=Vídeo
|
||||
Other=Otros
|
||||
Media Servers=Servidores Multimedia
|
||||
Network Services=Servicios de Red
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=Administración
|
||||
Messenger=Mensajería
|
||||
Proxy=Proxy
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=Productividad
|
||||
Security=Seguridad
|
||||
Tools Utilities=Herramientas / Utilidades
|
||||
System=Sistema
|
||||
Themes=Temas
|
||||
Utilities=Utilidades
|
||||
Private Apps=Apps Privadas
|
||||
Uncategorized=Sin Categorizar
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=ServidoresJuego
|
||||
HomeAutomation=AutomatizaciónHogar
|
||||
MediaApp=AppMultimedia
|
||||
MediaAppBooks=AppMultimedia:Libros
|
||||
MediaAppMusic=AppMultimedia:Música
|
||||
MediaAppPhotos=AppMultimedia:Fotos
|
||||
MediaAppVideo=AppMultimedia:Vídeo
|
||||
MediaAppOther=AppMultimedia:Otros
|
||||
MediaServer=ServidorMultimedia
|
||||
MediaServerBooks=ServidorMulti:Libros
|
||||
MediaServerMusic=ServidorMultimedia:Música
|
||||
MediaServerPhotos=ServidorMultimedia:Fotos
|
||||
MediaServerVideo=ServidorMultimedia:Vídeo
|
||||
MediaServerOther=ServidorMultimedia:Otros
|
||||
Network=Red
|
||||
NetworkDNS=Red:DNS
|
||||
NetworkFTP=Red:FTP
|
||||
NetworkManagement=Red:Administración
|
||||
NetworkProxy=Red:Proxy
|
||||
NetworkVOIP=Red:VOIP
|
||||
NetworkVPN=Red:VPN
|
||||
NetworkWeb=Red:Web
|
||||
NetworkOther=Red:Otros
|
||||
ToolsSystem=Herramientas:Sistema
|
||||
ToolsThemes=Herramientas:Temas
|
||||
ToolsUtilities=Herramientas:Utilidades
|
||||
Other=Otros
|
||||
OtherUncategorized=Otros:SinCategorizar
|
||||
and %s more=y %s más
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=Donar al Autor
|
||||
Donate To Maintainer=Donar al Mantenedor
|
||||
Author=Autor
|
||||
Maintainer=Mantenedor
|
||||
DockerHub=DockerHub
|
||||
Application Template=Plantilla de Aplicación
|
||||
Base OS=SO Base
|
||||
DockerHub Stars=Estrellas en DockerHub
|
||||
Added to CA=Añadido a CA
|
||||
Date Updated=Última Actualización
|
||||
Current Version=Versión Actual
|
||||
Minimum OS=Versión Mínima SO
|
||||
Max OS=Versión Máxima SO
|
||||
Total Downloads=Descargas Totales
|
||||
Licence=Licencia
|
||||
30 Day Trend=Tendencia 30 Días
|
||||
Ranked #%s=Posición #%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=Tendencia %s
|
||||
; as in As of some date
|
||||
As of %s=(A fecha de %s)
|
||||
This application template has been blacklisted=Esta aplicación / plantilla ha sido incluida en la lista negra
|
||||
This application template has been deprecated=Esta aplicación / plantilla está considerada obsoleta
|
||||
This application is not compatible with your version of Unraid=Esta aplicación no es compatible con su versión de Unraid
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Otra pestaña del navegador o dispositivo ha actualizado las plantillas mostradas. Algunas acciones no están disponibles.
|
||||
Reinstall default=Reinstalar (por defecto)
|
||||
WebUI=Interfaz Web
|
||||
Reinstall=Reinstalar
|
||||
Install=Instalar
|
||||
Project=Proyecto
|
||||
Install Using The Templates Default Tag=Instalar Usando la Etiqueta de la Plantilla Por Defecto
|
||||
Moderator Comments=Comentarios del Moderador:
|
||||
Note not all authors keep up to date on change logs=Tenga en cuenta que no todos los autores actualizan el registro de cambios
|
||||
Note not all maintainers keep up to date on change logs=Tenga en cuenta que no todos los mantenedores actualizan el registro de cambios
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=Donar
|
||||
Currently Installed Version=Versión Instalada Actualmente
|
||||
Install The Update=Instalar la Actualización
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=Última Versión
|
||||
Multi Language Support=Soporte para Múltiples Idiomas
|
||||
; as in more than 100000
|
||||
More than %s=Más de %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=Tendencia Mensual
|
||||
Downloads Per Month=Descargas Mensuales
|
||||
Total Downloads=Descargas Totales
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=Instalando las aplicaciones Docker %s
|
||||
Starting %s=Iniciando %s
|
||||
%s failed to start You should install it by itself to fix the errors=La inicialización de %s ha fallado. Intente instalar la aplicación por separado para corregir los errores
|
||||
Setting installed applications to autostart=Configurando las aplicaciones instaladas para que se inicien automáticamente
|
||||
Docker Application Installation finished=La instalación de las aplicaciones Docker ha finalizado
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Privado (conversión de DockerHub)
|
||||
Go to the project page=Ir a la página del proyecto
|
||||
Go to the support thread=Ir al sitio de soporte
|
||||
Uninstall Application=Desinstalar la Aplicación
|
||||
Remove Private Application=Eliminar la Aplicación Privada
|
||||
Remove Application From List=Eliminar de la Lista de Aplicaciones
|
||||
Check off to select multiple reinstalls=Marque para seleccionar múltiples reinstalaciones
|
||||
Go to the plugin settings=Ir a los ajustes del plugin
|
||||
Click to reinstall the application using default values=Haga clic para reinstalar la aplicación utilizando los valores por defecto
|
||||
Click to edit the application values=Haga clic para editar los valores de la aplicación
|
||||
Click to reinstall=Haga clic para reinstalar
|
||||
Click to install=Haga clic para instalar
|
||||
Install plugin=Instalar plugin
|
||||
Click to go to the WebUI=Haga clic para ir a la interfaz web
|
||||
This application has been marked as being Beta=Esta aplicación ha sido marcada como Beta
|
||||
This application template has been deprecated=Esta plantilla está considerada obsoleta
|
||||
This application is not compatible with your version of Unraid=Esta aplicación no es compatible con su versión de Unraid
|
||||
This application template has been blacklisted=Esta plantilla está en la lista negra
|
||||
Search for more applications from %s=Buscar más aplicaciones en %s
|
||||
Click for more information=Haga clic para más información
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=Buscar contenedores en %s
|
||||
Search for similar containers=Buscar contenedores similares
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Mostrando %1$s - %2$s (de %3$s)
|
||||
|
||||
Updating Content=Actualizando Contenido
|
||||
Language=Idioma
|
||||
Switch to this language=Cambiar a este idioma
|
||||
Country Code=Código de País
|
||||
Install Language Pack=Instalar el Paquete de Idioma
|
||||
Remove Language Pack=Eliminar el Paquete de Idioma
|
||||
Update Language Pack=Actualizar el Paquete de Idioma
|
||||
Installed Version=Versión Instalada
|
||||
A note about translations=Nota acerca de las traducciones
|
||||
Click here to view the language changelog=Haga clic aquí para ver el registro de cambios de la traducción
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=Este icono sirve para elegir cómo organizar los resultados
|
||||
These icons respectively will Install or Edit an application=Haga clic en estos iconos para instalar o editar una aplicación
|
||||
Clicking these icons will take you to an applications GUI or settings=A través de estos iconos puede ir a la interfaz gráfica o a los ajustes de una aplicación
|
||||
This will update an application=Este icono sirve para actualizar una aplicación
|
||||
This will take you to the appropriate support thread for an application=Haga clic en este icono para ir al sitio de soporte de una aplicación
|
||||
This will immediately switch to the language=Haga clic en este icono para cambiar inmediatamente de idioma
|
||||
This will take you to the project page for an application=Este icono le llevará a la página del proyecto de una aplicación
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=Haga clic en este icono para desinstalar una aplicación o eliminarla de las listas (dependiendo de la sección en la que se encuentre)
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=A través de estos iconos puede anclar o desanclar una aplicación (para ser vista más adelante en la sección Apps Ancladas)
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=Este icono sirve para mostrar más información acerca de una aplicación. NOTA: También puede pulsar en el icono de la aplicación para mostrar más información
|
||||
Clicking this will display any warnings or extra comments about the application=Haga clic en este icono para ver cualquier advertencia o comentario sobre la aplicación
|
||||
On the previous apps section you can select multiple applications to install simultaneously=En la sección Apps Anteriores, puede seleccionar múltiples aplicaciones a instalar simultáneamente
|
||||
This is the recommended version to install by the application author themselves=Este icono muestra que es la versión recomendada para instalar según el autor de la aplicación
|
||||
For support for this plugin visit=Para soporte con este plugin, por favor,
|
||||
To view the policies Community Applications has=Para ver la política de Aplicaciones de la Comunidad (CA), por favor,
|
||||
Access Mode=Modo de Acceso
|
||||
Add another Path, Port, Variable, Label or Device=Agregar otra Ruta, Puerto, Variable, Etiqueta o Dispositivo
|
||||
Add Configuration=Agregar Configuración
|
||||
Add=Agregar
|
||||
Always=Siempre
|
||||
App to Host=Usados por la App
|
||||
Application=Aplicación
|
||||
apply update=iniciar actualización
|
||||
Array must be Started to view Docker containers=El array debe estar **Iniciado** para ver los contenedores Docker
|
||||
Are you sure=Está seguro
|
||||
Autostart=Auto-Iniciar
|
||||
Back=Atrás
|
||||
Backup=Copia de Seguridad
|
||||
Beta=Beta
|
||||
Books=Libros
|
||||
By=De
|
||||
Categories=Categorías
|
||||
Check for Updates=Buscar Actualizaciones
|
||||
Cloud=Nube
|
||||
Config Type=Tipo de Configuración
|
||||
Configuration not found=No se encontró la configuración
|
||||
Connection Type=Tipo de Conexión
|
||||
Console shell command=Tipo de Consola
|
||||
Container ID=ID del Contenedor
|
||||
Container Path=Ruta del Contenedor
|
||||
Container Port=Puerto del Contenedor
|
||||
Container Size=Tamaño de los Contenedores
|
||||
Container=Contenedor
|
||||
CPU Memory load=Uso de CPU & Memoria
|
||||
CPU Pinning=Asignación de CPU
|
||||
Created=Creado
|
||||
Default Value=Valor por Defecto
|
||||
Device=Dispositivo
|
||||
Display=Mostrar
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=URL de DockerHub
|
||||
Docker Service failed to start=No se pudo iniciar el servicio Docker
|
||||
Donation Link=Link de Donación
|
||||
Donation Text=Texto de Donación
|
||||
Downloaders=Gestores de Descarga
|
||||
Edit Configuration=Editar Configuración
|
||||
Exited=Terminado
|
||||
Extra Parameters=Parámetros Adicionales
|
||||
Fixed IP address=Dirección IP fija
|
||||
force update=forzar actualización
|
||||
FTP=FTP
|
||||
Game Servers=Servidores de Juego
|
||||
healthy=buen estado
|
||||
Hide Buttons=Ocultar Botones
|
||||
Hide docker allocations=Ocultar asignaciones Docker
|
||||
Hide more settings=Ocultar opciones adicionales
|
||||
Home Automation=Automatización del Hogar
|
||||
Host Path=Ruta del Host
|
||||
Host Port=Puerto del Host
|
||||
HT=HT
|
||||
Icon URL=URL del Icono
|
||||
Image ID=ID de la Imagen
|
||||
Key=Licencia
|
||||
Label=Etiqueta
|
||||
latest=latest
|
||||
Management=Administración
|
||||
MediaApp=AppMultimedia
|
||||
MediaServer=ServidorMultimedia
|
||||
Messenger=Mensajería
|
||||
Missing parameters=Faltan parámetros
|
||||
Music=Música
|
||||
Network Type=Tipo de Red
|
||||
No Docker containers installed=No hay ningún contenedor Docker instalado
|
||||
of=de
|
||||
orphan image=imagen huérfana
|
||||
Other=Otros
|
||||
Overview=Descripción
|
||||
Path=Ruta
|
||||
Pause All=Pausar Todos
|
||||
Photos=Fotos
|
||||
Port Mappings=Asignación de Puertos
|
||||
Port=Puerto
|
||||
Post Arguments=Argumentos Adicionales
|
||||
Privileged=Acceso Privilegiado
|
||||
Productivity=Productividad
|
||||
Project Page=Página del Proyecto
|
||||
Proxy=Proxy
|
||||
Pulling image=Obteniendo imagen
|
||||
Read Only - Shared=Solo Lectura - Compartido
|
||||
Read Only - Slave=Solo Lectura - Esclavo
|
||||
Read Only=Solo Lectura
|
||||
ReadWrite - Shared=Lectura/Escritura - Compartido
|
||||
ReadWrite - Slave=Lectura/Escritura - Esclavo
|
||||
rebuild ready=reconstrucción lista
|
||||
rebuilding=Reconstruyendo
|
||||
Remove template=Eliminar plantilla
|
||||
Removing container=Eliminando contenedor
|
||||
Removing orphan image=Eliminando imagen huérfana
|
||||
Repository=Repositorio
|
||||
Required=Requerido
|
||||
Resume All=Reanudar TODOS
|
||||
Save=Guardar
|
||||
Select a template=Seleccione una plantilla
|
||||
Select categories=Seleccione categorías
|
||||
Show docker allocations=Mostrar asignaciones Docker
|
||||
Show more settings=Mostrar más opciones
|
||||
Stable=Estable
|
||||
Start All=Iniciar TODOS
|
||||
starting up containers=Iniciando contenedores
|
||||
Stop All=Detener TODOS
|
||||
Stopping container=Deteniendo contendor
|
||||
Successfully removed container=Contenedor eliminado con éxito
|
||||
Successfully removed orphan image=Imagen huérfana eliminada con éxito
|
||||
Successfully stopped container=Contenedor detenido con éxito
|
||||
Support Thread=Sitio de Soporte
|
||||
Template repositories=Repositorios de plantillas
|
||||
Template URL=URL de la plantilla
|
||||
Template=Plantilla
|
||||
The command failed=El comando ha fallado
|
||||
The command finished successfully=El comando se completó con éxito
|
||||
TOTAL DATA PULLED=DATOS TOTALES DESCARGADOS
|
||||
Unknown action=Acción desconocida
|
||||
Update All=Actualizar Todos
|
||||
update ready=actualización lista
|
||||
Value=Valor
|
||||
Variable=Variable
|
||||
Video=Video
|
||||
Voip=Voip
|
||||
Volume Mappings=Asignación de Volumenes
|
||||
wait=retardo
|
||||
Was this container created using this plugin=Se creó este contenedor usando este plugin
|
||||
Web=Web
|
||||
WebUI=Interfaz Web
|
||||
Writable=Grabable
|
||||
Absolute=Absoluto
|
||||
Acknowledge=Restablecer
|
||||
Active=Activo
|
||||
active=activo
|
||||
Actual results=Resultados obtenidos
|
||||
Add Container=Agregar Contenedor
|
||||
Add VM=Crear VM
|
||||
Advanced View=Vista Avanzada
|
||||
AFP Security Settings=Opciones de Seguridad AFP
|
||||
All=Todos
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Hacer anónima la información de diagnóstico (puede dificultar la resolución del problema)
|
||||
Apply=Aplicar
|
||||
Apps=Apps
|
||||
Array must be Stopped to change=El array debe estar Detenido para cambiar
|
||||
Array Started=Array Iniciado
|
||||
Array Starting=Iniciando Array
|
||||
Array Stopped=Array Detenido
|
||||
Array Stopping=Deteniendo Array
|
||||
Array=Array
|
||||
Attributes=Atributos
|
||||
Auto=Auto
|
||||
Automatic=Automático
|
||||
Average speed=Velocidad media
|
||||
Azure=Azure
|
||||
B=B
|
||||
Back To Top=Volver Arriba
|
||||
Basic=Basic
|
||||
Basic View=Vista Básica
|
||||
BIOS=BIOS
|
||||
Black=Negro
|
||||
Browse=Explorar
|
||||
Browser error=Error del navegador
|
||||
btrfs=btrfs
|
||||
Bug Description=Descripción del problema
|
||||
Bug Report=Reportar Problema
|
||||
bytes=bytes
|
||||
Cancel=Cancelar
|
||||
Capabilities=Capacidades
|
||||
Case-sensitive names=Nombres con distinción entre mayúsculas y minúsculas
|
||||
Center=Centro
|
||||
Change=Cambiar
|
||||
Check=Comprobar
|
||||
Clear=Borrar
|
||||
Clearing=Borrando
|
||||
Click for context menu=Haga clic para abrir el menú contextual
|
||||
Click=Haga clic
|
||||
close all notifications=cerrar todas las notificaciones
|
||||
Close=Cerrar
|
||||
close=cerrar
|
||||
Comment=Comentar
|
||||
Contact Email Address=Email de Contacto
|
||||
Contact Support=Contactar Soporte
|
||||
containing your key file URL=que contiene tu URL de archivo de licencia
|
||||
Copy=Copiar
|
||||
CPU=CPU
|
||||
Dashboard=Administración
|
||||
day=día
|
||||
%s day ago=hace %s día
|
||||
%s days ago=hace %s días
|
||||
Days_array=Sunday:Domingo Monday:Lunes Tuesday:Martes Wednesday:Miércoles Thursday:Jueves Friday:Viernes Saturday:Sábado Sun:Dom Mon:Lun Tue:Mar Wed:Mie Thu:Jue Fri:Vie Sat:Sab
|
||||
days=días
|
||||
Default=Por Defecto
|
||||
default=por defecto
|
||||
Delete=Eliminar
|
||||
Description=Descripción
|
||||
Device contents emulated, in standby mode spun-down=Contenido del dispositivo emulado, en estado de reposo
|
||||
Device contents emulated=Contenido del dispositivo emulado
|
||||
Device is disabled, contents emulated=Dispositivo deshabilitado, contenido emulado
|
||||
Device is in standby mode spun-down=Dispositivo en estado de reposo
|
||||
Device is missing disabled, contents emulated=Falta el dispositivo (deshabilitado), contenido emulado
|
||||
Device not present=Dispositivo ausente
|
||||
Device=Dispositivo
|
||||
directories=directorios
|
||||
directory=directorio
|
||||
Disabled=Deshabilitado
|
||||
disabled=deshabilitado
|
||||
Disk=Disco
|
||||
disk=disco
|
||||
Do you want to update to the new version=Quiere actualizar a la nueva versión
|
||||
Docker=
|
||||
Done=Atrás
|
||||
Download=Descargar
|
||||
Duration=Duración
|
||||
Edit=Editar
|
||||
edit=editar
|
||||
Emulated=Emulado
|
||||
emulated=emulado
|
||||
Enabled=Habilitado
|
||||
enabled=habilitado
|
||||
Encrypted and unlocked=Cifrado y desbloqueado
|
||||
Error code=Código de error
|
||||
Error=Error
|
||||
error=error
|
||||
Errors=Errores
|
||||
errors=errores
|
||||
Expected results=Resultados esperados
|
||||
Export=Exportar
|
||||
Faulty=Defectuoso
|
||||
faulty=defectuoso
|
||||
Feedback=Comentarios
|
||||
File too large=Archivo demasiado grande
|
||||
file=archivo
|
||||
files=archivos
|
||||
Fixed=Fija
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=GUID de la memoria flash
|
||||
Flash Product=Modelo de la memoria flash
|
||||
Flash Vendor=Fabricante de la memoria flash
|
||||
FOLDER=CARPETA
|
||||
folder=
|
||||
Force lower=Forzar minúsculas
|
||||
Format=Formato
|
||||
Formatting devices=Formateando dispositivos
|
||||
Forum=Foro
|
||||
GB=GB
|
||||
Go to Registration page=Ir a la página de Registro de Licencia
|
||||
GPT 4KiB-aligned=GPT 4KiB-alineado
|
||||
Gray=Gris
|
||||
Guests have no access=Los invitados no tienen acceso
|
||||
Guests have read-only access=Los invitados tienen solo acceso de lectura
|
||||
Heat alarm=Alarma de temperatura
|
||||
Help=Ayuda
|
||||
here=aquí
|
||||
History=Historial
|
||||
hour=hora
|
||||
hours=horas
|
||||
%s hour ago=hace %s hora
|
||||
%s hours ago=hace %s horas
|
||||
How to reproduce=Cómo reproducirlo
|
||||
hr=hr
|
||||
HVM=HVM
|
||||
Identity=Identidad
|
||||
Inactive=Inactivo
|
||||
Index of=Contenido de
|
||||
Info=Info
|
||||
Install Key=Instalar Licencia
|
||||
interface down=interfaz sin conexión
|
||||
Interface=Interfaz
|
||||
IOMMU=IOMMU
|
||||
is available=está disponible
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Última Modificación
|
||||
Left=Izquierdo
|
||||
less than a minute remaining=menos de un minuto restante
|
||||
less than a minute=menos de un minuto
|
||||
Load=Uso
|
||||
Location=Localización
|
||||
Locked missing encryption key=Bloqueado: falta la clave de cifrado
|
||||
Locked unknown error=Bloqueado: error desconocido
|
||||
Locked wrong encryption key=Bloqueado: clave de cifrado incorrecta
|
||||
Log=Registro
|
||||
Login=Inicio de Sesión
|
||||
Logout=Cerrar Sesión
|
||||
Main=Principal
|
||||
manual=manual
|
||||
max installable capacity=capacidad máxima instalable
|
||||
Maximum file upload size is 512K=El tamaño máximo archivo que se puede subir es 512K
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligeada
|
||||
MBR 4KiB-aligned=MBR: 4KiB-alineada
|
||||
MBR unaligned=MBR: sin alinear
|
||||
Memory=Memoria
|
||||
min=min
|
||||
minute=minuto
|
||||
minutes=minutos
|
||||
%s minute ago=hace %s minuto
|
||||
%s minutes ago=hace %s minutos
|
||||
Model=Modelo
|
||||
%s month ago=hace %s mes
|
||||
%s months ago=hace %s meses
|
||||
Months_array=January:Enero February:Febrero March:Marzo April:Abril May:Mayo June:Junio July:Julio August:Agosto September:Septiembre October:Octubre November:Noviembre December:Diciembre Jan:Ene Feb:Feb Mar:Mar Apr:Abr May:May Jun:Jun Jul:Jul Aug:Ago Sep:Sep Oct:Oct Nov:Nov Dec:Dic
|
||||
months=meses
|
||||
More=Más
|
||||
Motherboard=Placa base
|
||||
Move=Mover
|
||||
NA=N/A
|
||||
Name=Nombre
|
||||
Network=Red
|
||||
Never=Nunca
|
||||
New device, in standby mode spun-down=Nuevo dispositivo, en estado de reposo
|
||||
New device=Nuevo dispositivo
|
||||
NFS Security Settings=Opciones de Seguridad NFS
|
||||
No Access=Sin Acceso
|
||||
No device=Sin dispositivo
|
||||
no device=sin dispositivo
|
||||
No errors reported=Sin errores reportados
|
||||
No information available=Sin información disponible
|
||||
No listing Too many files=Lista no disponible: Demasiados archivos
|
||||
No reply from mail server=Sin respuesta del servidor de email
|
||||
No=No
|
||||
no=no
|
||||
None=Ninguno
|
||||
none=ninguno
|
||||
Normal operation, device is active=Operación Normal, dispositivo activo
|
||||
Normal=Normal
|
||||
Normalized=Normalizado
|
||||
Not Available=No Disponible
|
||||
not available=no disponible
|
||||
not connected=no conectado
|
||||
Not encrypted=No cifrado
|
||||
not encrypted=no cifrado
|
||||
NOTE=NOTA
|
||||
Numbers_array=thirty:treinta twenty-nine:veintinueve twenty-eight:veintiocho twenty-seven:veintisiete twenty-six:veintiséis twenty-five:veinticinco twenty-four:veinticuatro twenty-three:veintitres twenty-two:veintidos twenty-one:veintiuno twenty:veinte nineteen:diecinueve eighteen:dieciocho seventeen:diecisiete sixteen:dieciséis fifteen:quince fourteen:catorce thirteen:trece twelve:doce eleven:once ten:diez nine:nueve eight:ocho seven:siete six:seis five:cinco four:cuatro three:tres two:dos one:uno zero:cero
|
||||
objects=objetos
|
||||
Off=No
|
||||
off-line=detenido
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=Sí
|
||||
Online Manual=Manual en Línea
|
||||
Online manual=Manual en línea
|
||||
OpenSSL=OpenSSL
|
||||
optional=opcional
|
||||
Other Comment=Otro Comentario
|
||||
Other information=Otra información
|
||||
Parity device is disabled=El dispositivo de paridad está deshabilitado
|
||||
Parity device is missing=Falta el dispositivo de paridad
|
||||
Parity is invalid, in standby mode spun-down=La paridad no es válida, en estado de reposo
|
||||
Parity is invalid=La paridad no es válida
|
||||
Parity is valid=La paridad es válida
|
||||
Parity=Paridad
|
||||
parity=paridad
|
||||
Parity-Check=Comprobación de Paridad
|
||||
Parity-Sync Data-Rebuild=Sincronización de Paridad / Reconstrucción de Datos
|
||||
Pause=Pausar
|
||||
Paused=Pausada
|
||||
paused=pausada
|
||||
PB=PB
|
||||
Please select one file only=Por favor, seleccione solo un archivo
|
||||
Please summarize your suggestion here=Por favor, resuma su sugerencia aquí
|
||||
Please try again later=Por favor, inténtelo de nuevo más tarde
|
||||
Please wait=Por favor espere
|
||||
Plugins=Plugins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privado
|
||||
Pro=Pro
|
||||
Proceed=Proceder
|
||||
Processor=Procesador
|
||||
Product Suggestion=Enviar Sugerencia
|
||||
Public=Público
|
||||
RAM=RAM
|
||||
Raw=Raw
|
||||
Read=Lectura
|
||||
Read settings from=Importar los ajustes de
|
||||
Read-Check=Comprobar Lectura
|
||||
Read-only=Solo Lectura
|
||||
Reads=Lecturas
|
||||
ReadWrite=Lectura/Escritura
|
||||
Reboot Now=Reiniciar Ahora
|
||||
Reboot=Reiniciar
|
||||
Refresh=Recargar
|
||||
Registration=Licencia
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Notas de la Versión
|
||||
Remove=Eliminar
|
||||
Renew=Renovar
|
||||
Reset=Restablecer
|
||||
Restart=Reiniciar
|
||||
Resume=Reanudar
|
||||
Right=Derecho
|
||||
RPM=RPM
|
||||
Running=En ejecución
|
||||
running=en ejecución
|
||||
safe mode=modo seguro
|
||||
sec=seg
|
||||
second=segundo
|
||||
seconds=segundos
|
||||
%s second ago=hace %s segundo
|
||||
%s seconds ago=hace %s segundos
|
||||
Secure=Seguro
|
||||
Security=Seguridad
|
||||
Security Settings=Opciones de Seguridad
|
||||
select=seleccionar
|
||||
Self-Test=Autodiagnóstico
|
||||
Server=Servidor
|
||||
Settings=Ajustes
|
||||
Share=Recurso Compartido
|
||||
Share name=Nombre
|
||||
Shares List=Lista de Recursos Compartidos
|
||||
Shares=Compartido
|
||||
Shutdown=Apagar
|
||||
Size=Capacidad
|
||||
SMB Security Settings=Opciones de Seguridad SMB
|
||||
sn=n/s
|
||||
Sorry, an error occurred=Disculpe, ha ocurrido un error
|
||||
Standby=En Reposo
|
||||
standby=en reposo
|
||||
Start=Iniciar
|
||||
Started=Iniciado
|
||||
started=iniciada
|
||||
Status=Estado
|
||||
status=estado
|
||||
Stop=Detener
|
||||
Stopped=Detenido
|
||||
stopped=detenido
|
||||
Streams=Conexiones
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Este reporte de error enviará automáticamente la información de diagnóstico del sistema a Lime Technology
|
||||
Submit=Enviar
|
||||
System Information=Información del Sistema
|
||||
System is going down=El sistema se está apagando
|
||||
System is offline=El sistema está fuera de línea
|
||||
System is powered off=El sistema está apagado
|
||||
System is rebooting=El sistema se está reiniciando
|
||||
System Log=Registro del Sistema
|
||||
System notifications are=Las notificaciones del sistema están
|
||||
System running in=Sistema funcionando en
|
||||
System=Sistema
|
||||
TB=TB
|
||||
Temperature=Temperatura
|
||||
Template Repositories=Repositorios de Plantillas
|
||||
Terminal=Terminal
|
||||
Test result=Resultado de la prueba
|
||||
Thank You=Gracias
|
||||
The error is=El error es
|
||||
to change notification settings=para cambiar los ajustes de notificación
|
||||
to downgrade Unraid OS=para volver a una versión anterior de Unraid OS
|
||||
to upgrade Unraid OS=para actualizar Unraid OS
|
||||
today=hoy
|
||||
Too many files=Demasiados archivos
|
||||
Tools=Herramientas
|
||||
Total=Total
|
||||
total=total
|
||||
Type your question or comment to Lime Technology here=Escriba su pregunta o comentario a Lime Technology aquí
|
||||
Type=Tipo
|
||||
Unable to generate system diagnostics=Incapaz de generar la información de diagnóstico del sistema
|
||||
Unassigned=Sin Asignar
|
||||
unassigned=sin asignar
|
||||
Unknown=Desconocido
|
||||
unknown=desconocido
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Actualizar Contenedor
|
||||
Update Now=Actualizar Ahora
|
||||
Update VM=Actualizar VM
|
||||
Update=Actualizar
|
||||
update=actualizar
|
||||
Updated=Actualizado
|
||||
Upload error=Error de subida
|
||||
Upload=Subir
|
||||
Uptime=Tiempo en línea
|
||||
up-to-date=actualizado
|
||||
User Access=Acceso de Usuario
|
||||
Users=Usuarios
|
||||
Utilization=Uso
|
||||
Version=Versión
|
||||
View Release Notes=Ver Notas de la Versión
|
||||
View=Ver
|
||||
VMs=
|
||||
VPN=VPN
|
||||
Warning=Advertencia
|
||||
Website=Página web
|
||||
%s week ago=hace %s semana
|
||||
% weeks ago=hace %s semanas
|
||||
White=Blanco
|
||||
Wiki=Wiki
|
||||
Write=Escritura
|
||||
Write settings to=Exportar los ajustes a
|
||||
Wrong=Incorrecto
|
||||
wrong=incorrecto
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Sí, quiero hacerlo
|
||||
Yes=Sí
|
||||
yes=sí
|
||||
Yes hidden=Sí (ocultar)
|
||||
Yes Time Machine=Sí (Time Machine)
|
||||
YesTime Machine hidden=Sí/Time Machine (ocultar)
|
||||
YesTime Machine=Sí/Time Machine
|
||||
yesterday=ayer
|
||||
You must reboot for changes to take effect=Debe reiniciar para que los cambios tengan efecto
|
||||
Your browser does not support HTML5 file uploads=Su navegador no soporta la subida de archivos con HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Array en uso
|
||||
Buttons=Botones
|
||||
Parity operation or mover is running=Operación de paridad o servicio Mover en ejecución
|
||||
preparing for reboot=preparando para reiniciar
|
||||
preparing for shutdown=preparando para apagar
|
||||
Sleep=Suspender
|
||||
Start Array=Iniciar Array
|
||||
starting the array=iniciando el array
|
||||
Stop Array=Detener Array
|
||||
stopping the array=deteniendo el array
|
||||
System in sleep mode=Sistema en suspensión
|
||||
This will put the system to sleep=Esto suspenderá el sistema
|
||||
This will reboot the system=Esto reiniciará el sistema
|
||||
This will shutdown the system=Esto apagará el sistema
|
||||
This will start the array=Esto iniciará el array
|
||||
This will stop the array=Esto detendrá el array
|
862
languages/fr_FR
Normal file
862
languages/fr_FR
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=Annuler
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=Bonne Année
|
||||
Happy Holidays from Andrew, Tracey, and family=Joyeuses Fêtes de la part de Andrew, Tracey, et toute la famille
|
||||
Please Enjoy Responsibly=S'il vous plaît utiliser de manière responsable
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=Popup Bloqué. CA nécessite que les popups soient activés dans certaines circonstances Vous devez lister votre serveur dans votre navigateur pour autoriser les popups
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=Service Docker Non-Activé - Seuls les plugins disponibles peuvent être installés ou gérés
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=Les Applications Communautaires fonctionnent mieux lorsque les fichiers témoins (cookies) sont activés dans votre navigateur Certaines fonctionnalités peuvent ne pas être disponibles
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=Serveur de sauvegarde actif Certains icônes peuvent ne pas apparaître et les installations de plug-ins peuvent être affectées
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=Options de Tri
|
||||
Sorting options unavailable=Options de Tri non-disponibles
|
||||
Sort By Name Ascending=Trier Par Nom Ascendant
|
||||
Sort By Name Descending=Trier Par Nom Descendant
|
||||
Sort By Downloads=Trier Par Téléchargements
|
||||
Sort By Trend=Trier Par Tendance
|
||||
Sort By Date Added=Trier Par Date Ajouté
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=Désistement
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=Toutes les applications répertoriées ici sont des ajouts de tierce-partie à unRaid. Ni les auteurs des applications communautaires ni Limetech ne donnent de garantie quant à la validité de toute application répertoriée ici.
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=Tous les efforts sont faits pour s'assurer que seules des applications sûres et compatibles sont présentes
|
||||
Application Policy=Politique d'Application
|
||||
I Understand=Je Comprends
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=Installations d'applications désactivées Vous devez accepter l'avertissement pour pouvoir installer des applications
|
||||
Click here=Cliquez ici
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Les applications de communauté contiennent à la fois des conteneurs de docker et des applications de plugin. Les plugins sont conçus pour des améliorations du système d'exploitation, et s'exécutent avec des privilèges complets sur votre système et sont clairement identifiés dans CA
|
||||
Plugin Note=Note du Plugin
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=Installer les Application de Plugins
|
||||
Select all on page=Sélectionner tout sur la page
|
||||
|
||||
; Searches
|
||||
Search=Recherche
|
||||
Please enter search term=Veuillez entrer le terme de recherche
|
||||
Click Here To Get More Results From DockerHub=Cliquer Ici Pour Obtenir Plus De Résultats De Recherche De Dockerhub
|
||||
No Matching Applications Found On Docker Hub=Aucune Application Correspondante Trouvée sur DockerHub
|
||||
No Matching Applications Found=Aucune Application Correspondante Trouvée
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=Installer Plugin
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=Supprimer le Modèle
|
||||
Yes, delete it=Oui, supprimez la
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=Désinstaller l'Application
|
||||
Yes uninstall it=Oui désinstallez la
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=Retirer l'Application Privée
|
||||
Yes, remove it=Oui, retirez-la
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=Cliquez pour épingler cette application
|
||||
Click to unpin this application=Cliquez pour désépingler cette application
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=Choisir la Branche a Installer
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=Installer les Applications Épinglées
|
||||
|
||||
Yes, install it=Oui, Installez La
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=Oui, Installez les
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=Fichiers Témoins (Cookies) non activés. Les Plugins doivent être installés séparément des applications docker
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=Les applications Docker seront installées en utilisant le modèle le plus récemment sauvegardé, sans aucune intervention de votre part
|
||||
Updating Support Links=Mise à jour des Liens de Soutien
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=Installation Terminée. Si le bouton TERMINÉ n'apparaît pas, vous devez cliquer sur le X rouge dans le coin supérieur droit
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=Aucune donnée n'a été renvoyée. Il est probable qu'une autre session de navigateur ait redémarré votre serveur. Le rechargement de cet onglet du navigateur corrigera probablement cette erreur
|
||||
An error occurred Could not find any %s Apps=Une erreur s'est produite. Impossible de trouver aucune Application de %s
|
||||
Download of appfeed failed=Le téléchargement de l'appfeed a échoué
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=Quelque chose s'est vraiment mal passé ici
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=Soumettre le contenu ENTIER de ce message dans le fil de discussion du soutien aux applications communautaires
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=Une erreur inconnue s'est produite. Veuillez poster une capture d'écran dans le fil de soutien de la page de Statistiques
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=Quelque chose s'est vraiment mal passé. Recharger l'onglet d'Applications va probablement régler le problème
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=Ce plugin a un nom dupliqué d'un autre plugin %s Cela aura un impact sur votre capacité à installer les deux plugins simultanément
|
||||
You have been logged out=Vous avez été déconnecté
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=MENU
|
||||
Installed Apps=Applications Installées
|
||||
Previous Apps=Applications Précédentes
|
||||
Pinned Apps=Applications Épinglées
|
||||
CATEGORIES=CATÉGORIES
|
||||
New Apps=Nouvelles Applications
|
||||
Updated Apps=Applications Mises-à-jour
|
||||
Random Apps=Applications Aléatoires
|
||||
Top New Installs=Top Des Nouvelles Installations
|
||||
Trending Apps=Applications Tendance
|
||||
All Apps=Toutes Les Applications
|
||||
OTHER=AUTRES
|
||||
Statistics=Statistiques
|
||||
Credits=Crédits
|
||||
Support=Support
|
||||
VERSION=VERSION
|
||||
Change Log=Journal Des Modifications
|
||||
|
||||
; Credits
|
||||
Development=Développement
|
||||
Additional Contributions=Contributions Supplémentaires
|
||||
GUI Layout Design=Conception De L'interface Graphique
|
||||
Application Feed=Feed d'Applications
|
||||
Additional Testing=Tests Supplémentaires
|
||||
Moderation=Modération
|
||||
Additional Libraries=Librairies Supplémentaires
|
||||
Copyright=Droits D'Auteur
|
||||
Translation=Traduction
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=Les Applications Obsolètes peuvent toujours être installées si vous les avez déjà installé. Les nouvelles installations de ces applications sont bloquées à moins que vous n'activiez l'Affichage des Applications Obsolètes dans les Paramètres Généraux du CA
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=Les applications suivantes sont sur la liste noire. CA ne vous permettra jamais d'installer ou de réinstaller ces applications
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=Bien qu'il soit fortement déconseillé de le faire, des applications incompatibles peuvent être installées en activant l'option Afficher les Applications Incompatibles dans les Paramètres Généraux des CA
|
||||
This display is informational ONLY=Cet affichage est à titre d'information UNIQUEMENT
|
||||
unknown=inconnu
|
||||
Last Change To Application Feed=Dernier Changement au Feed d'Applications
|
||||
Number Of Docker Applications=Nombre d'Applications Docker
|
||||
Number Of Plugin Applications=Nombre d'Applications Plugin
|
||||
Number Of Templates=Nombre de Modèles
|
||||
Number Of Repositories=Nombre de dépôts
|
||||
Number Of Private Docker Applications=Nombre d'Application Docker Privées
|
||||
Number Of Invalid Templates=Nombre de Modèles Invalides
|
||||
Number Of Template Errors=Nombre d'Erreurs de Modèles
|
||||
Number Of Blacklisted Apps=Nombre d'Applications sur la liste noire
|
||||
Number Of Incompatible Applications=Nombre d'Applications Incompatibles
|
||||
Number Of Deprecated Applications=Nombre d'Applications obsolètes
|
||||
Number Of Moderation Entries=Nombre d'Entrées de Modération
|
||||
Primary Server=Serveur Primaire
|
||||
Backup Server=Serveur de Sauvegarde
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=Liste des Dépots
|
||||
All Invalid Templates Found=Tous les Modèles Invalides Trouvés
|
||||
Template Errors=Erreurs de Modèle(s)
|
||||
All Moderation Entries=Toutes les Entrées de Modération
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=Aucun modèle invalide trouvé
|
||||
These templates are invalid and the application they are referring to is unknown=Ces modèles ne sont pas valides et l'application à laquelle ils font référence est inconnue
|
||||
No templates were automatically fixed=Aucun modèle n'a été automatiquement réparé
|
||||
All of these errors found have been fixed automatically=Toutes ces erreurs trouvées ont été automatiquement réparées
|
||||
Note that many of these errors can be avoided by following the directions=Notez que plusieurs de ces erreurs peuvent être évitées en suivant les instructions
|
||||
HERE=ICI
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=Les plugins suivants ont des noms de fichiers dupliqués et ne peuvent pas être installés simultanément
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=Les Applications docker suivantes se réfèrent au même dépôt de docker mais peuvent avoir des changements subtils dans le modèle pour justifier ceci
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=Si l'une de ces entrées est incorrecte, contactez les modérateurs du CA pour discuter
|
||||
Global Repository Comments=Commentaires Globaux sur le Dépot
|
||||
Applied to all applications=(Appliqué à toutes les Applications)
|
||||
Individual Application Moderation=Modération Individuelle des Applications
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Changelog des Applications Communautaires
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=Sauvegarde
|
||||
Cloud=Nuage
|
||||
Downloaders=Téléchargeurs
|
||||
Game Servers=Serveurs de Jeux
|
||||
Home Automation=Domotique
|
||||
Media Applications=Applications Media
|
||||
Books=Livres
|
||||
Music=Musique
|
||||
Photos=Photos
|
||||
Video=Video
|
||||
Other=Autre
|
||||
Media Servers=Serveurs Media
|
||||
Network Services=Services Réseau
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=Gestion
|
||||
Messenger=Messenger
|
||||
Proxy=Serveur Proxy
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=Productivité
|
||||
Security=Sécurité
|
||||
Tools Utilities=Outils / Utilitaires
|
||||
System=Système
|
||||
Themes=Thêmes
|
||||
Utilities=Utilitaires
|
||||
Private Apps=Applications Privées
|
||||
Uncategorized=Non-Catégorisé
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=Serveurs de Jeux
|
||||
HomeAutomation=Domotique
|
||||
MediaApp=Appli Média
|
||||
MediaAppBooks=Appli Média:Livres
|
||||
MediaAppMusic=Appli Média:Musique
|
||||
MediaAppPhotos=Appli Média:Photos
|
||||
MediaAppVideo=Appli Média:Vidéo
|
||||
MediaAppOther=Appli Média:Autre
|
||||
MediaServer=Serveur:Media
|
||||
MediaServerBooks=Serveur Média:Livres
|
||||
MediaServerMusic=Serveur Média:Musique
|
||||
MediaServerPhotos=Serveur Média:Photos
|
||||
MediaServerVideo=Serveur Média:Vidéo
|
||||
MediaServerOther=Serveur Média:Autre
|
||||
Network=Réseau
|
||||
NetworkDNS=Réseau:DNS
|
||||
NetworkFTP=Réseau:FTP
|
||||
NetworkManagement=Réseau:Gestion
|
||||
NetworkProxy=Réseau:Proxy
|
||||
NetworkVOIP=Réseau:VOIP
|
||||
NetworkVPN=Réseau:VPN
|
||||
NetworkWeb=Réseau:Web
|
||||
NetworkOther=Réseau:Autre
|
||||
ToolsSystem=Outils:Système
|
||||
ToolsThemes=Outils:Thêmes
|
||||
ToolsUtilities=Outils:Utilitaires
|
||||
Other=Autres
|
||||
OtherUncategorized=Autres:Non-catégorisé
|
||||
and %s more=Et %s de plus
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=Faire un Don a l'Auteur
|
||||
Donate To Maintainer=Faire un Don au Mainteneur
|
||||
Author=Auteur
|
||||
Maintainer=Responsable
|
||||
DockerHub=DockerHub
|
||||
Application Template=Modèle d'Application
|
||||
Base OS=SE de Base
|
||||
DockerHub Stars=Étoiles DockerHub
|
||||
Added to CA=Ajouté au CA
|
||||
Date Updated=Date de mise-à-jour
|
||||
Current Version=Version Actuelle
|
||||
Minimum OS=SE Minimal
|
||||
Max OS=SE Maximum
|
||||
Total Downloads=Nombre Total de Téléchargements
|
||||
Licence=Licence
|
||||
30 Day Trend=Tendance sur 30 jours
|
||||
Ranked #%s=Coté #%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=Tendance %s
|
||||
; as in As of some date
|
||||
As of %s=(Depuis %s)
|
||||
This application template has been blacklisted=Cette application ou modèle a été mise sur la liste noire
|
||||
This application template has been deprecated=Cette application ou modèle a été dépréciée
|
||||
This application is not compatible with your version of unRaid=Cette application n'est pas comptible avec votre version de unRaid
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Un autre onglet ou navigateur a mis à jour les modèles affichés Certaines actions ne sont pas disponibles
|
||||
Reinstall default=Réinstaller (par défaut)
|
||||
WebUI=WebUI
|
||||
Reinstall=Réinstaller
|
||||
Install=Installer
|
||||
Project=Projet
|
||||
Install Using The Templates Default Tag=Installer à l'aide de la balise par défaut des modèles
|
||||
Moderator Comments=Commentaires du Modérateur:
|
||||
Note not all authors keep up to date on change logs=Notez que tous les auteurs ne sont pas à jour sur les journaux de modifications
|
||||
Note not all maintainers keep up to date on change logs=Notez que tous les mainteneurs ne sont pas à jour sur les journaux de modifications
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=Dons
|
||||
Currently Installed Version=Version Installée
|
||||
Install The Update=Installer la Mise-à-jour
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=Dernière Version
|
||||
Multi Language Support=Prise en charge Multilingue
|
||||
; as in more than 100000
|
||||
More than %s=Plus de %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=Tendance Par Mois
|
||||
Downloads Per Month=Téléchargements Par Mois
|
||||
Total Downloads=Nombre Total de Téléchargements
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=Installation des dockers %s
|
||||
Starting %s=Démarrage de %s
|
||||
%s failed to start You should install it by itself to fix the errors=Le démarrage de %s a échoué Vous devriez l'installer seul pour corriger les erreurs
|
||||
Setting installed applications to autostart=Configuration des applications installées pour démarrage automatique
|
||||
Docker Application Installation finished=Installation de l'Application Docker terminée
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=Aller à la page du projet
|
||||
Go to the support thread=Aller au fil de soutien
|
||||
Uninstall Application=Désinstaller l'Application
|
||||
Remove Private Application=Retirer l'Apllication Privée
|
||||
Remove Application From List=Retirer l'Application de la liste
|
||||
Check off to select multiple reinstalls=Décocher pour sélectionner des réinstallations multiples
|
||||
Go to the plugin settings=Aller aux paramètres du plugin
|
||||
Click to reinstall the application using default values=Cliquez pour réinstaller l'application avec les valeurs par défaut
|
||||
Click to edit the application values=Cliquez pour modifier les valeurs de l'application
|
||||
Click to reinstall=Cliquez pour réinstaller
|
||||
Click to install=Cliquez pour installer
|
||||
Install plugin=Installer le plugin
|
||||
Click to go to the WebUI=Cliquez pour aller à l'interface Web
|
||||
This application has been marked as being Beta=Cette application a été marquée comme étant Bêta
|
||||
This application template has been deprecated=Ce modèle d'application est obsolète
|
||||
This application is not compatible with your version of Unraid=Cette application n'est pas compatible avec votre version de Unraid
|
||||
This application template has been blacklisted=Ce modèle d'application a été mis sur la liste noire
|
||||
Search for more applications from %s=Rechercher pour plus d'applications à partir de %s
|
||||
Click for more information=Cliquez pour plus d'informations
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=Rechercher des Conteneurs à partir de %s
|
||||
Search for similar containers=Rechercher des Conteneurs similaires
|
||||
|
||||
;Page Navigation
|
||||
Displaying %s - %s of %s=Affichage %1$s - %2$s (de %3$s)
|
||||
|
||||
Updating Content=Mise-à-jour du contenu
|
||||
Language=Langue
|
||||
Switch to this language=Passer à cette langue
|
||||
Country Code=Code de Pays
|
||||
Install Language Pack=Installer le Module Linguistique
|
||||
Remove Language Pack=Désinstaller le Module Linguistique
|
||||
Update Language Pack=Mettre a jour le Module Linguistique
|
||||
Installed Version=Version Installée
|
||||
A note about translations=A propos des traductions
|
||||
Click here to view the language changelog=Cliquer ici pour voir le changelog de la langue
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=Cela choisit comment trier les résultats
|
||||
These icons respectively will Install or Edit an application=Ces icônes Installeront ou Modifieront une application
|
||||
Clicking these icons will take you to an applications GUI or settings=En cliquant sur ces icônes, vous accéderez à l'interface graphique ou aux paramètres d'une application
|
||||
This will update an application=Cela mettra à jour une application
|
||||
This will take you to the appropriate support thread for an application=Cela vous amènera au fil de support approprié pour une application
|
||||
This will immediately switch to the language=Cela passera immédiatement à la langue
|
||||
This will take you to the project page for an application=Cela vous amènera à la page du projet pour une application
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=Cliquez sur cette icône pour désinstaller l'application ou la supprimer des listes en fonction de votre section actuelle
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=Cliquez sur ces icônes pour épingler ou annuler l'épinglage d'une application pour un visionnement ultérieur dans la section Applications épinglées
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=Cliquez pour afficher plus d'informations sur l'application REMARQUE Vous pouvez également cliquer sur l'icône des applications pour afficher plus d'informations
|
||||
Clicking this will display any warnings or extra comments about the application=Cliquez pour afficher tous les avertissements ou commentaires supplémentaires concernant l'application
|
||||
On the previous apps section you can select multiple applications to install simultaneously=Dans la section des applications précédentes, vous pouvez sélectionner plusieurs applications à installer simultanément
|
||||
This is the recommended version to install by the application author themselves=Il s'agit de la version recommandée à installer par l'auteur de l'application lui-même
|
||||
For support for this plugin visit=Pour le soutien de ce plugin, visitez
|
||||
To view the policies Community Applications has=Pour afficher les politiques, les applications communautaires ont
|
||||
Access Mode=Mode d'accès
|
||||
Add another Path, Port, Variable, Label or Device=Ajouter un Chemin, un Port, une Variable, une Étiquette, ou un Périphérique supplémentaire
|
||||
Add Configuration=Ajouter Configuration
|
||||
Add=Ajouter
|
||||
Always=Toujours
|
||||
App to Host=Appli vers Hôte
|
||||
Application=Application
|
||||
apply update=appliquer la mise à jour
|
||||
Array must be Started to view Docker containers=l'Array doit être **Démarré** pour voir les conteneurs Docker
|
||||
Are you sure=Êtes-vous certain
|
||||
Autostart=Démarrage automatique
|
||||
Back=Retour
|
||||
Backup=Sauvegarde
|
||||
Beta=Beta
|
||||
Books=Livre
|
||||
By=Par
|
||||
Categories=Catégories
|
||||
Check for Updates=Vérifer les mises à jour
|
||||
Cloud=Cloud
|
||||
Config Type=Type de config
|
||||
Configuration not found=Configuration introuvable
|
||||
Connection Type=Type de connexion
|
||||
Console shell command=Terminal de commande
|
||||
Container ID=ID du Conteneur
|
||||
Container Path=Chemin d'accès du Conteneur
|
||||
Container Port=Port du Conteneur
|
||||
Container Size=Taille du Conteneur
|
||||
Container=Conteneur
|
||||
CPU Memory load=Charge mémoire CPU
|
||||
CPU Pinning=Assignation CPU
|
||||
Created=Créé
|
||||
Default Value=Valeur par défaut
|
||||
Device=Périphérique
|
||||
Display=Affichage
|
||||
DNS=DNS
|
||||
Docker Containers=Conteneurs Docker
|
||||
Docker Hub URL=URL Docker Hub
|
||||
Docker Service failed to start=Service Docker a échoué son démarrage
|
||||
Donation Link=Lien de donation
|
||||
Donation Text=Texte de donation
|
||||
Downloaders=Téléchargeurs
|
||||
Edit Configuration=Éditer Configuration
|
||||
Exited=Quitté
|
||||
Extra Parameters=Paramètres supplémentaires
|
||||
Fixed IP address=Adresse IP fixe
|
||||
force update=Forcer la mise à jour
|
||||
FTP=FTP
|
||||
Game Servers=Serveur de jeux
|
||||
healthy=sain
|
||||
Hide Buttons=Cacher Boutons
|
||||
Hide docker allocations=Cacher les allocations Docker
|
||||
Hide more settings=Cacher les paramètres supplémentaires
|
||||
Home Automation=Domotique
|
||||
Host Path=Chemin d'accès Hôte
|
||||
Host Port=Port Hôte
|
||||
HT=HT
|
||||
Icon URL=Icône URL
|
||||
Image ID=ID Image
|
||||
Key=Clé
|
||||
Label=Étiquette
|
||||
latest=dernier
|
||||
Management=Gestionnaire
|
||||
MediaApp=AppliMédia
|
||||
MediaServer=ServeurMédia
|
||||
Messenger=Messagerie
|
||||
Missing parameters=paramètres manquants
|
||||
Music=Musique
|
||||
Network Type=Type de Réseau
|
||||
No Docker containers installed=Aucun conteneur Docker installé
|
||||
of=de
|
||||
orphan image=image orpheline
|
||||
Other=Autre
|
||||
Overview=Aperçu
|
||||
Path=Chemin d'accès
|
||||
Pause All=Tout Mettre en pause
|
||||
Photos=Photos
|
||||
Port Mappings=Allocations des Ports
|
||||
Port=Port
|
||||
Post Arguments=Arguments de POST
|
||||
Privileged=Privilégié
|
||||
Productivity=Productivité
|
||||
Project Page=Page du Projet
|
||||
Proxy=Proxy
|
||||
Pulling image=Récupération de l'image
|
||||
Read Only - Shared=Lecture Seule - Partagé
|
||||
Read Only - Slave=Lecture Seule - Esclave
|
||||
Read Only=Lecture Seule
|
||||
ReadWrite - Shared=Lecture/Écriture - Partagé
|
||||
ReadWrite - Slave=Lecture/Écriture - Esclave
|
||||
rebuild ready=Reconstruction Prête
|
||||
rebuilding=Reconstruction en cours
|
||||
Remove template=Retirer le modèle
|
||||
Removing container=Suppression du conteneur en cours
|
||||
Removing orphan image=Suppression de l'image orpheline en cours
|
||||
Repository=Référentiel
|
||||
Required=Requis
|
||||
Resume All=Résumer Tout
|
||||
Save=Sauvegarder
|
||||
Select a template=Sélectionner un modèle
|
||||
Select categories=Sélectionner des catégories
|
||||
Show docker allocations=Montrer les allocations Docker
|
||||
Show more settings=Montrer les paramètres supplémentaires
|
||||
Stable=Stable
|
||||
Start All=Démarrer Tout
|
||||
starting up containers=Démarrage des conteneurs
|
||||
Stop All=Arrêter Tout
|
||||
Stopping container=Arrêt du conteneur en cours
|
||||
Successfully removed container=Conteneur supprimé avec succès
|
||||
Successfully removed orphan image=Image orpheline supprimée avec succès
|
||||
Successfully stopped container=Conteneur arrêté avec succès
|
||||
Support Thread=Fil de support
|
||||
Template repositories=Référentiels de modèles
|
||||
Template URL=URL du modèle
|
||||
Template=Modèle
|
||||
The command failed=Échec de la commande
|
||||
The command finished successfully=La commande a terminé avec succès
|
||||
TOTAL DATA PULLED=TOTAL DONNÉES RÉCUPURÉES
|
||||
Unknown action=Action inconnue
|
||||
Update All=Tout Mettre à jour
|
||||
update ready=mise à jour prête
|
||||
Value=Valeur
|
||||
Variable=Variable
|
||||
Video=Vidéo
|
||||
Voip=VoIP
|
||||
Volume Mappings=Allocations des Volumes
|
||||
wait=attendre
|
||||
Was this container created using this plugin=Est-ce que ce conteneur a été créé avec ce plugin
|
||||
Web=Web
|
||||
WebUI=Interface Web
|
||||
Writable=Accessible en écriture
|
||||
Absolute=Absolu
|
||||
Acknowledge=Reconnaître
|
||||
Active=Actif
|
||||
active=actif
|
||||
Actual results=Résultats réels
|
||||
Add Container=Ajouter Conteneur
|
||||
Add VM=Ajouter VM
|
||||
Advanced View=Interface Avancée
|
||||
AFP Security Settings=Réglages de sécurité AFP
|
||||
All=Tout
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Les diagnostics anonymes peuvent rendre la résolution de problèmes plus difficile
|
||||
Apply=Appliquer
|
||||
Apps=Applis
|
||||
Array must be Stopped to change=Le Array doit être arrêté pour faire des changements
|
||||
Array Started=Le Array a été démarré
|
||||
Array Starting=Démarrage du Array en cours
|
||||
Array Stopped=Array arrêté
|
||||
Array Stopping=Arrêt du Array en cours
|
||||
Array=Array
|
||||
Attributes=Attributs
|
||||
Auto=Auto
|
||||
Automatic=Automatique
|
||||
Average speed=Vitesse moyenne
|
||||
Azure=Azure
|
||||
B=o
|
||||
Back To Top=Retour en haut de la page
|
||||
Basic=Simple
|
||||
Basic View=Interface Simple
|
||||
BIOS=BIOS
|
||||
Black=Noir
|
||||
Browse=Parcourir
|
||||
Browser error=Erreur du navigateur
|
||||
btrfs=btrfs
|
||||
Bug Description=Description du bug
|
||||
Bug Report=Rapport de bug
|
||||
bytes=octets
|
||||
Cancel=Annuler
|
||||
Capabilities=Capacités
|
||||
Case-sensitive names=Noms sensibles à la casse
|
||||
Center=Centrer
|
||||
Change=Changer
|
||||
Check=Vérifier
|
||||
Clear=Effacer
|
||||
Clearing=Effacement en cours
|
||||
Click for context menu=Cliquez pour le menu contextuel
|
||||
Click=Cliquez
|
||||
close all notifications=fermer toutes les notifications
|
||||
Close=Fermer
|
||||
close=fermer
|
||||
Comment=Commentaire
|
||||
Contact Email Address=Adresse e-mail de contact
|
||||
Contact Support=Contacter le support technique
|
||||
containing your key file URL=URL contenant votre clé d'activation
|
||||
Copy=Copier
|
||||
CPU=CPU
|
||||
Dashboard=Tableau de bord
|
||||
day=jour
|
||||
%s day ago=il y a %s jour
|
||||
%s days ago=il y a %s jours
|
||||
Days_array=Sunday:dimanche Monday:lundi Tuesday:mardi Wednesday:mercredi Thursday:jeudi Friday:vendredi Saturday:samedi Sun:dim. Mon:lun. Tue:mar. Wed:mer. Thu:jeu. Fri:ven. Sat:sam.
|
||||
days=jours
|
||||
Default=Rég. par défaut
|
||||
default=rég. par défaut
|
||||
Delete=Supprimer
|
||||
Description=Description
|
||||
Device contents emulated, in standby mode spun-down=Le contenu du disque est émulé, en mode veille (Ne tourne pas)
|
||||
Device contents emulated=Le contenu du disque est émulé
|
||||
Device is disabled, contents emulated=Le disque est désactivé, le contenu est émulé
|
||||
Device is in standby mode spun-down=Le disque est en mode veille (Ne tourne pas)
|
||||
Device is missing disabled, contents emulated=Le disque est manquant (désactivé), le contenu est émulé
|
||||
Device not present=Le disque n'est pas présent
|
||||
Device=Disque
|
||||
directories=répertoires
|
||||
directory=répertoire
|
||||
Disabled=Désactivé
|
||||
disabled=désactivé
|
||||
Disk=Disque
|
||||
disk=disque
|
||||
Do you want to update to the new version=Voulez-vous mettre à jour à la nouvelle version
|
||||
Docker=Docker
|
||||
Done=Terminer
|
||||
Download=Télécharger
|
||||
Duration=Durée
|
||||
Edit=Modifier
|
||||
edit=modifier
|
||||
Emulated=Émulé(es)
|
||||
emulated=émulé(es)
|
||||
Enabled=Activé(es)
|
||||
enabled=activé(es)
|
||||
Encrypted and unlocked=Crypté et déverrouillé
|
||||
Error code=Code d'erreur
|
||||
Error=Erreur
|
||||
error=erreur
|
||||
Errors=Erreurs
|
||||
errors=erreurs
|
||||
Expected results=Résultats attendus
|
||||
Export=Exporter
|
||||
Faulty=Défectueux
|
||||
faulty=défectueux
|
||||
Feedback=Commentaire
|
||||
File too large=Fichier trop volumineux
|
||||
file=fichier
|
||||
files=fichiers
|
||||
Fixed=Résolu
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=GUID disque flash
|
||||
Flash Product=Produit disque flash
|
||||
Flash Vendor=Vendeur disque flash
|
||||
FOLDER=DOSSIER
|
||||
folder=dossier
|
||||
Force lower=Obliger la diminution
|
||||
Format=Formatter
|
||||
Formatting devices=Formatage des disques en cours
|
||||
Forum=Forum
|
||||
GB=Go
|
||||
Go to Registration page=Aller à la page d'enregistrement
|
||||
GPT 4KiB-aligned=GPT 4KiB-aligned
|
||||
Gray=Gris
|
||||
Guests have no access=Les invités n'ont pas d'accès
|
||||
Guests have read-only access=Les invités ont seulement accès en lecture
|
||||
Heat alarm=Alarme de température
|
||||
Help=Aide
|
||||
here=ici
|
||||
History=Historique
|
||||
hour=heure
|
||||
hours=heures
|
||||
%s hour ago=il y a %s heure
|
||||
%s hours ago=il y a %s heures
|
||||
How to reproduce=Comment reproduire
|
||||
hr=hr
|
||||
HVM=HVM
|
||||
Identity=Identité
|
||||
Inactive=Inactif
|
||||
Index of=Index de
|
||||
Info=Info
|
||||
Install Key=Installer une Clé
|
||||
interface down=L'interface est hors service
|
||||
Interface=Interface
|
||||
IOMMU=IOMMU
|
||||
is available=est disponible
|
||||
KB=Ko
|
||||
Kernel=Noyau
|
||||
Last Modified=Dernière modification
|
||||
Left=Gauche
|
||||
less than a minute remaining=Il reste moins d'une minute
|
||||
less than a minute=moins d'une minute
|
||||
Load=Charge
|
||||
Location=Emplacement
|
||||
Locked missing encryption key=Verrouillé: clé de chiffrement manquante
|
||||
Locked unknown error=Verrouillé: erreur inconnue
|
||||
Locked wrong encryption key=Verrouillé: mauvaise clé de chiffrement
|
||||
Log=Journal
|
||||
Login=Connexion
|
||||
Logout=Déconnexion
|
||||
Main=Principal
|
||||
manual=manuel
|
||||
max installable capacity=capacité maximale qui peut être installée
|
||||
Maximum file upload size is 512K=La taille maximale de téléchargement est de 512K
|
||||
MB=Mo
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=Mémoire
|
||||
min=min
|
||||
minute=minute
|
||||
minutes=minutes
|
||||
%s minute ago=il y a %s minute
|
||||
%s minutes ago=il y a %s minutes
|
||||
Model=Modèle
|
||||
%s month ago=il y a %s mois
|
||||
%s months ago=il y a %s mois
|
||||
Months_array=January:janvier February:février March:mars April:avril May:mai June:juin July:juillet August:août September:septembre October:octobre November:novembre December:décembre Jan:janv. Feb:févr. Mar:mars Apr:avr. May:mai Jun:juin Jul:juill. Aug:août Sep:sept. Oct:oct. Nov:nov. Dec:déc.
|
||||
months=mois
|
||||
More=Plus
|
||||
Motherboard=Carte mère
|
||||
Move=Déplacer
|
||||
NA=N/A
|
||||
Name=Nom
|
||||
Network=Réseau
|
||||
Never=Jamais
|
||||
New device, in standby mode spun-down=Nouveau disque, en mode veille (Ne tourne pas)
|
||||
New device=Nouveau disque
|
||||
NFS Security Settings=Réglages de sécurité NFS
|
||||
No Access=Aucun accès
|
||||
No device=Aucun appareil
|
||||
no device=aucun appareil
|
||||
No errors reported=Aucune erreur signalée
|
||||
No information available=Aucune information disponible
|
||||
No listing Too many files=Aucune énumération: Trop de fichiers
|
||||
No reply from mail server=Aucune réponse du serveur de messagerie électronique
|
||||
No=Non
|
||||
no=non
|
||||
None=Aucun(e)
|
||||
none=aucun(e)
|
||||
Normal operation, device is active=Opération normale, le disque est actif
|
||||
Normal=Normal
|
||||
Normalized=Normalisée
|
||||
Not Available=Indisponible
|
||||
not available=indisponible
|
||||
not connected=n'est pas connecté
|
||||
Not encrypted=N'est pas chiffré
|
||||
not encrypted=n'est pas chiffré
|
||||
NOTE=NOTE
|
||||
Numbers_array=thirty:trente twenty-nine:vingt-neuf twenty-eight:vingt-huit twenty-seven:vingt-sept twenty-six:vingt-six twenty-five:vingt-cinq twenty-four:vingt-quatre twenty-three:vingt-trois twenty-two:vingt-deux twenty-one:vingt-et-un twenty:vingt nineteen:dix-neuf eighteen:dix-huit seventeen:dix-sept sixteen:seize fifteen:quinze fourteen:quatorze thirteen:treize twelve:douze eleven:onze ten:dix nine:neuf eight:huit seven:sept six:six five:cinq four:quatre three:trois two:deux one:un zero:zéro
|
||||
objects=objets
|
||||
Off=Éteint
|
||||
off-line=hors-ligne
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=Allumé
|
||||
Online Manual=Manuel en ligne
|
||||
Online manual=Manuel en ligne
|
||||
OpenSSL=OpenSSL
|
||||
optional=optionnel
|
||||
Other Comment=Autres commentaires
|
||||
Other information=Autres informations
|
||||
Parity device is disabled=Le disque de parité est désactivé
|
||||
Parity device is missing=Le disque de parité est introuvable
|
||||
Parity is invalid, in standby mode spun-down=La parité est invalide, en mode veille (Ne tourne pas)
|
||||
Parity is invalid=La parité est invalide
|
||||
Parity is valid=La parité est valide
|
||||
Parity=Parité
|
||||
parity=parité
|
||||
Parity-Check=Vérification de parité
|
||||
Parity-Sync Data-Rebuild=Synchronisation de parité Reconstruction des données
|
||||
Pause=Pause
|
||||
Paused=En pause
|
||||
paused=en pause
|
||||
PB=Po
|
||||
Please select one file only=Veuillez sélectionner un seul fichier
|
||||
Please summarize your suggestion here=Veuillez résumer votre suggestion ici
|
||||
Please try again later=Veuillez réessayer plus tard
|
||||
Please wait=Veuillez patienter
|
||||
Plugins=Plugins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privé
|
||||
Pro=Pro
|
||||
Proceed=Procéder
|
||||
Processor=Processeur
|
||||
Product Suggestion=Suggestion de produit
|
||||
Public=Public
|
||||
RAM=RAM
|
||||
Raw=Raw
|
||||
Read=Lue
|
||||
Read settings from=Lire les réglages de
|
||||
Read-Check=Vérification de la lecture
|
||||
Read-only=Lecture seule
|
||||
Reads=Lectures
|
||||
ReadWrite=Lecture/Écriture
|
||||
Reboot Now=Redémarrer maintenant
|
||||
Reboot=Redémarrer
|
||||
Refresh=Rafraîchir
|
||||
Registration=Inscription
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Notes de mise à jour
|
||||
Remove=Supprimer
|
||||
Renew=Renouveler
|
||||
Reset=Réinitialiser
|
||||
Restart=Redémarrer
|
||||
Resume=Reprendre
|
||||
Right=Droite
|
||||
RPM=RPM (TPM)
|
||||
Running=En Cours
|
||||
running=en cours
|
||||
safe mode=mode sans échec
|
||||
sec=sec
|
||||
second=seconde
|
||||
seconds=secondes
|
||||
%s second ago=il y a %s seconde
|
||||
%s seconds ago=il y a %s secondes
|
||||
Secure=Sécurisé
|
||||
Security=Sécurité
|
||||
Security Settings=Réglages de sécurité
|
||||
select=sélectionner
|
||||
Self-Test=Test d'autoévaluation
|
||||
Server=Serveur
|
||||
Settings=Réglages
|
||||
Share=Partage
|
||||
Share name=Nom du partage
|
||||
Shares List=Liste des partages
|
||||
Shares=Partages
|
||||
Shutdown=Éteindre
|
||||
Size=Taille
|
||||
SMB Security Settings=Réglages de sécurité SMB
|
||||
sn=no. série
|
||||
Sorry, an error occurred=Désolé, une erreur est survenue
|
||||
Standby=En Attente
|
||||
standby=en attente
|
||||
Start=Démarrer
|
||||
Started=Démarré(e)
|
||||
started=démarré(e)
|
||||
Status=État
|
||||
status=état
|
||||
Stop=Arrêter
|
||||
Stopped=Arrêté(e)
|
||||
stopped=arrêté(e)
|
||||
Streams=Diffusions
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=La soumission de ce rapport de bogue enverra automatiquement les diagnostics de votre système à Lime Technology
|
||||
Submit=Soumettre
|
||||
System Information=Informations Système
|
||||
System is going down=Le système est en cours d'arrêt
|
||||
System is offline=Le système est hors-ligne
|
||||
System is powered off=Le système est éteint
|
||||
System is rebooting=Le système est en cours de redémarrage
|
||||
System Log=Journal du système
|
||||
System notifications are=Les notifications du système sont
|
||||
System running in=Système en mode
|
||||
System=Système
|
||||
TB=To
|
||||
Temperature=Température
|
||||
Template Repositories=Répertoire de modèles
|
||||
Terminal=Terminal
|
||||
Test result=Résultat du test
|
||||
Thank You=Merci
|
||||
The error is=L'erreur survenue est
|
||||
to change notification settings=pour changer les réglages de notifications
|
||||
to downgrade Unraid OS=pour installer une version précédente d'Unraid OS
|
||||
to upgrade Unraid OS=pour mettre à niveau Unraid OS
|
||||
today=aujourd'hui
|
||||
Too many files=Trop de fichiers
|
||||
Tools=Outils
|
||||
Total=Total
|
||||
total=total
|
||||
Type your question or comment to Lime Technology here=Écrivez votre question ou commentaire à Lime Technology ici
|
||||
Type=Écrire
|
||||
Unable to generate system diagnostics=Incapable de produire les diagnostics du système
|
||||
Unassigned=Non-assigné
|
||||
unassigned=non-assigné
|
||||
Unknown=Inconnu(e)
|
||||
unknown=inconnu(e)
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Mettre à jour le Conteneur
|
||||
Update Now=Mettre à jour maintenant
|
||||
Update VM=Mettre à jour la VM
|
||||
Update=Mettre à jour
|
||||
update=mettre à jour
|
||||
Updated=Mis à jour
|
||||
Upload error=Erreur d'upload
|
||||
Upload=Uploader
|
||||
Uptime=Disponibilité
|
||||
up-to-date=à jour
|
||||
User Access=Accès Utilisateur
|
||||
Users=Utilisateurs
|
||||
Utilization=Utilisation
|
||||
Version=Version
|
||||
View Release Notes=Voir les notes de mise à jour
|
||||
View=Afficher
|
||||
VMs=VMs
|
||||
VPN=VPN
|
||||
Warning=Avertissement
|
||||
Website=Site web
|
||||
%s week ago=il y a %s semaine
|
||||
%s weeks ago=il y a %s semaines
|
||||
White=Blanc
|
||||
Wiki=Wiki
|
||||
Write=Écrire
|
||||
Write settings to=Écrire les réglages vers
|
||||
Wrong=Faux
|
||||
wrong=faux
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Oui, je veux faire cela
|
||||
Yes=Oui
|
||||
yes=oui
|
||||
Yes hidden=Oui (Masqué(e))
|
||||
Yes Time Machine=Oui (Time Machine)
|
||||
YesTime Machine hidden=Oui/Time Machine(Masqué)
|
||||
YesTime Machine=Oui/Time Machine
|
||||
yesterday=hier
|
||||
You must reboot for changes to take effect=Vous devez redémarrer le système pour que les changements soient pris en compte
|
||||
Your browser does not support HTML5 file uploads=Votre navigateur ne supporte pas le téléversement de fichiers par HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=L'Array est occupé
|
||||
Buttons=Boutons
|
||||
Parity operation or mover is running=Opération de parité ou "mover" en cours
|
||||
preparing for reboot=préparation pour le redémarrage
|
||||
preparing for shutdown=préparation pour l'arrêt
|
||||
Sleep=Veille
|
||||
Start Array=Démarrer le Array
|
||||
starting the array=démarrage du Array en cours
|
||||
Stop Array=Arrêter le Array
|
||||
stopping the array=arrêt du Array en cours
|
||||
System in sleep mode=Système en mode veille
|
||||
This will put the system to sleep=Ceci mettra le système en mode veille
|
||||
This will reboot the system=Ceci redémarrera le système
|
||||
This will shutdown the system=Ceci arrêtera le système
|
||||
This will start the array=Ceci démarrera le Array
|
||||
This will stop the array=Ceci arrêtera le Array
|
862
languages/it_IT
Normal file
862
languages/it_IT
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=
|
||||
Happy Holidays from Andrew, Tracey, and family=
|
||||
Please Enjoy Responsibly=
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=
|
||||
Sorting options unavailable=
|
||||
Sort By Name Ascending=
|
||||
Sort By Name Descending=
|
||||
Sort By Downloads=
|
||||
Sort By Trend=
|
||||
Sort By Date Added=
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=
|
||||
Application Policy=
|
||||
I Understand=
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=
|
||||
Click here=
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
|
||||
Plugin Note=
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=
|
||||
Please enter search term=
|
||||
Click Here To Get More Results From DockerHub=
|
||||
No Matching Applications Found On Docker Hub=
|
||||
No Matching Applications Found=
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=
|
||||
Yes, delete it=
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=
|
||||
Yes uninstall it=
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=
|
||||
Yes, remove it=
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=
|
||||
Click to unpin this application=
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=
|
||||
|
||||
Yes, install it=
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=
|
||||
Updating Support Links=
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=
|
||||
An error occurred Could not find any %s Apps=
|
||||
Download of appfeed failed=
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=
|
||||
Installed Apps=
|
||||
Previous Apps=
|
||||
Pinned Apps=
|
||||
CATEGORIES=
|
||||
New Apps=
|
||||
Updated Apps=
|
||||
Random Apps=
|
||||
Top New Installs=
|
||||
Trending Apps=
|
||||
All Apps=
|
||||
OTHER=
|
||||
Statistics=
|
||||
Credits=
|
||||
Support=
|
||||
VERSION=
|
||||
Change Log=
|
||||
|
||||
; Credits
|
||||
Development=
|
||||
Additional Contributions=
|
||||
GUI Layout Design=
|
||||
Application Feed=
|
||||
Additional Testing=
|
||||
Moderation=
|
||||
Additional Libraries=
|
||||
Copyright=
|
||||
Translation=
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=
|
||||
This display is informational ONLY=
|
||||
unknown=
|
||||
Last Change To Application Feed=
|
||||
Number Of Docker Applications=
|
||||
Number Of Plugin Applications=
|
||||
Number Of Templates=
|
||||
Number Of Repositories=
|
||||
Number Of Private Docker Applications=
|
||||
Number Of Invalid Templates=
|
||||
Number Of Template Errors=
|
||||
Number Of Blacklisted Apps=
|
||||
Number Of Incompatible Applications=
|
||||
Number Of Deprecated Applications=
|
||||
Number Of Moderation Entries=
|
||||
Primary Server=
|
||||
Backup Server=
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=
|
||||
All Invalid Templates Found=
|
||||
Template Errors=
|
||||
All Moderation Entries=
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=
|
||||
These templates are invalid and the application they are referring to is unknown=
|
||||
No templates were automatically fixed=
|
||||
All of these errors found have been fixed automatically=
|
||||
Note that many of these errors can be avoided by following the directions=
|
||||
HERE=
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=
|
||||
Global Repository Comments=
|
||||
Applied to all applications=(Applied to all applications)
|
||||
Individual Application Moderation=
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=
|
||||
Cloud=
|
||||
Downloaders=
|
||||
Game Servers=
|
||||
Home Automation=
|
||||
Media Applications=
|
||||
Books=
|
||||
Music=
|
||||
Photos=
|
||||
Video=
|
||||
Other=
|
||||
Media Servers=
|
||||
Network Services=
|
||||
DNS=
|
||||
FTP=
|
||||
Management=
|
||||
Messenger=
|
||||
Proxy=
|
||||
VOIP=
|
||||
VPN=
|
||||
Web=
|
||||
Productivity=
|
||||
Security=
|
||||
Tools Utilities=Tools / Utilities
|
||||
System=
|
||||
Themes=
|
||||
Utilities=
|
||||
Private Apps=
|
||||
Uncategorized=
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=
|
||||
HomeAutomation=
|
||||
MediaApp=
|
||||
MediaAppBooks=MediaApp:Books
|
||||
MediaAppMusic=MediaApp:Music
|
||||
MediaAppPhotos=MediaApp:Photos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Other
|
||||
MediaServer=
|
||||
MediaServerBooks=MediaServer:Books
|
||||
MediaServerMusic=MediaServer:Music
|
||||
MediaServerPhotos=MediaServer:Photos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Other
|
||||
Network=
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Management
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Other
|
||||
ToolsSystem=Tools:System
|
||||
ToolsThemes=Tools:Themes
|
||||
ToolsUtilities=Tools:Utilities
|
||||
Other=
|
||||
OtherUncategorized=Other:Uncategorized
|
||||
and %s more=
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=
|
||||
Donate To Maintainer=
|
||||
Author=
|
||||
Maintainer=
|
||||
DockerHub=
|
||||
Application Template=
|
||||
Base OS=
|
||||
DockerHub Stars=
|
||||
Added to CA=
|
||||
Date Updated=
|
||||
Current Version=
|
||||
Minimum OS=
|
||||
Max OS=
|
||||
Total Downloads=
|
||||
Licence=
|
||||
30 Day Trend=
|
||||
Ranked #%s=
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=This application / template has been blacklisted
|
||||
This application template has been deprecated=This application / template has been deprecated
|
||||
This application is not compatible with your version of Unraid=
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Another browser tab or device has updated the displayed templates. Some actions are not available
|
||||
Reinstall default=Reinstall (default)
|
||||
WebUI=
|
||||
Reinstall=
|
||||
Install=
|
||||
Project=
|
||||
Install Using The Templates Default Tag=Install Using The Template's Default Tag
|
||||
Moderator Comments=Moderator Comments:
|
||||
Note not all authors keep up to date on change logs=
|
||||
Note not all maintainers keep up to date on change logs=
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=
|
||||
Currently Installed Version=
|
||||
Install The Update=
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=
|
||||
Multi Language Support=
|
||||
; as in more than 100000
|
||||
More than %s=
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=
|
||||
Downloads Per Month=
|
||||
Total Downloads=
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=
|
||||
Starting %s=
|
||||
%s failed to start You should install it by itself to fix the errors=
|
||||
Setting installed applications to autostart=
|
||||
Docker Application Installation finished=
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=
|
||||
Go to the support thread=
|
||||
Uninstall Application=
|
||||
Remove Private Application=
|
||||
Remove Application From List=
|
||||
Check off to select multiple reinstalls=
|
||||
Go to the plugin settings=
|
||||
Click to reinstall the application using default values=
|
||||
Click to edit the application values=
|
||||
Click to reinstall=
|
||||
Click to install=
|
||||
Install plugin=
|
||||
Click to go to the WebUI=
|
||||
This application has been marked as being Beta=
|
||||
This application template has been deprecated=
|
||||
This application is not compatible with your version of Unraid=
|
||||
This application template has been blacklisted=
|
||||
Search for more applications from %s=
|
||||
Click for more information=
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=
|
||||
Search for similar containers=
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Displaying %1$s - %2$s (of %3$s)
|
||||
|
||||
Updating Content=
|
||||
Language=
|
||||
Switch to this language=
|
||||
Country Code=
|
||||
Install Language Pack=
|
||||
Remove Language Pack=
|
||||
Update Language Pack=
|
||||
Installed Version=
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=
|
||||
These icons respectively will Install or Edit an application=
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicking these icons will take you to an application's GUI or settings
|
||||
This will update an application=
|
||||
This will take you to the appropriate support thread for an application=
|
||||
This will immediately switch to the language=
|
||||
This will take you to the project page for an application=
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=
|
||||
Clicking this will display any warnings or extra comments about the application=
|
||||
On the previous apps section you can select multiple applications to install simultaneously=
|
||||
This is the recommended version to install by the application author themselves=
|
||||
For support for this plugin visit=
|
||||
To view the policies Community Applications has=
|
||||
Access Mode=Modalità d'accesso
|
||||
Add another Path, Port, Variable, Label or Device=Aggiungi un altro percorso, Porta,Variabile, Etichetta o Dispositivo
|
||||
Add Configuration=Aggiungi Configurazione
|
||||
Add=Aggiungi
|
||||
Always=Sempre
|
||||
App to Host=App a Host
|
||||
Application=Applicazione
|
||||
apply update=conferma aggiornamento
|
||||
Array must be Started to view Docker containers=Array must be **Started** to view Docker containers
|
||||
Are you sure=Sei sicuro
|
||||
Autostart=Autoavvio
|
||||
Back=Indietro
|
||||
Backup=Backup
|
||||
Beta=Beta
|
||||
Books=Libri
|
||||
By=Di
|
||||
Categories=Categorie
|
||||
Check for Updates=Ricerca aggiornamenti
|
||||
Cloud=Cloud
|
||||
Config Type=Tipo di configurazione
|
||||
Configuration not found=Configurazione non trovata
|
||||
Connection Type=Tipo di connessione
|
||||
Console shell command=Comando shell console
|
||||
Container ID=Id Contenitore
|
||||
Container Path=Percorso Contenitore
|
||||
Container Port=Porta Contenitore
|
||||
Container Size=Dimensione Contenitore
|
||||
Container=Contenitore
|
||||
CPU Memory load=Carico memoria CPU
|
||||
CPU Pinning=CPU Pinning
|
||||
Created=Creato
|
||||
Default Value=Valore Predefinito
|
||||
Device=Dispositivo
|
||||
Display=Display
|
||||
DNS=DNS
|
||||
Docker Containers=Contenitori Docker
|
||||
Docker Hub URL=Docker Hub URL
|
||||
Docker Service failed to start=Avvio Servizio Docker fallito
|
||||
Donation Link=Link Donazione
|
||||
Donation Text=Testo Donazione
|
||||
Downloaders= Downloaders
|
||||
Edit Configuration=Modifica Configurazione
|
||||
Exited=Uscita
|
||||
Extra Parameters=Parametri aggiuntivi
|
||||
Fixed IP address=Indirizzo IP fisso
|
||||
force update=forza aggiornamento
|
||||
FTP=FTP
|
||||
Game Servers=Game Servers
|
||||
healthy=il salute
|
||||
Hide Buttons=Nasconti tasti
|
||||
Hide docker allocations=Nascondi posizione Docker
|
||||
Hide more settings=Nascondi altre impostazioni
|
||||
Home Automation=Home Automation
|
||||
Host Path=Percorso Host
|
||||
Host Port=Porta Host
|
||||
HT=HT
|
||||
Icon URL=URL Icona
|
||||
Image ID=ID Immagine
|
||||
Key=Chiave
|
||||
Label=Etichetta
|
||||
latest=ultimo
|
||||
Management=Gestione
|
||||
MediaApp=MediaApp
|
||||
MediaServer=MediaServer
|
||||
Messenger=Messenger
|
||||
Missing parameters=Parametri mancanti
|
||||
Music=Musica
|
||||
Network Type=Tipo di Rete
|
||||
No Docker containers installed=Nessun contenitore Docker istallato
|
||||
of=di
|
||||
orphan image=immagine orfana
|
||||
Other=Altro
|
||||
Overview=Panoramica
|
||||
Path=Percorso
|
||||
Pause All=Tutto in pausa
|
||||
Photos=Foto
|
||||
Port Mappings= Mappatura Porte
|
||||
Port=Porta
|
||||
Post Arguments=Parametri Porta
|
||||
Privileged=Privilegi
|
||||
Productivity=Produttività
|
||||
Project Page=Pagina del Progetto
|
||||
Proxy=Proxy
|
||||
Pulling image= Pulling Immagine
|
||||
Read Only - Shared=Sola Lettura - Condiviso
|
||||
Read Only - Slave= Sola Lettura - Slave
|
||||
Read Only= Sola Lettura
|
||||
ReadWrite - Condiviso=Lettura/Scrittura - Condiviso
|
||||
ReadWrite - Slave=Lettura/Scrittura - Slave
|
||||
rebuild ready=ricostruzione pronta
|
||||
rebuilding=ricostruzione
|
||||
Remove template=Rimuovi Template
|
||||
Removing container=Rimuovi Contenitore
|
||||
Removing orphan image=Rimuovi immagine orfana
|
||||
Repository=Repository
|
||||
Required=Richiesta
|
||||
Resume All=Riprendi tutto
|
||||
Save=Salva
|
||||
Select a template=Seleziona un Template
|
||||
Select categories=Seleziona categoria
|
||||
Show docker allocations=Mostra percorsi docker
|
||||
Show more settings=Mostra altre impostazioni
|
||||
Stable=Stabile
|
||||
Start All=Avvia tutto
|
||||
starting up containers=Contenitori avviati
|
||||
Stop All=Ferma Tutto
|
||||
Stopping container=Ferma contenitore
|
||||
Successfully removed container=Contenitore rimosso con successo
|
||||
Successfully removed orphan image=immagine orfana rimossa con successo
|
||||
Successfully stopped container=Contenitore fermato con successo
|
||||
Support Thread=Discussione di supporto
|
||||
Template repositories=Template repositories
|
||||
Template URL=Template URL
|
||||
Template=Template
|
||||
The command failed=Comando Fallito
|
||||
The command finished successfully=Comando terminato con successo
|
||||
TOTAL DATA PULLED=DATI TOTALI ESTRATTI
|
||||
Unknown action=azione sconosciuta
|
||||
Update All=Aggiorna tutto
|
||||
update ready=aggiornamento pronto
|
||||
Value=Valore
|
||||
Variable=Variabile
|
||||
Video=Video
|
||||
Voip=Voip
|
||||
Volume Mappings=Mappature dei volumi
|
||||
wait=attendere
|
||||
Was this container created using this plugin=Questo contenitore è stato creato utilizzando questo plug-in
|
||||
Web=Web
|
||||
WebUI=WebUI
|
||||
Writable=Scrivibile
|
||||
Absolute=Assoluto
|
||||
Acknowledge=Riconoscere
|
||||
Active=Attivo
|
||||
active=attivo
|
||||
Actual results=Risultati Attuali
|
||||
Add Container=Aggiungi contenitore
|
||||
Add VM=Aggiungi VM
|
||||
Advanced View=Visualizzazione Avanzata
|
||||
AFP Security Settings=Impostazioni di sicurezza AFP
|
||||
All=Tutti
|
||||
Anonymize diagnostics may make troubleshooting more difficult=La diagnostica anonima può rendere la risoluzione dei problemi più difficile
|
||||
Apply=Applica
|
||||
Apps=Apps
|
||||
Array must be Stopped to change=Array must be **Stopped** to change
|
||||
Array Started=Array Avviato
|
||||
Array Starting=Avvio Array
|
||||
Array Stopped=Arrey arrestato
|
||||
Array Stopping=Arresti dell'Array
|
||||
Array=Array
|
||||
Attributes=Attributi
|
||||
Auto=Auto
|
||||
Automatic=Automatico
|
||||
Average speed=Velocità media
|
||||
Azure=Azure
|
||||
B=B
|
||||
Back To Top=Torna in cima
|
||||
Basic=Base
|
||||
Basic View=Visualizzazione base
|
||||
BIOS=BIOS
|
||||
Black=Nero
|
||||
Browse=Browse
|
||||
Browser error=Errore Browser
|
||||
btrfs=btrfs
|
||||
Bug Description=Descrizione Bug
|
||||
Bug Report=Rapporto Bug
|
||||
bytes=bytes
|
||||
Cancel=Cancella
|
||||
Capabilities=Funzionalità
|
||||
Case-sensitive names=Nomi Case-sensitive
|
||||
Center=Centro
|
||||
Change=Modificare
|
||||
Check=Controllo
|
||||
Clear=Pulito
|
||||
Clearing=Pulizia
|
||||
Click for context menu=Fare clic per il menu contestuale
|
||||
Click=Clik
|
||||
close all notifications=chiudi tutte le notifiche
|
||||
Close=Chiudi
|
||||
close=chiudi
|
||||
Comment=Commento
|
||||
Contact Email Address=Email di contatto
|
||||
Contact Support=Contatto supporto
|
||||
containing your key file URL=indirizzo del tuo file key
|
||||
Copy=Copia
|
||||
CPU=CPU
|
||||
Dashboard=Dashboard
|
||||
day=giorno
|
||||
%s day ago=%s giorno fa
|
||||
%s days ago=%s giorni fa
|
||||
Days_array=Sunday:Sunday Monday:Monday Tuesday:Tuesday Wednesday:Wednesday Thursday:Thursday Friday:Friday Saturday:Saturday Sun:Sun Mon:Mon Tue:Tue Wed:Wed Thu:Thu Fri:Fri Sat:Sat
|
||||
days=giorni
|
||||
Default=Predefinito
|
||||
default=predefinito
|
||||
Delete=Cancella
|
||||
Description=Descrizione
|
||||
Device contents emulated, in standby mode spun-down=Device contents emulated, in standby mode (spun-down)
|
||||
Device contents emulated=Contenuti del dispositivo emulati
|
||||
Device is disabled, contents emulated=Il dispositivo è disabilitato, contenuti emulati
|
||||
Device is in standby mode spun-down=Device is in standby mode (spun-down)
|
||||
Device is missing disabled, contents emulated=Device is missing (disabled), contents emulated
|
||||
Device not present=Dispositivo non presente
|
||||
Device=Dispositivo
|
||||
directories=Cartelle
|
||||
directory=cartella
|
||||
Disabled=Disabilitato
|
||||
disabled=disabilitato
|
||||
Disk=Disco
|
||||
disk=disco
|
||||
Do you want to update to the new version=Vuoi aggiornare alla nuova versione
|
||||
Docker=Docker
|
||||
Done=Fatto
|
||||
Download=Download
|
||||
Duration=Durata
|
||||
Edit=Modifica
|
||||
edit=modifica
|
||||
Emulated=Emulato
|
||||
emulated=emulato
|
||||
Enabled=Abilitato
|
||||
enabled=abilitato
|
||||
Encrypted and unlocked=Decripta e sblocca
|
||||
Error code=Codice errore
|
||||
Error=Errore
|
||||
error=Errere
|
||||
Errors=Errori
|
||||
errors=errori
|
||||
Expected results=Risultati attesi
|
||||
Export=Esporta
|
||||
Faulty=Difettoso
|
||||
faulty=difettoso
|
||||
Feedback=Feedback
|
||||
File too large=File troppo grande
|
||||
file=file
|
||||
files=files
|
||||
Fixed=corretto
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Produttore Flash
|
||||
Flash Vendor=Venditore Flash
|
||||
FOLDER=CARTELLA
|
||||
folder=cartella
|
||||
Force lower=
|
||||
Format=Formatta
|
||||
Formatting devices=Formattazione dispoditivi
|
||||
Forum=Forum
|
||||
GB=GB
|
||||
Go to Registration page=Vai alla pagina di registrazione
|
||||
GPT 4KiB-aligned=Allineamento GPT 4KiB
|
||||
Gray=Grigio
|
||||
Guests have no access=Guests have **no** access
|
||||
Guests have read-only access=Guests have **read-only** access
|
||||
Heat alarm=Allarme calore
|
||||
Help=Aiuto
|
||||
here=qui
|
||||
History=Storia
|
||||
hour=ora
|
||||
hours=ore
|
||||
%s hour ago=%s ora fa
|
||||
%s hours ago=%s ore fa
|
||||
How to reproduce=Come riprodurre
|
||||
hr=hr
|
||||
HVM=HVM
|
||||
Identity=Identità
|
||||
Inactive=Inattivo
|
||||
Index of=indice di
|
||||
Info=Info
|
||||
Install Key=Installa chiave
|
||||
interface down=Interfaccia spenta
|
||||
Interface=Interfaccia
|
||||
IOMMU=IOMMU
|
||||
is available=è disponibile
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Ultima modifica
|
||||
Left=Sinistra
|
||||
less than a minute remaining=meno di un minuto rimanente
|
||||
less than a minute=meno di un minuto
|
||||
Load=Caricare
|
||||
Location=
|
||||
Locked missing encryption key=Locked: missing encryption key
|
||||
Locked unknown error=Locked: unknown error
|
||||
Locked wrong encryption key=Locked: wrong encryption key
|
||||
Log=Log
|
||||
Login=Login
|
||||
Logout=Logout
|
||||
Main=Principale
|
||||
manual=manuale
|
||||
max installable capacity=Capacità massima installabile
|
||||
Maximum file upload size is 512K=La dimensione massima di caricamento del file è 512K
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=Memoria
|
||||
min=min
|
||||
minute=minuto
|
||||
minutes=minuti
|
||||
%s minute ago=%s minuto fa
|
||||
%s minutes ago=%s minuti fa
|
||||
Model=Modello
|
||||
%s month ago= %s mese fa
|
||||
%s months ago= %s mesi fa
|
||||
Months_array=January:January February:February March:March April:April May:May June:June July:July August:August September:September October:October November:November December:December Jan:Jan Feb:Feb Mar:Mar Apr:Apr May:May Jun:Jun Jul:Jul Aug:Aug Sep:Sep Oct:Oct Nov:Nov Dec:Dec
|
||||
months=mesi
|
||||
More=Altro
|
||||
Motherboard=Scheda madre
|
||||
Move=Sposta
|
||||
NA=N/A
|
||||
Name=Nome
|
||||
Network=Rete
|
||||
Never=Mai
|
||||
New device, in standby mode spun-down=New device, in standby mode (spun-down)
|
||||
New device=Nuovo dispositivo
|
||||
NFS Security Settings=Impostazioni di sicurezza NFS
|
||||
No Access=Nessun accesso
|
||||
No device=Nessun dispositivo
|
||||
no device=nessun dispositivo
|
||||
No errors reported=Nessun errore riportato
|
||||
No information available=Nessuna informazione disponibile
|
||||
No listing Too many files=No listing: Too many files
|
||||
No reply from mail server=Nessuna risposta dal server di posta
|
||||
No=No
|
||||
no=no
|
||||
None=Nessuna
|
||||
none=nessuna
|
||||
Normal operation, device is active=Funzionamento normale, il dispositivo è attivo
|
||||
Normal=Normale
|
||||
Normalized=Normalizzato
|
||||
Not Available=Non disponibile
|
||||
not available=non disponibile
|
||||
not connected=non connesso
|
||||
Not encrypted=Non criptato
|
||||
not encrypted=non criptato
|
||||
NOTE=NOTE
|
||||
Numbers_array=thirty:thirty twenty-nine:twenty-nine twenty-eight:twenty-eight twenty-seven:twenty-seven twenty-six:twenty-six twenty-five:twenty-five twenty-four:twenty-four twenty-three:twenty-three twenty-two:twenty-two twenty-one:twenty-one twenty:twenty nineteen:nineteen eighteen:eighteen seventeen:seventeen sixteen:sixteen fifteen:fifteen fourteen:fourteen thirteen:thirteen twelve:twelve eleven:eleven ten:ten nine:nine eight:eight seven:seven six:six five:five four:four three:three two:two one:one zero:zero
|
||||
objects=oggetti
|
||||
Off=Spento
|
||||
off-line=off-line
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=Acceso
|
||||
Online Manual=Manuale Online
|
||||
Online manual=manuale Online
|
||||
OpenSSL=OpenSSL
|
||||
optional=opzionale
|
||||
Other Comment=Altro commento
|
||||
Other information=Altra informazione
|
||||
Parity device is disabled=Parità del dispositivo disattivata
|
||||
Parity device is missing=Parità del dispoditivo persa
|
||||
Parity is invalid, in standby mode spun-down=Parity is invalid, in standby mode (spun-down)
|
||||
Parity is invalid=Parità non valida
|
||||
Parity is valid=Parità valida
|
||||
Parity=Parità
|
||||
parity=parità
|
||||
Parity-Check=Controllo-parità
|
||||
Parity-Sync Data-Rebuild=Parity-Sync / Data-Rebuild
|
||||
Pause=Pausa
|
||||
Paused=In pausa
|
||||
paused=in pausa
|
||||
PB=PB
|
||||
Please select one file only=Selezionare solo un file
|
||||
Please summarize your suggestion here=Riassumi qui il tuo suggerimento
|
||||
Please try again later=Riprova più tardi
|
||||
Please wait=Attendere
|
||||
Plugins=Plugins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privato
|
||||
Pro=Pro
|
||||
Proceed=Procedere
|
||||
Processor=Processore
|
||||
Product Suggestion=
|
||||
Public=Pubblico
|
||||
RAM=RAM
|
||||
Raw=Raw
|
||||
Read=Leggi
|
||||
Read settings from=Leggi le impostazioni da
|
||||
Read-Check=
|
||||
Read-only=Solo lettura
|
||||
Reads=
|
||||
ReadWrite=Read/Write
|
||||
Reboot Now=Riavvia adesso
|
||||
Reboot=Riavvio
|
||||
Refresh=Aggiorna
|
||||
Registration=Registrazione
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Note di Rilascio
|
||||
Remove=Rimuovere
|
||||
Renew=Rinominare
|
||||
Reset=Reset
|
||||
Restart=Riavvio
|
||||
Resume=Riattiva
|
||||
Right=Destra
|
||||
RPM=RPM
|
||||
Running=In esecuzione
|
||||
running=in esecuzione
|
||||
safe mode=modalità provvisoria
|
||||
sec=sec
|
||||
second=secondo
|
||||
seconds=secondi
|
||||
%s second ago=%s secondo fa
|
||||
%s seconds ago=%s secondi fa
|
||||
Secure=Sicuro
|
||||
Security=Sicurezza
|
||||
Security Settings=Impostazioni di sicurezza
|
||||
select=seleziona
|
||||
Self-Test=Test manuale
|
||||
Server=Server
|
||||
Settings=Impostazioni
|
||||
Share=Condivisione
|
||||
Share name=Nome Condivisione
|
||||
Shares List=Lista condivisioni
|
||||
Shares=Condivisioni
|
||||
Shutdown=Spegni
|
||||
Size=Dimensione
|
||||
SMB Security Settings=Impostazioni di sicurezza SMB
|
||||
sn=s/n
|
||||
Sorry, an error occurred=Si è verificato un errore
|
||||
Standby=Standby
|
||||
standby=standby
|
||||
Start=Avvio
|
||||
Started=Avviato
|
||||
started=avviato
|
||||
Status=Status
|
||||
status=status
|
||||
Stop=fermare
|
||||
Stopped=fermato
|
||||
stopped=fermato
|
||||
Streams=
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Questa segnalazione invierà automaticamente la diagnostica del sistema a Lime Technology
|
||||
Submit=Invia
|
||||
System Information=Informazioni di sistema
|
||||
System is going down=Il sistema si sta arrestando
|
||||
System is offline=Il sistema è offline
|
||||
System is powered off=Il sistema è spento
|
||||
System is rebooting=Il sistema si sta riavviando
|
||||
System Log=Log di sistema
|
||||
System notifications are=Le notifiche di sistema sono
|
||||
System running in=Sistema in esecuzione
|
||||
System=Sistema
|
||||
TB=TB
|
||||
Temperature=Temperatura
|
||||
Template Repositories=
|
||||
Terminal=Terminale
|
||||
Test result=Risultato Test
|
||||
Thank You=Grazie
|
||||
The error is=L'errore è
|
||||
to change notification settings=per modificare le impostazioni di notifica
|
||||
to downgrade Unraid OS=per il downgrade di Unraid OS
|
||||
to upgrade Unraid OS=per aggiornare Unraid OS
|
||||
today=oggi
|
||||
Too many files=Troppi file
|
||||
Tools=Strumenti
|
||||
Total=Totale
|
||||
total=totale
|
||||
Type your question or comment to Lime Technology here=Scrivi qui per le tue domande o commenti a Lime Technology
|
||||
Type=Tipo
|
||||
Unable to generate system diagnostics=Impossibile generare diagnostica di sistema
|
||||
Unassigned=Non assegnato
|
||||
unassigned=non assegnato
|
||||
Unknown=Sconosciuto
|
||||
unknown=sconosciuto
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Aggiorna Contenitore
|
||||
Update Now=Aggiorna adesso
|
||||
Update VM=Aggiorna VM
|
||||
Update=Aggiorna
|
||||
update=aggiorna
|
||||
Updated=Aggiornato
|
||||
Upload error=Errore di caricamento
|
||||
Upload=Carica
|
||||
Uptime=Uptime
|
||||
up-to-date=aggiornato
|
||||
User Access=Accesso utente
|
||||
Users=Utenti
|
||||
Utilization=utilizzo
|
||||
Version=Versione
|
||||
View Release Notes=Vedi note di rilascio
|
||||
View=Vista
|
||||
VMs=VMs
|
||||
VPN=VPN
|
||||
Warning=Avvertimento
|
||||
Website=Sito Web
|
||||
%s week ago=%s settimana fa
|
||||
%s weeks ago=%s settimane fa
|
||||
White=bianca
|
||||
Wiki=Wiki
|
||||
Write=Scrivi
|
||||
Write settings to=Salva modifice in
|
||||
Wrong=errato
|
||||
wrong=errato
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Si, procedere
|
||||
Yes=Si
|
||||
yes=si
|
||||
Yes hidden=Yes (hidden)
|
||||
Yes Time Machine=Yes (Time Machine)
|
||||
YesTime Machine hidden=Yes/Time Machine (hidden)
|
||||
YesTime Machine=Yes/Time Machine
|
||||
yesterday=ieri
|
||||
You must reboot for changes to take effect=È necessario riavviare affinché le modifiche abbiano effetto
|
||||
Your browser does not support HTML5 file uploads=Il tuo browser non supporta il caricamento di file HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Array occupato
|
||||
Buttons=Tasti
|
||||
Parity operation or mover is running=Operazione di parità o mover in esecuzione
|
||||
preparing for reboot=preparazione al riavvio
|
||||
preparing for shutdown=preparazione allo spegnimento
|
||||
Sleep=sospensione
|
||||
Start Array=Avvia Array
|
||||
starting the array=Avvia l'array
|
||||
Stop Array=Ferma Array
|
||||
stopping the array=Ferme l'array
|
||||
System in sleep mode=il sistema è in sospensione
|
||||
This will put the system to sleep=questo metterà il sistema in sispensione
|
||||
This will reboot the system=Questo riavvierà il sistema
|
||||
This will shutdown the system=Questo spegnerà il sistema
|
||||
This will start the array=Questo avvierà l'array
|
||||
This will stop the array=questo fermerà l'array
|
862
languages/lv_LV
Normal file
862
languages/lv_LV
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=
|
||||
Happy Holidays from Andrew, Tracey, and family=
|
||||
Please Enjoy Responsibly=
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=
|
||||
Sorting options unavailable=
|
||||
Sort By Name Ascending=
|
||||
Sort By Name Descending=
|
||||
Sort By Downloads=
|
||||
Sort By Trend=
|
||||
Sort By Date Added=
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=
|
||||
Application Policy=
|
||||
I Understand=
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=
|
||||
Click here=
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
|
||||
Plugin Note=
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=
|
||||
Please enter search term=
|
||||
Click Here To Get More Results From DockerHub=
|
||||
No Matching Applications Found On Docker Hub=
|
||||
No Matching Applications Found=
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=
|
||||
Yes, delete it=
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=
|
||||
Yes uninstall it=
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=
|
||||
Yes, remove it=
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=
|
||||
Click to unpin this application=
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=
|
||||
|
||||
Yes, install it=
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=
|
||||
Updating Support Links=
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=
|
||||
An error occurred Could not find any %s Apps=
|
||||
Download of appfeed failed=
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=
|
||||
Installed Apps=
|
||||
Previous Apps=
|
||||
Pinned Apps=
|
||||
CATEGORIES=
|
||||
New Apps=
|
||||
Updated Apps=
|
||||
Random Apps=
|
||||
Top New Installs=
|
||||
Trending Apps=
|
||||
All Apps=
|
||||
OTHER=
|
||||
Statistics=
|
||||
Credits=
|
||||
Support=
|
||||
VERSION=
|
||||
Change Log=
|
||||
|
||||
; Credits
|
||||
Development=
|
||||
Additional Contributions=
|
||||
GUI Layout Design=
|
||||
Application Feed=
|
||||
Additional Testing=
|
||||
Moderation=
|
||||
Additional Libraries=
|
||||
Copyright=
|
||||
Translation=
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=
|
||||
This display is informational ONLY=
|
||||
unknown=
|
||||
Last Change To Application Feed=
|
||||
Number Of Docker Applications=
|
||||
Number Of Plugin Applications=
|
||||
Number Of Templates=
|
||||
Number Of Repositories=
|
||||
Number Of Private Docker Applications=
|
||||
Number Of Invalid Templates=
|
||||
Number Of Template Errors=
|
||||
Number Of Blacklisted Apps=
|
||||
Number Of Incompatible Applications=
|
||||
Number Of Deprecated Applications=
|
||||
Number Of Moderation Entries=
|
||||
Primary Server=
|
||||
Backup Server=
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=
|
||||
All Invalid Templates Found=
|
||||
Template Errors=
|
||||
All Moderation Entries=
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=
|
||||
These templates are invalid and the application they are referring to is unknown=
|
||||
No templates were automatically fixed=
|
||||
All of these errors found have been fixed automatically=
|
||||
Note that many of these errors can be avoided by following the directions=
|
||||
HERE=
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=
|
||||
Global Repository Comments=
|
||||
Applied to all applications=(Applied to all applications)
|
||||
Individual Application Moderation=
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=
|
||||
Cloud=
|
||||
Downloaders=
|
||||
Game Servers=
|
||||
Home Automation=
|
||||
Media Applications=
|
||||
Books=
|
||||
Music=
|
||||
Photos=
|
||||
Video=
|
||||
Other=
|
||||
Media Servers=
|
||||
Network Services=
|
||||
DNS=
|
||||
FTP=
|
||||
Management=
|
||||
Messenger=
|
||||
Proxy=
|
||||
VOIP=
|
||||
VPN=
|
||||
Web=
|
||||
Productivity=
|
||||
Security=
|
||||
Tools Utilities=Tools / Utilities
|
||||
System=
|
||||
Themes=
|
||||
Utilities=
|
||||
Private Apps=
|
||||
Uncategorized=
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=
|
||||
HomeAutomation=
|
||||
MediaApp=
|
||||
MediaAppBooks=MediaApp:Books
|
||||
MediaAppMusic=MediaApp:Music
|
||||
MediaAppPhotos=MediaApp:Photos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Other
|
||||
MediaServer=
|
||||
MediaServerBooks=MediaServer:Books
|
||||
MediaServerMusic=MediaServer:Music
|
||||
MediaServerPhotos=MediaServer:Photos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Other
|
||||
Network=
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Management
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Other
|
||||
ToolsSystem=Tools:System
|
||||
ToolsThemes=Tools:Themes
|
||||
ToolsUtilities=Tools:Utilities
|
||||
Other=
|
||||
OtherUncategorized=Other:Uncategorized
|
||||
and %s more=
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=
|
||||
Donate To Maintainer=
|
||||
Author=
|
||||
Maintainer=
|
||||
DockerHub=
|
||||
Application Template=
|
||||
Base OS=
|
||||
DockerHub Stars=
|
||||
Added to CA=
|
||||
Date Updated=
|
||||
Current Version=
|
||||
Minimum OS=
|
||||
Max OS=
|
||||
Total Downloads=
|
||||
Licence=
|
||||
30 Day Trend=
|
||||
Ranked #%s=
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=This application / template has been blacklisted
|
||||
This application template has been deprecated=This application / template has been deprecated
|
||||
This application is not compatible with your version of Unraid=
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Another browser tab or device has updated the displayed templates. Some actions are not available
|
||||
Reinstall default=Reinstall (default)
|
||||
WebUI=
|
||||
Reinstall=
|
||||
Install=
|
||||
Project=
|
||||
Install Using The Templates Default Tag=Install Using The Template's Default Tag
|
||||
Moderator Comments=Moderator Comments:
|
||||
Note not all authors keep up to date on change logs=
|
||||
Note not all maintainers keep up to date on change logs=
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=
|
||||
Currently Installed Version=
|
||||
Install The Update=
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=
|
||||
Multi Language Support=
|
||||
; as in more than 100000
|
||||
More than %s=
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=
|
||||
Downloads Per Month=
|
||||
Total Downloads=
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=
|
||||
Starting %s=
|
||||
%s failed to start You should install it by itself to fix the errors=
|
||||
Setting installed applications to autostart=
|
||||
Docker Application Installation finished=
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=
|
||||
Go to the support thread=
|
||||
Uninstall Application=
|
||||
Remove Private Application=
|
||||
Remove Application From List=
|
||||
Check off to select multiple reinstalls=
|
||||
Go to the plugin settings=
|
||||
Click to reinstall the application using default values=
|
||||
Click to edit the application values=
|
||||
Click to reinstall=
|
||||
Click to install=
|
||||
Install plugin=
|
||||
Click to go to the WebUI=
|
||||
This application has been marked as being Beta=
|
||||
This application template has been deprecated=
|
||||
This application is not compatible with your version of Unraid=
|
||||
This application template has been blacklisted=
|
||||
Search for more applications from %s=
|
||||
Click for more information=
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=
|
||||
Search for similar containers=
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Displaying %1$s - %2$s (of %3$s)
|
||||
|
||||
Updating Content=
|
||||
Language=
|
||||
Switch to this language=
|
||||
Country Code=
|
||||
Install Language Pack=
|
||||
Remove Language Pack=
|
||||
Update Language Pack=
|
||||
Installed Version=
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=
|
||||
These icons respectively will Install or Edit an application=
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicking these icons will take you to an application's GUI or settings
|
||||
This will update an application=
|
||||
This will take you to the appropriate support thread for an application=
|
||||
This will immediately switch to the language=
|
||||
This will take you to the project page for an application=
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=
|
||||
Clicking this will display any warnings or extra comments about the application=
|
||||
On the previous apps section you can select multiple applications to install simultaneously=
|
||||
This is the recommended version to install by the application author themselves=
|
||||
For support for this plugin visit=
|
||||
To view the policies Community Applications has=
|
||||
Access Mode=
|
||||
Add another Path, Port, Variable, Label or Device=
|
||||
Add Configuration=
|
||||
Add=
|
||||
Always=
|
||||
App to Host=
|
||||
Application=
|
||||
apply update=
|
||||
Array must be Started to view Docker containers=Array must be **Started** to view Docker containers
|
||||
Are you sure=
|
||||
Autostart=
|
||||
Back=
|
||||
Backup=
|
||||
Beta=
|
||||
Books=
|
||||
By=
|
||||
Categories=
|
||||
Check for Updates=
|
||||
Cloud=
|
||||
Config Type=
|
||||
Configuration not found=
|
||||
Connection Type=
|
||||
Console shell command=
|
||||
Container ID=
|
||||
Container Path=
|
||||
Container Port=
|
||||
Container Size=
|
||||
Container=
|
||||
CPU Memory load=
|
||||
CPU Pinning=
|
||||
Created=
|
||||
Default Value=
|
||||
Device=
|
||||
Display=
|
||||
DNS=
|
||||
Docker Containers=
|
||||
Docker Hub URL=
|
||||
Docker Service failed to start=
|
||||
Donation Link=
|
||||
Donation Text=
|
||||
Downloaders=
|
||||
Edit Configuration=
|
||||
Exited=
|
||||
Extra Parameters=
|
||||
Fixed IP address=
|
||||
force update=
|
||||
FTP=
|
||||
Game Servers=
|
||||
healthy=
|
||||
Hide Buttons=
|
||||
Hide docker allocations=
|
||||
Hide more settings=
|
||||
Home Automation=
|
||||
Host Path=
|
||||
Host Port=
|
||||
HT=
|
||||
Icon URL=
|
||||
Image ID=
|
||||
Key=
|
||||
Label=
|
||||
latest=
|
||||
Management=
|
||||
MediaApp=
|
||||
MediaServer=
|
||||
Messenger=
|
||||
Missing parameters=
|
||||
Music=
|
||||
Network Type=
|
||||
No Docker containers installed=
|
||||
of=
|
||||
orphan image=
|
||||
Other=
|
||||
Overview=
|
||||
Path=
|
||||
Pause All=
|
||||
Photos=
|
||||
Port Mappings=
|
||||
Port=
|
||||
Post Arguments=
|
||||
Privileged=
|
||||
Productivity=
|
||||
Project Page=
|
||||
Proxy=
|
||||
Pulling image=
|
||||
Read Only - Shared=
|
||||
Read Only - Slave=
|
||||
Read Only=
|
||||
ReadWrite - Shared=Read/Write - Shared
|
||||
ReadWrite - Slave=Read/Write - Slave
|
||||
rebuild ready=
|
||||
rebuilding=
|
||||
Remove template=
|
||||
Removing container=
|
||||
Removing orphan image=
|
||||
Repository=
|
||||
Required=
|
||||
Resume All=
|
||||
Save=
|
||||
Select a template=
|
||||
Select categories=
|
||||
Show docker allocations=
|
||||
Show more settings=
|
||||
Stable=
|
||||
Start All=
|
||||
starting up containers=
|
||||
Stop All=
|
||||
Stopping container=
|
||||
Successfully removed container=
|
||||
Successfully removed orphan image=
|
||||
Successfully stopped container=
|
||||
Support Thread=
|
||||
Template repositories=
|
||||
Template URL=
|
||||
Template=
|
||||
The command failed=
|
||||
The command finished successfully=
|
||||
TOTAL DATA PULLED=
|
||||
Unknown action=
|
||||
Update All=
|
||||
update ready=
|
||||
Value=
|
||||
Variable=
|
||||
Video=
|
||||
Voip=
|
||||
Volume Mappings=
|
||||
wait=
|
||||
Was this container created using this plugin=
|
||||
Web=
|
||||
WebUI=
|
||||
Writable=
|
||||
Absolute=
|
||||
Acknowledge=
|
||||
Active=
|
||||
active=
|
||||
Actual results=
|
||||
Add Container=
|
||||
Add VM=
|
||||
Advanced View=
|
||||
AFP Security Settings=
|
||||
All=
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Anonymize diagnostics (may make troubleshooting more difficult)
|
||||
Apply=
|
||||
Apps=
|
||||
Array must be Stopped to change=Array must be **Stopped** to change
|
||||
Array Started=
|
||||
Array Starting=
|
||||
Array Stopped=
|
||||
Array Stopping=
|
||||
Array=
|
||||
Attributes=
|
||||
Auto=
|
||||
Automatic=
|
||||
Average speed=
|
||||
Azure=
|
||||
B=
|
||||
Back To Top=
|
||||
Basic=
|
||||
Basic View=
|
||||
BIOS=
|
||||
Black=
|
||||
Browse=
|
||||
Browser error=
|
||||
btrfs=
|
||||
Bug Description=
|
||||
Bug Report=
|
||||
bytes=
|
||||
Cancel=
|
||||
Capabilities=
|
||||
Case-sensitive names=
|
||||
Center=
|
||||
Change=
|
||||
Check=
|
||||
Clear=
|
||||
Clearing=
|
||||
Click for context menu=
|
||||
Click=
|
||||
close all notifications=
|
||||
Close=
|
||||
close=
|
||||
Comment=
|
||||
Contact Email Address=
|
||||
Contact Support=
|
||||
containing your key file URL=
|
||||
Copy=
|
||||
CPU=
|
||||
Dashboard=
|
||||
day=
|
||||
%s day ago=
|
||||
%s days ago=
|
||||
Days_array=Sunday:Sunday Monday:Monday Tuesday:Tuesday Wednesday:Wednesday Thursday:Thursday Friday:Friday Saturday:Saturday Sun:Sun Mon:Mon Tue:Tue Wed:Wed Thu:Thu Fri:Fri Sat:Sat
|
||||
days=
|
||||
Default=
|
||||
default=
|
||||
Delete=
|
||||
Description=
|
||||
Device contents emulated, in standby mode spun-down=Device contents emulated, in standby mode (spun-down)
|
||||
Device contents emulated=
|
||||
Device is disabled, contents emulated=
|
||||
Device is in standby mode spun-down=Device is in standby mode (spun-down)
|
||||
Device is missing disabled, contents emulated=Device is missing (disabled), contents emulated
|
||||
Device not present=
|
||||
Device=
|
||||
directories=
|
||||
directory=
|
||||
Disabled=
|
||||
disabled=
|
||||
Disk=
|
||||
disk=
|
||||
Do you want to update to the new version=
|
||||
Docker=
|
||||
Done=
|
||||
Download=
|
||||
Duration=
|
||||
Edit=
|
||||
edit=
|
||||
Emulated=
|
||||
emulated=
|
||||
Enabled=
|
||||
enabled=
|
||||
Encrypted and unlocked=
|
||||
Error code=
|
||||
Error=
|
||||
error=
|
||||
Errors=
|
||||
errors=
|
||||
Expected results=
|
||||
Export=
|
||||
Faulty=
|
||||
faulty=
|
||||
Feedback=
|
||||
File too large=
|
||||
file=
|
||||
files=
|
||||
Fixed=
|
||||
Flash=
|
||||
flash=
|
||||
Flash GUID=
|
||||
Flash Product=
|
||||
Flash Vendor=
|
||||
FOLDER=
|
||||
folder=
|
||||
Force lower=
|
||||
Format=
|
||||
Formatting devices=
|
||||
Forum=
|
||||
GB=
|
||||
Go to Registration page=
|
||||
GPT 4KiB-aligned=
|
||||
Gray=
|
||||
Guests have no access=Guests have **no** access
|
||||
Guests have read-only access=Guests have **read-only** access
|
||||
Heat alarm=
|
||||
Help=
|
||||
here=
|
||||
History=
|
||||
hour=
|
||||
hours=
|
||||
%s hour ago=
|
||||
%s hours ago=
|
||||
How to reproduce=
|
||||
hr=
|
||||
HVM=
|
||||
Identity=
|
||||
Inactive=
|
||||
Index of=
|
||||
Info=
|
||||
Install Key=
|
||||
interface down=
|
||||
Interface=
|
||||
IOMMU=
|
||||
is available=
|
||||
KB=
|
||||
Kernel=
|
||||
Last Modified=
|
||||
Left=
|
||||
less than a minute remaining=
|
||||
less than a minute=
|
||||
Load=
|
||||
Location=
|
||||
Locked missing encryption key=Locked: missing encryption key
|
||||
Locked unknown error=Locked: unknown error
|
||||
Locked wrong encryption key=Locked: wrong encryption key
|
||||
Log=
|
||||
Login=
|
||||
Logout=
|
||||
Main=
|
||||
manual=
|
||||
max installable capacity=
|
||||
Maximum file upload size is 512K=
|
||||
MB=
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=
|
||||
min=
|
||||
minute=
|
||||
minutes=
|
||||
%s minute ago=
|
||||
%s minutes ago=
|
||||
Model=
|
||||
%s month ago=
|
||||
%s months ago=
|
||||
Months_array=January:January February:February March:March April:April May:May June:June July:July August:August September:September October:October November:November December:December Jan:Jan Feb:Feb Mar:Mar Apr:Apr May:May Jun:Jun Jul:Jul Aug:Aug Sep:Sep Oct:Oct Nov:Nov Dec:Dec
|
||||
months=
|
||||
More=
|
||||
Motherboard=
|
||||
Move=
|
||||
NA=N/A
|
||||
Name=
|
||||
Network=
|
||||
Never=
|
||||
New device, in standby mode spun-down=New device, in standby mode (spun-down)
|
||||
New device=
|
||||
NFS Security Settings=
|
||||
No Access=
|
||||
No device=
|
||||
no device=
|
||||
No errors reported=
|
||||
No information available=
|
||||
No listing Too many files=No listing: Too many files
|
||||
No reply from mail server=
|
||||
No=
|
||||
no=
|
||||
None=
|
||||
none=
|
||||
Normal operation, device is active=
|
||||
Normal=
|
||||
Normalized=
|
||||
Not Available=
|
||||
not available=
|
||||
not connected=
|
||||
Not encrypted=
|
||||
not encrypted=
|
||||
NOTE=
|
||||
Numbers_array=thirty:thirty twenty-nine:twenty-nine twenty-eight:twenty-eight twenty-seven:twenty-seven twenty-six:twenty-six twenty-five:twenty-five twenty-four:twenty-four twenty-three:twenty-three twenty-two:twenty-two twenty-one:twenty-one twenty:twenty nineteen:nineteen eighteen:eighteen seventeen:seventeen sixteen:sixteen fifteen:fifteen fourteen:fourteen thirteen:thirteen twelve:twelve eleven:eleven ten:ten nine:nine eight:eight seven:seven six:six five:five four:four three:three two:two one:one zero:zero
|
||||
objects=
|
||||
Off=
|
||||
off-line=
|
||||
OK=
|
||||
Ok=
|
||||
ok=
|
||||
On=
|
||||
Online Manual=
|
||||
Online manual=
|
||||
OpenSSL=
|
||||
optional=
|
||||
Other Comment=
|
||||
Other information=
|
||||
Parity device is disabled=
|
||||
Parity device is missing=
|
||||
Parity is invalid, in standby mode spun-down=Parity is invalid, in standby mode (spun-down)
|
||||
Parity is invalid=
|
||||
Parity is valid=
|
||||
Parity=
|
||||
parity=
|
||||
Parity-Check=
|
||||
Parity-Sync Data-Rebuild=Parity-Sync / Data-Rebuild
|
||||
Pause=
|
||||
Paused=
|
||||
paused=
|
||||
PB=
|
||||
Please select one file only=
|
||||
Please summarize your suggestion here=
|
||||
Please try again later=
|
||||
Please wait=
|
||||
Plugins=
|
||||
Plus=
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=
|
||||
Pro=
|
||||
Proceed=
|
||||
Processor=
|
||||
Product Suggestion=
|
||||
Public=
|
||||
RAM=
|
||||
Raw=
|
||||
Read=
|
||||
Read settings from=
|
||||
Read-Check=
|
||||
Read-only=
|
||||
Reads=
|
||||
ReadWrite=Read/Write
|
||||
Reboot Now=
|
||||
Reboot=
|
||||
Refresh=
|
||||
Registration=
|
||||
reiserfs=
|
||||
Release Notes=
|
||||
Remove=
|
||||
Renew=
|
||||
Reset=
|
||||
Restart=
|
||||
Resume=
|
||||
Right=
|
||||
RPM=
|
||||
Running=
|
||||
running=
|
||||
safe mode=
|
||||
sec=
|
||||
second=
|
||||
seconds=
|
||||
%s second ago=
|
||||
%s seconds ago=
|
||||
Secure=
|
||||
Security=
|
||||
Security Settings=
|
||||
select=
|
||||
Self-Test=
|
||||
Server=
|
||||
Settings=
|
||||
Share=
|
||||
Share name=
|
||||
Shares List=
|
||||
Shares=
|
||||
Shutdown=
|
||||
Size=
|
||||
SMB Security Settings=
|
||||
sn=s/n
|
||||
Sorry, an error occurred=
|
||||
Standby=
|
||||
standby=
|
||||
Start=
|
||||
Started=
|
||||
started=
|
||||
Status=
|
||||
status=
|
||||
Stop=
|
||||
Stopped=
|
||||
stopped=
|
||||
Streams=
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=
|
||||
Submit=
|
||||
System Information=
|
||||
System is going down=
|
||||
System is offline=
|
||||
System is powered off=
|
||||
System is rebooting=
|
||||
System Log=
|
||||
System notifications are=
|
||||
System running in=
|
||||
System=
|
||||
TB=
|
||||
Temperature=
|
||||
Template Repositories=
|
||||
Terminal=
|
||||
Test result=
|
||||
Thank You=
|
||||
The error is=
|
||||
to change notification settings=
|
||||
to downgrade Unraid OS=
|
||||
to upgrade Unraid OS=
|
||||
today=
|
||||
Too many files=
|
||||
Tools=
|
||||
Total=
|
||||
total=
|
||||
Type your question or comment to Lime Technology here=
|
||||
Type=
|
||||
Unable to generate system diagnostics=
|
||||
Unassigned=
|
||||
unassigned=
|
||||
Unknown=
|
||||
unknown=
|
||||
Unraid OS=
|
||||
Update Container=
|
||||
Update Now=
|
||||
Update VM=
|
||||
Update=
|
||||
update=
|
||||
Updated=
|
||||
Upload error=
|
||||
Upload=
|
||||
Uptime=
|
||||
up-to-date=
|
||||
User Access=
|
||||
Users=
|
||||
Utilization=
|
||||
Version=
|
||||
View Release Notes=
|
||||
View=
|
||||
VMs=
|
||||
VPN=
|
||||
Warning=
|
||||
Website=
|
||||
%s week ago=
|
||||
%s weeks ago=
|
||||
White=
|
||||
Wiki=
|
||||
Write=
|
||||
Write settings to=
|
||||
Wrong=
|
||||
wrong=
|
||||
xfs=
|
||||
Yes, I want to do this=
|
||||
Yes=
|
||||
yes=
|
||||
Yes hidden=Yes (hidden)
|
||||
Yes Time Machine=Yes (Time Machine)
|
||||
YesTime Machine hidden=Yes/Time Machine (hidden)
|
||||
YesTime Machine=Yes/Time Machine
|
||||
yesterday=
|
||||
You must reboot for changes to take effect=
|
||||
Your browser does not support HTML5 file uploads=
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=
|
||||
Buttons=
|
||||
Parity operation or mover is running=
|
||||
preparing for reboot=
|
||||
preparing for shutdown=
|
||||
Sleep=
|
||||
Start Array=
|
||||
starting the array=
|
||||
Stop Array=
|
||||
stopping the array=
|
||||
System in sleep mode=
|
||||
This will put the system to sleep=
|
||||
This will reboot the system=
|
||||
This will shutdown the system=
|
||||
This will start the array=
|
||||
This will stop the array=
|
862
languages/nl_NL
Normal file
862
languages/nl_NL
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=Annuleren
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=Gelukkig nieuwjaar
|
||||
Happy Holidays from Andrew, Tracey, and family=Prettige vakantie van Andrew, Tracey en familie
|
||||
Please Enjoy Responsibly=Gelieve verantwoord genieten
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=Pop-up geblokkeerd CA gebruikt pop-ups voor bepaalde doeleinden. De server moet worden white-listed in de browser om pop-ups toe te staan
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=Dockerdienst niet ingeschakeld - Alleen plug-ins zijn beschikbaar voor installatie of beheer
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=Community Applications werkt het beste wanneer cookies zijn toegestaan in de browser. Sommige kenmerken zijn mogelijk niet beschikbaar
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=Backup server actief Sommige ikonen verschijnen mogelijk niet, en plug-in installaties zijn mogelijk verhinderd
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=Sorteeropties
|
||||
Sorting options unavailable=Sorteeropties niet beschikbaar
|
||||
Sort By Name Ascending=Sorteer op naam oplopend
|
||||
Sort By Name Descending=Sorteer op naam aflopend
|
||||
Sort By Downloads=Sorteer op downloaden
|
||||
Sort By Trend=Sorteer op trend
|
||||
Sort By Date Added=Sorteer op toegevoegde datum
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=Disclaimer
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=Alle hier vermelde applicaties zijn toevoegingen op Unraid van derde partijen. Noch de auteurs van Community Applications, noch Limetech geven enige garantie met betrekking tot de geschiktheid van de hier vermelde applicaties
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=Alles is eraan gedaan om ervoor te zorgen dat veilige en compatibele applicaties aanwezig zijn
|
||||
Application Policy=Applicatiebeleid
|
||||
I Understand=Ik begrijp het
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=Installatie van apps uitgeschakeld. De waarschuwing om het installeren van applicaties toe te staan, moet worden geaccepteerd
|
||||
Click here=Hier drukken
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Community Applications bevatten zowel docker containers als plug-ins. Plug-ins zijn ontworpen voor besturingssysteem toevoegingen, en draaien met volledige rechten op het systeem en zijn duidelijk gemarkeerd binnen CA
|
||||
Plugin Note=Plug-in notitie
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=Plug-in applicaties installeren
|
||||
Select all on page=Selecteer alles op pagina
|
||||
|
||||
; Searches
|
||||
Search=Zoeken
|
||||
Please enter search term=Voer een zoekterm in
|
||||
Click Here To Get More Results From DockerHub=Druk hier voor meer resultaten van DockerHub
|
||||
No Matching Applications Found On Docker Hub=Geen passende applicaties gevonden op DockerHub
|
||||
No Matching Applications Found=Geen passende applicaties gevonden
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=Plug-in installeren
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=Sjabloon verwijderen
|
||||
Yes, delete it=Ja, verwijderen
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=Applicatie deïnstalleren
|
||||
Yes uninstall it=Ja, deïnstalleren
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=Private applicatie verwijderen
|
||||
Yes, remove it=Ja, verwijderen
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=Druk om deze applicatie vast te zetten
|
||||
Click to unpin this application=Druk om deze applicatie los te maken
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=Kies een tak om te installeren
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=Geselecteerde applicaties installeren
|
||||
|
||||
Yes, install it=Ja, installeren
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=Ja, installeren
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=Cookies niet ingeschakeld. Plug-ins moeten apart van docker applicaties worden geïnstalleerd
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=Docker applicaties worden geïnstalleerd gebruikmakend van het meest recent opgeslagen sjabloon zonder verdere gebruikersinvoer
|
||||
Updating Support Links=Ondersteuningsverwijzingen bijwerken
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=Klaar met installeren Als de KLAAR toets niet verschijnt, dan dient op de rode X rechtsboven te worden gedrukt
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=Geen data ontvangen Het is mogelijk dat een andere browsersessie de server heeft herstart Opnieuw laden van deze browserpagina zal het probleem vermoedelijk oplossen
|
||||
An error occurred Could not find any %s Apps=Een fout is opgetreden. Kon geen enkele %s Apps vinden
|
||||
Download of appfeed failed=Downloaden van de appfeed is mislukt
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=Iets verschrikkelijk fout hier
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=Post de GEHELE inhoud van dit bericht in de hulplijn voor Community Applications
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=Onbekende fout opgetreden. Gelieve een screenshot te plaatsen in de hulplijn van het Statistiekenscherm
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=Iets ging verschrikkelijk fout. Herladen van de Apps pagina zal waarschijnlijk het probleem oplossen
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=Deze plug-in heeft een dubbele naam met een andere plug-in %s. Dit heeft invloed op beide plug-ins bij tegelijkertijd installeren
|
||||
You have been logged out=U bent uitgelogd
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=MENU
|
||||
Installed Apps=Geïnstalleerde Apps
|
||||
Previous Apps=Vorige Apps
|
||||
Pinned Apps=Vastgezette Apps
|
||||
CATEGORIES=CATEGORIEËN
|
||||
New Apps=Nieuwe Apps
|
||||
Updated Apps=Bijgewerkte Apps
|
||||
Random Apps=Willekeurige Apps
|
||||
Top New Installs=Top nieuwe installaties
|
||||
Trending Apps=Populaire Apps
|
||||
All Apps=Alle Apps
|
||||
OTHER=ANDERS
|
||||
Statistics=Statistieken
|
||||
Credits=Applaus
|
||||
Support=Ondersteuning
|
||||
VERSION=VERSIE
|
||||
Change Log=Wijzigingen
|
||||
|
||||
; Credits
|
||||
Development=Ontwikkeling
|
||||
Additional Contributions=Extra bijdragen
|
||||
GUI Layout Design=GUI layout ontwerp
|
||||
Application Feed=Applicatie feed
|
||||
Additional Testing=Extra testen
|
||||
Moderation=Moderatie
|
||||
Additional Libraries=Extra bibliotheken
|
||||
Copyright=Auteursrechten
|
||||
Translation=Vertaling
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=Verouderde applicaties kunnen nog steeds worden geïnstalleerd als deze voorheen waren geïnstalleerd Nieuwe installaties van deze applicaties worden geblokkeerd tenzij de instelling Verouderde Applicaties tonen wordt gebruikt
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=De volgende applicaties staan op een zwarte lijst CA zal deze niet toestaan deze applicaties te installeren
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=Het wordt niet aanbevolen, maar incompatibele applicaties kunnen worden geïnstalleerd door Incompatibele Applicaties tonen aan te zetten
|
||||
This display is informational ONLY=Deze weergave is ALLEEN informatief
|
||||
unknown=onbekend
|
||||
Last Change To Application Feed=Laatste verandering aan applicatie feed
|
||||
Number Of Docker Applications=Aantal Docker applicaties
|
||||
Number Of Plugin Applications=Aantal Plug-in applicaties
|
||||
Number Of Templates=Aantal sjablonen
|
||||
Number Of Repositories=Aantal bewaarplaatsen
|
||||
Number Of Private Docker Applications=Aantal private Docker applicaties
|
||||
Number Of Invalid Templates=Aantal ongeldige sjablonen
|
||||
Number Of Template Errors=Aantal sjabloonfouten
|
||||
Number Of Blacklisted Apps=Aantal zwarte lijst Apps
|
||||
Number Of Incompatible Applications=Aantal incompatibele applicaties
|
||||
Number Of Deprecated Applications=Aantal verouderde applicaties
|
||||
Number Of Moderation Entries=Aantal moderatie ingangen
|
||||
Primary Server=Primaire server
|
||||
Backup Server=Back-up server
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=Repository overzicht
|
||||
All Invalid Templates Found=Alle ongeldige sjablonen
|
||||
Template Errors=Sjabloon fouten
|
||||
All Moderation Entries=Alle moderatie ingangen
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=Geen geldige sjablonen gevonden
|
||||
These templates are invalid and the application they are referring to is unknown=Deze sjablonen zijn ongeldig en de applicatie waar naar ze verwijzen is onbekend
|
||||
No templates were automatically fixed=Geen sjablonen werden automatisch hersteld
|
||||
All of these errors found have been fixed automatically=Al deze gevonden fouten zijn automatisch hersteld
|
||||
Note that many of these errors can be avoided by following the directions=Letop veel van dez fouten kunnen worden vermeden door de richtlijnen te volgen
|
||||
HERE=HIER
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=De volgende plug-ins hebben dubbele bestandsnamen en kunnen niet gelijktijdig worden geïnstalleerd
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=De volgende docker applicaties verwijzen naar dezelfde docker repository maar kunnen subtiele verschillen in het sjabloon hebben
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=Als een van deze vermeldingen onjuist is, neem dan contact op met de moderators van CA om dit te bespreken
|
||||
Global Repository Comments=Algemene repository commentaar
|
||||
Applied to all applications=(Toegepast op alle applicaties)
|
||||
Individual Application Moderation=Individuele moderatie van applicaties
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Community Applications wijzigingen
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=Back-up
|
||||
Cloud=Cloud
|
||||
Downloaders=Downloaden
|
||||
Game Servers=Spel Servers
|
||||
Home Automation=Domotica
|
||||
Media Applications=Media-applicaties
|
||||
Books=Boeken
|
||||
Music=Muziek
|
||||
Photos=Foto's
|
||||
Video=Video
|
||||
Other=Overige
|
||||
Media Servers=Mediaservers
|
||||
Network Services=Netwerkdiensten
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=Management
|
||||
Messenger=Berichten
|
||||
Proxy=Proxy
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=Productiviteit
|
||||
Security=Beveiliging
|
||||
Tools Utilities=Gereedschap / Hulpprogramma's
|
||||
System=Systeem
|
||||
Themes=Themas
|
||||
Utilities=Hulpprogramma's
|
||||
Private Apps=Privaat Apps
|
||||
Uncategorized=Ongesorteerd
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=Spelletjes
|
||||
HomeAutomation=Domotica
|
||||
MediaApp=MediaApp
|
||||
MediaAppBooks=MediaApp:Boeken
|
||||
MediaAppMusic=MediaApp:Muziek
|
||||
MediaAppPhotos=MediaApp:Fotos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Overige
|
||||
MediaServer=MediaServer
|
||||
MediaServerBooks=MediaServer:Boeken
|
||||
MediaServerMusic=MediaServer:Muziek
|
||||
MediaServerPhotos=MediaServer:Fotos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Overige
|
||||
Network=Netwerk
|
||||
NetworkDNS=Netwerk:DNS
|
||||
NetworkFTP=Netwerk:FTP
|
||||
NetworkManagement=Netwerk:Management
|
||||
NetworkProxy=Netwerk:Proxy
|
||||
NetworkVOIP=Netwerk:VOIP
|
||||
NetworkVPN=Netwerk:VPN
|
||||
NetworkWeb=Netwerk:Web
|
||||
NetworkOther=Netwerk:Overige
|
||||
ToolsSystem=Gereedschap:Systeem
|
||||
ToolsThemes=Gereedschap:Themas
|
||||
ToolsUtilities=Gereedschap:Hulpprogramma's
|
||||
Other=Overige
|
||||
OtherUncategorized=Overige:Ongesorteerd
|
||||
and %s more=en %s meer
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=Donatie aan de auteur
|
||||
Donate To Maintainer=Donatie aan de onderhouder
|
||||
Author=Auteur
|
||||
Maintainer=Onderhouder
|
||||
DockerHub=DockerHub
|
||||
Application Template=Applicatie sjabloon
|
||||
Base OS=Basis OS
|
||||
DockerHub Stars=DockerHub sterren
|
||||
Added to CA=Toevoegd aan CA
|
||||
Date Updated=Datum van bijwerken
|
||||
Current Version=Huidige versie
|
||||
Minimum OS=Minimale OS
|
||||
Max OS=Maximale OS
|
||||
Total Downloads=Totale downloads
|
||||
Licence=Licentie
|
||||
30 Day Trend=30 dagen trend
|
||||
Ranked #%s=Geplaatst #%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=Populair %s
|
||||
; as in As of some date
|
||||
As of %s=(Vanaf %s)
|
||||
This application template has been blacklisted=Deze applicatie / sjabloon staat op de zwarte lijst
|
||||
This application template has been deprecated=Deze applicatie / sjabloon is verouderd
|
||||
This application is not compatible with your version of Unraid=Deze applicatie is niet compatibel met deze versie van Unraid
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Een andere browser pagina of apparaat heeft de getoonde sjablonen bijgewerkt. Sommige acties zijn niet beschikbaar
|
||||
Reinstall default=Herinstalleren (standaard)
|
||||
WebUI=WebUI
|
||||
Reinstall=Herinstalleren
|
||||
Install=Installeren
|
||||
Project=Project
|
||||
Install Using The Templates Default Tag=Installeer gebruikmakend van de sjabloon's Standaard tag
|
||||
Moderator Comments=Moderator Commentaar:
|
||||
Note not all authors keep up to date on change logs=Letop niet alle auteurs houden een wijzigingslog bij
|
||||
Note not all maintainers keep up to date on change logs=Letop niet alle onderhouders houden een wijzigingslog bij
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=Doneren
|
||||
Currently Installed Version=Huidige geïnstalleerde versie:
|
||||
Install The Update=Update installeren
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=Laatste versie
|
||||
Multi Language Support=Ondersteuning voor meerdere talen
|
||||
; as in more than 100000
|
||||
More than %s=Meer dan %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=Trend per maand
|
||||
Downloads Per Month=Downloads per maand
|
||||
Total Downloads=Totaal downloads
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=Installeren van docker applicaties
|
||||
Starting %s=Start %s
|
||||
%s failed to start You should install it by itself to fix the errors=%s niet gestart Je moet deze zelf installeren om fouten te herstellen
|
||||
Setting installed applications to autostart=Instelling geïnstalleerde applicaties voor autostart
|
||||
Docker Application Installation finished=Docker applicatie installatie klaar
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Privaat (dockerHub conversie)
|
||||
Go to the project page=Ga naar de projectpagina
|
||||
Go to the support thread=Ga naar de hulplijn
|
||||
Uninstall Application=Applicatie verwijderen
|
||||
Remove Private Application=Private applicatie verwijderen
|
||||
Remove Application From List=Applicatie verwijderen van lijst
|
||||
Check off to select multiple reinstalls=Vink aan om meerdere herinstallaties te selecteren
|
||||
Go to the plugin settings=Ga naar de plug-in instellingen
|
||||
Click to reinstall the application using default values=Druk om de applicatie te herinstalleren met standaard waarden
|
||||
Click to edit the application values=Druk om de applicatie waarden te bewerken
|
||||
Click to reinstall=Druk om te herinstalleren
|
||||
Click to install=Druk om te installeren
|
||||
Install plugin=Plug-in installeren
|
||||
Click to go to the WebUI=Druk hier om naar de WebUI te gaan
|
||||
This application has been marked as being Beta=Deze applicatie is gemarkeerd als Beta
|
||||
This application template has been deprecated=Dit applicatiesjabloon is verouderd
|
||||
This application is not compatible with your version of Unraid=Deze applicatie is niet compatibel met deze versie van Unraid
|
||||
This application template has been blacklisted=Dit applicatiesjabloon staat op de zwarte lijst
|
||||
Search for more applications from %s=Zoeken naar meer applicaties van %s
|
||||
Click for more information=Druk voor meer informatie
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=Zoeken naar containers van %s
|
||||
Search for similar containers=Zoeken naar gelijksoortige containers
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Weergeven %1$s - %2$s (van %3$s)
|
||||
|
||||
Updating Content=Inhoud bijwerken
|
||||
Language=Taal
|
||||
Switch to this language=Schakel over naar deze taal
|
||||
Country Code=Landcode
|
||||
Install Language Pack=Taalpakket Installeren
|
||||
Remove Language Pack=Taalpakket verwijderen
|
||||
Update Language Pack=Taalpakket bijwerken
|
||||
Installed Version=Geïnstalleerde versie
|
||||
A note about translations=Opmerking over vertalingen
|
||||
Click here to view the language changelog=Hier drukken om het taalwijzigingslogboek
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=Dit geeft aan hoe de resultaten te sorteren
|
||||
These icons respectively will Install or Edit an application=Deze ikonen zullen achtereenvolgens een applicatie **Installeren** of **Bewerken**
|
||||
Clicking these icons will take you to an applications GUI or settings=Klik op deze ikonen om naar de GUI van de applicatie of de instellingen te gaan
|
||||
This will update an application=Dit werkt een applicatie bij
|
||||
This will take you to the appropriate support thread for an application=Dit brengt u bij de passende hulplijn voor een applicatie
|
||||
This will immediately switch to the language=Dit schakelt direct over naar de taal
|
||||
This will take you to the project page for an application=Dit brengt u bij de projectpagina voor een applicatie
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=Druk op dit icoon om de applicatie te verwijderen of weg te halen uit de lijsten, afhankelijk van de huidige sectie
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=Druk op deze ikonen om de applicatie vast te zetten of los te maken voor het bekijken in de Pinned Apps sectie
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=Dit geeft meer informatie over de applicatie. LETOP: U kunt ook op het icoon van de applicatie zelf drukken voor meer informatie.
|
||||
Clicking this will display any warnings or extra comments about the application=Dit geeft uitstaande waarschuwingen of extra commentaar over de applicatie
|
||||
On the previous apps section you can select multiple applications to install simultaneously=Op de vorige apps sectie kunnen meerdere applicaties worden geselecteerd om tegelijkertijd te installeren
|
||||
This is the recommended version to install by the application author themselves=Dit is de aanbevolen versie om te installeren van de applicatiemaker zelf
|
||||
For support for this plugin visit=Voor ondersteuning van deze plug-in
|
||||
To view the policies Community Applications has=Om het beleid van Community Applications te zien
|
||||
Access Mode=Toegangsmodus
|
||||
Add another Path, Port, Variable, Label or Device=Pad, Poort, Variabele, Label of Apparaat toevoegen
|
||||
Add Configuration=Configuratie toevoegen
|
||||
Add=Toevoegen
|
||||
Always=Altijd
|
||||
App to Host=App naar Host
|
||||
Application=Applicatie
|
||||
apply update=bijwerken
|
||||
Array must be Started to view Docker containers=De array moet zijn **Gestart** om Docker containers te zien
|
||||
Are you sure=Weet u het zeker
|
||||
Autostart=Autostart
|
||||
Back=Terug
|
||||
Backup=Back-up
|
||||
Beta=Beta
|
||||
Books=Boeken
|
||||
By=Door
|
||||
Categories=Categorieën
|
||||
Check for Updates=Zoek naar updates
|
||||
Cloud=Cloud
|
||||
Config Type=Config type
|
||||
Configuration not found=Configuratie niet gevonden
|
||||
Connection Type=Connectie type
|
||||
Console shell command=Console shell commando
|
||||
Container ID=Container ID
|
||||
Container Path=Container pad
|
||||
Container Port=Container poort
|
||||
Container Size=Container maat
|
||||
Container=Container
|
||||
CPU Memory load=CPU & Geheugen
|
||||
CPU Pinning=CPU Klemming
|
||||
Created=Gemaakt
|
||||
Default Value=Standaard waarde
|
||||
Device=Apparaat
|
||||
Display=Afbeelden
|
||||
DNS=DNS
|
||||
Docker Containers=Docker Containers
|
||||
Docker Hub URL=Docker Hub URL
|
||||
Docker Service failed to start=Dockerdienst kan niet worden gestart
|
||||
Donation Link=Donatie link
|
||||
Donation Text=Donatie tekst
|
||||
Downloaders=Downloaders
|
||||
Edit Configuration=Configuratie Bewerken
|
||||
Exited=Verlaten
|
||||
Extra Parameters=Extra parameters
|
||||
Fixed IP address=Vast IP adres
|
||||
force update=dwing bijwerken
|
||||
FTP=FTP
|
||||
Game Servers=Spelletjes
|
||||
healthy=gezond
|
||||
Hide Buttons=Verberg knoppen
|
||||
Hide docker allocations=Verberg docker toekenningen
|
||||
Hide more settings=Verberg meer instellingen
|
||||
Home Automation=Domotica
|
||||
Host Path=Host pad
|
||||
Host Port=Host poort
|
||||
HT=HT
|
||||
Icon URL=URL-icoon
|
||||
Image ID=Image ID
|
||||
Key=Teken
|
||||
Label=Label
|
||||
latest=laatste
|
||||
Management=Management
|
||||
MediaApp=MediaApp
|
||||
MediaServer=MediaServer
|
||||
Messenger=Boodschapper
|
||||
Missing parameters=Ontbrekende parameters
|
||||
Music=Muziek
|
||||
Network Type=Netwerk type
|
||||
No Docker containers installed=Geen Docker containers geïnstalleerd
|
||||
of=van
|
||||
orphan image=Wees-image
|
||||
Other=Anders
|
||||
Overview=Overzicht
|
||||
Path=Pad
|
||||
Pause All=Alles pauzeren
|
||||
Photos=Foto's
|
||||
Port Mappings=Poortindeling
|
||||
Port=Poort
|
||||
Post Arguments=Meer argumenten
|
||||
Privileged=Bevoorrecht
|
||||
Productivity=Productiviteit
|
||||
Project Page=Projectpagina
|
||||
Proxy=Proxy
|
||||
Pulling image=Image ophalen
|
||||
Read Only - Shared=Alleen Lezen - Gedeeld
|
||||
Read Only - Slave=Alleen Lezen - Slaaf
|
||||
Read Only=Alleen Lezen
|
||||
ReadWrite - Shared=Lezen/Schrijven - Gedeeld
|
||||
ReadWrite - Slave=Lezen/Schrijven - Slaaf
|
||||
rebuild ready=herbouw klaar
|
||||
rebuilding=herbouwen
|
||||
Remove template=Sjabloon verwijderen
|
||||
Removing container=Container verwijderen
|
||||
Removing orphan image=Wees-image verwijderen
|
||||
Repository=Bewaarplaats
|
||||
Required=Verplicht
|
||||
Resume All=Alles hervatten
|
||||
Save=Opslaan
|
||||
Select a template=Selecteer een sjabloon
|
||||
Select categories=Selecteer categorieën
|
||||
Show docker allocations=Toon docker toekenningen
|
||||
Show more settings=Toon meer instellingen
|
||||
Stable=Stabiel
|
||||
Start All=Alles starten
|
||||
starting up containers=containers opstarten
|
||||
Stop All=Alles stoppen
|
||||
Stopping container=Container stoppen
|
||||
Successfully removed container=Container succesvol verwijderd
|
||||
Successfully removed orphan image=Wees-image succesvol verwijderd
|
||||
Successfully stopped container=Container succesvol gestopt
|
||||
Support Thread=Ondersteuningsdraad
|
||||
Template repositories=Sjabloonopslagplaatsen
|
||||
Template URL=Sjabloon URL
|
||||
Template=Sjabloon
|
||||
The command failed=De opdracht is mislukt
|
||||
The command finished successfully=De opdracht is succesvol uitgevoerd
|
||||
TOTAL DATA PULLED=TOTALE GEGEVENS OPGEHAALD
|
||||
Unknown action=Onbekende actie
|
||||
Update All=Alles bijwerken
|
||||
update ready=update gereed
|
||||
Value=Waarde
|
||||
Variable=Variabele
|
||||
Video=Video
|
||||
Voip=Voip
|
||||
Volume Mappings=Volume indeling
|
||||
wait=wacht
|
||||
Was this container created using this plugin=Is deze container gemaakt m.b.v. deze plug-in
|
||||
Web=Web
|
||||
WebUI=Venster
|
||||
Writable=Schrijfbaar
|
||||
Absolute=Absoluut
|
||||
Acknowledge=Bevestigen
|
||||
Active=Actief
|
||||
active=actief
|
||||
Actual results=Feitelijk resultaat
|
||||
Add Container=Container toevoegen
|
||||
Add VM=VM aanmaken
|
||||
Advanced View=Geavanceerd
|
||||
AFP Security Settings=AFP Beveiligsinstellingen
|
||||
All=Alles
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Maak diagnostiek anoniem (kan het probleemoplossen lastiger maken)
|
||||
Apply=Toepassen
|
||||
Apps=Apps
|
||||
Array must be Stopped to change=De array moet worden **gestopt** om veranderingen te maken
|
||||
Array Started=De array is gestart
|
||||
Array Starting=De array starten
|
||||
Array Stopped=De array is gestopt
|
||||
Array Stopping=De array stoppen
|
||||
Array=Array
|
||||
Attributes=Attributen
|
||||
Auto=Auto
|
||||
Automatic=Automatisch
|
||||
Average speed=Gemiddelde snelheid
|
||||
Azure=Azuur
|
||||
B=B
|
||||
Back To Top=Terug naar Boven
|
||||
Basic=Basic
|
||||
Basic View=Standaard
|
||||
BIOS=BIOS
|
||||
Black=Zwart
|
||||
Browse=Blader
|
||||
Browser error=Browser fout
|
||||
btrfs=btrfs
|
||||
Bug Description=Bug Beschrijving
|
||||
Bug Report=Bug Rapport
|
||||
bytes=bytes
|
||||
Cancel=Annuleren
|
||||
Capabilities=Mogelijkheden
|
||||
Case-sensitive names=Hoofdlettergevoelige namen
|
||||
Center=Midden
|
||||
Change=Veranderen
|
||||
Check=Controleren
|
||||
Clear=Legen
|
||||
Clearing=Legen
|
||||
Click for context menu=Toon contextmenu
|
||||
Click=Drukken
|
||||
close all notifications=sluit alle meldingen
|
||||
Close=Sluiten
|
||||
close=sluiten
|
||||
Comment=Aantekening
|
||||
Contact Email Address=Email contactadres
|
||||
Contact Support=Contacteer Support
|
||||
containing your key file URL=welke de URL bevat voor uw sleutelbestand
|
||||
Copy=Kopiëren
|
||||
CPU=CPU
|
||||
Dashboard=Paneel
|
||||
day=dag
|
||||
%s day ago=%s dag geleden
|
||||
%s days ago=%s dagen geleden
|
||||
Days_array=Sunday:zondag Monday:maandag Tuesday:dinsdag Wednesday:woensdag Thursday:donderdag Friday:vrijdag Saturday:zaterdag Sun:zon Mon:maa Tue:din Wed:woe Thu:don Fri:vrij Sat:zat
|
||||
days=dagen
|
||||
Default=Standaard
|
||||
default=standaard
|
||||
Delete=Verwijderen
|
||||
Description=Beschrijving
|
||||
Device contents emulated, in standby mode spun-down=Opslaginhoud geëmuleerd, in wachttoestand (inactief)
|
||||
Device contents emulated=Opslaginhoud geëmuleerd
|
||||
Device is disabled, contents emulated=Opslag is uitgeschakeld, inhoud geëmuleerd
|
||||
Device is in standby mode spun-down=Opslag is in wachttoestand (inactief)
|
||||
Device is missing disabled, contents emulated=Opslag ontbreekt (uitgeschakeld), inhoud geëmuleerd
|
||||
Device not present=Geen opslag aanwezig
|
||||
Device=Opslag
|
||||
directories=mappen
|
||||
directory=map
|
||||
Disabled=Uitgeschakeld
|
||||
disabled=uitgeschakeld
|
||||
Disk=Schijf
|
||||
disk=schijf
|
||||
Do you want to update to the new version=Bijwerken naar nieuwe versie
|
||||
Docker=Docker
|
||||
Done=Klaar
|
||||
Download=Downloaden
|
||||
Duration=Duur
|
||||
Edit=Bewerken
|
||||
edit=bewerken
|
||||
Emulated=Geëmuleerd
|
||||
emulated=geëmuleerd
|
||||
Enabled=Ingeschakeld
|
||||
enabled=ingeschakeld
|
||||
Encrypted and unlocked=Versleuteld en ontgrendeld
|
||||
Error code=Foutcode
|
||||
Error=Fout
|
||||
error=fout
|
||||
Errors=Fouten
|
||||
errors=fouten
|
||||
Expected results=Verwachte resultaat
|
||||
Export=Exporteren
|
||||
Faulty=Foutief
|
||||
faulty=foutief
|
||||
Feedback=Contact
|
||||
File too large=Bestand te groot
|
||||
file=bestand
|
||||
files=bestanden
|
||||
Fixed=Vast
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Flash Produkt
|
||||
Flash Vendor=Flash Leverancier
|
||||
FOLDER=MAP
|
||||
folder=map
|
||||
Force lower=Dwing kleine letters
|
||||
Format=Formateren
|
||||
Formatting devices=Formateren opslag
|
||||
Forum=Forum
|
||||
GB=GB
|
||||
Go to Registration page=Ga naar Registratiepagina
|
||||
GPT 4KiB-aligned=GPT: 4KiB-uitgelijnd
|
||||
Gray=Grijs
|
||||
Guests have no access=Gasten hebben **geen** toegang
|
||||
Guests have read-only access=Gasten hebben **leesrechten**
|
||||
Heat alarm=Hitte alarm
|
||||
Help=Hulp
|
||||
here=hier
|
||||
History=Overzicht
|
||||
hour=uur
|
||||
hours=uren
|
||||
%s hour ago=%s uur geleden
|
||||
%s hours ago=%s uren geleden
|
||||
How to reproduce=Hoe te reproduceren
|
||||
hr=uur
|
||||
HVM=HVM
|
||||
Identity=Identiteit
|
||||
Inactive=Inactief
|
||||
Index of=Inhoud van
|
||||
Info=Informatie
|
||||
Install Key=Sleutel Installeren
|
||||
interface down=koppelvlak uit
|
||||
Interface=Koppelvlak
|
||||
IOMMU=IOMMU
|
||||
is available=is beschikbaar
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Laatst gewijzigd
|
||||
Left=Links
|
||||
less than a minute remaining=minder dan een minuut resterend
|
||||
less than a minute=minder dan een minuut
|
||||
Load=Lading
|
||||
Location=Locatie
|
||||
Locked missing encryption key=Vergrendeld: ontbrekende versleutingssleutel
|
||||
Locked unknown error=Vergrendeld: onbekende fout
|
||||
Locked wrong encryption key=Vergrendeld: verkeerde versleutingssleutel
|
||||
Log=Log
|
||||
Login=Inloggen
|
||||
Logout=Uitloggen
|
||||
Main=Hoofdmenu
|
||||
manual=handleiding
|
||||
max installable capacity=max. installeerbare capaciteit
|
||||
Maximum file upload size is 512K=Maximale bestandsgrootte is 512K
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-uitgelijnd
|
||||
MBR 4KiB-aligned=MBR: 4KiB-uitgelijnd
|
||||
MBR unaligned=MBR: ongeplaatst
|
||||
Memory=Geheugen
|
||||
min=min
|
||||
minute=minuut
|
||||
minutes=minuten
|
||||
%s minute ago=%s minuut geleden
|
||||
%s minutes ago=%s minuten geleden
|
||||
Model=Model
|
||||
%s month ago=%s maand geleden
|
||||
%s months ago=%s maanden geleden
|
||||
Months_array=January:januari February:februari March:maart April:april May:mei June:juni July:juli August:augustus September:september October:oktober November:november December:december Jan:jan Feb:feb Mar:maa Apr:apr May:mei Jun:jun Jul:jul Aug:aug Sep:sep Oct:okt Nov:nov Dec:dec
|
||||
months=maanden
|
||||
More=Meer
|
||||
Motherboard=Moederbord
|
||||
Move=Verplaatsen
|
||||
NA=N/B
|
||||
Name=Naam
|
||||
Network=Netwerk
|
||||
Never=Nooit
|
||||
New device, in standby mode spun-down=Nieuwe opslag, in wachttoestand (inactief)
|
||||
New device=Nieuwe opslag
|
||||
NFS Security Settings=NFS Beveiligsinstellingen
|
||||
No Access=Geen Toegang
|
||||
No device=Geen opslag
|
||||
no device=geen opslag
|
||||
No errors reported=Geen fouten gevonden
|
||||
No information available=Geen informatie beschikbaar
|
||||
No listing Too many files=Geen lijst: Teveel bestanden
|
||||
No reply from mail server=Geen antwoord van mail server
|
||||
No=Nee
|
||||
no=nee
|
||||
None=Geen
|
||||
none=geen
|
||||
Normal operation, device is active=Normale toestand, opslag is actief
|
||||
Normal=Standaard
|
||||
Normalized=Genormaliseerd
|
||||
Not Available=Niet Beschikbaar
|
||||
not available=niet beschikbaar
|
||||
not connected=niet aangesloten
|
||||
Not encrypted=Niet versleuteld
|
||||
not encrypted=niet versleuteld
|
||||
NOTE=LETOP
|
||||
Numbers_array=thirty:dertig twenty-nine:negenentwintig twenty-eight:achtentwintig twenty-seven:zevenentwintig twenty-six:zesentwintig twenty-five:vijfentwintig twenty-four:vierentwintig twenty-three:drieëntwintig twenty-two:tweeëntwintig twenty-one:eenentwintig twenty:twintig nineteen:negentien eighteen:achttien seventeen:zeventien sixteen:zestien fifteen:vijftien fourteen:veertien thirteen:dertien twelve:twaalf eleven:elf ten:tien nine:negen eight:acht seven:zeven six:zes five:vijf four:vier three:drie two:twee one:een zero:nul
|
||||
objects=objecten
|
||||
Off=Uit
|
||||
off-line=offline
|
||||
OK=OKÉ
|
||||
Ok=Oké
|
||||
ok=oké
|
||||
On=Aan
|
||||
Online Manual=Online Handleiding
|
||||
Online manual=Online handleiding
|
||||
OpenSSL=OpenSSL
|
||||
optional=optioneel
|
||||
Other Comment=Andere Opmerking
|
||||
Other information=Andere informatie
|
||||
Parity device is disabled=Pariteitopslag is uitgeschakeld
|
||||
Parity device is missing=Pariteitopslag ontbreekt
|
||||
Parity is invalid, in standby mode spun-down=Pariteit is ongeldig, in wachttoestand (inactief)
|
||||
Parity is invalid=Pariteit is ongeldig
|
||||
Parity is valid=Pariteit is geldig
|
||||
Parity=Pariteit
|
||||
parity=pariteit
|
||||
Parity-Check=Pariteitcontrole
|
||||
Parity-Sync Data-Rebuild=Pariteitsync / Gegevensherbouw
|
||||
Pause=Pauzeren
|
||||
Paused=Gepauzeerd
|
||||
paused=gepauzeerd
|
||||
PB=PB
|
||||
Please select one file only=Selecteer slechts één bestand
|
||||
Please summarize your suggestion here=Schrijf hier uw beknopte suggestie
|
||||
Please try again later=Probeer het later nogeens
|
||||
Please wait=Even wachten
|
||||
Plugins=Plug-ins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privaat
|
||||
Pro=Pro
|
||||
Proceed=Doorgaan
|
||||
Processor=Processor
|
||||
Product Suggestion=Produkt Suggestie
|
||||
Public=Openbaar
|
||||
RAM=RAM
|
||||
Raw=Onbewerkt
|
||||
Read=Lezen
|
||||
Read settings from=Lees instellingen van
|
||||
Read-Check=Leescontrole
|
||||
Read-only=Enkel lezen
|
||||
Reads=Lezen
|
||||
ReadWrite=Lezen/Schrijven
|
||||
Reboot Now=Herstart Nu
|
||||
Reboot=Herstarten
|
||||
Refresh=Verversen
|
||||
Registration=Registratie
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Uitgavenotities
|
||||
Remove=Verwijderen
|
||||
Renew=Hernieuwen
|
||||
Reset=Herzetten
|
||||
Restart=Herstarten
|
||||
Resume=Hervatten
|
||||
Right=Rechts
|
||||
RPM=TPM
|
||||
Running=Werkend
|
||||
running=werkend
|
||||
safe mode=veilige modus
|
||||
sec=sec
|
||||
second=seconde
|
||||
seconds=seconden
|
||||
%s second ago=%s seconde geleden
|
||||
%s seconds ago=%s seconden geleden
|
||||
Secure=Veilig
|
||||
Security=Beveiliging
|
||||
Security Settings=Beveiligingsinstellingen
|
||||
select=selecteer
|
||||
Self-Test=Zelftest
|
||||
Server=Systeem
|
||||
Settings=Instellingen
|
||||
Share=Map
|
||||
Share name=Mapnaam
|
||||
Shares List=Mappenlijst
|
||||
Shares=Mappen
|
||||
Shutdown=Uitschakelen
|
||||
Size=Maat
|
||||
SMB Security Settings=SMB Beveiligsinstellingen
|
||||
sn=s/n
|
||||
Sorry, an error occurred=Sorry, een fout is opgetreden
|
||||
Standby=Inactief
|
||||
standby=inactief
|
||||
Start=Starten
|
||||
Started=Gestart
|
||||
started=gestart
|
||||
Status=Status
|
||||
status=status
|
||||
Stop=Stoppen
|
||||
Stopped=Gestopt
|
||||
stopped=gestopt
|
||||
Streams=Stromen
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Verzenden van dit bug rapport stuurt automatisch uw systeemdiagnostieken naar Lime Technology
|
||||
Submit=Verzenden
|
||||
System Information=Systeeminformatie
|
||||
System is going down=Systeem wordt gestopt
|
||||
System is offline=Systeem is offline
|
||||
System is powered off=Systeem is uitgezet
|
||||
System is rebooting=Systeem wordt opnieuw gestart
|
||||
System Log=Systeem Log
|
||||
System notifications are=Systeemmeldingen zijn
|
||||
System running in=Systeem draait in
|
||||
System=Systeem
|
||||
TB=TB
|
||||
Temperature=Temperatuur
|
||||
Template Repositories=Sjabloonopslagplaatsen
|
||||
Terminal=Terminal
|
||||
Test result=Test resultaat
|
||||
Thank You=Bedankt
|
||||
The error is=De fout is
|
||||
to change notification settings=systeemmeldingen aan te passen
|
||||
to downgrade Unraid OS=om Unraid OS te herstellen
|
||||
to upgrade Unraid OS=om Unraid OS bij te werken
|
||||
today=vandaag
|
||||
Too many files=Teveel bestanden
|
||||
Tools=Gereedschap
|
||||
Total=Totaal
|
||||
total=totaal
|
||||
Type your question or comment to Lime Technology here=Schrijf hier uw vraag aan Lime Technology
|
||||
Type=Type
|
||||
Unable to generate system diagnostics=Niet mogelijk om systeem diagnostieken te maken
|
||||
Unassigned=Vacant
|
||||
unassigned=vacant
|
||||
Unknown=Onbekend
|
||||
unknown=onbekend
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Container bijwerken
|
||||
Update Now=Nu bijwerken
|
||||
Update VM=VM bijwerken
|
||||
Update=Bijwerken
|
||||
update=bijwerken
|
||||
Updated=Bijgewerkt
|
||||
Upload error=Upload fout
|
||||
Upload=Uploaden
|
||||
Uptime=Looptijd
|
||||
up-to-date=bijgewerkt
|
||||
User Access=Gebruikerstoegang
|
||||
Users=Gebruikers
|
||||
Utilization=Verbruik
|
||||
Version=Versie
|
||||
View Release Notes=Bekijk Uitgavenotities
|
||||
View=Bekijken
|
||||
VMs=VMs
|
||||
VPN=VPN
|
||||
Warning=Alarm
|
||||
Website=Website
|
||||
%s week ago=%s week geleden
|
||||
%s weeks ago=%s weken geleden
|
||||
White=Wit
|
||||
Wiki=Wiki
|
||||
Write=Schrijven
|
||||
Write settings to=Schrijf instellingen naar
|
||||
Wrong=Verkeerd
|
||||
wrong=verkeerd
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Ja, ik wil dit doen
|
||||
Yes=Ja
|
||||
yes=ja
|
||||
Yes hidden=Ja (verborgen)
|
||||
Yes Time Machine=Ja (Time Machine)
|
||||
YesTime Machine hidden=Ja/Time Machine (verborgen)
|
||||
YesTime Machine=Ja/Time Machine
|
||||
yesterday=gisteren
|
||||
You must reboot for changes to take effect=Herstarten is nodig om veranderingen actief te maken
|
||||
Your browser does not support HTML5 file uploads=De browser ondersteunt geen HTML5 bestandsuploads
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=De array is bezet
|
||||
Buttons=Knoppen
|
||||
Parity operation or mover is running=Pariteitsbewerking of mover is actief
|
||||
preparing for reboot=voorbereiden van herstarten
|
||||
preparing for shutdown=voorbereiden van uitschakelen
|
||||
Sleep=Slapen
|
||||
Start Array=De array starten
|
||||
starting the array=starten van de array
|
||||
Stop Array=De array stoppen
|
||||
stopping the array=stoppen van de array
|
||||
System in sleep mode=Systeem in slaapmodus
|
||||
This will put the system to sleep=Dit zet het systeem in slaapmodus
|
||||
This will reboot the system=Dit zal het systeem herstarten
|
||||
This will shutdown the system=Dit zal het systeem uitschakelen
|
||||
This will start the array=Dit zal de array starten
|
||||
This will stop the array=Dit zal de array stoppen
|
862
languages/no_NO
Normal file
862
languages/no_NO
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=
|
||||
Happy Holidays from Andrew, Tracey, and family=
|
||||
Please Enjoy Responsibly=
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=
|
||||
Sorting options unavailable=
|
||||
Sort By Name Ascending=
|
||||
Sort By Name Descending=
|
||||
Sort By Downloads=
|
||||
Sort By Trend=
|
||||
Sort By Date Added=
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=
|
||||
Application Policy=
|
||||
I Understand=
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=
|
||||
Click here=
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
|
||||
Plugin Note=
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=
|
||||
Please enter search term=
|
||||
Click Here To Get More Results From DockerHub=
|
||||
No Matching Applications Found On Docker Hub=
|
||||
No Matching Applications Found=
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=
|
||||
Yes, delete it=
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=
|
||||
Yes uninstall it=
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=
|
||||
Yes, remove it=
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=
|
||||
Click to unpin this application=
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=
|
||||
|
||||
Yes, install it=
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=
|
||||
Updating Support Links=
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=
|
||||
An error occurred Could not find any %s Apps=
|
||||
Download of appfeed failed=
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=
|
||||
Installed Apps=
|
||||
Previous Apps=
|
||||
Pinned Apps=
|
||||
CATEGORIES=
|
||||
New Apps=
|
||||
Updated Apps=
|
||||
Random Apps=
|
||||
Top New Installs=
|
||||
Trending Apps=
|
||||
All Apps=
|
||||
OTHER=
|
||||
Statistics=
|
||||
Credits=
|
||||
Support=
|
||||
VERSION=
|
||||
Change Log=
|
||||
|
||||
; Credits
|
||||
Development=
|
||||
Additional Contributions=
|
||||
GUI Layout Design=
|
||||
Application Feed=
|
||||
Additional Testing=
|
||||
Moderation=
|
||||
Additional Libraries=
|
||||
Copyright=
|
||||
Translation=
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=
|
||||
This display is informational ONLY=
|
||||
unknown=
|
||||
Last Change To Application Feed=
|
||||
Number Of Docker Applications=
|
||||
Number Of Plugin Applications=
|
||||
Number Of Templates=
|
||||
Number Of Repositories=
|
||||
Number Of Private Docker Applications=
|
||||
Number Of Invalid Templates=
|
||||
Number Of Template Errors=
|
||||
Number Of Blacklisted Apps=
|
||||
Number Of Incompatible Applications=
|
||||
Number Of Deprecated Applications=
|
||||
Number Of Moderation Entries=
|
||||
Primary Server=
|
||||
Backup Server=
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=
|
||||
All Invalid Templates Found=
|
||||
Template Errors=
|
||||
All Moderation Entries=
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=
|
||||
These templates are invalid and the application they are referring to is unknown=
|
||||
No templates were automatically fixed=
|
||||
All of these errors found have been fixed automatically=
|
||||
Note that many of these errors can be avoided by following the directions=
|
||||
HERE=
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=
|
||||
Global Repository Comments=
|
||||
Applied to all applications=(Applied to all applications)
|
||||
Individual Application Moderation=
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=
|
||||
Cloud=
|
||||
Downloaders=
|
||||
Game Servers=
|
||||
Home Automation=
|
||||
Media Applications=
|
||||
Books=
|
||||
Music=
|
||||
Photos=
|
||||
Video=
|
||||
Other=
|
||||
Media Servers=
|
||||
Network Services=
|
||||
DNS=
|
||||
FTP=
|
||||
Management=
|
||||
Messenger=
|
||||
Proxy=
|
||||
VOIP=
|
||||
VPN=
|
||||
Web=
|
||||
Productivity=
|
||||
Security=
|
||||
Tools Utilities=Tools / Utilities
|
||||
System=
|
||||
Themes=
|
||||
Utilities=
|
||||
Private Apps=
|
||||
Uncategorized=
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=
|
||||
HomeAutomation=
|
||||
MediaApp=
|
||||
MediaAppBooks=MediaApp:Books
|
||||
MediaAppMusic=MediaApp:Music
|
||||
MediaAppPhotos=MediaApp:Photos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Other
|
||||
MediaServer=
|
||||
MediaServerBooks=MediaServer:Books
|
||||
MediaServerMusic=MediaServer:Music
|
||||
MediaServerPhotos=MediaServer:Photos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Other
|
||||
Network=
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Management
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Other
|
||||
ToolsSystem=Tools:System
|
||||
ToolsThemes=Tools:Themes
|
||||
ToolsUtilities=Tools:Utilities
|
||||
Other=
|
||||
OtherUncategorized=Other:Uncategorized
|
||||
and %s more=
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=
|
||||
Donate To Maintainer=
|
||||
Author=
|
||||
Maintainer=
|
||||
DockerHub=
|
||||
Application Template=
|
||||
Base OS=
|
||||
DockerHub Stars=
|
||||
Added to CA=
|
||||
Date Updated=
|
||||
Current Version=
|
||||
Minimum OS=
|
||||
Max OS=
|
||||
Total Downloads=
|
||||
Licence=
|
||||
30 Day Trend=
|
||||
Ranked #%s=
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=This application / template has been blacklisted
|
||||
This application template has been deprecated=This application / template has been deprecated
|
||||
This application is not compatible with your version of Unraid=
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Another browser tab or device has updated the displayed templates. Some actions are not available
|
||||
Reinstall default=Reinstall (default)
|
||||
WebUI=
|
||||
Reinstall=
|
||||
Install=
|
||||
Project=
|
||||
Install Using The Templates Default Tag=Install Using The Template's Default Tag
|
||||
Moderator Comments=Moderator Comments:
|
||||
Note not all authors keep up to date on change logs=
|
||||
Note not all maintainers keep up to date on change logs=
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=
|
||||
Currently Installed Version=
|
||||
Install The Update=
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=
|
||||
Multi Language Support=
|
||||
; as in more than 100000
|
||||
More than %s=
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=
|
||||
Downloads Per Month=
|
||||
Total Downloads=
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=
|
||||
Starting %s=
|
||||
%s failed to start You should install it by itself to fix the errors=
|
||||
Setting installed applications to autostart=
|
||||
Docker Application Installation finished=
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=
|
||||
Go to the support thread=
|
||||
Uninstall Application=
|
||||
Remove Private Application=
|
||||
Remove Application From List=
|
||||
Check off to select multiple reinstalls=
|
||||
Go to the plugin settings=
|
||||
Click to reinstall the application using default values=
|
||||
Click to edit the application values=
|
||||
Click to reinstall=
|
||||
Click to install=
|
||||
Install plugin=
|
||||
Click to go to the WebUI=
|
||||
This application has been marked as being Beta=
|
||||
This application template has been deprecated=
|
||||
This application is not compatible with your version of Unraid=
|
||||
This application template has been blacklisted=
|
||||
Search for more applications from %s=
|
||||
Click for more information=
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=
|
||||
Search for similar containers=
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Displaying %1$s - %2$s (of %3$s)
|
||||
|
||||
Updating Content=
|
||||
Language=
|
||||
Switch to this language=
|
||||
Country Code=
|
||||
Install Language Pack=
|
||||
Remove Language Pack=
|
||||
Update Language Pack=
|
||||
Installed Version=
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=
|
||||
These icons respectively will Install or Edit an application=
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicking these icons will take you to an application's GUI or settings
|
||||
This will update an application=
|
||||
This will take you to the appropriate support thread for an application=
|
||||
This will immediately switch to the language=
|
||||
This will take you to the project page for an application=
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=
|
||||
Clicking this will display any warnings or extra comments about the application=
|
||||
On the previous apps section you can select multiple applications to install simultaneously=
|
||||
This is the recommended version to install by the application author themselves=
|
||||
For support for this plugin visit=
|
||||
To view the policies Community Applications has=
|
||||
Access Mode=Tilgangsmodus
|
||||
Add another Path, Port, Variable, Label or Device=Legg til Sti, Port, Variabel, Merkelapp eller Enhet
|
||||
Add Configuration=Legg til konfigurasjon
|
||||
Add=Legg til
|
||||
Always=Alltid
|
||||
App to Host=Program til Vert
|
||||
Application=Program
|
||||
apply update=Legg til oppdatering
|
||||
Array must be Started to view Docker containers=Arrayet må være **startet** for å se Dockercontainere
|
||||
Are you sure=Er du sikker
|
||||
Autostart=Autostart
|
||||
Back=Tilbake
|
||||
Backup=Sikkerhetskopi
|
||||
Beta=Beta
|
||||
Books=Bøker
|
||||
By=Av
|
||||
Categories=Kategorier
|
||||
Check for Updates=Se etter oppdateringer
|
||||
Cloud=Sky
|
||||
Config Type=Konfigurationstype
|
||||
Configuration not found=Konfigurasjon ikke funnet
|
||||
Connection Type=Tilkoblingstype
|
||||
Console shell command=Konsoll shell kommando
|
||||
Container ID=Container ID
|
||||
Container Path=Container sti
|
||||
Container Port=Container port
|
||||
Container Size=Container størrelse
|
||||
Container=Container
|
||||
CPU Memory load=CPU minnelast
|
||||
CPU Pinning=CPU trådfordeling
|
||||
Created=Opprettet
|
||||
Default Value=Standardverdi
|
||||
Device=Enhet
|
||||
Display=Skjerm
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=Docker HUB URL
|
||||
Docker Service failed to start=Dockertjenester kunne ikke starte
|
||||
Donation Link=Donasjonslink
|
||||
Donation Text=Donasjonstekst
|
||||
Downloaders=Nedlastere
|
||||
Edit Configuration=Rediger konfigurasjon
|
||||
Exited=Avsluttet
|
||||
Extra Parameters=Ekstra parametere
|
||||
Fixed IP address=Låst IP-adresse
|
||||
force update=tving oppdatering
|
||||
FTP=FTP
|
||||
Game Servers=Spillservere
|
||||
healthy=frisk
|
||||
Hide Buttons=Skjul knapp
|
||||
Hide docker allocations=Skjul dockertildelinger
|
||||
Hide more settings=Skjul flere innstillinger
|
||||
Home Automation=Hjemautomatisering
|
||||
Host Path=Vertsti
|
||||
Host Port=Vertsport
|
||||
HT=HT
|
||||
Icon URL=Ikon URL
|
||||
Image ID=Bilde ID
|
||||
Key=Nøkkel
|
||||
Label=Etikett
|
||||
latest=siste
|
||||
Management=Styring
|
||||
MediaApp=Mediaprogram
|
||||
MediaServer=Mediaserver
|
||||
Messenger=Meldinger
|
||||
Missing parameters=Mangler parametere
|
||||
Music=Musikk
|
||||
Network Type=Nettverkstype
|
||||
No Docker containers installed=Antall Dockercontainere som er installert
|
||||
of=av
|
||||
orphan image=Avsondet bildefil
|
||||
Other=Annet
|
||||
Overview=Oversikt
|
||||
Path=Sti
|
||||
Pause All=Pause alle
|
||||
Photos=Bilder
|
||||
Port Mappings=Portkobling
|
||||
Port=Port
|
||||
Post Arguments=Avslutningsargumenter
|
||||
Privileged=Priviligert
|
||||
Productivity=Produktivitet
|
||||
Project Page=Prosjektside
|
||||
Proxy=Mellomtjener
|
||||
Pulling image=Henter bildefil
|
||||
Read Only - Shared=Kun lesetilgang - Delt
|
||||
Read Only - Slave=Kun lesetilgang - Slave
|
||||
Read Only=Kun lesetilgang
|
||||
ReadWrite - Shared=Lese-/skrivetilgang - Delt
|
||||
ReadWrite - Slave=Lese-/skrivetilgang - Slave
|
||||
rebuild ready=gjenoppbygging klar
|
||||
rebuilding=gjenoppbygger
|
||||
Remove template=Fjern mal
|
||||
Removing container=Fjerner container
|
||||
Removing orphan image=Fjerner avsondet bildefil
|
||||
Repository=Depot
|
||||
Required=Påkrevd
|
||||
Resume All=Gjenoppta alle
|
||||
Save=Lagre
|
||||
Select a template=Velg en mal
|
||||
Select categories=Velg kategori
|
||||
Show docker allocations=Vis dockertildelinger
|
||||
Show more settings=Vis flere innstillinger
|
||||
Stable=Stabil
|
||||
Start All=Start alle
|
||||
starting up containers=starter containere
|
||||
Stop All=Stopp alle
|
||||
Stopping container=stopper containere
|
||||
Successfully removed container=Fjerning av containere var vellykket
|
||||
Successfully removed orphan image=Fjerning av avsondede bildefiler var vellykket
|
||||
Successfully stopped container=Stopping av containere var vellykket
|
||||
Support Thread=Brukerstøtte
|
||||
Template repositories=Mal depot
|
||||
Template URL=Mal URL
|
||||
Template=Mal
|
||||
The command failed=Kommandoen feilet
|
||||
The command finished successfully=Kommandoen fullførte
|
||||
TOTAL DATA PULLED=
|
||||
Unknown action=Ukjent handling
|
||||
Update All=Oppdater alle
|
||||
update ready=oppdatering er klar
|
||||
Value=Verdi
|
||||
Variable=Variabel
|
||||
Video=Video
|
||||
Voip=VoIP
|
||||
Volume Mappings=Områdekoblinger
|
||||
wait=vent
|
||||
Was this container created using this plugin=Ble denne containeren skapt med dette programtillegget
|
||||
Web=Web
|
||||
WebUI=Webgrensesnitt
|
||||
Writable=Skrivetilgang
|
||||
Absolute=Absolutt
|
||||
Acknowledge=Bekreft
|
||||
Active=Aktiv
|
||||
active=aktiv
|
||||
Actual results=Faktiske resultater
|
||||
Add Container=Legg til container
|
||||
Add VM=Legg til VM
|
||||
Advanced View=Avansert visning
|
||||
AFP Security Settings=AFP sikkerhetsinnstillinger
|
||||
All=Alle
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Anonymiser diadnostikk (kan gjøre feilsøking vanskeligere)
|
||||
Apply=Lagre
|
||||
Apps=Apps
|
||||
Array must be Stopped to change=Arrayet være **stoppet** for å endre
|
||||
Array Started=Arrayet er startet
|
||||
Array Starting=Arrayet starter
|
||||
Array Stopped=Arrayet er stoppet
|
||||
Array Stopping=Arrayet stopper
|
||||
Array=Array
|
||||
Attributes=Attributter
|
||||
Auto=Auto
|
||||
Automatic=Automatisk
|
||||
Average speed=Gj.snitt hastighet
|
||||
Azure=Azure
|
||||
B=B
|
||||
Back To Top=Tilbake til toppen
|
||||
Basic=Grunnleggende
|
||||
Basic View=Grunnleggende visning
|
||||
BIOS=BIOS
|
||||
Black=Svart
|
||||
Browse= Bla igjennom
|
||||
Browser error=Nettleserfeil
|
||||
btrfs=btrfs
|
||||
Bug Description=Feilbeskrivelse
|
||||
Bug Report=Feilrapport
|
||||
bytes=bytes
|
||||
Cancel=Avbryt
|
||||
Capabilities=Funksjoner
|
||||
Case-sensitive names=Sensitiv for store og små bokstaver
|
||||
Center=Senter
|
||||
Change=Endre
|
||||
Check=Sjekk
|
||||
Clear=Slett
|
||||
Clearing=Sletter
|
||||
Click for context menu=Klikk for meny
|
||||
Click=Klikk
|
||||
close all notifications=Lukk alle varsler
|
||||
Close=Lukk
|
||||
close=lukk
|
||||
Comment=Kommentar
|
||||
Contact Email Address=E-postadresse
|
||||
Contact Support=Kontakt brukerstøtte
|
||||
containing your key file URL=inneholder URL til din nøkkelfil
|
||||
Copy=Kopier
|
||||
CPU=CPU
|
||||
Dashboard=Dashbord
|
||||
day=dag
|
||||
day ago=dag siden
|
||||
days ago=dager siden
|
||||
Days_array=Sunday:Søndag Monday:Mandag Tuesday:Tirsdag Wednesday:Onsdag Thursday:Torsdag Friday:Fredag Saturday:Lørdag Sun:Søn Mon:Man Tue:Tir Wed:Ons Thu:Tor Fri:Fre Sat:Lør
|
||||
days=dager
|
||||
Default=Standard
|
||||
default=standard
|
||||
Delete=Slett
|
||||
Description=Beskrivelse
|
||||
Device contents emulated, in standby mode spun-down=Enhetens innhold er emulert, er i hvilemodus (spunnet ned)
|
||||
Device contents emulated=Enhetens innhold er emulert
|
||||
Device is disabled, contents emulated=Enheten er deaktivert, innholdet er emulert
|
||||
Device is in standby mode spun-down=Enheten er i hvilemodus (spunnet ned)
|
||||
Device is missing disabled, contents emulated=Enheten mangler (deaktivert), innholdet er emulert
|
||||
Device not present=Enheten er ikke tilstede
|
||||
Device=Enheten
|
||||
directories=kataloger
|
||||
directory=katalog
|
||||
Disabled=Deaktivert
|
||||
disabled=deaktivert
|
||||
Disk=Disk
|
||||
disk=disk
|
||||
Do you want to update to the new version=Vil du oppdatere til den nyeste versjonen
|
||||
Docker=
|
||||
Done=Ferdig
|
||||
Download=Last ned
|
||||
Duration=Varighet
|
||||
Edit=Rediger
|
||||
edit=rediger
|
||||
Emulated=Emulert
|
||||
emulated=emulert
|
||||
Enabled=Aktivert
|
||||
enabled=aktivert
|
||||
Encrypted and unlocked=Kryptert og låst opp
|
||||
Error code=Feilkode
|
||||
Error=Feil
|
||||
error=feil
|
||||
Errors=Fel
|
||||
errors=feil
|
||||
Expected results=Forventet resultat
|
||||
Export=Eksporter
|
||||
Faulty=Feilende
|
||||
faulty=feilende
|
||||
Feedback=Tilbakemeldinger
|
||||
File too large=Filen er for stor
|
||||
file=fil
|
||||
files=filer
|
||||
Fixed=Rettet
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Flashprodukt
|
||||
Flash Vendor=Flashprodusent
|
||||
FOLDER=MAPPE
|
||||
folder=mappe
|
||||
Force lower=Tving lavere
|
||||
Format=Formater
|
||||
Formatting devices=Formaterer enheter
|
||||
Forum=Forum
|
||||
GB=GB
|
||||
Go to Registration page=Gå til registreringssiden
|
||||
GPT 4KiB-aligned=GPT 4KiB-justert
|
||||
Gray=Grå
|
||||
Guests have no access=Gjester har **ingen** tilgang
|
||||
Guests have read-only access=Gjester har kun **lesetilgang**
|
||||
Heat alarm=Varmealarm
|
||||
Help=Hjelp
|
||||
here=her
|
||||
History=Historikk
|
||||
hour=time
|
||||
hours=timer
|
||||
%s hour ago=%s time siden
|
||||
%s hours ago=%s timer siden
|
||||
How to reproduce=Hvordan gjenskape
|
||||
hr=t
|
||||
HVM=HVM
|
||||
Identity=Identitet
|
||||
Inactive=Inaktiv
|
||||
Index of=Indeks av
|
||||
Info=Info
|
||||
Install Key=Installeringsnøkkel
|
||||
interface down=Tilkoblingen er nede
|
||||
Interface=Nettverk
|
||||
IOMMU=IOMMU
|
||||
is available=er tilgjengelig
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Sist endret
|
||||
Left=Igjen
|
||||
less than a minute remaining=mindre enn ett minutt igjen
|
||||
less than a minute=mindre enn ett minutt
|
||||
Load=Last
|
||||
Location=Lokasjon
|
||||
Locked missing encryption key=Låst: mangler krypteringsnøkkel
|
||||
Locked unknown error=Låst: ukjent feil
|
||||
Locked wrong encryption key=Låst: feil krypteringsnøkkel
|
||||
Log=Logg
|
||||
Login=Logg inn
|
||||
Logout=Logg ut
|
||||
Main=Lagring
|
||||
manual=manual
|
||||
max installable capacity=Maks installerbar kapasitet
|
||||
Maximum file upload size is 512 kB=Maks filopplastingstørrelse er 512 kB
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-justert
|
||||
MBR 4KiB-aligned=MBR: 4KiB-justert
|
||||
MBR unaligned=MBR: ujustert
|
||||
Memory=Minne
|
||||
min=min
|
||||
minute=minutt
|
||||
minutes=minutter
|
||||
%s minute ago=%s minutt siden
|
||||
%s minutes ago=%s minutter siden
|
||||
Model=Modell
|
||||
%s month ago=%s måned siden
|
||||
%s months ago=%s måneder siden
|
||||
Months_array=January:Januar February:Februar March:Mars April:April May:Mai June:Juni July:Juli August:August September:September October:Oktober November:November December:Desember Jan:Jan Feb:Feb Mar:Mar Apr:Apr May:Mai Jun:Jun Jul:Jul Aug:Aug Sep:Sep Oct:Okt Nov:Nov Dec:Des
|
||||
months=måneder
|
||||
More=Mer
|
||||
Motherboard=Hovedkort
|
||||
Move=Flytt
|
||||
NA=N/A
|
||||
Name=Navn
|
||||
Network=Nettverk
|
||||
Never=Aldri
|
||||
New device, in standby mode spun-down=Ny enhet, i hvilemodus (spunnet ned)
|
||||
New device=Ny enhet
|
||||
NFS Security Settings=NFS sikkerhetsinnstillinger
|
||||
No Access=Ingen tilgang
|
||||
No device=Ingen enhet
|
||||
no device=ingen enhet
|
||||
No errors reported=Ingen feil rapportert
|
||||
No information available=Ingen informasjon tilgjengelig
|
||||
No listing Too many files=Ingen outlasting: for mange filer
|
||||
No reply from mail server=Ingen svar fra e-postserveren
|
||||
No=Nei
|
||||
no=nei
|
||||
None=Ingen
|
||||
none=ingen
|
||||
Normal operation, device is active=Normal operasjon, enheten er aktiv
|
||||
Normal=Normal
|
||||
Normalized=Normalisert
|
||||
Not Available=Ikke tilgjengelig
|
||||
not available=ikke tilgjengelig
|
||||
not connected=ikke tilkoblet
|
||||
Not encrypted=Ikke kryptert
|
||||
not encrypted=ikke kryptert
|
||||
NOTE=NOTIS
|
||||
Numbers_array=thirty:tretti twenty-nine:tjueni twenty-eight:tjueåtte twenty-seven:tjuesju twenty-six:tjueseks twenty-five:tjuefem twenty-four:tjuefire twenty-three:tjuetre twenty-two:tjueto twenty-one:tjueen twenty:tjue nineteen:nitten eighteen:atten seventeen:sytten sixteen:seksten fifteen:femten fourteen:fjorten thirteen:tretten twelve:tolv eleven:ellve ten:ti nine:ni eight:åtte seven:syv six:seks five:fem four:fire three:tre two:to one:en zero:null
|
||||
objects=objekter
|
||||
Off=Av
|
||||
off-line=skrudd av
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=På
|
||||
Online Manual=Internettmanual
|
||||
Online manual=Internettmanual
|
||||
OpenSSL=OpenSSL
|
||||
optional=valgfri
|
||||
Other Comment=Andre kommentarer
|
||||
Other information=Annen informasjon
|
||||
Parity device is disabled=Paritetsenheten er deaktivert
|
||||
Parity device is missing=Paritetsenheten mangler
|
||||
Parity is invalid, in standby mode spun-down=Pariteten er ugyldig, i hvilemodus (spunnet ned)
|
||||
Parity is invalid=Paritet er ugyldig
|
||||
Parity is valid=Paritet er gyldig
|
||||
Parity=Paritet
|
||||
parity=paritet
|
||||
Parity-Check=Paritetskontroll
|
||||
Parity-Sync Data-Rebuild=Paritetssynkronisering / Datagjenoppretting
|
||||
Pause=Pause
|
||||
Paused=Satt på pause
|
||||
paused=satt på pause
|
||||
PB=PB
|
||||
Please select one file only=Vennligt velg kun en fil
|
||||
Please summarize your suggestion here=Vennligt oppsummer ditt forslag her
|
||||
Please try again later=Vennligt prøv igjen senere
|
||||
Please wait=Vennligst vent
|
||||
Plugins=Programtillegg
|
||||
Plus=Pluss
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privat
|
||||
Pro=Pro
|
||||
Proceed=Fortsett
|
||||
Processor=Prosessor
|
||||
Product Suggestion=Produktforslag
|
||||
Public=Offentlig
|
||||
RAM=Minne
|
||||
Raw=Rå
|
||||
Read=Les
|
||||
Read settings from=Les innstillinger fra
|
||||
Read-Check=Lesesjekk
|
||||
Read-only=Lesetilgang
|
||||
Reads=Lesing
|
||||
ReadWrite=Les/Skriv
|
||||
Reboot Now=Restart nå
|
||||
Reboot=Restart
|
||||
Refresh=Oppdater
|
||||
Registration=Registrering
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Utgivelsesnotater
|
||||
Remove=Fjern
|
||||
Renew=Forny
|
||||
Reset=Tilbakestill
|
||||
Restart=Restart
|
||||
Resume=Fortsett
|
||||
Right=Rett
|
||||
RPM=RPM
|
||||
Running=Kjører
|
||||
running=kjører
|
||||
safe mode=Sikkermodus
|
||||
sec=sek
|
||||
second=sekund
|
||||
seconds=sekunder
|
||||
%s second ago=%s sekund siden
|
||||
%s seconds ago=%s sekunder siden
|
||||
Secure=Sikker
|
||||
Security=Sikkerhet
|
||||
Security Settings=Sikkerhetsinnstillinger
|
||||
select=Velg
|
||||
Self-Test=Selvdiagnose
|
||||
Server=Server
|
||||
Settings=Innstillinger
|
||||
Share=Deling
|
||||
Share name=Delingsnavn
|
||||
Shares List=Deleliste
|
||||
Shares=Deling
|
||||
Shutdown=Skru av
|
||||
Size=Størrelse
|
||||
SMB Security Settings=SMB sikkerhetsinnstillinger
|
||||
sn=s/n
|
||||
Sorry, an error occurred=Unnskyld, en feil har oppstått
|
||||
Standby=Hvilemodus
|
||||
standby=hvilemodus
|
||||
Start=Start
|
||||
Started=Startet
|
||||
started=startet
|
||||
Status=Status
|
||||
status=status
|
||||
Stop=Stopp
|
||||
Stopped=Stoppet
|
||||
stopped=Stoppet
|
||||
Streams=Strømmer
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Innsending av denne feilrapporten vil automatisk sende din diagnostikkinformasjon til Lime Technology
|
||||
Submit=Send
|
||||
System Information=Systeminformasjon
|
||||
System is going down=Systemet skrur seg av
|
||||
System is offline=Systemet er avslått
|
||||
System is powered off=Systemet er avslått
|
||||
System is rebooting=Systemet restarter
|
||||
System Log=Systemlogg
|
||||
System notifications are=Systemvarslinger er
|
||||
System running in=Systemet kjører i
|
||||
System=System
|
||||
TB=TB
|
||||
Temperature=Temperatur
|
||||
Template Repositories=Mal depot
|
||||
Terminal=Terminal
|
||||
Test result=Testresultater
|
||||
Thank You=Takk
|
||||
The error is=Feilen er
|
||||
to change notification settings=for å endre varslingsinnstillinger
|
||||
to downgrade Unraid OS=for å nedgradere Unraid OS
|
||||
to upgrade Unraid OS=for å oppgradere Unraid OS
|
||||
today=idag
|
||||
Too many files=For mange filer
|
||||
Tools=Verktøy
|
||||
Total=Totalt
|
||||
total=totalt
|
||||
Type your question or comment to Lime Technology here=Skriv inn ditt spørsmål eller kommentar til Lime Technology her
|
||||
Type=Skriv
|
||||
Unable to generate system diagnostics=Ikke i stand til å generere systemdiagnostikk
|
||||
Unassigned=Ikke tildelt
|
||||
unassigned=ikke tildelt
|
||||
Unknown=Ukjent
|
||||
unknown=ukjent
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Oppdater containere
|
||||
Update Now=Oppdater nå
|
||||
Update VM=Oppdater VM
|
||||
Update=Oppdater
|
||||
update=oppdater
|
||||
Updated=Oppdatert
|
||||
Upload error=Opplastingsfeil
|
||||
Upload=Opplasting
|
||||
Uptime=Oppetid
|
||||
up-to-date=Oppdatert
|
||||
User Access=Brukertilgang
|
||||
Users=Brukere
|
||||
Utilization=Bruk
|
||||
Version=Versjon
|
||||
View Release Notes=Se utgivelsesnotater
|
||||
View=Se
|
||||
VMs=
|
||||
VPN=VPN
|
||||
Warning=Advarsel
|
||||
Website=Nettside
|
||||
week ago=uke siden
|
||||
weeks ago=uker siden
|
||||
White=Hvit
|
||||
Wiki=Wiki
|
||||
Write=Skriv
|
||||
Write settings to=Skriv innstillinger til
|
||||
Wrong=Feil
|
||||
wrong=feil
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Ja, jeg vil gjøre dette
|
||||
Yes=JA
|
||||
yes=ja
|
||||
Yes hidden=Ja (skjult)
|
||||
Yes Time Machine=Ja (Time Machine)
|
||||
YesTime Machine hidden=Ja/Time Machine (skjult)
|
||||
YesTime Machine=Ja/Time Machine
|
||||
yesterday=igår
|
||||
You must reboot for changes to take effect=Du må restarte for at endringene skal tre i kraft
|
||||
Your browser does not support HTML5 file uploads=Nettleseren din støtter ikke HTML5 filopplasting
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Arrayet er oppdatt
|
||||
Buttons=Knapper
|
||||
Parity operation or mover is running=Paritetsoperasjoner eller Mover kjører
|
||||
preparing for reboot=forbereder en restart
|
||||
preparing for shutdown=forbereder å skru av
|
||||
Sleep=Hvile
|
||||
Start Array=Start arrayet
|
||||
starting the array=starter arrayet
|
||||
Stop Array=Stop arrayet
|
||||
stopping the array=stopper arrayet
|
||||
System in sleep mode=Sysemet er i hvilemodus
|
||||
This will put the system to sleep=Dette vil sette systemet i hvilemodus
|
||||
This will reboot the system=Dette vil restarte systemet
|
||||
This will shutdown the system=Dette vil skru av systemet
|
||||
This will start the array=Dette vil starte arrayet
|
||||
This will stop the array=Dette vil stoppe arrayet
|
861
languages/pl_PL
Normal file
861
languages/pl_PL
Normal file
@ -0,0 +1,861 @@
|
||||
Cancel=Anuluj
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=
|
||||
Happy Holidays from Andrew, Tracey, and family=
|
||||
Please Enjoy Responsibly=
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=
|
||||
Sorting options unavailable=
|
||||
Sort By Name Ascending=
|
||||
Sort By Name Descending=
|
||||
Sort By Downloads=
|
||||
Sort By Trend=
|
||||
Sort By Date Added=
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=
|
||||
Application Policy=
|
||||
I Understand=
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=
|
||||
Click here=
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
|
||||
Plugin Note=
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=
|
||||
Please enter search term=
|
||||
Click Here To Get More Results From DockerHub=
|
||||
No Matching Applications Found On Docker Hub=
|
||||
No Matching Applications Found=
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=
|
||||
Yes, delete it=
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=
|
||||
Yes uninstall it=
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=
|
||||
Yes, remove it=
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=
|
||||
Click to unpin this application=
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=
|
||||
|
||||
Yes, install it=
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=
|
||||
Updating Support Links=
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=
|
||||
An error occurred Could not find any %s Apps=
|
||||
Download of appfeed failed=
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=
|
||||
Installed Apps=
|
||||
Previous Apps=
|
||||
Pinned Apps=
|
||||
CATEGORIES=
|
||||
New Apps=
|
||||
Updated Apps=
|
||||
Random Apps=
|
||||
Top New Installs=
|
||||
Trending Apps=
|
||||
All Apps=
|
||||
OTHER=
|
||||
Statistics=
|
||||
Credits=
|
||||
Support=
|
||||
VERSION=
|
||||
Change Log=
|
||||
|
||||
; Credits
|
||||
Development=
|
||||
Additional Contributions=
|
||||
GUI Layout Design=
|
||||
Application Feed=
|
||||
Additional Testing=
|
||||
Moderation=
|
||||
Additional Libraries=
|
||||
Copyright=
|
||||
Translation=
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=
|
||||
This display is informational ONLY=
|
||||
unknown=
|
||||
Last Change To Application Feed=
|
||||
Number Of Docker Applications=
|
||||
Number Of Plugin Applications=
|
||||
Number Of Templates=
|
||||
Number Of Repositories=
|
||||
Number Of Private Docker Applications=
|
||||
Number Of Invalid Templates=
|
||||
Number Of Template Errors=
|
||||
Number Of Blacklisted Apps=
|
||||
Number Of Incompatible Applications=
|
||||
Number Of Deprecated Applications=
|
||||
Number Of Moderation Entries=
|
||||
Primary Server=
|
||||
Backup Server=
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=
|
||||
All Invalid Templates Found=
|
||||
Template Errors=
|
||||
All Moderation Entries=
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=
|
||||
These templates are invalid and the application they are referring to is unknown=
|
||||
No templates were automatically fixed=
|
||||
All of these errors found have been fixed automatically=
|
||||
Note that many of these errors can be avoided by following the directions=
|
||||
HERE=
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=
|
||||
Global Repository Comments=
|
||||
Applied to all applications=(Applied to all applications)
|
||||
Individual Application Moderation=
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=
|
||||
Cloud=
|
||||
Downloaders=
|
||||
Game Servers=
|
||||
Home Automation=
|
||||
Media Applications=
|
||||
Books=
|
||||
Music=
|
||||
Photos=
|
||||
Video=
|
||||
Other=
|
||||
Media Servers=
|
||||
Network Services=
|
||||
DNS=
|
||||
FTP=
|
||||
Management=
|
||||
Messenger=
|
||||
Proxy=
|
||||
VOIP=
|
||||
VPN=
|
||||
Web=
|
||||
Productivity=
|
||||
Security=
|
||||
Tools Utilities=Tools / Utilities
|
||||
System=
|
||||
Themes=
|
||||
Utilities=
|
||||
Private Apps=
|
||||
Uncategorized=
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=
|
||||
HomeAutomation=
|
||||
MediaApp=
|
||||
MediaAppBooks=MediaApp:Books
|
||||
MediaAppMusic=MediaApp:Music
|
||||
MediaAppPhotos=MediaApp:Photos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Other
|
||||
MediaServer=
|
||||
MediaServerBooks=MediaServer:Books
|
||||
MediaServerMusic=MediaServer:Music
|
||||
MediaServerPhotos=MediaServer:Photos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Other
|
||||
Network=
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Management
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Other
|
||||
ToolsSystem=Tools:System
|
||||
ToolsThemes=Tools:Themes
|
||||
ToolsUtilities=Tools:Utilities
|
||||
Other=
|
||||
OtherUncategorized=Other:Uncategorized
|
||||
and %s more=
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=
|
||||
Donate To Maintainer=
|
||||
Author=
|
||||
Maintainer=
|
||||
DockerHub=
|
||||
Application Template=
|
||||
Base OS=
|
||||
DockerHub Stars=
|
||||
Added to CA=
|
||||
Date Updated=
|
||||
Current Version=
|
||||
Minimum OS=
|
||||
Max OS=
|
||||
Total Downloads=
|
||||
Licence=
|
||||
30 Day Trend=
|
||||
Ranked #%s=
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=This application / template has been blacklisted
|
||||
This application template has been deprecated=This application / template has been deprecated
|
||||
This application is not compatible with your version of Unraid=
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Another browser tab or device has updated the displayed templates. Some actions are not available
|
||||
Reinstall default=Reinstall (default)
|
||||
WebUI=
|
||||
Reinstall=
|
||||
Install=
|
||||
Project=
|
||||
Install Using The Templates Default Tag=Install Using The Template's Default Tag
|
||||
Moderator Comments=Moderator Comments:
|
||||
Note not all authors keep up to date on change logs=
|
||||
Note not all maintainers keep up to date on change logs=
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=
|
||||
Currently Installed Version=
|
||||
Install The Update=
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=
|
||||
Multi Language Support=
|
||||
; as in more than 100000
|
||||
More than %s=
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=
|
||||
Downloads Per Month=
|
||||
Total Downloads=
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=
|
||||
Starting %s=
|
||||
%s failed to start You should install it by itself to fix the errors=
|
||||
Setting installed applications to autostart=
|
||||
Docker Application Installation finished=
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=
|
||||
Go to the support thread=
|
||||
Uninstall Application=
|
||||
Remove Private Application=
|
||||
Remove Application From List=
|
||||
Check off to select multiple reinstalls=
|
||||
Go to the plugin settings=
|
||||
Click to reinstall the application using default values=
|
||||
Click to edit the application values=
|
||||
Click to reinstall=
|
||||
Click to install=
|
||||
Install plugin=
|
||||
Click to go to the WebUI=
|
||||
This application has been marked as being Beta=
|
||||
This application template has been deprecated=
|
||||
This application is not compatible with your version of Unraid=
|
||||
This application template has been blacklisted=
|
||||
Search for more applications from %s=
|
||||
Click for more information=
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=
|
||||
Search for similar containers=
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Displaying %1$s - %2$s (of %3$s)
|
||||
|
||||
Updating Content=
|
||||
Language=
|
||||
Switch to this language=
|
||||
Country Code=
|
||||
Install Language Pack=
|
||||
Remove Language Pack=
|
||||
Update Language Pack=
|
||||
Installed Version=
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=
|
||||
These icons respectively will Install or Edit an application=
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicking these icons will take you to an application's GUI or settings
|
||||
This will update an application=
|
||||
This will take you to the appropriate support thread for an application=
|
||||
This will immediately switch to the language=
|
||||
This will take you to the project page for an application=
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=
|
||||
Clicking this will display any warnings or extra comments about the application=
|
||||
On the previous apps section you can select multiple applications to install simultaneously=
|
||||
This is the recommended version to install by the application author themselves=
|
||||
For support for this plugin visit=
|
||||
To view the policies Community Applications has=
|
||||
Access Mode=Tryb dostęu
|
||||
Add another Path, Port, Variable, Label or Device=Dodaj kolejną Ścieżkę, Port, Zmienną, Etykietę lub Urządzenie
|
||||
Add Configuration=Dodaj konfigurację
|
||||
Add=Dodaj
|
||||
Always=Zawsze
|
||||
App to Host=Apliakcja do hosta
|
||||
Application=Aplikacja
|
||||
apply update=zaaplikuj aktualizację
|
||||
Array must be Started to view Docker containers=Macierz musi być **uruchomiona** by przeglądać kontenery Dockera
|
||||
Are you sure=Czy na pewno
|
||||
Autostart=Autostart
|
||||
Back=Wstecz
|
||||
Backup=Kopia zapasowa
|
||||
Beta=Beta
|
||||
Books=Książki
|
||||
By=Przez
|
||||
Categories=Kategorie
|
||||
Check for Updates=Sprawdzź dostępność aktualizacji
|
||||
Cloud=Chmura
|
||||
Config Type=Typ konfiguracji
|
||||
Configuration not found=Konfiguracja nie została znaleziona
|
||||
Connection Type=Typ połączenia
|
||||
Console shell command=Polecenie powłoki w konsoli
|
||||
Container ID=ID kontenera
|
||||
Container Path=Ścieżka kontenera
|
||||
Container Port=Port kontenera
|
||||
Container Size=Rozmiat kontenera
|
||||
Container=Kontener
|
||||
CPU Memory load=Obciążenie pamięci procesora
|
||||
CPU Pinning=Przypinanie procesora
|
||||
Created=Utworzono
|
||||
Default Value=Wartośc domyślna
|
||||
Device=Urządzenie
|
||||
Display=Wyświetlacz
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=Ścieżka URL w Docker Hub
|
||||
Docker Service failed to start=Usługa Dockera nie uruchomiła się
|
||||
Donation Link=Link do darowizny
|
||||
Donation Text=Opis darowizny
|
||||
Downloaders=Pobieracze
|
||||
Edit Configuration=Edytuj konfigurację
|
||||
Exited=Zakończył
|
||||
Extra Parameters=Dodatkowe parametry
|
||||
Fixed IP address=Stały adres IP
|
||||
force update=wymuś aktualizację
|
||||
FTP=FTP
|
||||
Game Servers=Serwery gier
|
||||
healthy=zdrowy
|
||||
Hide Buttons=Ukryj przyciski
|
||||
Hide docker allocations=Ukryj przydziały Dockera
|
||||
Hide more settings=Ukryj więcej ustawień
|
||||
Home Automation=Automatyzacja domu
|
||||
Host Path=Ścieżka hosta
|
||||
Host Port=Port hosta
|
||||
HT=HT
|
||||
Icon URL=URL ikony
|
||||
Image ID=ID grafiki
|
||||
Key=Klucz
|
||||
Label=Etykieta
|
||||
latest=najnowszy
|
||||
Management=Zarządzanie
|
||||
MediaApp=MediaApp
|
||||
MediaServer=MediaServer
|
||||
Messenger=Messenger
|
||||
Missing parameters=Brakujące parametry
|
||||
Music=Muzyka
|
||||
Network Type=Typ sieci
|
||||
No Docker containers installed=Brak zainstalowanych kontenerów Dockera
|
||||
of=z
|
||||
orphan image=osierocony obraz
|
||||
Other=Inne
|
||||
Overview=Przegląd
|
||||
Path=Ścieżka
|
||||
Pause All=Wstrzymaj wszystkie
|
||||
Photos=Zdjęcia
|
||||
Port Mappings=Mapowanie portów
|
||||
Port=Port
|
||||
Post Arguments=Post-argumenty
|
||||
Privileged=Uprzywilejowany
|
||||
Productivity=Produktywność
|
||||
Project Page=Strona projektu
|
||||
Proxy=Proxy
|
||||
Pulling image=Pobieranie obrazu
|
||||
Read Only - Shared=Tylko do odczytu - udostępniony
|
||||
Read Only - Slave=Tylko do odczytu - slave
|
||||
Read Only=Tylko do odczytu
|
||||
ReadWrite - Shared=Odczyt/Zapis - udostępniony
|
||||
ReadWrite - Slave=Odczyt/Zapis - slave
|
||||
rebuild ready=odbudowa gotowa
|
||||
rebuilding=odbudowywanie
|
||||
Remove template=Usuń szablon
|
||||
Removing container=Usuwanie kontenera
|
||||
Removing orphan image=Usuwanie osieroconego obrazu
|
||||
Repository=Repozytorium
|
||||
Required=Wymagane
|
||||
Resume All=Wznów wszystkie
|
||||
Save=Zapisz
|
||||
Select a template=Wybierz szablon
|
||||
Select categories=Wybierz kategorie
|
||||
Show docker allocations=Pokaż przypisania dockera
|
||||
Show more settings=Pokaż więcej ustawień
|
||||
Stable=Stabilne
|
||||
Start All=Uruchom wszystkie
|
||||
starting up containers=uruchamianie kontenerów
|
||||
Stop All=Zatrzymaj wszystkie
|
||||
Stopping container=Zatrzymywanie kontenera
|
||||
Successfully removed container=Pomyślnie usunięto kontener
|
||||
Successfully removed orphan image=Pomyślnie usunięto osierocony obraz
|
||||
Successfully stopped container=Pomyślnie zatrzymano kontener
|
||||
Support Thread=Wątek wsparcia
|
||||
Template repositories=Repozytorium szablonów
|
||||
Template URL=URL szablonu
|
||||
Template=Szablon
|
||||
The command failed=Polecenie nie powiodło się
|
||||
The command finished successfully=Polecenie powiodło się
|
||||
TOTAL DATA PULLED=CAŁKOWITA ILOŚC POBRANYCH DANYCH
|
||||
Unknown action=Nieznana akcja
|
||||
Update All=Aktualizuj wszystkie
|
||||
update ready=aktualizacja gotowa
|
||||
Value=Wartość
|
||||
Variable=Zmienna
|
||||
Video=Wideo
|
||||
Voip=Voip
|
||||
Volume Mappings=Mapowanie wolumenów
|
||||
wait=czekaj
|
||||
Was this container created using this plugin=Czy ten kontener został utworzony przy pomocy tej wtyczki
|
||||
Web=Sieć
|
||||
WebUI=WebUI
|
||||
Writable=Zapisywalny
|
||||
Absolute=Bezwzględny
|
||||
Acknowledge=Potwierdź
|
||||
Active=Aktywny
|
||||
active=aktywny
|
||||
Actual results=Wyniki
|
||||
Add Container=Dodaj kontener
|
||||
Add VM=Dodaj maszynę wirtualną
|
||||
Advanced View=Widok zaawansowany
|
||||
AFP Security Settings=Ustawienia bezpieczeństwa AFP
|
||||
All=Wszystko
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Anonimizuj dane diagnostyczne (może spowodować że znalezienie błędów będzie trudniejsze)
|
||||
Apply=Zastosuj
|
||||
Apps=Aplikacje
|
||||
Array must be Stopped to change=Macierz musi być **zatrzymana** by wprowadzić zmiany
|
||||
Array Started=Macierz uruchomiona
|
||||
Array Starting=Uruchamianie macierzy
|
||||
Array Stopped=Macierz zatrzymana
|
||||
Array Stopping=Zatrzymywanie macierzy
|
||||
Array=Macierz
|
||||
Attributes=Atrybuty
|
||||
Auto=Auto
|
||||
Automatic=Automatycznie
|
||||
Average speed=Średnia prędkość
|
||||
Azure=Azure
|
||||
B=B
|
||||
Back To Top=Na górę
|
||||
Basic=Podstawowy
|
||||
Basic View=Widok podstawowy
|
||||
BIOS=BIOS
|
||||
Black=Czarny
|
||||
Browse=Przeglądaj
|
||||
Browser error=Błąd przeglądarki
|
||||
btrfs=btrfs
|
||||
Bug Description=Opis błędu
|
||||
Bug Report=Raport o błędzie
|
||||
bytes=bajtów
|
||||
Cancel=Anuluj
|
||||
Capabilities=Możliwości
|
||||
Case-sensitive names=Nazwy rozróżniające wielkość znaków
|
||||
Center=Środek
|
||||
Change=Zmień
|
||||
Check=Sprawdź
|
||||
Clear=Wyczyść
|
||||
Clearing=Czyszczenie
|
||||
Click for context menu=Kliknij by otworzyć menu kontekstowe
|
||||
Click=Kliknij
|
||||
close all notifications=zamknij wszystkie powiadomienia
|
||||
Close=Zamknij
|
||||
close=zamknij
|
||||
Comment=Komentarz
|
||||
Contact Email Address=Kontaktowy adres email
|
||||
Contact Support=Wsparcie
|
||||
containing your key file URL=zawierający adres URL Twojego pliku klucza
|
||||
Copy=Kopiuj
|
||||
CPU=CPU
|
||||
Dashboard=Pulpit
|
||||
day=dzień
|
||||
%s day ago=%s dzień temu
|
||||
%s days ago=%s dni temu
|
||||
Days_array=Sunday:Niedziela Monday:Poniedziałek Tuesday:Wtorek Wednesday:Środa Thursday:Czwartek Friday:Piątek Saturday:Sobota Sun:Niedz. Mon:Pon. Tue:Wt. Wed:Śr. Thu:Czw. Fri:Pt. Sat:Sob.
|
||||
days=dni
|
||||
Default=Domyślny
|
||||
default=domyślny
|
||||
Delete=Usuń
|
||||
Description=Opis
|
||||
Device contents emulated, in standby mode spun-down=Zawartość urządzenia jest emulowana, oczekuje (uśpiony)
|
||||
Device contents emulated=Zawartość urządzenia jest emulowana
|
||||
Device is disabled, contents emulated=Urządzenie wyłączone, zawartość emulowana
|
||||
Device is in standby mode spun-down=Urządzenie oczekuje (uśpiony)
|
||||
Device is missing disabled, contents emulated=Urządzenie nie znalezione, zawartość emulowana
|
||||
Device not present=Urządzenie nie może być znalezione
|
||||
Device=Urządzenie
|
||||
directories=katalogi
|
||||
directory=katalog
|
||||
Disabled=Wyłączony
|
||||
disabled=wyłączony
|
||||
Disk=Dysk
|
||||
disk=dysk
|
||||
Do you want to update to the new version=Czy chcesz teraz zaktualizować do nowej wersji?
|
||||
Docker=
|
||||
Done=Gotowe
|
||||
Download=Pobierz
|
||||
Duration=Czas trwania
|
||||
Edit=Edytuj
|
||||
edit=edytuj
|
||||
Emulated=Emulowany
|
||||
emulated=emulowany
|
||||
Enabled=Włączony
|
||||
enabled=włączony
|
||||
Encrypted and unlocked=Zaszyfrowany i odblokowany
|
||||
Error code=Kod błędu
|
||||
Error=Błąd
|
||||
error=błąd
|
||||
Errors=Błędy
|
||||
errors=błędy
|
||||
Expected results=Oczekiwane wyniki
|
||||
Export=Eksportuj
|
||||
Faulty=Błędny
|
||||
faulty=błędny
|
||||
Feedback=Informacja zwrotna
|
||||
File too large=Plik zbyt duży
|
||||
file=plik
|
||||
files=pliki
|
||||
Fixed=Naprawiony
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Nazwa Flash
|
||||
Flash Vendor=Producent Flash
|
||||
FOLDER=KATALOG
|
||||
folder=katalog
|
||||
Force lower=Wymuś małe litery
|
||||
Format=Formatuj
|
||||
Formatting devices=Formatuję urządzenie
|
||||
Forum=Forum
|
||||
GB=GB
|
||||
Go to Registration page=Idź na stronę rejestracji
|
||||
GPT 4KiB-aligned=GPT 4KiB-aligned
|
||||
Gray=Szary
|
||||
Guests have no access=Goście **nie** mają dostępu
|
||||
Guests have read-only access=Goście mają dostęp **tylko do odczytu**
|
||||
Heat alarm=Alarm temperatury
|
||||
Help=Pomoc
|
||||
here=tutaj
|
||||
History=Historia
|
||||
hour=godzina
|
||||
hours=godzin
|
||||
%s hour ago=%s godzina temu
|
||||
%s hours ago=%s godzin temu
|
||||
How to reproduce=Jak odtworzyć
|
||||
hr=godz.
|
||||
HVM=HVM
|
||||
Identity=Identyfikacja
|
||||
Inactive=Nieaktywny
|
||||
Index of=Numer
|
||||
Info=Informacje systemowe
|
||||
Install Key=Klucz instalacyjny
|
||||
interface down=interfejs nieaktywny
|
||||
Interface=interfejs
|
||||
IOMMU=IOMMU
|
||||
is available=jest dostępny
|
||||
KB=KB
|
||||
Kernel=Jądro
|
||||
Last Modified=Ostatnio zmieniony
|
||||
Left=Lewy
|
||||
less than a minute remaining=pozostało poniżej minuty
|
||||
less than a minute=poniżej minuty
|
||||
Load=Obciążenie
|
||||
Location=Lokalizacja
|
||||
Locked missing encryption key=Zablokowany: brak klucza szyfrowania
|
||||
Locked unknown error=Zablokowany: nieznany błąd
|
||||
Locked wrong encryption key=Zablokowany: błędny klucz szyfrujący
|
||||
Log=Log
|
||||
Login=Zaloguj
|
||||
Logout=Wyloguj
|
||||
Main=Główna
|
||||
manual=ręcznie
|
||||
max installable capacity=maksymalna dostępna pojemność
|
||||
Maximum file upload size is 512K=Maksymalny rozmiar przesyłanego pliku to 515kB
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=Pamięć
|
||||
min=min.
|
||||
minute=minuta
|
||||
minutes=minut
|
||||
%s minute ago=%s minuty temu
|
||||
%s minutes ago=%s minut temu
|
||||
Model=Model
|
||||
%s month ago=%s miesiące temu
|
||||
%s months ago=%s miesięcy temu
|
||||
Months_array=January:Styczeń February:Luty March:Marzec April:Kwiecień May:Maj June:Czerwiec July:Lipiec August:Sierpień September:Wrzesień October:Październik November:Listopad December:Grudzień Jan:Sty. Feb:Lut. Mar:Mar. Apr:Kwi. May:Maj Jun:Cze. Jul:Lip. Aug:Sie. Sep:Wrz. Oct:Paź. Nov:Lis. Dec:Gru.
|
||||
months=miesięcy
|
||||
More=Więcej
|
||||
Motherboard=Płyta główna
|
||||
Move=Przenieś
|
||||
NA=N/D
|
||||
Name=Nazwa
|
||||
Network=Sieć
|
||||
Never=Nigdy
|
||||
New device, in standby mode spun-down=Nowe urządzenie, w trybie gotowości (uśpione)
|
||||
New device=Nowe urządzenie
|
||||
NFS Security Settings=Ustawienia zabezpieczeń NFS
|
||||
No Access=Brak dostępu
|
||||
No device=Brak urządzenia
|
||||
no device=Brak urządzenia
|
||||
No errors reported=Brak błędów
|
||||
No information available=Brak informacji
|
||||
No listing Too many files=Nie można pokazać listy: za wiele plików
|
||||
No reply from mail server=Brak odpowiedzi z serwera pocztowego
|
||||
No=Nie
|
||||
no=nie
|
||||
None=Brak
|
||||
none=brak
|
||||
Normal operation, device is active=Działa nominalnie, urządzenie jest aktywne
|
||||
Normal=Normalnie
|
||||
Normalized=Znormalizowany
|
||||
Not Available=Niedostępny
|
||||
not available=niedostępny
|
||||
not connected=niepodłączony
|
||||
Not encrypted=Niezaszyfrowany
|
||||
not encrypted=niezaszyfrowany
|
||||
NOTE=UWAGA
|
||||
Numbers_array=thirty:trzydzieści twenty-nine:dwadzieścia dziewięć twenty-eight:dwadzieścia osiem twenty-seven:dwadzieścia siedem twenty-six:dwadzieścia sześć twenty-five:dwadzieścia pięć twenty-four:dwadzieścia cztery twenty-three:dwadzieścia trzy twenty-two:dwadzieścia dwa twenty-one:dwadzieścia jeden twenty:dwadzieścia nineteen:dziewiętnaście eighteen:osiemnaście seventeen:siedemnaście sixteen:szesnaście fifteen:piętnaście fourteen:czternaście thirteen:trzynaście twelve:dwanaście eleven:jedenaście ten:dziesięć nine:dziewięć eight:osiem seven:siedem six:sześć five:pięć four:cztery three:trzy two:dwa one:jeden zero:zero
|
||||
objects=obiekty
|
||||
Off=Wyłączony
|
||||
off-line=poza siecią
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=Włączony
|
||||
Online Manual=Instukcja Online
|
||||
Online manual=Instrukcja online
|
||||
OpenSSL=OpenSSL
|
||||
optional=opcjonalny
|
||||
Other Comment=Inny komentarz
|
||||
Other information=Inne informacje
|
||||
Parity device is disabled=Dysk parzystości jest wyłączony
|
||||
Parity device is missing=Brak dysku parzystości
|
||||
Parity is invalid, in standby mode spun-down=Dane parzystości nieprawidłowe, oczekuje (uśpiony)
|
||||
Parity is invalid=Dane parzystości nieprawidłowe
|
||||
Parity is valid=Dane parzystości prawidłowe
|
||||
Parity=Dysk parzystości
|
||||
parity=dysk parzystości
|
||||
Parity-Check=Sprawdzenie parzystości
|
||||
Parity-Sync Data-Rebuild=Synchronizacja parzystości / odtwarzanie danych
|
||||
Pause=Wstrzymaj
|
||||
Paused=Wstrzymany
|
||||
paused=wstrzymany
|
||||
PB=PB
|
||||
Please select one file only=Wybierz tylko jeden plik
|
||||
Please summarize your suggestion here=Umieść podsumowanie swojej sugestii tutaj
|
||||
Please try again later=Spróbuj później
|
||||
Please wait=Czekaj
|
||||
Plugins=Wtyczki
|
||||
prefix_SI=K M G T P E Z Y
|
||||
Plus=Plus
|
||||
Private=Prywatny
|
||||
Pro=Pro
|
||||
Proceed=Wykonaj
|
||||
Processor=Procesor
|
||||
Product Suggestion=Sugestia produktowa
|
||||
Public=Publiczny
|
||||
RAM=RAM
|
||||
Raw=Raw
|
||||
Read=Odczyt
|
||||
Read settings from=Wczytaj ustawienia z
|
||||
Read-Check=Sprawdzenie odczytu
|
||||
Read-only=Tylko do odczytu
|
||||
Reads=Odczyty
|
||||
ReadWrite=Odczyt/Zapis
|
||||
Reboot Now=Uruchom ponownie teraz
|
||||
Reboot=Uruchom ponownie
|
||||
Refresh=Odśwież
|
||||
Registration=Licencja
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Informacje o wydaniu
|
||||
Remove=Usuń
|
||||
Renew=Odnów
|
||||
Reset=Resetuj
|
||||
Restart=Restartuj
|
||||
Resume=Wznów
|
||||
Right=Prawy
|
||||
RPM=RPM
|
||||
Running=Uruchomiony
|
||||
running=uruchomiony
|
||||
safe mode=tryb bezpieczny
|
||||
sec=sek.
|
||||
second=sekunda
|
||||
seconds=sekund
|
||||
%s second ago=%s sekundy temu
|
||||
%s seconds ago=%s sekund temu
|
||||
Secure=Zabezpieczony
|
||||
Security=Bezpieczeństwo
|
||||
Security Settings=Ustawienia zabezpieczeń
|
||||
select=wybierz
|
||||
Self-Test=Auto-test
|
||||
Server=Serwer
|
||||
Settings=Ustawienia
|
||||
Share=Udział
|
||||
Share name=Nazwa udziału
|
||||
Shares List=Lista udziałów
|
||||
Shares=Udziały
|
||||
Shutdown=Wyłączenie
|
||||
Size=Rozmiar
|
||||
SMB Security Settings=Ustawienia zabezpieczeń SMB
|
||||
sn=numer seryjny
|
||||
Sorry, an error occurred=Wybacz, wystąpił błąd
|
||||
Standby=Oczekuje
|
||||
standby=oczekuje
|
||||
Start=Uruchom
|
||||
Started=Uruchomiony
|
||||
started=uruchomiony
|
||||
Status=Status
|
||||
status=status
|
||||
Stop=Zatrzymaj
|
||||
Stopped=Zatrzymany
|
||||
stopped=zatrzymany
|
||||
Streams=Strumienie
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=Wysłanie tego raportu o błędach, spowoduje automatyczne przesłanie do Lime Technology systemowych informacji diagnostycznych
|
||||
Submit=Wyślij
|
||||
System Information=Informacje systemowe
|
||||
System is going down=System wyłącza się
|
||||
System is offline=System poza siecią
|
||||
System is powered off=System wyłączony
|
||||
System is rebooting=System uruchamia się ponownie
|
||||
System Log=Log systemowy
|
||||
System notifications are=Powiadomienia systemowe są
|
||||
System running in=System pracuje w
|
||||
System=System
|
||||
TB=TB
|
||||
Temperature=Temperatura
|
||||
Template Repositories=Repozytoria szablonów
|
||||
Terminal=Terminal
|
||||
Test result=Wynik testu
|
||||
Thank You=Dziękujemy
|
||||
The error is=Błąd jest
|
||||
to change notification settings=by zmienić ustawienia powiadomień
|
||||
to downgrade Unraid OS=by przywrócić starszą wersję Unraid OS
|
||||
to upgrade Unraid OS=by zaktualizować Unraid OS
|
||||
today=dziś
|
||||
Too many files=Zbyt wiele plików
|
||||
Tools=Narzędzia
|
||||
Total=Suma
|
||||
total=suma
|
||||
Type your question or comment to Lime Technology here=Wpisz treść pytania lub komentarza do Lime Technology tutaj
|
||||
Type=Pisz
|
||||
Unable to generate system diagnostics=Nie można było wygenerować systemowych informacji diagnostycznych
|
||||
Unassigned=Nieprzypisany
|
||||
unassigned=nieprzypisany
|
||||
Unknown=Nieznany
|
||||
unknown=nieznany
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=Kontener aktualizacyjny
|
||||
Update Now=Aktualizuj teraz
|
||||
Update VM=Aktualizuj maszynę wirtualną
|
||||
Update=Aktualizuj
|
||||
update=aktualizuj
|
||||
Updated=Zaktualizowany
|
||||
Upload error=Błąd wysyłania
|
||||
Upload=Wyślij
|
||||
Uptime=Czas pracy
|
||||
up-to-date=aktualny
|
||||
User Access=Poziom dostępu
|
||||
Users=Użytkownicy
|
||||
Utilization=Użycie
|
||||
Version=Wersja
|
||||
View Release Notes=Zobacz informacje o wydaniu
|
||||
View=Widok
|
||||
VMs=
|
||||
VPN=VPN
|
||||
Warning=OStrzeżenie
|
||||
Website=Strona internetowa
|
||||
%s week ago=%s tygodnia temu
|
||||
%s weeks ago=%s tygodni temu
|
||||
White=Biały
|
||||
Wiki=Wiki
|
||||
Write=Zapis
|
||||
Write settings to=Użyj tych ustawień dla
|
||||
Wrong=Źle
|
||||
wrong=źle
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Tak, chcę to zrobić
|
||||
Yes=Tak
|
||||
yes=tak
|
||||
Yes hidden=Tak (ukryty)
|
||||
Yes Time Machine=Tak (Time Machine)
|
||||
YesTime Machine hidden=Tak/Time Machine (ukryty)
|
||||
YesTime Machine=Tak/Time Machine
|
||||
yesterday=wczoraj
|
||||
You must reboot for changes to take effect=Musisz uruchomić system ponownie by wprowadzić zmiany
|
||||
Your browser does not support HTML5 file uploads=Twoja przeglądarka nie wspiera wysyłania plików zgodnego z HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Macierz zajęta
|
||||
Buttons=Przyciski
|
||||
Parity operation or mover is running=Działa obliczanie parzystości lub skrypt przenoszący dane
|
||||
preparing for reboot=przygotowywanie do ponownego uruchomienia
|
||||
preparing for shutdown=przygotowanie do zamknięcia systemu
|
||||
Sleep=Uśpij
|
||||
Start Array=Uruchom macierz
|
||||
starting the array=uruchamianie macierzy
|
||||
Stop Array=Zatrzymaj macierz
|
||||
stopping the array=zatrzymywanie macierzy
|
||||
System in sleep mode=System jest uśpiony
|
||||
This will put the system to sleep=To uśpi system
|
||||
This will reboot the system=To uruchomi system ponownie
|
||||
This will shutdown the system=To wyłączy system
|
||||
This will start the array=To uruchomi macierz
|
||||
This will stop the array=To zatrzyma macierz
|
862
languages/pt_PT
Normal file
862
languages/pt_PT
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=Cancelar
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=Feliz ano novo
|
||||
Happy Holidays from Andrew, Tracey, and family=Boas Festas de Andrew, Tracey, e familia
|
||||
Please Enjoy Responsibly=Por favor, desfrute de forma responsável
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=Popups bloqueados, CA requer que os popups sejam ativados em determinadas circunstâncias Deve adicionar o servidor à lista de exceções do browser para permitir popups
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=Serviço de Docker Não Ativado - Apenas estão Disponíveis Plugins para Instalação ou Gestão
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=As Aplicações Comunitárias (CA) funcionam melhor quando os cookies estão ativados no seu navegador Algumas funcionalidades podem não estar disponíveis
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=Servidor de cópia de segurança ativo Alguns ícones podem não aparecer, e as instalações de plugins podem ser afetadas
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=Opções de ordenação
|
||||
Sorting options unavailable=Opções de ordenação indisponíveis
|
||||
Sort By Name Ascending=Ordenar por nome (ascendente)
|
||||
Sort By Name Descending=Ordenar por nome (descendente)
|
||||
Sort By Downloads=Ordenar por transferências
|
||||
Sort By Trend=Ordenar por tendência
|
||||
Sort By Date Added=Ordenar por data de adição
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=Aviso legal
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=Todas as aplicações aqui listadas são adições de terceiros ao Unraid Nem os autores das Aplicações Comunitárias (CA) nem a Limetech dão qualquer garantia quanto à idoneidade de qualquer aplicação aqui listada
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=Todos os esforços são feitos para assegurar que apenas aplicações seguras e compatíveis estejam presentes
|
||||
Application Policy=Política de CA
|
||||
I Understand=Eu entendo
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=Instalação de aplicações desativada É necessário aceitar o aviso para poder instalar aplicações
|
||||
Click here=Clicar aqui
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugins Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Aplicações Comunitárias (CA) contém tanto contentores docker como aplicações plugin Os plugins são concebidos para melhorias do SO, e funcionam com privilégios totais no seu sistema e são claramente identificados no CA
|
||||
Plugin Note=Nota de Plugin
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=Instalar Aplicações Plugin
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=Pesquisa
|
||||
Please enter search term=Introduza um termo de pesquisa
|
||||
Click Here To Get More Results From DockerHub=Clique aqui para obter mais resultados do DockerHub
|
||||
No Matching Applications Found On Docker Hub=Não se encontraram aplicações correspondentes no DockerHub
|
||||
No Matching Applications Found=Não se encontraram aplicações correspondentes
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=Instalar plugin
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=Eliminar modelo
|
||||
Yes, delete it=Sim, eliminar
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=Desinstalar aplicação
|
||||
Yes uninstall it=Sim, desinstalar
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=Remover aplicação privada
|
||||
Yes, remove it=Sim, remover
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=Clicar para afixar esta aplicação
|
||||
Click to unpin this application=Clicar para remover esta aplicação
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=Escolha um ramo para instalar
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=Instalar Aplicações Selecionadas
|
||||
|
||||
Yes, install it=Sim, instalar
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=Sim, instale-as
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=Cookies não ativadas Os Plugins devem ser instalados separadamente das aplicações docker
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=As aplicações Docker serão instaladas utilizando o modelo mais recente guardado, sem a intervenção do utilizador
|
||||
Updating Support Links=Atualização de links de suporte
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=Instalação concluída se o botão FEITO não aparecer, terá de clicar no X vermelho no canto superior direito
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=Nenhum dado foi devolvido É provável que outra sessão do navegador tenha reiniciado o seu servidor Recarregar este separador do navegador irá provavelmente corrigir este erro
|
||||
An error occurred Could not find any %s Apps=Ocorreu um erro Não foi possível encontrar qualquer %s Apps
|
||||
Download of appfeed failed=O download do appfeed falhou
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=Algo correu mesmo mal aqui
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=Publicar o conteúdo COMPLETO desta mensagem no Tópico de Apoio às Aplicações Comunitárias
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=Aconteceu um erro desconhecido Por favor publique um screenshot no tópico de suporte do ecrã de Estatísticas
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=Aconteceu algo de muito errado Recarregar o separador Apps irá provavelmente resolver o problema
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=Este plugin tem um nome duplicado de outro plugin %s Isto terá impacto na sua capacidade de instalar ambos os plugins simultaneamente
|
||||
You have been logged out=A sua sessão terminou
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=MENU
|
||||
Installed Apps=Apps instaladas
|
||||
Previous Apps=Apps Anteriores
|
||||
Pinned Apps=Apps afixadas
|
||||
CATEGORIES=CATEGORIAS
|
||||
New Apps=Novas Apps
|
||||
Updated Apps=Apps atualizadas
|
||||
Random Apps=Apps aleatórias
|
||||
Top New Installs=Top Novas Instalações
|
||||
Trending Apps=Apps Populares
|
||||
All Apps=Todas as Apps
|
||||
OTHER=OUTROS
|
||||
Statistics=Estatísticas
|
||||
Credits=Créditos
|
||||
Support=Suporte
|
||||
VERSION=VERSÃO
|
||||
Change Log=Registo de alterações
|
||||
|
||||
; Credits
|
||||
Development=Desenvolvimento
|
||||
Additional Contributions=Contribuições adicionais
|
||||
GUI Layout Design=Desenho do layout do GUI
|
||||
Application Feed=Lista de Aplicações
|
||||
Additional Testing=Testes adicionais
|
||||
Moderation=Moderação
|
||||
Additional Libraries=Bibliotecas adicionais
|
||||
Copyright=Direitos de autor
|
||||
Translation=Tradução
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=As Aplicações Depreciadas ainda podem ser instaladas se as tiver previamente instaladas Novas instalações destas aplicações são bloqueadas, a menos que ative Mostrar as Aplicações Depreciadas dentro das Configurações Gerais da CA
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=As seguintes aplicações estão na lista negra CA nunca permitirá a instalação ou reinstalação destas aplicações
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=Embora não seja altamente recomendável fazê-lo, as aplicações incompatíveis podem ser instaladas, permitindo a visualização de aplicações incompatíveis dentro das configurações gerais da CA
|
||||
This display is informational ONLY=Este ecrã é APENAS informativo
|
||||
unknown=desconhecido
|
||||
Last Change To Application Feed=Última Alteração à Lista de Aplicações
|
||||
Number Of Docker Applications=Número de Aplicações Docker
|
||||
Number Of Plugin Applications=Número de Aplicações Plugin
|
||||
Number Of Templates=Número de Modelos
|
||||
Number Of Repositories=Número de Repositórios
|
||||
Number Of Private Docker Applications=Número de aplicações Docker Privadas
|
||||
Number Of Invalid Templates=Número de Modelos Inválidos
|
||||
Number Of Template Errors=Número de Erros de Modelo
|
||||
Number Of Blacklisted Apps=Número de Aplicações na Lista Negra
|
||||
Number Of Incompatible Applications=Número de Aplicações Incompatíveis
|
||||
Number Of Deprecated Applications=Número de Aplicações Descontinuadas
|
||||
Number Of Moderation Entries=Número de Registos de Moderação
|
||||
Primary Server=Servidor Primário
|
||||
Backup Server=Servidor de Backup
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=Lista de Repositórios
|
||||
All Invalid Templates Found=Todos os Modelos Inválidos Encontrados
|
||||
Template Errors=Erros de Modelo
|
||||
All Moderation Entries=Todos os Registos de Moderação
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=Não foram encontrados modelos inválidos
|
||||
These templates are invalid and the application they are referring to is unknown=Estes modelos são inválidos e a aplicação a que se referem é desconhecida
|
||||
No templates were automatically fixed=Nenhum modelo foi automaticamente corrigido
|
||||
All of these errors found have been fixed automatically=Todos estes erros encontrados foram corrigidos automaticamente
|
||||
Note that many of these errors can be avoided by following the directions=Notar que muitos destes erros podem ser evitados seguindo as instruções
|
||||
HERE=AQUI
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=Os seguintes plugins têm nomes de arquivo duplicados e não podem ser instalados simultaneamente
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=As seguintes aplicações docker referem-se ao mesmo repositório docker mas podem ter alterações subtis no modelo para o justificar
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=Se alguma destas entradas estiver incorreta, contacte os moderadores da CA para discutir
|
||||
Global Repository Comments=Comentários do Repositório Global
|
||||
Applied to all applications=(Aplicado a todas as aplicações)
|
||||
Individual Application Moderation=Moderação individual por aplicação
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Registo de alterações de CA
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=Cópia de segurança
|
||||
Cloud=Nuvem
|
||||
Downloaders=Downloaders
|
||||
Game Servers=Servidores de Jogo
|
||||
Home Automation=Domótica
|
||||
Media Applications=Aplicações de Mídea
|
||||
Books=Livros
|
||||
Music=Música
|
||||
Photos=Fotografias
|
||||
Video=Vídeo
|
||||
Other=Outros
|
||||
Media Servers=Servidores de Mídea
|
||||
Network Services=Serviços de Rede
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=Gestão
|
||||
Messenger=Messenger
|
||||
Proxy=Proxy
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=Produtividade
|
||||
Security=Segurança
|
||||
Tools Utilities=Ferramentas / Utilitários
|
||||
System=Sistema
|
||||
Themes=Temas
|
||||
Utilities=Utilitários
|
||||
Private Apps=Aplicações Privadas
|
||||
Uncategorized=Sem categoria
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=ServidorJogos
|
||||
HomeAutomation=Domótica
|
||||
MediaApp=AppMultimédia
|
||||
MediaAppBooks=AppMultimédia:Livros
|
||||
MediaAppMusic=AppMultimédia:Música
|
||||
MediaAppPhotos=AppMultimédia:Fotos
|
||||
MediaAppVideo=AppMultimédia:Vídeo
|
||||
MediaAppOther=AppMultimédia:Outros
|
||||
MediaServer=ServidorMultimédia
|
||||
MediaServerBooks=ServidorMultimédia:Livros
|
||||
MediaServerMusic=ServidorMultimédia:Música
|
||||
MediaServerPhotos=ServidorMultimédia:Fotos
|
||||
MediaServerVideo=ServidorMultimédia:Vídeo
|
||||
MediaServerOther=ServidorMultimédia:Outros
|
||||
Network=Rede
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Administração
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Outros
|
||||
ToolsSystem=Ferramentas:Sistema
|
||||
ToolsThemes=Ferramentas:Temas
|
||||
ToolsUtilities=Ferramentas:Utilitários
|
||||
Other=Outros
|
||||
OtherUncategorized=Outros:SemCategoria
|
||||
and %s more=e %s mais
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=Doar ao autor
|
||||
Donate To Maintainer=Doar ao Maintainer
|
||||
Author=Autor
|
||||
Maintainer=Maintainer
|
||||
DockerHub=DockerHub
|
||||
Application Template=Modelo de aplicação
|
||||
Base OS=OS Base
|
||||
DockerHub Stars=Estrelas DockerHub
|
||||
Added to CA=Adicionado ao CA
|
||||
Date Updated=Última Atualização
|
||||
Current Version=Versão Atual
|
||||
Minimum OS=Versão Mínima do SO
|
||||
Max OS=Versão Máxima do SO
|
||||
Total Downloads=Total de transferências
|
||||
Licence=Licença
|
||||
30 Day Trend=Tendência 30 Dias
|
||||
Ranked #%s=Posição #%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=Tendência %s
|
||||
; as in As of some date
|
||||
As of %s=(Há data de %s)
|
||||
This application template has been blacklisted=Esta aplicação / modelo foi colocado na lista negra
|
||||
This application template has been deprecated=Esta aplicação / modelo está obsoleto(a)
|
||||
This application is not compatible with your version of Unraid=Esta aplicação não é compatível com a sua versão de Unraid
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Outro separador ou dispositivo do navegador atualizou os modelos apresentados. Algumas ações não estão disponíveis
|
||||
Reinstall default=Reinstalar (predefinido)
|
||||
WebUI=Interface web
|
||||
Reinstall=Reinstalar
|
||||
Install=Instalar
|
||||
Project=Projeto
|
||||
Install Using The Templates Default Tag=Instalar usando a etiqueta predefinida do modelo
|
||||
Moderator Comments=Comentários do Moderador:
|
||||
Note not all authors keep up to date on change logs=Notar que nem todos os autores mantém os registos de alterações atualizados
|
||||
Note not all maintainers keep up to date on change logs=Notar que nem todos os maintainers mantém os registos de alterações atualizados
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=Doar
|
||||
Currently Installed Version=Versão Instalada Atualmente
|
||||
Install The Update=Instalar a Atualização
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=Última Versão
|
||||
Multi Language Support=Suporte para Múltiplos Idiomas
|
||||
; as in more than 100000
|
||||
More than %s=Mais de %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=Tendências por Mês
|
||||
Downloads Per Month=Transferências por Mês
|
||||
Total Downloads=Total de Transferências
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=A instalar as aplicações docker %s
|
||||
Starting %s=Iniciando %s
|
||||
%s failed to start You should install it by itself to fix the errors=%s não conseguiu iniciar Deve instalá-lo por si só para corrigir os erros
|
||||
Setting installed applications to autostart=Definindo as aplicações instaladas para o auto-arranque
|
||||
Docker Application Installation finished=Instalação da Aplicação Docker concluída
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Privado (Conversão de dockerHub)
|
||||
Go to the project page=Ir para a página do projeto
|
||||
Go to the support thread=Ir para o tópico de suporte
|
||||
Uninstall Application=Desinstalar aplicação
|
||||
Remove Private Application=Remover aplicação privada
|
||||
Remove Application From List=Remover aplicação da lista
|
||||
Check off to select multiple reinstalls=Marcar para selecionar múltiplas reinstalações
|
||||
Go to the plugin settings=Ir para as definições de plugin
|
||||
Click to reinstall the application using default values=Clicar para reinstalar aplicação usando os valores padrão
|
||||
Click to edit the application values=Clicar para editar os valores da aplicação
|
||||
Click to reinstall=Clicar para reinstalar
|
||||
Click to install=Clicar para instalar
|
||||
Install plugin=Instalar plugin
|
||||
Click to go to the WebUI=Clicar para ir para a WebUI
|
||||
This application has been marked as being Beta=Esta aplicação foi marcado como sendo Beta
|
||||
This application template has been deprecated=Este modelo de aplicação foi depreciado
|
||||
This application is not compatible with your version of Unraid=Esta aplicação não é compatível com a sua versão de Unraid
|
||||
This application template has been blacklisted=Este modelo de aplicação foi colocado na lista negra
|
||||
Search for more applications from %s=Procurar mais aplicações a partir de %s
|
||||
Click for more information=Clicar para mais informação
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=Pesquisa de contentores a partir de %s
|
||||
Search for similar containers=Procurar por contentores semelhantes
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Mostrando %1$s - %2$s (de %3$s)
|
||||
|
||||
Updating Content=Atualização de conteúdo
|
||||
Language=Idioma
|
||||
Switch to this language=Mudar para este idioma
|
||||
Country Code=Código do país
|
||||
Install Language Pack=Instalar pack de idioma
|
||||
Remove Language Pack=Remover pack de idioma
|
||||
Update Language Pack=Atualizar pack de idioma
|
||||
Installed Version=Versão instalada
|
||||
A note about translations=Uma nota sobre traduções
|
||||
Click here to view the language changelog=Clique aqui para ver o registo de alterações do idioma
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=Isto escolhe a forma de ordenar os resultados
|
||||
These icons respectively will Install or Edit an application=Estes ícones respetivamente Instalam ou Editam uma aplicação
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicando nestes ícones irá aceder a uma GUI ou definições de uma aplicação
|
||||
This will update an application=Isto atualizará uma aplicação
|
||||
This will take you to the appropriate support thread for an application=Isto irá levá-lo ao tópico de apoio apropriado para uma aplicação
|
||||
This will immediately switch to the language=Isto irá mudar imediatamente para o idioma
|
||||
This will take you to the project page for an application=Isto irá levá-lo à página do projeto da aplicação
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=Ao clicar neste ícone, a aplicação será desinstalada ou eliminada das listas, dependendo da sua secção atual
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=Clicando nestes ícones irá afixar ou remover uma Aplicação, para posterior visualização a partir da secção Apps Afixadas
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=Clicando nisto será exibida mais informação sobre a aplicação NOTA Pode também clicar no ícone das aplicações para exibir mais informação
|
||||
Clicking this will display any warnings or extra comments about the application=Clicando aqui mostrará quaisquer avisos ou comentários extra sobre a aplicação
|
||||
On the previous apps section you can select multiple applications to install simultaneously=Na secção de aplicações anteriores pode selecionar várias aplicações para instalar simultaneamente
|
||||
This is the recommended version to install by the application author themselves=Esta é a versão recomendada para instalar pelo próprio autor da aplicação
|
||||
For support for this plugin visit=Para suporte a este plugin visite
|
||||
To view the policies Community Applications has=Para ver as políticas que as Aplicações Comunitárias têm
|
||||
Access Mode=Modo de Acesso
|
||||
Add another Path, Port, Variable, Label or Device=Adicionar outro Caminho, Porta, Variável, Etiqueta ou Dispositivo
|
||||
Add Configuration=Adicionar Configuração
|
||||
Add=Adicionar
|
||||
Always=Sempre
|
||||
App to Host=Montados na App
|
||||
Application=Aplicação
|
||||
apply update=aplicar atualização
|
||||
Array must be Started to view Docker containers=O array tem de estar **Iniciado** para ver os contentores Docker
|
||||
Are you sure=Tem a certeza
|
||||
Autostart=Arranque automático
|
||||
Back=Retroceder
|
||||
Backup=Backup
|
||||
Beta=Beta
|
||||
Books=Livros
|
||||
By=Por
|
||||
Categories=Categorias
|
||||
Check for Updates=Procurar atualizações
|
||||
Cloud=Nuvem
|
||||
Config Type=Tipo de Configuração
|
||||
Configuration not found=Configuração não encontrada
|
||||
Connection Type=Tipo de Ligação
|
||||
Console shell command=Comando de consola shell
|
||||
Container ID=ID do contentor
|
||||
Container Path=Caminho do Contentor
|
||||
Container Port=Porta do Contentor
|
||||
Container Size=Tamanho do Contentor
|
||||
Container=Contentor
|
||||
CPU Memory load=Utilização da CPU e Memória
|
||||
CPU Pinning=Fixação da CPU
|
||||
Created=Criado
|
||||
Default Value=Valor Padrão
|
||||
Device=Dispositivo
|
||||
Display=Mostrar
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=URL do DockerHub
|
||||
Docker Service failed to start=Não foi possível iniciar o Serviço Docker
|
||||
Donation Link=Link de doação
|
||||
Donation Text=Texto de doação
|
||||
Downloaders=Gestor de transferências
|
||||
Edit Configuration=Editar Configuração
|
||||
Exited=Terminado
|
||||
Extra Parameters=Parâmetros Extra
|
||||
Fixed IP address=Endereço de IP fixo
|
||||
force update=forçar atualização
|
||||
FTP=FTP
|
||||
Game Servers=Servidores de Jogos
|
||||
healthy=saudável
|
||||
Hide Buttons=Ocultar Botões
|
||||
Hide docker allocations=Ocultar alocações docker
|
||||
Hide more settings=Ocultar definições adicionais
|
||||
Home Automation=Automação Residencial
|
||||
Host Path=Caminho do Host
|
||||
Host Port=Porta do Host
|
||||
HT=HT
|
||||
Icon URL=URL do ícone
|
||||
Image ID=ID da imagem
|
||||
Key=Licença
|
||||
Label=Etiqueta
|
||||
latest=último
|
||||
Management=Gestão
|
||||
MediaApp=AppMultimédia
|
||||
MediaServer=ServidorMultimédia
|
||||
Messenger=Messenger
|
||||
Missing parameters=Faltam parámetros
|
||||
Music=Música
|
||||
Network Type=Tipo de Rede
|
||||
No Docker containers installed=Nenhum contentor Docker instalado
|
||||
of=de
|
||||
orphan image=imagem órfã
|
||||
Other=Outros
|
||||
Overview=Descrição
|
||||
Path=Caminho
|
||||
Pause All=Pausar Todos
|
||||
Photos=Fotos
|
||||
Port Mappings=Mapeamentos de portas
|
||||
Port=Porta
|
||||
Post Arguments=Argumentos Adicionais
|
||||
Privileged=Acesso Privilegiado
|
||||
Productivity=Produtividade
|
||||
Project Page=Página do Projeto
|
||||
Proxy=Proxy
|
||||
Pulling image=Obtendo imagem
|
||||
Read Only - Shared=Apenas de Leitura - Partilhado
|
||||
Read Only - Slave=Apenas de Leitura - Escravo
|
||||
Read Only=Apenas de Leitura
|
||||
ReadWrite - Shared=Leitura/Escrita - Partilhado
|
||||
ReadWrite - Slave=Leitura/Escrita - Escravo
|
||||
rebuild ready=reconstrução pronta
|
||||
rebuilding=reconstruindo
|
||||
Remove template=Eliminar modelo
|
||||
Removing container=Eliminando contentor
|
||||
Removing orphan image=Eliminado imagem órfã
|
||||
Repository=Repositório
|
||||
Required=Obrigatório
|
||||
Resume All=Resumir Todos
|
||||
Save=Guardar
|
||||
Select a template=Escolher um modelo
|
||||
Select categories=Escolher categorias
|
||||
Show docker allocations=Mostrar alocações do docker
|
||||
Show more settings=Mostrar mais definições
|
||||
Stable=Estável
|
||||
Start All=Iniciar Todos
|
||||
starting up containers=iniciando os contentores
|
||||
Stop All=Parar Todos
|
||||
Stopping container=Parando contentor
|
||||
Successfully removed container=Contentor removido com sucesso
|
||||
Successfully removed orphan image=Imagem órfã removida com sucesso
|
||||
Successfully stopped container=Contentor parado com sucesso
|
||||
Support Thread=Tópico de Suporte no Fórum
|
||||
Template repositories=Repositórios de modelos
|
||||
Template URL=URL de modelos
|
||||
Template=Modelo
|
||||
The command failed=O comando falhou
|
||||
The command finished successfully=O comando concluiu com sucesso
|
||||
TOTAL DATA PULLED=TOTAL DE DADOS DESCARREGADOS
|
||||
Unknown action=Acão desconhecida
|
||||
Update All=Atualizar Todos
|
||||
update ready=Atualização pronta
|
||||
Value=Valor
|
||||
Variable=Variável
|
||||
Video=Video
|
||||
Voip=Voip
|
||||
Volume Mappings=Mapeamentos de Volume
|
||||
wait=espera
|
||||
Was this container created using this plugin=Este contentor foi criado utilizando este plugin
|
||||
Web=Web
|
||||
WebUI=Interface Web
|
||||
Writable=Gravável
|
||||
Absolute=Absoluto
|
||||
Acknowledge=Confirmar
|
||||
Active=Ativo
|
||||
active=ativo
|
||||
Actual results=Resultados efetivos
|
||||
Add Container=Adicionar Contentor
|
||||
Add VM=Adicionar VM
|
||||
Advanced View=Visualização avançada
|
||||
AFP Security Settings=Definições de Segurança AFP
|
||||
All=Todos
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Anonimizar diagnósticos (pode tornar a resolução de problemas mais difícil)
|
||||
Apply=Aplicar
|
||||
Apps=Aplicações
|
||||
Array must be Stopped to change=O array tem de ser **Parado** para alterar
|
||||
Array Started=Array iniciado
|
||||
Array Starting=A iniciar array
|
||||
Array Stopped=Array parado
|
||||
Array Stopping=A parar array
|
||||
Array=Array
|
||||
Attributes=Atributos
|
||||
Auto=Auto
|
||||
Automatic=Automático
|
||||
Average speed=Velocidade média
|
||||
Azure=Azure
|
||||
B=B
|
||||
Back To Top=Voltar ao topo
|
||||
Basic=Básico
|
||||
Basic View=Vista básica
|
||||
BIOS=BIOS
|
||||
Black=Preto
|
||||
Browse=Explorar
|
||||
Browser error=Erro do navegador
|
||||
btrfs=btrfs
|
||||
Bug Description=Descrição do Bug
|
||||
Bug Report=Relatório de Bug
|
||||
bytes=bytes
|
||||
Cancel=Cancelar
|
||||
Capabilities=Capacidades
|
||||
Case-sensitive names=Nomes com distinção entre maiúsculas e minúsculas
|
||||
Center=Centro
|
||||
Change=Alterar
|
||||
Check=Verificar
|
||||
Clear=Clear
|
||||
Clearing=Clearing
|
||||
Click for context menu=Clicar para o menu de contexto
|
||||
Click=Clicar
|
||||
close all notifications=fechar todas as notificações
|
||||
Close=Fechar
|
||||
close=fechar
|
||||
Comment=Comentário
|
||||
Contact Email Address=Endereço Email de Contacto
|
||||
Contact Support=Contacto de Suporte
|
||||
containing your key file URL=com o URL da sua licença
|
||||
Copy=Cópia
|
||||
CPU=CPU
|
||||
Dashboard=Painel de controlo
|
||||
day=dia
|
||||
%s day ago=%s dia atrás
|
||||
%s days ago=%s dias atrás
|
||||
Days_array=Sunday:Domingo Monday:Segunda Tuesday:Terça Wednesday:Quarta Thursday:Quinta Friday:Sexta Saturday:Sábado Sun:Dom Mon:Seg Tue:Ter Wed:Qua Thu:Qui Fri:Sex Sat:Sab
|
||||
days=dias
|
||||
Default=Predefinição
|
||||
default=predefinição
|
||||
Delete=Eliminar
|
||||
Description=Descrição
|
||||
Device contents emulated, in standby mode spun-down=Conteúdo do dispositivo emulado, em modo de espera (suspenso)
|
||||
Device contents emulated=Conteúdo do dispositivo emulado
|
||||
Device is disabled, contents emulated=O dispositivo está desativado, o conteúdo é emulado
|
||||
Device is in standby mode spun-down=O dispositivo está em modo de espera (suspenso)
|
||||
Device is missing disabled, contents emulated=Falta o dispositivo (desativado), o conteúdo é emulado
|
||||
Device not present=Dispositivo não presente
|
||||
Device=Dispositivo
|
||||
directories=diretórios
|
||||
directory=diretório
|
||||
Disabled=Desativado
|
||||
disabled=desativado
|
||||
Disk=Disco
|
||||
disk=disco
|
||||
Do you want to update to the new version=Deseja atualizar para a nova versão
|
||||
Docker=Docker
|
||||
Done=Feito
|
||||
Download=Descarregar
|
||||
Duration=Duração
|
||||
Edit=editar
|
||||
edit=editar
|
||||
Emulated=Emulado
|
||||
emulated=emulado
|
||||
Enabled=Ativado
|
||||
enabled=ativado
|
||||
Encrypted and unlocked=Encriptado e desbloqueado
|
||||
Error code=Código de erro
|
||||
Error=Erro
|
||||
error=erro
|
||||
Errors=Erros
|
||||
errors=erros
|
||||
Expected results=Resultados esperados
|
||||
Export=Exportar
|
||||
Faulty=Defeituoso
|
||||
faulty=defeituoso
|
||||
Feedback=Comentários
|
||||
File too large=ficheiro demasiado grande
|
||||
file=ficheiro
|
||||
files=ficheiros
|
||||
Fixed=Fixa
|
||||
Flash=Pendrive
|
||||
flash=pendrive
|
||||
Flash GUID=GUI da pendrive
|
||||
Flash Product=Modelo da pendrive
|
||||
Flash Vendor=Fabricante da pendrive
|
||||
FOLDER=PASTA
|
||||
folder=pasta
|
||||
Force lower=Forçar minúsculas
|
||||
Format=Formatar
|
||||
Formatting devices=A formatar dispositivos
|
||||
Forum=Fórum
|
||||
GB=GB
|
||||
Go to Registration page=Ir para a página de Registo
|
||||
GPT 4KiB-aligned=GPT 4KiB-alinhado
|
||||
Gray=Cinza
|
||||
Guests have no access=Os convidados **não** têm acesso
|
||||
Guests have read-only access=Os convidados têm acesso **apenas de leitura**
|
||||
Heat alarm=Alarme de aquecimento
|
||||
Help=Ajuda
|
||||
here=aqui
|
||||
History=Histórico
|
||||
hour=hora
|
||||
hours=horas
|
||||
%s hour ago=%s hora atrás
|
||||
%s hours ago=%s horas atrás
|
||||
How to reproduce=Como reproduzir
|
||||
hr=hr
|
||||
HVM=HVM
|
||||
Identity=Identidade
|
||||
Inactive=Inativo
|
||||
Index of=Índice de
|
||||
Info=Info
|
||||
Install Key=Instalar Licença
|
||||
interface down=interface sem ligação
|
||||
Interface=Interface
|
||||
IOMMU=IOMMU
|
||||
is available=está disponível
|
||||
KB=KB
|
||||
Kernel=Kernel
|
||||
Last Modified=Última modificação
|
||||
Left=Esquerda
|
||||
less than a minute remaining=menos de um minuto restante
|
||||
less than a minute=menos de um minuto
|
||||
Load=Carga
|
||||
Location=Localização
|
||||
Locked missing encryption key=Bloqueado: chave de encriptação em falta
|
||||
Locked unknown error=Bloqueado: erro desconhecido
|
||||
Locked wrong encryption key=Bloqueado: chave de encriptação errada
|
||||
Log=Registo
|
||||
Login=Iniciar Sessão
|
||||
Logout=Encerrar Sessão
|
||||
Main=Principal
|
||||
manual=manual
|
||||
max installable capacity=capacidade máxima instalável
|
||||
Maximum file upload size is 512K=O tamanho máximo de carregamento de ficheiros é de 512K
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB-alinhado
|
||||
MBR 4KiB-aligned=MBR: 4KiB-alinhado
|
||||
MBR unaligned=MBR: não-alinhado
|
||||
Memory=Memória
|
||||
min=min
|
||||
minute=minuto
|
||||
minutes=minutos
|
||||
%s minute ago=%s minuto atrás
|
||||
%s minutes ago=%s minutos atrás
|
||||
Model=Modelo
|
||||
%s month ago=%s mês atrás
|
||||
%s months ago=%s meses atrás
|
||||
Months_array=January:Janeiro February:Fevereiro March:Março April:Abril May:Maio June:Junho July:Julho August:Agosto September:Setembro October:Outubro November:Novembro December:Dezembro Jan:Jan Feb:Fev Mar:Mar Apr:Abr May:Mai Jun:Jun Jul:Jul Aug:Ago Sep:Set Oct:Out Nov:Nov Dec:Dez
|
||||
months=meses
|
||||
More=Mais
|
||||
Motherboard=Motherboard
|
||||
Move=Mover
|
||||
NA=N/A
|
||||
Name=Nome
|
||||
Network=Rede
|
||||
Never=Nunca
|
||||
New device, in standby mode spun-down=Novo dispositivo, em modo de espera (suspenso)
|
||||
New device=Novo dispositivo
|
||||
NFS Security Settings=Definições de Segurança NFS
|
||||
No Access=Sem acesso
|
||||
No device=Sem dispositivo
|
||||
no device=sem dispositivo
|
||||
No errors reported=Nenhum erro reportado
|
||||
No information available=Não há informação disponível
|
||||
No listing Too many files=Sem listagem: Demasiados ficheiros
|
||||
No reply from mail server=Sem resposta do servidor de correio
|
||||
No=Não
|
||||
no=não
|
||||
None=Nenhum
|
||||
none=nenhum
|
||||
Normal operation, device is active=Funcionamento normal, o dispositivo está ativo
|
||||
Normal=Normal
|
||||
Normalized=Normalizado
|
||||
Not Available=Não Disponível
|
||||
not available=não disponível
|
||||
not connected=não ligado
|
||||
Not encrypted=Não encriptado
|
||||
not encrypted=não encriptado
|
||||
NOTE=NOTA
|
||||
Numbers_array=thirty:trinta twenty-nine:vinte e nove twenty-eight:vinte e oito twenty-seven:vinte e sete twenty-six:vinte e seis twenty-five:vinte e cinco twenty-four:vinte e quatro twenty-three:vinte e três twenty-two:vinte e dois twenty-one:vinte e um twenty:vinte nineteen:dezanove eighteen:dezoito seventeen:dezassete sixteen:dezasseis fifteen:quinze fourteen:catorze thirteen:treze twelve:doze eleven:onze ten:dez nine:nove eight:oito seven:sete six:seis five:cinco four:quatro three:três two:dois one:um zero:zero
|
||||
objects=objetos
|
||||
Off=Desligado
|
||||
off-line=off-line
|
||||
OK=OK
|
||||
Ok=Ok
|
||||
ok=ok
|
||||
On=Ligado
|
||||
Online Manual=Manual Online
|
||||
Online manual=Manual Online
|
||||
OpenSSL=OpenSSL
|
||||
optional=opcional
|
||||
Other Comment=Outros Comentários
|
||||
Other information=Outras informações
|
||||
Parity device is disabled=O dispositivo de paridade está desativado
|
||||
Parity device is missing=Falta o dispositivo de paridade
|
||||
Parity is invalid, in standby mode spun-down=Paridade é inválida, em modo de espera (suspenso)
|
||||
Parity is invalid=Paridade é inválida
|
||||
Parity is valid=Paridade é valida
|
||||
Parity=Paridade
|
||||
parity=paridade
|
||||
Parity-Check=Verificação de paridade
|
||||
Parity-Sync Data-Rebuild=Sincronização de Paridade / Reconstrução de Dados
|
||||
Pause=Pausa
|
||||
Paused=Em pausa
|
||||
paused=em pausa
|
||||
PB=PB
|
||||
Please select one file only=Por favor selecionar apenas um ficheiro
|
||||
Please summarize your suggestion here=Por favor resuma aqui a sua sugestão
|
||||
Please try again later=Por favor tente novamente mais tarde
|
||||
Please wait=Por favor aguarde
|
||||
Plugins=Plugins
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=Privado
|
||||
Pro=Pro
|
||||
Proceed=Continuar
|
||||
Processor=Processador
|
||||
Product Suggestion=Enviar Sugestão
|
||||
Public=Público
|
||||
RAM=RAM
|
||||
Raw=Raw
|
||||
Read=Leitura
|
||||
Read settings from=Ler definições de
|
||||
Read-Check=Verificação da Leitura
|
||||
Read-only=Apenas leitura
|
||||
Reads=Leituras
|
||||
ReadWrite=Leitura/Escrita
|
||||
Reboot Now=Reiniciar agora
|
||||
Reboot=Reiniciar
|
||||
Refresh=Atualizar
|
||||
Registration=Licença
|
||||
reiserfs=reiserfs
|
||||
Release Notes=Notas de Lançamento
|
||||
Remove=Remover
|
||||
Renew=Renovar
|
||||
Reset=Reset
|
||||
Restart=Reiniciar
|
||||
Resume=Retomar
|
||||
Right=Direita
|
||||
RPM=RPM
|
||||
Running=Em execução
|
||||
running=em execução
|
||||
safe mode=modo de segurança
|
||||
sec=seg
|
||||
second=segundo
|
||||
seconds=segundos
|
||||
%s second ago=%s segundo atrás
|
||||
%s seconds ago=%s segundos atrás
|
||||
Secure=Seguro
|
||||
Security=Segurança
|
||||
Security Settings=Definições de Segurança
|
||||
select=selecionar
|
||||
Self-Test=Autoteste
|
||||
Server=Servidor
|
||||
Settings=Definições
|
||||
Share=Partilha
|
||||
Share name=Nome da partilha
|
||||
Shares List=Lista de Partilhas
|
||||
Shares=Partilhas
|
||||
Shutdown=Encerrar
|
||||
Size=Tamanho
|
||||
SMB Security Settings=Definições de segurança SMB
|
||||
sn=n/s
|
||||
Sorry, an error occurred=Lamento, ocorreu um erro
|
||||
Standby=Em espera
|
||||
standby=em espera
|
||||
Start=Iniciar
|
||||
Started=Iniciado
|
||||
started=iniciado
|
||||
Status=Estado
|
||||
status=estado
|
||||
Stop=Parar
|
||||
Stopped=Parado
|
||||
stopped=parado
|
||||
Streams=Ligações
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=O envio deste relatório de bug enviará automaticamente o ficheiro de diagnóstico do seu sistema à Lime Technology
|
||||
Submit=Submeter
|
||||
System Information=Informações do sistema
|
||||
System is going down=O sistema está a encerrar
|
||||
System is offline=O sistema está offline
|
||||
System is powered off=O sistema está desligado
|
||||
System is rebooting=O sistema está a reiniciar
|
||||
System Log=Registo do sistema
|
||||
System notifications are=As notificações do sistema estão
|
||||
System running in=Sistema a funcionar em
|
||||
System=Sistema
|
||||
TB=TB
|
||||
Temperature=Temperatura
|
||||
Template Repositories=Repositórios de modelos
|
||||
Terminal=Terminal
|
||||
Test result=Resultado do teste
|
||||
Thank You=Obrigado
|
||||
The error is=O erro é
|
||||
to change notification settings=para alterar as definições de notificação
|
||||
to downgrade Unraid OS=para voltar a uma versão anterior do SO Unraid
|
||||
to upgrade Unraid OS=para atualizar o SO Unraid
|
||||
today=hoje
|
||||
Too many files=Demasiados ficheiros
|
||||
Tools=Ferramentas
|
||||
Total=Total
|
||||
total=total
|
||||
Type your question or comment to Lime Technology here=Escreva aqui a sua pergunta ou comentário à Lime Technology
|
||||
Type=Tipo
|
||||
Unable to generate system diagnostics=Incapaz de gerar diagnósticos de sistema
|
||||
Unassigned=Não atribuído
|
||||
unassigned=não atribuído
|
||||
Unknown=Desconhecido
|
||||
unknown=desconhecido
|
||||
Unraid OS=SO Unraid
|
||||
Update Container=Atualizar Contentor
|
||||
Update Now=Atualizar Agora
|
||||
Update VM=Atualizar VM
|
||||
Update=Atualizar
|
||||
update=atualizar
|
||||
Updated=Atualizado
|
||||
Upload error=Erro de Upload
|
||||
Upload=Upload
|
||||
Uptime=Tempo de atividade
|
||||
up-to-date=atualizado
|
||||
User Access=Acesso de utilizador
|
||||
Users=Utilizadores
|
||||
Utilization=Utilização
|
||||
Version=Versão
|
||||
View Release Notes=Ver Notas de Lançamento
|
||||
View=Ver
|
||||
VMs=VMs
|
||||
VPN=VPN
|
||||
Warning=Aviso
|
||||
Website=Página Web
|
||||
%s week ago=%s semana atrás
|
||||
%s weeks ago=%s semanas atrás
|
||||
White=Branco
|
||||
Wiki=Wiki
|
||||
Write=Escrever
|
||||
Write settings to=Guardar definições para
|
||||
Wrong=Errado
|
||||
wrong=errado
|
||||
xfs=xfs
|
||||
Yes, I want to do this=Sim, eu quero fazer isto
|
||||
Yes=Sim
|
||||
yes=sim
|
||||
Yes hidden=Sim (oculto)
|
||||
Yes Time Machine=Sim (Time Machine)
|
||||
YesTime Machine hidden=Sim/Time Machine (oculto)
|
||||
YesTime Machine=Sim/Time Machine
|
||||
yesterday=ontem
|
||||
You must reboot for changes to take effect=É necessário reiniciar para que as alterações tenham efeito
|
||||
Your browser does not support HTML5 file uploads=O seu browser não suporta carregamentos de ficheiros HTML5
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=Array ocupado
|
||||
Buttons=Botões
|
||||
Parity operation or mover is running=Uma operação de paridade ou o serviço mover está a decorrer
|
||||
preparing for reboot=preparando para reiniciar
|
||||
preparing for shutdown=preparando para encerrar
|
||||
Sleep=Suspender
|
||||
Start Array=Iniciar Array
|
||||
starting the array=iniciando array
|
||||
Stop Array=Parar Array
|
||||
stopping the array=Parando array
|
||||
System in sleep mode=Sistema em modo de suspensão
|
||||
This will put the system to sleep=Isto suspenderá o sistema
|
||||
This will reboot the system=Isto reiniciará o sistema
|
||||
This will shutdown the system=Isto encerrará o sistema
|
||||
This will start the array=Isto iniciará o sistema
|
||||
This will stop the array=Isto parará o sistema
|
862
languages/sv_SE
Normal file
862
languages/sv_SE
Normal file
@ -0,0 +1,862 @@
|
||||
Cancel=
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=
|
||||
Happy Holidays from Andrew, Tracey, and family=
|
||||
Please Enjoy Responsibly=
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=
|
||||
Sorting options unavailable=
|
||||
Sort By Name Ascending=
|
||||
Sort By Name Descending=
|
||||
Sort By Downloads=
|
||||
Sort By Trend=
|
||||
Sort By Date Added=
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=
|
||||
Application Policy=
|
||||
I Understand=
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=
|
||||
Click here=
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=
|
||||
Plugin Note=
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=
|
||||
Please enter search term=
|
||||
Click Here To Get More Results From DockerHub=
|
||||
No Matching Applications Found On Docker Hub=
|
||||
No Matching Applications Found=
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=
|
||||
Yes, delete it=
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=
|
||||
Yes uninstall it=
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=
|
||||
Yes, remove it=
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=
|
||||
Click to unpin this application=
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=
|
||||
|
||||
Yes, install it=
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=
|
||||
Updating Support Links=
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=
|
||||
An error occurred Could not find any %s Apps=
|
||||
Download of appfeed failed=
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=
|
||||
Installed Apps=
|
||||
Previous Apps=
|
||||
Pinned Apps=
|
||||
CATEGORIES=
|
||||
New Apps=
|
||||
Updated Apps=
|
||||
Random Apps=
|
||||
Top New Installs=
|
||||
Trending Apps=
|
||||
All Apps=
|
||||
OTHER=
|
||||
Statistics=
|
||||
Credits=
|
||||
Support=
|
||||
VERSION=
|
||||
Change Log=
|
||||
|
||||
; Credits
|
||||
Development=
|
||||
Additional Contributions=
|
||||
GUI Layout Design=
|
||||
Application Feed=
|
||||
Additional Testing=
|
||||
Moderation=
|
||||
Additional Libraries=
|
||||
Copyright=
|
||||
Translation=
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=
|
||||
This display is informational ONLY=
|
||||
unknown=
|
||||
Last Change To Application Feed=
|
||||
Number Of Docker Applications=
|
||||
Number Of Plugin Applications=
|
||||
Number Of Templates=
|
||||
Number Of Repositories=
|
||||
Number Of Private Docker Applications=
|
||||
Number Of Invalid Templates=
|
||||
Number Of Template Errors=
|
||||
Number Of Blacklisted Apps=
|
||||
Number Of Incompatible Applications=
|
||||
Number Of Deprecated Applications=
|
||||
Number Of Moderation Entries=
|
||||
Primary Server=
|
||||
Backup Server=
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=
|
||||
All Invalid Templates Found=
|
||||
Template Errors=
|
||||
All Moderation Entries=
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=
|
||||
These templates are invalid and the application they are referring to is unknown=
|
||||
No templates were automatically fixed=
|
||||
All of these errors found have been fixed automatically=
|
||||
Note that many of these errors can be avoided by following the directions=
|
||||
HERE=
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=
|
||||
Global Repository Comments=
|
||||
Applied to all applications=(Applied to all applications)
|
||||
Individual Application Moderation=
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=
|
||||
Cloud=
|
||||
Downloaders=
|
||||
Game Servers=
|
||||
Home Automation=
|
||||
Media Applications=
|
||||
Books=
|
||||
Music=
|
||||
Photos=
|
||||
Video=
|
||||
Other=
|
||||
Media Servers=
|
||||
Network Services=
|
||||
DNS=
|
||||
FTP=
|
||||
Management=
|
||||
Messenger=
|
||||
Proxy=
|
||||
VOIP=
|
||||
VPN=
|
||||
Web=
|
||||
Productivity=
|
||||
Security=
|
||||
Tools Utilities=Tools / Utilities
|
||||
System=
|
||||
Themes=
|
||||
Utilities=
|
||||
Private Apps=
|
||||
Uncategorized=
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=
|
||||
HomeAutomation=
|
||||
MediaApp=
|
||||
MediaAppBooks=MediaApp:Books
|
||||
MediaAppMusic=MediaApp:Music
|
||||
MediaAppPhotos=MediaApp:Photos
|
||||
MediaAppVideo=MediaApp:Video
|
||||
MediaAppOther=MediaApp:Other
|
||||
MediaServer=
|
||||
MediaServerBooks=MediaServer:Books
|
||||
MediaServerMusic=MediaServer:Music
|
||||
MediaServerPhotos=MediaServer:Photos
|
||||
MediaServerVideo=MediaServer:Video
|
||||
MediaServerOther=MediaServer:Other
|
||||
Network=
|
||||
NetworkDNS=Network:DNS
|
||||
NetworkFTP=Network:FTP
|
||||
NetworkManagement=Network:Management
|
||||
NetworkProxy=Network:Proxy
|
||||
NetworkVOIP=Network:VOIP
|
||||
NetworkVPN=Network:VPN
|
||||
NetworkWeb=Network:Web
|
||||
NetworkOther=Network:Other
|
||||
ToolsSystem=Tools:System
|
||||
ToolsThemes=Tools:Themes
|
||||
ToolsUtilities=Tools:Utilities
|
||||
Other=
|
||||
OtherUncategorized=Other:Uncategorized
|
||||
and %s more=
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=
|
||||
Donate To Maintainer=
|
||||
Author=
|
||||
Maintainer=
|
||||
DockerHub=
|
||||
Application Template=
|
||||
Base OS=
|
||||
DockerHub Stars=
|
||||
Added to CA=
|
||||
Date Updated=
|
||||
Current Version=
|
||||
Minimum OS=
|
||||
Max OS=
|
||||
Total Downloads=
|
||||
Licence=
|
||||
30 Day Trend=
|
||||
Ranked #%s=
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=
|
||||
; as in As of some date
|
||||
As of %s=(As of %s)
|
||||
This application template has been blacklisted=This application / template has been blacklisted
|
||||
This application template has been deprecated=This application / template has been deprecated
|
||||
This application is not compatible with your version of Unraid=
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=Another browser tab or device has updated the displayed templates. Some actions are not available
|
||||
Reinstall default=Reinstall (default)
|
||||
WebUI=
|
||||
Reinstall=
|
||||
Install=
|
||||
Project=
|
||||
Install Using The Templates Default Tag=Install Using The Template's Default Tag
|
||||
Moderator Comments=Moderator Comments:
|
||||
Note not all authors keep up to date on change logs=
|
||||
Note not all maintainers keep up to date on change logs=
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=
|
||||
Currently Installed Version=
|
||||
Install The Update=
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=
|
||||
Multi Language Support=
|
||||
; as in more than 100000
|
||||
More than %s=
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=
|
||||
Downloads Per Month=
|
||||
Total Downloads=
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=
|
||||
Starting %s=
|
||||
%s failed to start You should install it by itself to fix the errors=
|
||||
Setting installed applications to autostart=
|
||||
Docker Application Installation finished=
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=Private (dockerHub Conversion)
|
||||
Go to the project page=
|
||||
Go to the support thread=
|
||||
Uninstall Application=
|
||||
Remove Private Application=
|
||||
Remove Application From List=
|
||||
Check off to select multiple reinstalls=
|
||||
Go to the plugin settings=
|
||||
Click to reinstall the application using default values=
|
||||
Click to edit the application values=
|
||||
Click to reinstall=
|
||||
Click to install=
|
||||
Install plugin=
|
||||
Click to go to the WebUI=
|
||||
This application has been marked as being Beta=
|
||||
This application template has been deprecated=
|
||||
This application is not compatible with your version of Unraid=
|
||||
This application template has been blacklisted=
|
||||
Search for more applications from %s=
|
||||
Click for more information=
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=
|
||||
Search for similar containers=
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=Displaying %1$s - %2$s (of %3$s)
|
||||
|
||||
Updating Content=
|
||||
Language=
|
||||
Switch to this language=
|
||||
Country Code=
|
||||
Install Language Pack=
|
||||
Remove Language Pack=
|
||||
Update Language Pack=
|
||||
Installed Version=
|
||||
A note about translations=
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=
|
||||
These icons respectively will Install or Edit an application=
|
||||
Clicking these icons will take you to an applications GUI or settings=Clicking these icons will take you to an application's GUI or settings
|
||||
This will update an application=
|
||||
This will take you to the appropriate support thread for an application=
|
||||
This will immediately switch to the language=
|
||||
This will take you to the project page for an application=
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=
|
||||
Clicking this will display any warnings or extra comments about the application=
|
||||
On the previous apps section you can select multiple applications to install simultaneously=
|
||||
This is the recommended version to install by the application author themselves=
|
||||
For support for this plugin visit=
|
||||
To view the policies Community Applications has=
|
||||
Access Mode=
|
||||
Add another Path, Port, Variable, Label or Device=Läg till en annan Sökväg, Port, Variabel, Etikett eller Enhet
|
||||
Add Configuration=Lägg till konfiguration
|
||||
Add=Lägg till
|
||||
Always=Alltid
|
||||
App to Host=
|
||||
Application=Applikation
|
||||
apply update=
|
||||
Array must be Started to view Docker containers=Array must be **Started** to view Docker containers
|
||||
Are you sure=Är du säker
|
||||
Autostart=
|
||||
Back=
|
||||
Backup=
|
||||
Beta=
|
||||
Books=Böcker
|
||||
By=Av
|
||||
Categories=Kategorier
|
||||
Check for Updates=Leta efter uppdateringar
|
||||
Cloud=
|
||||
Config Type=Konfigurationstyp
|
||||
Configuration not found=Konfiguration ej funnen
|
||||
Connection Type=Anslutningstyp
|
||||
Console shell command=
|
||||
Container ID=Container-ID
|
||||
Container Path=Container-sökväg
|
||||
Container Port=Container-port
|
||||
Container Size=Container-storlek
|
||||
Container=
|
||||
CPU Memory load=
|
||||
CPU Pinning=
|
||||
Created=Skapad
|
||||
Default Value=Standardvärde
|
||||
Device=Enhet
|
||||
Display=
|
||||
DNS=
|
||||
Docker Containers=
|
||||
Docker Hub URL=
|
||||
Docker Service failed to start=Dockertjänsten kunde inte starta
|
||||
Donation Link=Donationslänk
|
||||
Donation Text=Donationstext
|
||||
Downloaders=Nedladdare
|
||||
Edit Configuration=Redigera konfiguration
|
||||
Exited=
|
||||
Extra Parameters=Extra parametrar
|
||||
Fixed IP address=Statisk IP-adress
|
||||
force update=tvinga uppdatering
|
||||
FTP=
|
||||
Game Servers=Spelservar
|
||||
healthy=
|
||||
Hide Buttons=Göm knappar
|
||||
Hide docker allocations=Göm dockerallokeringar
|
||||
Hide more settings=Göm mer inställningar
|
||||
Home Automation=Hemautomatisering
|
||||
Host Path=
|
||||
Host Port=
|
||||
HT=
|
||||
Icon URL=Ikon-URL
|
||||
Image ID=Bild-ID
|
||||
Key=Nyckel
|
||||
Label=Etikett
|
||||
latest=senaste
|
||||
Management=
|
||||
MediaApp=
|
||||
MediaServer=
|
||||
Messenger=
|
||||
Missing parameters=
|
||||
Music=Musik
|
||||
Network Type=Nätverkstyp
|
||||
No Docker containers installed=Inga dockercontainrar installerade
|
||||
of=av
|
||||
orphan image=
|
||||
Other=
|
||||
Overview=
|
||||
Path=Sökväg
|
||||
Pause All=Pausa alla
|
||||
Photos=Foton
|
||||
Port Mappings=Portmappningar
|
||||
Port=
|
||||
Post Arguments=
|
||||
Privileged=Priviligerad
|
||||
Productivity=Produktivitet
|
||||
Project Page=Projektsida
|
||||
Proxy=
|
||||
Pulling image=
|
||||
Read Only - Shared=Läsbehörighet - Delad
|
||||
Read Only - Slave=Läsbehörighet - Slav
|
||||
Read Only=Läsbehörighet
|
||||
ReadWrite - Shared=Läs-/Skrivbehörighet - Delad
|
||||
ReadWrite - Slave=Läs-/Skrivbehörighet - Slav
|
||||
rebuild ready=
|
||||
rebuilding=
|
||||
Remove template=
|
||||
Removing container=Tar bort container
|
||||
Removing orphan image=
|
||||
Repository=
|
||||
Required=
|
||||
Resume All=Återuppta alla
|
||||
Save=Spara
|
||||
Select a template=
|
||||
Select categories=Välj kategorier
|
||||
Show docker allocations=Visa dockerallokeringar
|
||||
Show more settings=Visa mer inställningar
|
||||
Stable=Stabil
|
||||
Start All=Starta alla
|
||||
starting up containers=startar containrar
|
||||
Stop All=Stoppa alla
|
||||
Stopping container=Stoppar container
|
||||
Successfully removed container=
|
||||
Successfully removed orphan image=
|
||||
Successfully stopped container=
|
||||
Support Thread=Supporttråd
|
||||
Template repositories=
|
||||
Template URL=
|
||||
Template=
|
||||
The command failed=Kommandot misslyckades
|
||||
The command finished successfully=Kommandot kördes framgångsrikt
|
||||
TOTAL DATA PULLED=
|
||||
Unknown action=
|
||||
Update All=Uppdatera alla
|
||||
update ready=uppdatering redo
|
||||
Value=Värde
|
||||
Variable=Variabel
|
||||
Video=Video
|
||||
Voip=
|
||||
Volume Mappings=Volymmappningar
|
||||
wait=
|
||||
Was this container created using this plugin=Skapades den här containern av det här pluginet
|
||||
Web=
|
||||
WebUI=
|
||||
Writable=Skrivbar
|
||||
Absolute=
|
||||
Acknowledge=
|
||||
Active=
|
||||
active=
|
||||
Actual results=
|
||||
Add Container=
|
||||
Add VM=
|
||||
Advanced View=
|
||||
AFP Security Settings=
|
||||
All=
|
||||
Anonymize diagnostics may make troubleshooting more difficult=Anonymize diagnostics (may make troubleshooting more difficult)
|
||||
Apply=
|
||||
Apps=
|
||||
Array must be Stopped to change=Array must be **Stopped** to change
|
||||
Array Started=
|
||||
Array Starting=
|
||||
Array Stopped=
|
||||
Array Stopping=
|
||||
Array=
|
||||
Attributes=
|
||||
Auto=
|
||||
Automatic=
|
||||
Average speed=
|
||||
Azure=
|
||||
B=
|
||||
Back To Top=
|
||||
Basic=
|
||||
Basic View=
|
||||
BIOS=
|
||||
Black=
|
||||
Browse=
|
||||
Browser error=
|
||||
btrfs=
|
||||
Bug Description=
|
||||
Bug Report=
|
||||
bytes=
|
||||
Cancel=
|
||||
Capabilities=
|
||||
Case-sensitive names=
|
||||
Center=
|
||||
Change=
|
||||
Check=
|
||||
Clear=
|
||||
Clearing=
|
||||
Click for context menu=
|
||||
Click=
|
||||
close all notifications=
|
||||
Close=
|
||||
close=
|
||||
Comment=
|
||||
Contact Email Address=
|
||||
Contact Support=
|
||||
containing your key file URL=
|
||||
Copy=
|
||||
CPU=
|
||||
Dashboard=
|
||||
day=
|
||||
%s day ago=
|
||||
%s days ago=
|
||||
Days_array=Sunday:Sunday Monday:Monday Tuesday:Tuesday Wednesday:Wednesday Thursday:Thursday Friday:Friday Saturday:Saturday Sun:Sun Mon:Mon Tue:Tue Wed:Wed Thu:Thu Fri:Fri Sat:Sat
|
||||
days=
|
||||
Default=
|
||||
default=
|
||||
Delete=
|
||||
Description=
|
||||
Device contents emulated, in standby mode spun-down=Device contents emulated, in standby mode (spun-down)
|
||||
Device contents emulated=
|
||||
Device is disabled, contents emulated=
|
||||
Device is in standby mode spun-down=Device is in standby mode (spun-down)
|
||||
Device is missing disabled, contents emulated=Device is missing (disabled), contents emulated
|
||||
Device not present=
|
||||
Device=
|
||||
directories=
|
||||
directory=
|
||||
Disabled=
|
||||
disabled=
|
||||
Disk=
|
||||
disk=
|
||||
Do you want to update to the new version=
|
||||
Docker=
|
||||
Done=
|
||||
Download=
|
||||
Duration=
|
||||
Edit=
|
||||
edit=
|
||||
Emulated=
|
||||
emulated=
|
||||
Enabled=
|
||||
enabled=
|
||||
Encrypted and unlocked=
|
||||
Error code=
|
||||
Error=
|
||||
error=
|
||||
Errors=
|
||||
errors=
|
||||
Expected results=
|
||||
Export=
|
||||
Faulty=
|
||||
faulty=
|
||||
Feedback=
|
||||
File too large=
|
||||
file=
|
||||
files=
|
||||
Fixed=
|
||||
Flash=
|
||||
flash=
|
||||
Flash GUID=
|
||||
Flash Product=
|
||||
Flash Vendor=
|
||||
FOLDER=
|
||||
folder=
|
||||
Force lower=
|
||||
Format=
|
||||
Formatting devices=
|
||||
Forum=
|
||||
GB=
|
||||
Go to Registration page=
|
||||
GPT 4KiB-aligned=
|
||||
Gray=
|
||||
Guests have no access=Guests have **no** access
|
||||
Guests have read-only access=Guests have **read-only** access
|
||||
Heat alarm=
|
||||
Help=
|
||||
here=
|
||||
History=
|
||||
hour=
|
||||
hours=
|
||||
%s hour ago=
|
||||
%s hours ago=
|
||||
How to reproduce=
|
||||
hr=
|
||||
HVM=
|
||||
Identity=
|
||||
Inactive=
|
||||
Index of=
|
||||
Info=
|
||||
Install Key=
|
||||
interface down=
|
||||
Interface=
|
||||
IOMMU=
|
||||
is available=
|
||||
KB=
|
||||
Kernel=
|
||||
Last Modified=
|
||||
Left=
|
||||
less than a minute remaining=
|
||||
less than a minute=
|
||||
Load=
|
||||
Location=
|
||||
Locked missing encryption key=Locked: missing encryption key
|
||||
Locked unknown error=Locked: unknown error
|
||||
Locked wrong encryption key=Locked: wrong encryption key
|
||||
Log=
|
||||
Login=
|
||||
Logout=
|
||||
Main=
|
||||
manual=
|
||||
max installable capacity=
|
||||
Maximum file upload size is 512K=
|
||||
MB=
|
||||
MBR 1MiB-aligned=MBR: 1MiB-aligned
|
||||
MBR 4KiB-aligned=MBR: 4KiB-aligned
|
||||
MBR unaligned=MBR: unaligned
|
||||
Memory=
|
||||
min=
|
||||
minute=
|
||||
minutes=
|
||||
%s minute ago=
|
||||
%s minutes ago=
|
||||
Model=
|
||||
%s month ago=
|
||||
%s months ago=
|
||||
Months_array=January:January February:February March:March April:April May:May June:June July:July August:August September:September October:October November:November December:December Jan:Jan Feb:Feb Mar:Mar Apr:Apr May:May Jun:Jun Jul:Jul Aug:Aug Sep:Sep Oct:Oct Nov:Nov Dec:Dec
|
||||
months=
|
||||
More=
|
||||
Motherboard=
|
||||
Move=
|
||||
NA=N/A
|
||||
Name=
|
||||
Network=
|
||||
Never=
|
||||
New device, in standby mode spun-down=New device, in standby mode (spun-down)
|
||||
New device=
|
||||
NFS Security Settings=
|
||||
No Access=
|
||||
No device=
|
||||
no device=
|
||||
No errors reported=
|
||||
No information available=
|
||||
No listing Too many files=No listing: Too many files
|
||||
No reply from mail server=
|
||||
No=
|
||||
no=
|
||||
None=
|
||||
none=
|
||||
Normal operation, device is active=
|
||||
Normal=
|
||||
Normalized=
|
||||
Not Available=
|
||||
not available=
|
||||
not connected=
|
||||
Not encrypted=
|
||||
not encrypted=
|
||||
NOTE=
|
||||
Numbers_array=thirty:thirty twenty-nine:twenty-nine twenty-eight:twenty-eight twenty-seven:twenty-seven twenty-six:twenty-six twenty-five:twenty-five twenty-four:twenty-four twenty-three:twenty-three twenty-two:twenty-two twenty-one:twenty-one twenty:twenty nineteen:nineteen eighteen:eighteen seventeen:seventeen sixteen:sixteen fifteen:fifteen fourteen:fourteen thirteen:thirteen twelve:twelve eleven:eleven ten:ten nine:nine eight:eight seven:seven six:six five:five four:four three:three two:two one:one zero:zero
|
||||
objects=
|
||||
Off=
|
||||
off-line=
|
||||
OK=
|
||||
Ok=
|
||||
ok=
|
||||
On=
|
||||
Online Manual=
|
||||
Online manual=
|
||||
OpenSSL=
|
||||
optional=
|
||||
Other Comment=
|
||||
Other information=
|
||||
Parity device is disabled=
|
||||
Parity device is missing=
|
||||
Parity is invalid, in standby mode spun-down=Parity is invalid, in standby mode (spun-down)
|
||||
Parity is invalid=
|
||||
Parity is valid=
|
||||
Parity=
|
||||
parity=
|
||||
Parity-Check=
|
||||
Parity-Sync Data-Rebuild=Parity-Sync / Data-Rebuild
|
||||
Pause=
|
||||
Paused=
|
||||
paused=
|
||||
PB=
|
||||
Please select one file only=
|
||||
Please summarize your suggestion here=
|
||||
Please try again later=
|
||||
Please wait=
|
||||
Plugins=
|
||||
Plus=
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=
|
||||
Pro=
|
||||
Proceed=
|
||||
Processor=
|
||||
Product Suggestion=
|
||||
Public=
|
||||
RAM=
|
||||
Raw=
|
||||
Read=
|
||||
Read settings from=
|
||||
Read-Check=
|
||||
Read-only=
|
||||
Reads=
|
||||
ReadWrite=Read/Write
|
||||
Reboot Now=
|
||||
Reboot=
|
||||
Refresh=
|
||||
Registration=
|
||||
reiserfs=
|
||||
Release Notes=
|
||||
Remove=
|
||||
Renew=
|
||||
Reset=
|
||||
Restart=
|
||||
Resume=
|
||||
Right=
|
||||
RPM=
|
||||
Running=
|
||||
running=
|
||||
safe mode=
|
||||
sec=
|
||||
second=
|
||||
seconds=
|
||||
%s second ago=
|
||||
%s seconds ago=
|
||||
Secure=
|
||||
Security=
|
||||
Security Settings=
|
||||
select=
|
||||
Self-Test=
|
||||
Server=
|
||||
Settings=
|
||||
Share=
|
||||
Share name=
|
||||
Shares List=
|
||||
Shares=
|
||||
Shutdown=
|
||||
Size=
|
||||
SMB Security Settings=
|
||||
sn=s/n
|
||||
Sorry, an error occurred=
|
||||
Standby=
|
||||
standby=
|
||||
Start=
|
||||
Started=
|
||||
started=
|
||||
Status=
|
||||
status=
|
||||
Stop=
|
||||
Stopped=
|
||||
stopped=
|
||||
Streams=
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=
|
||||
Submit=
|
||||
System Information=
|
||||
System is going down=
|
||||
System is offline=
|
||||
System is powered off=
|
||||
System is rebooting=
|
||||
System Log=
|
||||
System notifications are=
|
||||
System running in=
|
||||
System=
|
||||
TB=
|
||||
Temperature=
|
||||
Template Repositories=
|
||||
Terminal=
|
||||
Test result=
|
||||
Thank You=
|
||||
The error is=
|
||||
to change notification settings=
|
||||
to downgrade Unraid OS=
|
||||
to upgrade Unraid OS=
|
||||
today=
|
||||
Too many files=
|
||||
Tools=
|
||||
Total=
|
||||
total=
|
||||
Type your question or comment to Lime Technology here=
|
||||
Type=
|
||||
Unable to generate system diagnostics=
|
||||
Unassigned=
|
||||
unassigned=
|
||||
Unknown=
|
||||
unknown=
|
||||
Unraid OS=
|
||||
Update Container=
|
||||
Update Now=
|
||||
Update VM=
|
||||
Update=
|
||||
update=
|
||||
Updated=
|
||||
Upload error=
|
||||
Upload=
|
||||
Uptime=
|
||||
up-to-date=
|
||||
User Access=
|
||||
Users=
|
||||
Utilization=
|
||||
Version=
|
||||
View Release Notes=
|
||||
View=
|
||||
VMs=
|
||||
VPN=
|
||||
Warning=
|
||||
Website=
|
||||
%s week ago=
|
||||
%s weeks ago=
|
||||
White=
|
||||
Wiki=
|
||||
Write=
|
||||
Write settings to=
|
||||
Wrong=
|
||||
wrong=
|
||||
xfs=
|
||||
Yes, I want to do this=
|
||||
Yes=
|
||||
yes=
|
||||
Yes hidden=Yes (hidden)
|
||||
Yes Time Machine=Yes (Time Machine)
|
||||
YesTime Machine hidden=Yes/Time Machine (hidden)
|
||||
YesTime Machine=Yes/Time Machine
|
||||
yesterday=
|
||||
You must reboot for changes to take effect=
|
||||
Your browser does not support HTML5 file uploads=
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=
|
||||
Buttons=
|
||||
Parity operation or mover is running=
|
||||
preparing for reboot=
|
||||
preparing for shutdown=
|
||||
Sleep=
|
||||
Start Array=
|
||||
starting the array=
|
||||
Stop Array=
|
||||
stopping the array=
|
||||
System in sleep mode=
|
||||
This will put the system to sleep=
|
||||
This will reboot the system=
|
||||
This will shutdown the system=
|
||||
This will start the array=
|
||||
This will stop the array=
|
861
languages/zh_CN
Normal file
861
languages/zh_CN
Normal file
@ -0,0 +1,861 @@
|
||||
Cancel=取消
|
||||
|
||||
; My PSAs / banners
|
||||
Happy New Year=新年快乐
|
||||
Happy Holidays from Andrew, Tracey, and family=来自 Andrew、Tracey 和家人的节日快乐祝福
|
||||
Please Enjoy Responsibly=请负责任地使用
|
||||
Popup Blocked CA requires popups to be enabled under certain circumstances You must white list your server within your browser to allow popups=弹出窗口拦截 CA 需要在某些情况下启用弹出窗口。您必须在浏览器中将服务器列入白名单以允许弹出窗口
|
||||
Docker Service Not Enabled - Only Plugins Available To Be Installed Or Managed=未启用 Docker 服务 - 仅可安装或管理的插件
|
||||
Community Applications works best when cookies are enabled in your browser Certain features may not be available=在浏览器中启用 Cookie 时,Community Applications 使用效果最好。某些功能可能不可用
|
||||
Backup Server Active Some icons may not appear, and plugin installations may be affected=备份服务器处于活动状态。某些图标可能不会显示,插件安装可能受到影响
|
||||
|
||||
; Sorting Options
|
||||
Sorting options=排序选项
|
||||
Sorting options unavailable=排序选项不可用
|
||||
Sort By Name Ascending=按名称升序排列
|
||||
Sort By Name Descending=按名称降序排序
|
||||
Sort By Downloads=按下载量排序
|
||||
Sort By Trend=按趋势排序
|
||||
Sort By Date Added=按添加日期排序
|
||||
; Initial disclaimer translations
|
||||
Disclaimer=免责声明
|
||||
All applications listed here are 3rd party additions to Unraid Neither the authors of Community Applications nor Limetech make any warranty as to the suitability of any application listed here=此处列出的所有应用程序均为 Unraid 的第三方补充,Community Applications 或 Limetech 的作者均不对此处列出的任何应用程序的适合性做出任何保证。
|
||||
Every attempt is made to ensure that only safe and compatible applications are present=我们已尽力确保只提供安全且兼容的应用程序
|
||||
Application Policy=应用程序政策
|
||||
I Understand=我了解
|
||||
Installations of apps disabled You must accept the warning to be able to install applications=禁止安装应用程序。您必须接受警告才能安装应用程序
|
||||
Click here=单击此处
|
||||
|
||||
; Plugin Disclaimer
|
||||
Community Applications contains both docker containers and plugin applications Plugins are designed for OS enhancements, and run with full privileges on your system and are clearly identified within CA=Community Applications 同时包含 docker 容器和插件应用程序,这些插件是为增强操作系统而设计的,在您的系统上以完全的权限运行,并且在 CA 中进行了明确标识
|
||||
Plugin Note=插件说明
|
||||
|
||||
; Multi Install
|
||||
Install Plugin Applications=安装插件应用程序
|
||||
Select all on page=
|
||||
|
||||
; Searches
|
||||
Search=搜索
|
||||
Please enter search term=请输入搜索词
|
||||
Click Here To Get More Results From DockerHub=单击此处以从 DockerHub 获取更多结果
|
||||
No Matching Applications Found On Docker Hub=在 Docker Hub 中找不到匹配的应用程序
|
||||
No Matching Applications Found=找不到匹配的应用程序
|
||||
|
||||
; Install Plugin title of openbox
|
||||
Install Plugin=安装插件
|
||||
|
||||
; Remove App from previously installed
|
||||
Delete Template=删除模板
|
||||
Yes, delete it=是的,请删除
|
||||
|
||||
; Uninstall popup
|
||||
Uninstall Application=卸载应用程序
|
||||
Yes uninstall it=是的,请卸载
|
||||
|
||||
; Remove Private Application
|
||||
Remove Private Application=删除私人应用程序
|
||||
Yes, remove it=是的,请删除
|
||||
|
||||
; App Pinning
|
||||
Click to pin this application=单击以固定此应用程序
|
||||
Click to unpin this application=单击取消固定此应用程序
|
||||
|
||||
; Branch installations
|
||||
Choose A Branch To Install=选择要安装的分支
|
||||
|
||||
; Multiple application installs
|
||||
; no apps selected
|
||||
Install Selected Applications=安装选定的应用程序
|
||||
|
||||
Yes, install it=是的,请安装
|
||||
|
||||
; Multi-install popup
|
||||
Yes, install them=是的,请安装
|
||||
Cookies not enabled Plugins must be separately installed from docker applications=未启用 Cookie。这些插件必须与 Docker 应用程序分开安装
|
||||
Docker applications will be installed utilizing the most recently saved template with no user input on your part=Docker 应用程序将使用最近保存的模板进行安装,无需用户输入
|
||||
Updating Support Links=正在更新支持链接
|
||||
Finished Installing If the DONE button did not appear, then you will need to click the red X in the top right corner=完成安装。如果未出现“完成”按钮,则需要单击右上角的红色 X
|
||||
|
||||
; error messages
|
||||
No data was returned It is probable that another browser session has rebooted your server Reloading this browser tab will probably fix this error=没有返回任何数据。可能是另一个浏览器会话重新启动了服务器。重新加载此浏览器标签页可能会解决此错误
|
||||
An error occurred Could not find any %s Apps=发生错误,找不到任何 %s 应用
|
||||
Download of appfeed failed=appfeed下载失败
|
||||
; the %s here refers to a function being called
|
||||
Something really went wrong here=这里真的出问题了
|
||||
Post the ENTIRE contents of this message in the Community Applications Support Thread=在 Community Applications 支持对话中发布此消息的**全部**内容
|
||||
Unknown error happened Please post a screenshot in the support thread of the Statistics screen=发生未知错误 请在统计屏幕的支持对话中发布屏幕截图
|
||||
Something really wrong happened Reloading the Apps tab will probably fix the problem=真的出错了。重新加载应用选项卡可能会解决该问题
|
||||
This plugin has a duplicated name from another plugin %s This will impact your ability to install both plugins simultaneously=此插件的名称与另一个插件 %s 重复,这将影响您同时安装这两个插件的能力
|
||||
You have been logged out=
|
||||
|
||||
; CA Sections Keep the length reasonable
|
||||
MENU=菜单
|
||||
Installed Apps=已安装的应用
|
||||
Previous Apps=以前的应用
|
||||
Pinned Apps=固定的应用
|
||||
CATEGORIES=类别
|
||||
New Apps=新应用
|
||||
Updated Apps=更新的应用
|
||||
Random Apps=随机应用
|
||||
Top New Installs=热门新安装
|
||||
Trending Apps=热门应用
|
||||
All Apps=所有应用
|
||||
OTHER=其他
|
||||
Statistics=统计信息
|
||||
Credits=信用
|
||||
Support=支持
|
||||
VERSION=版本
|
||||
Change Log=更改日志
|
||||
|
||||
; Credits
|
||||
Development=开发
|
||||
Additional Contributions=其他贡献
|
||||
GUI Layout Design=GUI布局设计
|
||||
Application Feed=应用程序源
|
||||
Additional Testing=附加测试
|
||||
Moderation=审核
|
||||
Additional Libraries=附加库
|
||||
Copyright=版权
|
||||
Translation=翻译
|
||||
|
||||
; Statistics page
|
||||
Deprecated Applications are able to still be installed if you have previously had them installed New installations of these applications are blocked unless you enable Display Deprecated Applications within CAs General Settings=如果您以前安装过已弃用的应用程序,则仍可以安装这些应用程序。除非您在 CAS 常规设置中启用了显示弃用的应用程序,否则这些应用程序的新安装将被阻止
|
||||
The following applications are blacklisted CA will never allow you to install or reinstall these applications=以下应用程序被列入黑名单。CA 决不会允许您安装或重新安装这些应用程序
|
||||
While highly not recommended to do, incompatible applications can be installed by enabling Display Incompatible Applications within CAs General Settings=虽然强烈不建议这样做,但可以通过在 CAS 常规设置中启用显示不兼容的应用程序,来安装不兼容的应用程序
|
||||
This display is informational ONLY=此显示仅供参考
|
||||
unknown=未知
|
||||
Last Change To Application Feed=应用程序源的最新更改
|
||||
Number Of Docker Applications=Docker应用程序数量
|
||||
Number Of Plugin Applications=插件应用程序数量
|
||||
Number Of Templates=模板数量
|
||||
Number Of Repositories=存储库数量
|
||||
Number Of Private Docker Applications=私有 Docker 应用程序数量
|
||||
Number Of Invalid Templates=无效模板数量
|
||||
Number Of Template Errors=模板错误数量
|
||||
Number Of Blacklisted Apps=被列入黑名单的应用数量
|
||||
Number Of Incompatible Applications=不兼容的应用程序数量
|
||||
Number Of Deprecated Applications=已弃用的应用程序数量
|
||||
Number Of Moderation Entries=审核条目数量
|
||||
Primary Server=主服务器
|
||||
Backup Server=备份服务器
|
||||
|
||||
; Statistics Popup Titles
|
||||
Repository List=存储库列表
|
||||
All Invalid Templates Found=找到所有无效模板
|
||||
Template Errors=模板错误
|
||||
All Moderation Entries=所有审核条目
|
||||
|
||||
; Statistics Popup
|
||||
No invalid templates found=未找到无效模板
|
||||
These templates are invalid and the application they are referring to is unknown=这些模板无效,并且它们指向的应用程序未知
|
||||
No templates were automatically fixed=没有模板被自动修复
|
||||
All of these errors found have been fixed automatically=找到的所有这些错误已自动修复
|
||||
Note that many of these errors can be avoided by following the directions=请注意,遵循说明本可避免其中许多错误
|
||||
HERE=此处
|
||||
The following plugins have duplicated filenames and are not able to be installed simultaneously=以下插件的文件名重复,无法同时安装
|
||||
The following docker applications refer to the same docker repository but may have subtle changes in the template to warrant this=以下 docker 应用程序引用相同的 docker 存储库,但为了保证这一点,模板中可能进行了细微的更改
|
||||
If any of these entries are incorrect then contact the moderators of CA to discuss=如果其中任何一个条目不正确,请联系 CA 的版主进行讨论
|
||||
Global Repository Comments=全局存储库注释
|
||||
Applied to all applications=(适用于所有应用程序)
|
||||
Individual Application Moderation=个人应用程序审核
|
||||
|
||||
; Misc
|
||||
Community Applications Changelog=Community Applications 变更日志
|
||||
|
||||
; Categories try not to be excessively long This is displayed on the left of CA screen
|
||||
|
||||
Backup=备份
|
||||
Cloud=云
|
||||
Downloaders=下载程序
|
||||
Game Servers=游戏服务器
|
||||
Home Automation=家庭自动化
|
||||
Media Applications=媒体应用程序
|
||||
Books=书籍
|
||||
Music=音乐
|
||||
Photos=照片
|
||||
Video=视频
|
||||
Other=其他
|
||||
Media Servers=媒体服务器
|
||||
Network Services=网络服务
|
||||
DNS=DNS
|
||||
FTP=FTP
|
||||
Management=管理
|
||||
Messenger=Messenger
|
||||
Proxy=代理
|
||||
VOIP=VOIP
|
||||
VPN=VPN
|
||||
Web=Web
|
||||
Productivity=生产力
|
||||
Security=安全性
|
||||
Tools Utilities=工具/实用程序
|
||||
System=系统
|
||||
Themes=主题
|
||||
Utilities=实用程序
|
||||
Private Apps=私人应用
|
||||
Uncategorized=未分类
|
||||
|
||||
; Categories displayed within a popup or on the card. Where an entry exists after the "=" it is not translated, but rather how it should look
|
||||
GameServers=游戏服务器
|
||||
HomeAutomation=家庭自动化
|
||||
MediaApp=媒体应用
|
||||
MediaAppBooks=媒体应用:书籍
|
||||
MediaAppMusic=媒体应用:音乐
|
||||
MediaAppPhotos=媒体应用:照片
|
||||
MediaAppVideo=媒体应用:视频
|
||||
MediaAppOther=媒体应用:其他
|
||||
MediaServer=媒体服务器
|
||||
MediaServerBooks=媒体服务器:书籍
|
||||
MediaServerMusic=媒体服务器:音乐
|
||||
MediaServerPhotos=媒体服务器:照片
|
||||
MediaServerVideo=媒体服务器:视频
|
||||
MediaServerOther=媒体服务器:其他
|
||||
Network=网络
|
||||
NetworkDNS=网络:DNS
|
||||
NetworkFTP=网络:FTP
|
||||
NetworkManagement=网络:管理
|
||||
NetworkProxy=网络:代理
|
||||
NetworkVOIP=网络:VOIP
|
||||
NetworkVPN=网络:VPN
|
||||
NetworkWeb=网络:Web
|
||||
NetworkOther=网络:其他
|
||||
ToolsSystem=工具:系统
|
||||
ToolsThemes=工具:主题
|
||||
ToolsUtilities=工具:实用程序
|
||||
Other=其他
|
||||
OtherUncategorized=其他:未分类
|
||||
and %s more=和另外 %s
|
||||
|
||||
; App Popup Related
|
||||
Donate To Author=捐赠给作者
|
||||
Donate To Maintainer=捐赠给维护者
|
||||
Author=作者
|
||||
Maintainer=维护者
|
||||
DockerHub=DockerHub
|
||||
Application Template=应用程序模板
|
||||
Base OS=基本操作系统
|
||||
DockerHub Stars=DockerHub 星形
|
||||
Added to CA=已添加到 CA
|
||||
Date Updated=日期已更新
|
||||
Current Version=当前版本
|
||||
Minimum OS=最低 OS
|
||||
Max OS=最高 OS
|
||||
Total Downloads=总下载量
|
||||
Licence=许可证
|
||||
30 Day Trend=30 天趋势
|
||||
Ranked #%s=排名#%s
|
||||
; as in Trending up or down arrow
|
||||
Trending %s=趋势 %s
|
||||
; as in As of some date
|
||||
As of %s=(截至 %s)
|
||||
This application template has been blacklisted=此应用程序/模板已被列入黑名单
|
||||
This application template has been deprecated=此应用程序/模板已弃用
|
||||
This application is not compatible with your version of Unraid=此应用程序与您的 Unraid 版本不兼容
|
||||
Another browser tab or device has updated the displayed templates Some actions are not available=另一个浏览器标签页或设备已更新所显示的模板。某些操作不可用
|
||||
Reinstall default=重新安装(默认)
|
||||
WebUI=WebUI
|
||||
Reinstall=重新安装
|
||||
Install=安装
|
||||
Project=项目
|
||||
Install Using The Templates Default Tag=使用模板的默认标签进行安装
|
||||
Moderator Comments=版主评论
|
||||
Note not all authors keep up to date on change logs=请注意,并非所有作者的变更日志都保持最新状态
|
||||
Note not all maintainers keep up to date on change logs=请注意,并非所有维护者的变更日志都保持最新状态
|
||||
;the following if using a space you MUST use nbsp but keep it down to one word if at all possible
|
||||
Donate=捐赠
|
||||
Currently Installed Version=当前安装的版本
|
||||
Install The Update=安装更新
|
||||
; as in you have the latest version already installed
|
||||
Latest Version=最新版本
|
||||
Multi Language Support=多语言支持
|
||||
; as in more than 100000
|
||||
More than %s=超过 %s
|
||||
|
||||
; Graphs
|
||||
Trend Per Month=每月趋势
|
||||
Downloads Per Month=每月下载量
|
||||
Total Downloads=总下载量
|
||||
|
||||
; Multi install script
|
||||
Installing docker applications %s=安装 Docker 应用程序 %s
|
||||
Starting %s=正在启动 %s
|
||||
%s failed to start You should install it by itself to fix the errors=%s 无法启动,您应当让它自行安装以修复错误
|
||||
Setting installed applications to autostart=将已安装的应用程序设置为自动启动
|
||||
Docker Application Installation finished=Docker 应用程序安装完成
|
||||
|
||||
; Application Cards
|
||||
Private dockerHub Conversion=私有(dockerHub 转换)
|
||||
Go to the project page=转到项目页面
|
||||
Go to the support thread=转到支持对话
|
||||
Uninstall Application=卸载应用程序
|
||||
Remove Private Application=移除私人应用程序
|
||||
Remove Application From List=从列表中移除应用程序
|
||||
Check off to select multiple reinstalls=选中以选择多个重新安装
|
||||
Go to the plugin settings=转到插件设置
|
||||
Click to reinstall the application using default values=单击以采用默认选项重新安装该应用程序
|
||||
Click to edit the application values=单击以编辑应用程序值
|
||||
Click to reinstall=单击以重新安装
|
||||
Click to install=单击以安装
|
||||
Install plugin=安装插件
|
||||
Click to go to the WebUI=单击以转到 WebUI
|
||||
This application has been marked as being Beta=此应用程序已被标记为 Beta
|
||||
This application template has been deprecated=此应用程序模板已弃用
|
||||
This application is not compatible with your version of Unraid=此应用程序与您的 Unraid 版本不兼容
|
||||
This application template has been blacklisted=此应用程序模板已被列入黑名单
|
||||
Search for more applications from %s=从 %s 搜索更多应用程序
|
||||
Click for more information=单击以了解更多信息
|
||||
|
||||
; Dockerhub searches
|
||||
Search For Containers From %s=从 %s 搜索容器
|
||||
Search for similar containers=搜索类似的容器
|
||||
|
||||
; Page Navigation
|
||||
Displaying %s - %s of %s=正在显示 %1$s - %2$s(总共为 %3$s)
|
||||
|
||||
Updating Content=正在更新内容
|
||||
Language=语言
|
||||
Switch to this language=切换到此语言
|
||||
Country Code=国家代码
|
||||
Install Language Pack=安装语言包
|
||||
Remove Language Pack=移除语言包
|
||||
Update Language Pack=更新语言包
|
||||
Installed Version=安装的版本
|
||||
A note about translations=翻译说明
|
||||
Click here to view the language changelog=
|
||||
|
||||
; Help Text
|
||||
This chooses how to sort the results=这将选择结果的排序方式
|
||||
These icons respectively will Install or Edit an application=这些图标分别将安装或编辑应用程序
|
||||
Clicking these icons will take you to an applications GUI or settings=单击这些图标将前往应用程序 GUI 或设置
|
||||
This will update an application=这将更新应用程序
|
||||
This will take you to the appropriate support thread for an application=这将前往应用程序相应的支持对话
|
||||
This will immediately switch to the language=这将立即切换为该种语言
|
||||
This will take you to the project page for an application=这将前往应用程序的项目页面
|
||||
Clicking this icon will uninstall the application or delete it from the lists depending upon your current section=单击此图标将卸载应用程序或将其从列表中删除,具体取决于您的当前部分
|
||||
Clicking these icons will pin or unpin an application for later viewer from the Pinned Apps section=单击这些图标将从固定的应用部分为后续的查看者固定或取消固定应用程序
|
||||
Clicking this will display more information about the application NOTE You can also click on the applications icon to display more information=单击此图标将显示有关应用程序的更多信息。请注意,您也可以单击应用程序图标以显示更多信息
|
||||
Clicking this will display any warnings or extra comments about the application=单击此图标将显示有关该应用程序的任何警告或额外注释
|
||||
On the previous apps section you can select multiple applications to install simultaneously=在“以前的应用”部分,您可以选择要同时安装的多个应用程序
|
||||
This is the recommended version to install by the application author themselves=这是应用程序作者自己安装的推荐版本
|
||||
For support for this plugin visit=要获得对此插件的支持,请访问
|
||||
To view the policies Community Applications has=查看 Community Applications 的政策
|
||||
Access Mode=访问模式
|
||||
Add another Path, Port, Variable, Label or Device=添加另一个路径、端口、变量、标签或设备
|
||||
Add Configuration=添加配置
|
||||
Add=添加
|
||||
Always=总是
|
||||
App to Host=应用到主机
|
||||
Application=应用程序
|
||||
apply update=应用更新
|
||||
Array must be Started to view Docker containers=必须**启动**阵列才能查看 Docker 容器
|
||||
Are you sure=是否确定
|
||||
Autostart=自动启动
|
||||
Back=返回
|
||||
Backup=备份
|
||||
Beta=Beta
|
||||
Books=书籍
|
||||
By=来自
|
||||
Categories=类别
|
||||
Check for Updates=检查更新
|
||||
Cloud=云
|
||||
Config Type=配置类型
|
||||
Configuration not found=找不到配置
|
||||
Connection Type=连接类型
|
||||
Console shell command=控制台 shell 命令
|
||||
Container ID=容器编号
|
||||
Container Path=容器路径
|
||||
Container Port=容器端口
|
||||
Container Size=容器大小
|
||||
Container=容器
|
||||
CPU Memory load=CPU 内存负载
|
||||
CPU Pinning=CPU 钉选
|
||||
Created=已创建
|
||||
Default Value=默认值
|
||||
Device=设备
|
||||
Display=显示
|
||||
DNS=DNS
|
||||
Docker Containers=
|
||||
Docker Hub URL=Docker Hub 网址
|
||||
Docker Service failed to start=Docker 服务无法启动
|
||||
Donation Link=捐赠链接
|
||||
Donation Text=捐赠文本
|
||||
Downloaders=下载程序
|
||||
Edit Configuration=编辑配置
|
||||
Exited=已退出
|
||||
Extra Parameters=额外参数
|
||||
Fixed IP address=固定 IP 地址
|
||||
force update=强制更新
|
||||
FTP=FTP
|
||||
Game Servers=游戏服务器
|
||||
healthy=健康
|
||||
Hide Buttons=隐藏按钮
|
||||
Hide docker allocations=隐藏 docker 分配
|
||||
Hide more settings=隐藏更多设置
|
||||
Home Automation=家庭自动化
|
||||
Host Path=主机路径
|
||||
Host Port=主机端口
|
||||
HT=HT
|
||||
Icon URL=图标网址
|
||||
Image ID=映像 ID
|
||||
Key=键
|
||||
Label=标签
|
||||
latest=最新
|
||||
Management=管理
|
||||
MediaApp=媒体应用
|
||||
MediaServer=媒体服务器
|
||||
Messenger=信使
|
||||
Missing parameters=缺少参数
|
||||
Music=音乐
|
||||
Network Type=网络类型
|
||||
No Docker containers installed=未安装 Docker 容器
|
||||
of=的
|
||||
orphan image=孤立映像
|
||||
Other=其他
|
||||
Overview=概述
|
||||
Path=路径
|
||||
Pause All=全部暂停
|
||||
Photos=照片
|
||||
Port Mappings=端口映射
|
||||
Port=端口
|
||||
Post Arguments=发布参数
|
||||
Privileged=特权
|
||||
Productivity=生产力
|
||||
Project Page=项目页面
|
||||
Proxy=代理
|
||||
Pulling image=拉取映像
|
||||
Read Only - Shared=只读-共享
|
||||
Read Only - Slave=只读-从属
|
||||
Read Only=只读
|
||||
ReadWrite - Shared=读/写-共享
|
||||
ReadWrite - Slave=读/写-从属
|
||||
rebuild ready=重建就绪
|
||||
rebuilding=正在重建
|
||||
Remove template=移除模板
|
||||
Removing container=正在移除容器
|
||||
Removing orphan image=正在移除孤立映像
|
||||
Repository=存储库
|
||||
Required=必填
|
||||
Resume All=全部恢复
|
||||
Save=保存
|
||||
Select a template=选择一个模板
|
||||
Select categories=选择类别
|
||||
Show docker allocations=显示 docker 分配
|
||||
Show more settings=显示更多设置
|
||||
Stable=稳定
|
||||
Start All=全部启动
|
||||
starting up containers=正在启动容器
|
||||
Stop All=全部停止
|
||||
Stopping container=正在停止容器
|
||||
Successfully removed container=成功移除容器
|
||||
Successfully removed orphan image=成功移除孤立映像
|
||||
Successfully stopped container=成功停止容器
|
||||
Support Thread=支持线程
|
||||
Template repositories=模板存储库
|
||||
Template URL=模板网址
|
||||
Template=模板
|
||||
The command failed=命令失败
|
||||
The command finished successfully=命令成功完成
|
||||
TOTAL DATA PULLED=**推送的数据总量**
|
||||
Unknown action=未知操作
|
||||
Update All=全部更新
|
||||
update ready=更新就绪
|
||||
Value=值
|
||||
Variable=变量
|
||||
Video=视频
|
||||
Voip=Voip
|
||||
Volume Mappings=卷映射
|
||||
wait=等待
|
||||
Was this container created using this plugin=是否使用此插件创建该容器
|
||||
Web=Web
|
||||
WebUI=WebUI
|
||||
Writable=可写
|
||||
Absolute=绝对
|
||||
Acknowledge=确认
|
||||
Active=有效
|
||||
active=活动
|
||||
Actual results=实际结果
|
||||
Add Container=添加容器
|
||||
Add VM=添加虚拟机
|
||||
Advanced View=高级视图
|
||||
AFP Security Settings=AFP 安全设置
|
||||
All=全部
|
||||
Anonymize diagnostics may make troubleshooting more difficult=匿名诊断可能会增加故障排除难度
|
||||
Apply=应用
|
||||
Apps=应用
|
||||
Array must be Stopped to change=必须**停止**阵列才能更改
|
||||
Array Started=阵列已启动
|
||||
Array Starting=阵列正在启动
|
||||
Array Stopped=阵列已停止
|
||||
Array Stopping=阵列正在停止
|
||||
Array=阵列
|
||||
Attributes=属性
|
||||
Auto=自动
|
||||
Automatic=自动
|
||||
Average speed=平均速度
|
||||
Azure=天蓝色
|
||||
B=B
|
||||
Back To Top=返回页首
|
||||
Basic=基本
|
||||
Basic View=基本视图
|
||||
BIOS=BIOS
|
||||
Black=黑色
|
||||
Browse=浏览
|
||||
Browser error=浏览器错误
|
||||
btrfs=btrfs
|
||||
Bug Description=错误说明
|
||||
Bug Report=错误报告
|
||||
bytes=字节
|
||||
Cancel=取消
|
||||
Capabilities=容量
|
||||
Case-sensitive names=名称区分大小写
|
||||
Center=中心
|
||||
Change=更改
|
||||
Check=检查
|
||||
Clear=清除
|
||||
Clearing=正在清除
|
||||
Click for context menu=单击以获取上下文菜单
|
||||
Click=单击
|
||||
close all notifications=关闭所有通知
|
||||
Close=关闭
|
||||
close=关闭
|
||||
Comment=注释
|
||||
Contact Email Address=联系人电子邮件地址
|
||||
Contact Support=联系支持
|
||||
containing your key file URL=包含您的密钥文件 URL
|
||||
Copy=复制
|
||||
CPU=CPU
|
||||
Dashboard=仪表板
|
||||
day=天
|
||||
day ago=天前
|
||||
days ago=天前
|
||||
Days_array=Sunday:星期天 Monday:星期一 Tuesday:星期二 Wednesday:星期三 Thursday:星期四 Friday:星期五 Saturday: 星期六 Sun:星期天 Mon:星期一 Tue:星期二 Wed:星期三 Thu:星期四 Fri:星期五 Sat:星期六
|
||||
days=天
|
||||
Default=默认
|
||||
default=默认
|
||||
Delete=删除
|
||||
Description=说明
|
||||
Device contents emulated, in standby mode spun-down=设备内容已仿真,处于待机模式(旋转速度下降)
|
||||
Device contents emulated=设备内容已仿真
|
||||
Device is disabled, contents emulated=设备已禁用,内容已仿真
|
||||
Device is in standby mode spun-down=设备处于待机模式,旋转速度下降
|
||||
Device is missing disabled, contents emulated=设备缺失(已禁用),内容已仿真
|
||||
Device not present=设备不存在
|
||||
Device=设备
|
||||
directories=目录
|
||||
directory=目录
|
||||
Disabled=已禁用
|
||||
disabled=已禁用
|
||||
Disk=磁盘
|
||||
disk=磁盘
|
||||
Do you want to update to the new version=是否要更新到新版本
|
||||
Docker=
|
||||
Done=完成
|
||||
Download=下载
|
||||
Duration=持续时间
|
||||
Edit=编辑
|
||||
edit=编辑
|
||||
Emulated=已仿真
|
||||
emulated=已仿真
|
||||
Enabled=已启用
|
||||
enabled=已启用
|
||||
Encrypted and unlocked=已加密和解锁
|
||||
Error code=错误代码
|
||||
Error=错误
|
||||
error=错误
|
||||
Errors=错误
|
||||
errors=错误
|
||||
Expected results=预期结果
|
||||
Export=导出
|
||||
Faulty=故障
|
||||
faulty=错误
|
||||
Feedback=反馈
|
||||
File too large=文件太大
|
||||
file=文件
|
||||
files=文件
|
||||
Fixed=固定
|
||||
Flash=Flash
|
||||
flash=flash
|
||||
Flash GUID=Flash GUID
|
||||
Flash Product=Flash 产品
|
||||
Flash Vendor=Flash 供应商
|
||||
FOLDER=文件夹
|
||||
Force lower=强制使用小写字母
|
||||
Format=格式
|
||||
Formatting devices=格式化设备
|
||||
Forum=论坛
|
||||
GB=GB
|
||||
Go to Registration page=转到注册页面
|
||||
GPT 4KiB-aligned=GPT 4KiB对齐
|
||||
Gray=灰色
|
||||
Guests have no access=访客**没有**任何访问权限
|
||||
Guests have read-only access=访客有**只读**权限
|
||||
Heat alarm=热警报
|
||||
Help=帮助
|
||||
here=这里
|
||||
History=历史记录
|
||||
hour=小时
|
||||
hours=小时
|
||||
%s hour ago=%s 小时前
|
||||
%s hours ago=%s 小时前
|
||||
How to reproduce=如何再现
|
||||
hr=小时
|
||||
HVM=HVM
|
||||
Identity=身份
|
||||
Inactive=无效
|
||||
Index of=索引
|
||||
Info=信息
|
||||
Install Key=安装密钥
|
||||
interface down=接口未激活
|
||||
Interface=接口
|
||||
IOMMU=IOMMU
|
||||
is available=可用
|
||||
KB=KB
|
||||
Kernel=内核
|
||||
Last Modified=上次修改时间
|
||||
Left=左
|
||||
less than a minute remaining=剩下不到一分钟
|
||||
less than a minute=不到一分钟
|
||||
Load=加载
|
||||
Location=位置
|
||||
Locked missing encryption key=已锁定: 缺少加密密钥
|
||||
Locked unknown error=已锁定: 未知错误
|
||||
Locked wrong encryption key=已锁定: 加密密钥错误
|
||||
Log=日志
|
||||
Login=登录
|
||||
Logout=注销
|
||||
Main=主界面
|
||||
manual=手册
|
||||
max installable capacity=最大可安装容量
|
||||
Maximum file upload size is 512 kB=最大文件上传大小为 512 kB
|
||||
MB=MB
|
||||
MBR 1MiB-aligned=MBR: 1MiB 对齐
|
||||
MBR 4KiB-aligned=MBR:4KiB 对齐
|
||||
MBR unaligned=MBR:未对齐
|
||||
Memory=内存
|
||||
min=分钟
|
||||
minute=分钟
|
||||
minutes=分钟
|
||||
%s minute ago=%s 分钟前
|
||||
%s minutes ago=%s 分钟前
|
||||
Model=型号
|
||||
%s month ago=%s 个月前
|
||||
%s months ago=%s 个月前
|
||||
Months_array=January:一月 February:二月 March:三月 April:四月 May:五月 June:六月 July:七月 August:八月 September:九月 October:十月 November:十一月 December:十二月 Jan:一月 Feb:二月 Mar:三月 Apr:四月 May:五月 Jun:六月 Jul:七月 Aug:八月 Sep:九月 Oct:十月 Nov:十一月 Dec:十二月
|
||||
months=个月
|
||||
More=更多
|
||||
Motherboard=主板
|
||||
Move=移动
|
||||
NA=NA
|
||||
Name=名称
|
||||
Network=网络
|
||||
Never=永不
|
||||
New device, in standby mode spun-down=新设备,处于待机模式(旋转速度下降)
|
||||
New device=新设备
|
||||
NFS Security Settings=NFS 安全设置
|
||||
No Access=无访问权限
|
||||
No device=无设备
|
||||
no device=无设备
|
||||
No errors reported=误错误报告
|
||||
No information available=无可用信息
|
||||
No listing Too many files=无列表: 文件太多
|
||||
No reply from mail server=邮件服务器无回复
|
||||
No=否
|
||||
no=否
|
||||
None=无
|
||||
none=无
|
||||
Normal operation, device is active=正常运行,设备处于活动状态
|
||||
Normal=正常
|
||||
Normalized=标准化
|
||||
Not Available=不可用
|
||||
not available=不可用
|
||||
not connected=未连接
|
||||
Not encrypted=未加密
|
||||
not encrypted=未加密
|
||||
NOTE=注意
|
||||
Numbers_array=thirty:三十 twenty-nine:二十九 twenty-eight:二十八 twenty-seven:二十七 twenty-six:二十六 twenty-five:二十五 twenty-four:二十四 twenty-three:二十三 twenty-two:二十二 twenty-one:二十一 twenty:二十 nineteen:十九 eighteen:十八 seventeen:十七 sixteen:十六 fifteen:十五 fourteen:十四 thirteen:十三 twelve:十二 eleven:十一 ten:十 nine:九 eight:八 seven:七 six:六 five:五 four:四 three:三 two:二 one:一 zero:零
|
||||
objects=对象
|
||||
Off=关
|
||||
off-line=离线
|
||||
OK=确定
|
||||
Ok=确定
|
||||
ok=确定
|
||||
On=开
|
||||
Online Manual=在线手册
|
||||
Online manual=在线手册
|
||||
OpenSSL=OpenSSL
|
||||
optional=可选
|
||||
Other Comment=其他注释
|
||||
Other information=其他信息
|
||||
Parity device is disabled=奇偶校验设备已禁用
|
||||
Parity device is missing=奇偶校验设备缺失
|
||||
Parity is invalid, in standby mode spun-down=奇偶校验无效,处于待机模式(旋转速度下降)
|
||||
Parity is invalid=奇偶校验无效
|
||||
Parity is valid=奇偶校验有效
|
||||
Parity=奇偶校验
|
||||
parity=奇偶校验
|
||||
Parity-Check=奇偶校验
|
||||
Parity-Sync Data-Rebuild=奇偶校验同步/数据重建
|
||||
Pause=暂停
|
||||
Paused=已暂停
|
||||
paused=已暂停
|
||||
PB=PB
|
||||
Please select one file only=请只选择一个文件
|
||||
Please summarize your suggestion here=请在这里总结您的建议
|
||||
Please try again later=请稍后再试
|
||||
Please wait=请稍候
|
||||
Plugins=插件
|
||||
Plus=Plus
|
||||
prefix_SI=K M G T P E Z Y
|
||||
prefix_IEC=Ki Mi Gi Ti Pi Ei Zi Yi
|
||||
Private=私有
|
||||
Pro=Pro
|
||||
Proceed=继续
|
||||
Processor=处理器
|
||||
Product Suggestion=产品建议
|
||||
Public=公开
|
||||
RAM=RAM
|
||||
Raw=原始
|
||||
Read=读取
|
||||
Read settings from=从中读取设置
|
||||
Read-Check=读取检查
|
||||
Read-only=只读
|
||||
Reads=读取
|
||||
ReadWrite=读/写
|
||||
Reboot Now=立即重启
|
||||
Reboot=重启
|
||||
Refresh=刷新
|
||||
Registration=注册
|
||||
reiserfs=reiserfs
|
||||
Release Notes=发行说明
|
||||
Remove=移除
|
||||
Renew=续订
|
||||
Reset=重置
|
||||
Restart=重新启动
|
||||
Resume=恢复
|
||||
Right=右
|
||||
RPM=RPM
|
||||
Running=正在运行
|
||||
running=正在运行
|
||||
safe mode=安全模式
|
||||
sec=秒
|
||||
second=秒
|
||||
seconds=秒
|
||||
%s second ago=%s 秒前
|
||||
%s seconds ago=%s 秒前
|
||||
Secure=安全
|
||||
Security=安全性
|
||||
Security Settings=安全设置
|
||||
select=选择
|
||||
Self-Test=自检
|
||||
Server=服务器
|
||||
Settings=设置
|
||||
Share=共享
|
||||
Share name=共享名称
|
||||
Shares List=共享列表
|
||||
Shares=共享
|
||||
Shutdown=关机
|
||||
Size=大小
|
||||
SMB Security Settings=SMB 安全设置
|
||||
sn=sn
|
||||
Sorry, an error occurred=抱歉,发生错误
|
||||
Standby=待机
|
||||
standby=待机
|
||||
Start=启动
|
||||
Started=已启动
|
||||
started=已启动
|
||||
Status=状态
|
||||
status=状态
|
||||
Stop=停止
|
||||
Stopped=已停止
|
||||
stopped=已停止
|
||||
Streams=流
|
||||
Submission of this bug report will automatically send your system diagnostics to Lime Technology=通过提交此错误报告,您的系统诊断将自动发送给 Lime Technology
|
||||
Submit=提交
|
||||
System Information=系统信息
|
||||
System is going down=系统出现故障
|
||||
System is offline=系统处于离线状态
|
||||
System is powered off=系统已关闭电源
|
||||
System is rebooting=系统正在重启
|
||||
System Log=系统日志
|
||||
System notifications are=系统通知是
|
||||
System running in=系统正在运行
|
||||
System=系统
|
||||
TB=TB
|
||||
Temperature=温度
|
||||
Template Repositories=模板存储库
|
||||
Terminal=终端
|
||||
Test result=测试结果
|
||||
Thank You=谢谢
|
||||
The error is=错误是
|
||||
to change notification settings=更改通知设置
|
||||
to downgrade Unraid OS=降级 Unraid OS
|
||||
to upgrade Unraid OS=升级 Unraid OS
|
||||
today=今天
|
||||
Too many files=文件太多
|
||||
Tools=工具
|
||||
Total=总计
|
||||
total=总计
|
||||
Type your question or comment to Lime Technology here=在此处输入您要发送给 Lime Technology 的问题或评论
|
||||
Type=类型
|
||||
Unable to generate system diagnostics=无法生成系统诊断信息
|
||||
Unassigned=未分配
|
||||
unassigned=未分配
|
||||
Unknown=未知
|
||||
unknown=未知
|
||||
Unraid OS=Unraid OS
|
||||
Update Container=更新容器
|
||||
Update Now=立即更新
|
||||
Update VM=更新虚拟机
|
||||
Update=更新
|
||||
update=更新
|
||||
Updated=已更新
|
||||
Upload error=上载错误
|
||||
Upload=上载
|
||||
Uptime=正常运行时间
|
||||
up-to-date=最新
|
||||
User Access=用户访问权限
|
||||
Users=用户
|
||||
Utilization=利用率
|
||||
Version=版本
|
||||
View Release Notes=查看发行说明
|
||||
View=查看
|
||||
VMs=虚拟机
|
||||
VPN=VPN
|
||||
Warning=警告
|
||||
Website=网站
|
||||
%s week ago=%s 周前
|
||||
%s weeks ago=%s 周前
|
||||
White=白色
|
||||
Wiki=Wiki
|
||||
Write=写入
|
||||
Write settings to=将设置写入
|
||||
Wrong=错误
|
||||
wrong=错误
|
||||
xfs=xfs
|
||||
Yes, I want to do this=是,我想这样做
|
||||
Yes=是
|
||||
yes=是
|
||||
Yes hidden=是(隐藏)
|
||||
Yes Time Machine=是(时间机器)
|
||||
YesTime Machine hidden=是/时间机器(隐藏)
|
||||
YesTime Machine=是/时间机器
|
||||
yesterday=昨天
|
||||
You must reboot for changes to take effect=您必须重新启动才能使更改生效
|
||||
Your browser does not support HTML5 file uploads=您的浏览器不支持 HTML5 文件上载
|
||||
|
||||
; Dynamix.system.button plugin
|
||||
Array busy=阵列忙碌
|
||||
Buttons=按钮
|
||||
Parity operation or mover is running=奇偶校验操作或 mover 正在运行
|
||||
preparing for reboot=准备重启
|
||||
preparing for shutdown=准备关机
|
||||
Sleep=睡眠
|
||||
Start Array=启动阵列
|
||||
starting the array=启动阵列
|
||||
Stop Array=停止阵列
|
||||
stopping the array=正在停止阵列
|
||||
System in sleep mode=系统处于睡眠模式
|
||||
This will put the system to sleep=这将使系统进入睡眠状态
|
||||
This will reboot the system=这将重启系统
|
||||
This will shutdown the system=这将关闭系统
|
||||
This will start the array=这将启动阵列
|
||||
This will stop the array=这将停止阵列
|
170357
old-applicationFeed-raw.json
Normal file
170357
old-applicationFeed-raw.json
Normal file
File diff suppressed because it is too large
Load Diff
38614
repoInfo.json
Normal file
38614
repoInfo.json
Normal file
File diff suppressed because it is too large
Load Diff
590
statistics.json
Normal file
590
statistics.json
Normal file
@ -0,0 +1,590 @@
|
||||
{
|
||||
"fixedTemplates": {
|
||||
"smdion's Repository": {
|
||||
"smdion/docker-h5ai": [
|
||||
"Invalid WebUI"
|
||||
]
|
||||
},
|
||||
"smdion's beta Repository": {
|
||||
"smdion/docker-keybox": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"CaptInsano's Repository": {
|
||||
"captinsano/koel": [
|
||||
"No category entry present",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8080]/"
|
||||
],
|
||||
"captinsano/legacyrutorrent": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"captinsano/rutorrent": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
]
|
||||
},
|
||||
"Bungy's Repository": {
|
||||
"sameersbn/gitlab": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"jshridha/motioneye:latest": [
|
||||
"No category entry present",
|
||||
"Blacklisted: Obvious CA conversion templates are disallowed"
|
||||
],
|
||||
"owncloud": [
|
||||
"No category entry present",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"jshridha/rdiffweb": [
|
||||
"No Icon specified within the application template",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8080]"
|
||||
],
|
||||
"centurylink/watchtower": [
|
||||
"No category entry present",
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"aptalca's Repository": {
|
||||
"aptalca/docker-zoneminder": [
|
||||
"Fatal: No valid Overview Or Description present - Application dropped from CA automatically - Possibly far too many formatting tags present"
|
||||
]
|
||||
},
|
||||
"hernandito's Repository": {
|
||||
"hernandito/hernando-apachephp-docker": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"hernandito/docker-apache-php-adminer": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"hernandito/docker-resourcespace": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"coolasice1999/tmm-cli-cronjob:latest": [
|
||||
"Unknown category MediaManager:"
|
||||
],
|
||||
"coolasice1999/tmm:latest": [
|
||||
"Unknown category MediaManager:"
|
||||
]
|
||||
},
|
||||
"linuxserver's Repository": {
|
||||
"linuxserver/codiad": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"linuxserver/sickgear": [
|
||||
"No category entry present"
|
||||
]
|
||||
},
|
||||
"sdesbure's Repository": {
|
||||
"sdesbure/T411Torznab": [
|
||||
"Fatal: Invalid repository found. Only lowercase is allowed"
|
||||
]
|
||||
},
|
||||
"snoopy86's Repository": {
|
||||
"snoopy86/emoncms-docker": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
]
|
||||
},
|
||||
"gfjardim's Repository": {
|
||||
"https://raw.githubusercontent.com/gfjardim/unRAID-plugins/master/plugins/statistics.sender.plg": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"dibbz' Repository": {
|
||||
"quimnut/brewpi-wifi": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"quimnut/cloud9ide": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8080]/"
|
||||
],
|
||||
"gogs/gogs": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:3000]/"
|
||||
]
|
||||
},
|
||||
"docgyver's Repository": {
|
||||
"https://raw.githubusercontent.com/docgyver/unraid-v6-plugins/master/denyhosts.plg": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"https://raw.githubusercontent.com/docgyver/unraid-v6-plugins/master/ssh.plg": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"bashNinja's Repository": {
|
||||
"bashninja/docker-pritunl": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to https://[IP]:[PORT:443]"
|
||||
]
|
||||
},
|
||||
"stuckless' Repository": {
|
||||
"stuckless/crushftp": [
|
||||
"Unknown category Productivity:Tools",
|
||||
"Multiple Icons found"
|
||||
]
|
||||
},
|
||||
"thomast_88's Repository": {
|
||||
"gitlab/gitlab-runner": [
|
||||
"No category entry present",
|
||||
"Blacklisted: Obvious CA conversion templates are disallowed"
|
||||
]
|
||||
},
|
||||
"chvb's Repository": {
|
||||
"chvb/docker-apache-php": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"chvb/docker-kerio-connect": [
|
||||
"Unknown category Network:Email"
|
||||
],
|
||||
"chvb/onlyofficedocumentserver:latest": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
]
|
||||
},
|
||||
"jcreynolds' Repository": {
|
||||
"jcreynolds/flextv": [
|
||||
"Unknown category Media:",
|
||||
"Unknown category Applications:",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"atribe's Repository": {
|
||||
"atribe/apcupsd-influxdb-exporter": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"achumchal/plex_data_collector_for_influxdb": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"barrycarey/speedtest-for-influxdb-and-grafana": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"Kru-X's Repository": {
|
||||
"wekanteam/wekan": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8080]/"
|
||||
],
|
||||
"wordpress": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
]
|
||||
},
|
||||
"Waseh's Repository": {
|
||||
"https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plg": [
|
||||
"Fatal: Plugin URL on xml template does not match PluginURL in .plg (https://raw.githubusercontent.com/Waseh/rclone-unraid/beta/plugin/rclone.plg vs https://raw.githubusercontent.com/Waseh/rclone-unraid/master/plugin/rclone.plg)"
|
||||
]
|
||||
},
|
||||
"Uirel's Repository": {
|
||||
"caddy:alpine": [
|
||||
"Multiple Descriptions Found",
|
||||
"Unknown category Network:Web,",
|
||||
"Unknown category Network:Proxy:",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"cheesemarathon's Repository": {
|
||||
"coderaiser/cloudcmd": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8000]"
|
||||
],
|
||||
"msjpq/firefox-vnc": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8080]"
|
||||
],
|
||||
"minio/minio": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:9000]/"
|
||||
],
|
||||
"taskcafe/taskcafe": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:3333]/"
|
||||
]
|
||||
},
|
||||
"cmer's Repository": {
|
||||
"cmer/minio": [
|
||||
"Fatal: Multiple Repositories Found - Removing application from lists"
|
||||
]
|
||||
},
|
||||
"clowrym's Repository": {
|
||||
"hexparrot/mineos": [
|
||||
"No category entry present"
|
||||
],
|
||||
"ninjaneer/plex-discord-bot": [
|
||||
"Unknown category Uncategorized:",
|
||||
"No Icon specified within the application template",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"fanningert's Repository": {
|
||||
"guacamole/guacd": [
|
||||
"Unknown category Network:Mangament",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"malvarez00's Repository": {
|
||||
"gitlab/gitlab-ce": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"malvarez00/docker-unifi-video": [
|
||||
"Unknown category Media:",
|
||||
"Unknown category Servers:"
|
||||
]
|
||||
},
|
||||
"runraid's Repository": {
|
||||
"ronnieroller/ddns": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"deepquestai/deepstack": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"kthulu120/liquid_dl": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"kmb32123/youtube-dl-server": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"jj9987's Repository": {
|
||||
"janarj/cloudflare-ddns:1.1": [
|
||||
"No Icon specified within the application template",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"JCloud's Repository": {
|
||||
"quantumobject/docker-cacti": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/cacti"
|
||||
],
|
||||
"analogic/poste.io": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
]
|
||||
},
|
||||
"JBartlett's Repository": {
|
||||
"jbartlett777/diskspeed": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:8888]/"
|
||||
]
|
||||
},
|
||||
"zyphermonkey's Repository": {
|
||||
"zyphermonkey/splunk": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"Mudislander's Repository": {
|
||||
"mudislander/fogproject": [
|
||||
"Invalid WebUI",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"bl0m1/xtevedocker": [
|
||||
"No category entry present",
|
||||
"CPU pinning removed from template",
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"digiblur's Repository": {
|
||||
"homeassistant/amd64-hassio-supervisor": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"adolfintel/speedtest": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"raymondmm/tasmoadmin": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"danmed/tasmobackupv1": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"iotreboot/tasui:latest": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"nico640/docker-unms": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to https://[IP]:[PORT:443]"
|
||||
]
|
||||
},
|
||||
"thetarkus' Repository": {
|
||||
"thetarkus/funkwhale": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"rix's Repository": {
|
||||
"rix1337/docker-gphotos-sync": [
|
||||
"No category entry present",
|
||||
"CPU pinning removed from template"
|
||||
],
|
||||
"rix1337/docker-myjd-api": [
|
||||
"No category entry present"
|
||||
],
|
||||
"rix1337/docker-ripper": [
|
||||
"Multiple Category tags present - using longest one"
|
||||
]
|
||||
},
|
||||
"Siwat2545's Repository": {
|
||||
"adguard/adguardhome": [
|
||||
"Unknown category DNS:",
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"machinebox/facebox": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"siwatinc/home_assistant_control_panel_unraid_ab": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"siwatinc/nginx-pagespeed": [
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]/"
|
||||
],
|
||||
"onlyoffice/communityserver": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"onlyoffice/documentserver": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"siwatinc/phlex": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"siwatinc/ubuntu-playground": [
|
||||
"Not a valid Registry entry set. Creating from Repository setting"
|
||||
]
|
||||
},
|
||||
"Bender's Repository": {
|
||||
"traefik:latest": [
|
||||
"Not a valid Registry entry set. Creating from Repository setting",
|
||||
"Hardcoded IP address for webUI. It should always be [IP] instead.",
|
||||
"Hardcoded port found in webUI entry"
|
||||
],
|
||||
"boerderij/varken": [
|
||||
"Invalid WebUI"
|
||||
],
|
||||
"acockburn/appdaemon": [
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"Hardcoded IP address for webUI. It should always be [IP] instead.",
|
||||
"Hardcoded port found in webUI entry"
|
||||
]
|
||||
},
|
||||
"seim's Repository": {
|
||||
"seafileltd/seafile": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
]
|
||||
},
|
||||
"fithwum's Repository": {
|
||||
"fithwum/minecraft": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"Grack's Repository": {
|
||||
"gregyankovoy/chowdown": [
|
||||
"No category entry present"
|
||||
],
|
||||
"gregyankovoy/goaccess": [
|
||||
"No category entry present"
|
||||
],
|
||||
"gregyankovoy/lftp-mirror": [
|
||||
"No category entry present",
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"knex666's Repository": {
|
||||
"atlassian/confluence-server": [
|
||||
"No category entry present",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"knex666/mopidy:3-experimental": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"nextcloud:latest": [
|
||||
"No Registry entry set. Created from Repository setting"
|
||||
],
|
||||
"knex666/rssnotipy": [
|
||||
"No category entry present"
|
||||
],
|
||||
"alqutami/rtmp-hls": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"knex666/shortipy": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"kevineye/snapcast": [
|
||||
"No category entry present",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"doudou34/tor-server": [
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"ulisses1478's Repository": {
|
||||
"ulisses1478/docker-android": [
|
||||
"No category entry present",
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"ulisses1478/bitcoinwallet-gui": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"ulisses1478/mongo-express": [
|
||||
"No Registry entry set. Created from Repository setting",
|
||||
"No Support Link Present"
|
||||
],
|
||||
"phpmyadmin/phpmyadmin": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"ulisses1478/shinobi": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"ulisses1478/zcashwallet": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"dee31797's Repository": {
|
||||
"djaydev/motioneye": [
|
||||
"Unknown category Media:",
|
||||
"Unknown category Servers:"
|
||||
]
|
||||
},
|
||||
"josywong's Repository": {
|
||||
"ipfs/go-ipfs": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"angelics/unraid-docker-ipxe-buildweb": [
|
||||
"Unknown category Services:",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
],
|
||||
"angelics/unraid-docker-zelcore-wallet": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:5800]"
|
||||
]
|
||||
},
|
||||
"Andrew207's Repository": {
|
||||
"atunnecliffe/splunk": [
|
||||
"Hardcoded port found in webUI entry"
|
||||
]
|
||||
},
|
||||
"Selfhosters Unraid Discord Repository": {
|
||||
"gilbn/geoip2influx": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"rancher/rancher:latest": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
],
|
||||
"stokkes/sstvproxy": [
|
||||
"No Icon specified within the application template"
|
||||
],
|
||||
"syncarr/syncarr": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"alturismo's Repository": {
|
||||
"dnsforge/xteve:latest": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"Conmyster's Repository": {
|
||||
"zabbix/zabbix-agent:latest": [
|
||||
"Multiple Category tags present - using longest one"
|
||||
]
|
||||
},
|
||||
"d8sychain's Repository": {
|
||||
"d8sychain/mediawiki": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
]
|
||||
},
|
||||
"SpaceInvaderOne's Repository": {
|
||||
"spaceinvaderone/vm_custom_icons": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"d8ahazard's Repository": {
|
||||
"digitalhigh/glimmr": [
|
||||
"Not a valid Registry entry set. Creating from Repository setting"
|
||||
]
|
||||
},
|
||||
"DavidSpek's Repository": {
|
||||
"rocker/rstudio": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"Aggie1999's Repository": {
|
||||
"wbynum/qemubackup": [
|
||||
"No Icon specified within the application template",
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
]
|
||||
},
|
||||
"frakman1's Repository": {
|
||||
"gitlab/gitlab-runner": [
|
||||
"No category entry present",
|
||||
"Blacklisted: Obvious CA conversion templates are disallowed"
|
||||
]
|
||||
},
|
||||
"ElectricBrainUK's Repository": {
|
||||
"electricbrainuk/unraidapi": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Entry changed to http://[IP]:[PORT:80]"
|
||||
]
|
||||
},
|
||||
"hotio's Repository": {
|
||||
"hotio/autoscan": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"MrChunky's Repository": {
|
||||
"storjlabs/storagenode:beta": [
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"p.wrangles' Repository": {
|
||||
"wranglatang/bluelinky": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"eXisTa's Repository": {
|
||||
"xirixiz/dsmr-reader-docker": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
]
|
||||
},
|
||||
"TheBrian's Repository": {
|
||||
"theoriginalbrian/intel-gpu-telegraf": [
|
||||
"No category entry present"
|
||||
]
|
||||
},
|
||||
"openspeedtest's Repository": {
|
||||
"openspeedtest/latest": [
|
||||
"Port referenced in webUI does not correspond with a container port defined. Port Referenced does not exist in Config"
|
||||
]
|
||||
},
|
||||
"mason's Repository": {
|
||||
"masonxx/mediaelch": [
|
||||
"Unknown category Tool:"
|
||||
]
|
||||
},
|
||||
"Progeny42's Repository": {
|
||||
"snipe/snipe-it": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"roflcoopter's Repository": {
|
||||
"roflcoopter/viseron": [
|
||||
"No category entry present",
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"Veriwind's Repository": {
|
||||
"itzg/minecraft-server": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"agusalex' Repository": {
|
||||
"agusalex/grive2": [
|
||||
"Invalid WebUI"
|
||||
],
|
||||
"agusalex/modem_reboot": [
|
||||
"No Support Link Present"
|
||||
],
|
||||
"agusalex/notarius:latest": [
|
||||
"No category entry present",
|
||||
"Fatal: No valid Overview Or Description present - Application dropped from CA automatically - Possibly far too many formatting tags present",
|
||||
"CPU pinning removed from template",
|
||||
"No Support Link Present"
|
||||
]
|
||||
},
|
||||
"laur's Repository": {
|
||||
"layr/borg-mysql-backup:borg1": [
|
||||
"No Icon specified within the application template"
|
||||
]
|
||||
},
|
||||
"DanRegalia's Repository": {
|
||||
"portainer/portainer-ce": [
|
||||
"Unknown category Docker:"
|
||||
]
|
||||
}
|
||||
},
|
||||
"caFixed": 173
|
||||
}
|
29
templates/A75GsRepository/templates/airsonic-advanced.xml
Normal file
29
templates/A75GsRepository/templates/airsonic-advanced.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>airsonic-advanced</Name>
|
||||
<Repository>airsonicadvanced/airsonic-advanced:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/airsonicadvanced/airsonic-advanced/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/airsonic-advanced/airsonic-advanced</Project>
|
||||
<Overview>Airsonic-Advanced is a more modern implementation of the Airsonic fork with several key performance and feature enhancements. It adds and supersedes several features in Airsonic.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:4040]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/airsonic-advanced.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/airsonic-advanced.png</Icon>
|
||||
<Config Name="HTTP" Target="4040" Default="4040" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="true" Mask="false">4040</Config>
|
||||
<Config Name="UPNP_PORT" Target="4041" Default="4041" Mode="tcp" Description="UPNP_PORT" Type="Port" Display="always" Required="false" Mask="false">4041</Config>
|
||||
<Config Name="Default DLNA/UPnP ports" Target="1900" Default="1900" Mode="udp" Description="Default DLNA/UPnP ports" Type="Port" Display="always" Required="false" Mask="false">1900</Config>
|
||||
<Config Name="Appdata" Target="/var/airsonic" Default="/mnt/user/appdata/airsonic-advanced/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/airsonic-advanced/</Config>
|
||||
<Config Name="Music Path" Target="/var/music" Default="" Mode="rw" Description="Music Path" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Podcast Path" Target="/var/podcast" Default="" Mode="rw" Description="Podcast Path" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Playlist Path" Target="/var/playlists" Default="" Mode="rw" Description="Playlist Path" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="CONTEXT_PATH" Target="CONTEXT_PATH" Default="/" Mode="" Description="CONTEXT_PATH" Type="Variable" Display="always" Required="true" Mask="false">/</Config>
|
||||
<Config Name="JAVA_OPTS" Target="JAVA_OPTS" Default="-Xms256m -Xmx512m" Mode="" Description="JAVA_OPTS" Type="Variable" Display="always" Required="true" Mask="false">-Xms256m -Xmx512m</Config>
|
||||
<Config Name="PUID" Target="PUID" Default="99" Mode="" Description="PUID" Type="Variable" Display="advanced" Required="true" Mask="false">99</Config>
|
||||
<Config Name="PGID" Target="PGID" Default="100" Mode="" Description="PGID" Type="Variable" Display="advanced" Required="true" Mask="false">100</Config>
|
||||
<Category>MediaApp:Music MediaServer:Music</Category>
|
||||
<Description>Airsonic-Advanced is a more modern implementation of the Airsonic fork with several key performance and feature enhancements. It adds and supersedes several features in Airsonic.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/airsonic-advanced.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/apprise.xml
Normal file
20
templates/A75GsRepository/templates/apprise.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>apprise</Name>
|
||||
<Repository>caronc/apprise:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/caronc/apprise/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/caronc/apprise</Project>
|
||||
<Overview>Apprise API - Push Notifications that work with just about every platform!</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/apprise.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/apprise.png</Icon>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Appdata" Target="/config" Default="/mnt/user/appdata/apprise/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/apprise/</Config>
|
||||
<Category>HomeAutomation: Tools:Utilities</Category>
|
||||
<Description>Apprise API - Push Notifications that work with just about every platform!</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/apprise.xml</templatePath>
|
||||
</Container>
|
25
templates/A75GsRepository/templates/archivebox.xml
Normal file
25
templates/A75GsRepository/templates/archivebox.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>archivebox</Name>
|
||||
<Repository>nikisweeting/archivebox:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/nikisweeting/archivebox/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>bash</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://archivebox.io/</Project>
|
||||
<Overview>The self-hosted internet archiver.
|
||||
Guide - https://github.com/A75G/docker-templates/blob/master/README.md#first-installation (Important)</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/archivebox.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/archivebox.png</Icon>
|
||||
<ExtraParams>-it</ExtraParams>
|
||||
<PostArgs>bash -c 'echo "https://github.com/pirate/ArchiveBox" | /bin/archive; tail -f /dev/null'</PostArgs>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Data" Target="/data" Default="/mnt/user/appdata/archivebox/" Mode="rw" Description="Data" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/archivebox/</Config>
|
||||
<Date>1596121988</Date>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>The self-hosted internet archiver.
|
||||
Guide - https://github.com/A75G/docker-templates/blob/master/README.md#first-installation (Important)</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/archivebox.xml</templatePath>
|
||||
</Container>
|
24
templates/A75GsRepository/templates/backuppc.xml
Normal file
24
templates/A75GsRepository/templates/backuppc.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>backuppc</Name>
|
||||
<Repository>tiredofit/backuppc:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/tiredofit/backuppc/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://backuppc.github.io/backuppc/index.html</Project>
|
||||
<Overview>BackupPC is a high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/backuppc.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/backuppc.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port " Target="80" Default="8000" Mode="tcp" Description="Port " Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Backup Location" Target="/var/lib/backuppc" Default="/mnt/user/backuppc/" Mode="rw" Description="Backup Location" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/backuppc/</Config>
|
||||
<Config Name="Configuration Files" Target="/etc/backuppc" Default="/mnt/user/appdata/backuppc/config/" Mode="rw" Description="Configuration Files" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/backuppc/config/</Config>
|
||||
<Config Name="Home Directory " Target="/home/backuppc" Default="/mnt/user/appdata/backuppc/ssh/" Mode="rw" Description="Home Directory for Backuppc (SSH Keys)" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/backuppc/ssh/</Config>
|
||||
<Config Name="Logs" Target="/www/logs" Default="/mnt/user/appdata/backuppc/logs/" Mode="rw" Description="Logs" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/backuppc/logs/</Config>
|
||||
<Category>Backup: Network:Web</Category>
|
||||
<Description>BackupPC is a high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/backuppc.xml</templatePath>
|
||||
</Container>
|
19
templates/A75GsRepository/templates/cloudbeaver.xml
Normal file
19
templates/A75GsRepository/templates/cloudbeaver.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>cloudbeaver</Name>
|
||||
<Repository>dalongrong/cloudbeaver:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/dalongrong/cloudbeaver/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/dbeaver/cloudbeaver</Project>
|
||||
<Overview>CloudBeaver is a free and open source web-based database management tool.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8978]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/cloudbeaver.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/cloudbeaver.png</Icon>
|
||||
<Config Name="Port" Target="8978" Default="8978" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8978</Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>CloudBeaver is a free and open source web-based database management tool.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/cloudbeaver.xml</templatePath>
|
||||
</Container>
|
27
templates/A75GsRepository/templates/commento.xml
Normal file
27
templates/A75GsRepository/templates/commento.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>commento</Name>
|
||||
<Repository>registry.gitlab.com/commento/commento</Repository>
|
||||
<Registry>https://gitlab.com/commento/commento</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://commento.io</Project>
|
||||
<Overview>An open source, privacy focused discussion platform. </Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/commento.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/commento.png</Icon>
|
||||
<Config Name="Port" Target="8080" Default="8080" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8080</Config>
|
||||
<Config Name="COMMENTO_ORIGIN" Target="COMMENTO_ORIGIN" Default="https://commento.example.com" Mode="" Description="Can be https://commento.example.com or http://ip:port" Type="Variable" Display="always" Required="true" Mask="false">https://commento.example.com</Config>
|
||||
<Config Name="COMMENTO_POSTGRES" Target="COMMENTO_POSTGRES" Default="postgres://postgres:mysupersecurepassword@db:5432/commento?sslmode=disable" Mode="" Description="PostgreSQL Change it using your info" Type="Variable" Display="always" Required="true" Mask="false">postgres://postgres:mysupersecurepassword@dbhostnameorip:5432/commento?sslmode=disable</Config>
|
||||
<Config Name="SMTP HOST" Target="COMMENTO_SMTP_HOST" Default="example.com" Mode="" Description="SMTP HOST" Type="Variable" Display="always" Required="false" Mask="false">example.com</Config>
|
||||
<Config Name="SMTP PORT" Target="COMMENTO_SMTP_PORT" Default="587" Mode="" Description="SMTP PORT" Type="Variable" Display="always" Required="false" Mask="false">587</Config>
|
||||
<Config Name="SMTP USERNAME" Target="COMMENTO_SMTP_USERNAME" Default="user@example.com" Mode="" Description="SMTP USERNAME" Type="Variable" Display="always" Required="false" Mask="false">user@example.com</Config>
|
||||
<Config Name="SMTP PASSWORD" Target="COMMENTO_SMTP_PASSWORD" Default="smtppassword" Mode="" Description="SMTP PASSWORD" Type="Variable" Display="always" Required="false" Mask="false">smtppassword</Config>
|
||||
<Config Name="SMTP FROM ADDRESS" Target="COMMENTO_SMTP_FROM_ADDRESS" Default="fromaddress@example.com" Mode="" Description="SMTP FROM ADDRESS" Type="Variable" Display="always" Required="false" Mask="false">fromaddress@example.com</Config>
|
||||
<Config Name="COMMENTO_PORT" Target="COMMENTO_PORT" Default="8080" Mode="" Description="COMMENTO_PORT" Type="Variable" Display="advanced" Required="true" Mask="false">8080</Config>
|
||||
<Category>Productivity: Network:Web Network:Management</Category>
|
||||
<Description>An open source, privacy focused discussion platform.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/commento.xml</templatePath>
|
||||
</Container>
|
27
templates/A75GsRepository/templates/cryptpad.xml
Normal file
27
templates/A75GsRepository/templates/cryptpad.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>cryptpad</Name>
|
||||
<Repository>promasu/cryptpad:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/promasu/cryptpad/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://cryptpad.fr/</Project>
|
||||
<Overview>CryptPad is the Zero Knowledge realtime collaborative editor.[br]mkdir -p /mnt/user/appdata/cryptpad/config [/br]wget -O /mnt/user/appdata/cryptpad/config/config.js https://raw.githubusercontent.com/xwiki-labs/cryptpad/main/config/config.example.js </Overview>
|
||||
<WebUI>http://[IP]:[PORT:3000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/cryptpad.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/cryptpad.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port 1" Target="3000" Default="3000" Mode="tcp" Description="Port 1" Type="Port" Display="always" Required="false" Mask="false">3000</Config>
|
||||
<Config Name="Port 2" Target="3001" Default="3001" Mode="tcp" Description="Port 2" Type="Port" Display="always" Required="false" Mask="false">3001</Config>
|
||||
<Config Name="Blob Path" Target="/cryptpad/blob" Default="/mnt/user/appdata/cryptpad/blob" Mode="rw" Description="Blob Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/blob</Config>
|
||||
<Config Name="Block Path" Target="/cryptpad/block" Default="/mnt/user/appdata/cryptpad/block" Mode="rw" Description="Block Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/block</Config>
|
||||
<Config Name="Customize Path" Target="/cryptpad/customize" Default="/mnt/user/appdata/cryptpad/customize" Mode="rw" Description="Customize Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/customize</Config>
|
||||
<Config Name="Data Path" Target="/cryptpad/data" Default="/mnt/user/appdata/cryptpad/data" Mode="rw" Description="Data Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/data</Config>
|
||||
<Config Name="Datastore Path" Target="/cryptpad/datastore" Default="/mnt/user/appdata/cryptpad/datastore" Mode="rw" Description="Datastore Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/datastore</Config>
|
||||
<Config Name="Config Path" Target="/cryptpad/config/config.js" Default="/mnt/user/appdata/cryptpad/config/config.js" Mode="rw" Description="Config Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/cryptpad/config/config.js</Config>
|
||||
<Category>Productivity: Security:</Category>
|
||||
<Description>CryptPad is the Zero Knowledge realtime collaborative editor.mkdir -p /mnt/user/appdata/cryptpad/config wget -O /mnt/user/appdata/cryptpad/config/config.js https://raw.githubusercontent.com/xwiki-labs/cryptpad/main/config/config.example.js</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/cryptpad.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/cyberchef.xml
Normal file
20
templates/A75GsRepository/templates/cyberchef.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>cyberchef</Name>
|
||||
<Repository>aude/cyberchef:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/aude/cyberchef/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/aude/cyberchef-docker</Project>
|
||||
<Overview>The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/cyberchef.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/cyberchef.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Category>Productivity: Tools:Utilities</Category>
|
||||
<Description>The Cyber Swiss Army Knife - a web app for encryption, encoding, compression and data analysis.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/cyberchef.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/dashmachine.xml
Normal file
21
templates/A75GsRepository/templates/dashmachine.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>dashmachine</Name>
|
||||
<Repository>rmountjoy/dashmachine:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/rmountjoy/dashmachine/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/rmountjoy/dashmachine/</Project>
|
||||
<Overview>Another web application bookmark dashboard, with fun features.[br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]admin[/B][/u][br]Password: [B][u]admin[/B][/u][/b]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:5000]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/dashmachine.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/dashmachine.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="5000" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">5000</Config>
|
||||
<Config Name="AppData" Target="/dashmachine/dashmachine/user_data" Default="" Mode="rw" Description="Container Path: /dashmachine/dashmachine/user_data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/dashmachine/</Config>
|
||||
<Category>Productivity: Network:Web</Category>
|
||||
<Description>Another web application bookmark dashboard, with fun features.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/dashmachine.xml</templatePath>
|
||||
</Container>
|
32
templates/A75GsRepository/templates/db-backup.xml
Normal file
32
templates/A75GsRepository/templates/db-backup.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>db-backup</Name>
|
||||
<Repository>tiredofit/db-backup:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/tiredofit/db-backup/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/tiredofit/db-backup/</Project>
|
||||
<Overview>Backup Multiple DB Servers (Influx, Maria/Mysql/Mongo/Postgres/Redis/Rethink) based on Alpine.Manual Backups can be performed by entering the container and typing backup-now</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/db-backup.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/db-backup.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Backup Location" Target="/backup" Default="" Mode="rw" Description="Database Dump Location" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/backups/db/</Config>
|
||||
<Config Name="Key 1" Target="COMPRESSION" Default="" Mode="" Description="Gzip " Type="Variable" Display="always" Required="false" Mask="false">GZ</Config>
|
||||
<Config Name="Key 2" Target="DB_TYPE" Default="" Mode="" Description="couch influx mysql pgsql mongo redis rethink" Type="Variable" Display="always" Required="false" Mask="false"><Database_Type></Config>
|
||||
<Config Name="Key 3" Target="DB_HOST" Default="" Mode="" Description="Database Hostname" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_IP></Config>
|
||||
<Config Name="Key 4" Target="DB_USER" Default="" Mode="" Description="Database User - use root to backup all MySQL of them." Type="Variable" Display="always" Required="false" Mask="false">root</Config>
|
||||
<Config Name="Key 5" Target="DB_PASS" Default="" Mode="" Description="Database Password" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_PASSWORD></Config>
|
||||
<Config Name="Key 6" Target="DB_PORT" Default="" Mode="" Description="Database Port" Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="Key 7" Target="DB_DUMP_FREQ" Default="" Mode="" Description="How often to dump DB Minutes Defaults 1440 = Day" Type="Variable" Display="always" Required="false" Mask="false">1440</Config>
|
||||
<Config Name="Key 8" Target="DB_DUMP_BEGIN" Default="" Mode="" Description="What Time to Dump HHMM" Type="Variable" Display="always" Required="false" Mask="false">0300</Config>
|
||||
<Config Name="Key 9" Target="DB_CLEANUP_TIME" Default="" Mode="" Description="Value in minutes to delete old backups. 10080 = One Week. If you want all backup delete this key." Type="Variable" Display="always" Required="false" Mask="false">10080</Config>
|
||||
<Config Name="Key 10" Target="PARALLEL_COMPRESSION" Default="TRUE" Mode="" Description="Multiple cores for compressing" Type="Variable" Display="always" Required="false" Mask="false">TRUE</Config>
|
||||
<Config Name="Key 11" Target="MD5" Default="TRUE" Mode="" Description="Generate MD5 Sum in Directory." Type="Variable" Display="always" Required="false" Mask="false">TRUE</Config>
|
||||
<Config Name="Key 12" Target="SPLIT_DB" Default="FALSE" Mode="" Description="Seperate DB Backups" Type="Variable" Display="always" Required="false" Mask="false">FALSE</Config>
|
||||
<Config Name="Key 14" Target="DEBUG_MODE" Default="false" Mode="" Description="DEBUG_MODE" Type="Variable" Display="advanced" Required="false" Mask="false">false</Config>
|
||||
<Category>Backup:</Category>
|
||||
<Description>Backup Multiple DB Servers (Influx, Maria/Mysql/Mongo/Postgres/Redis/Rethink) based on Alpine.Manual Backups can be performed by entering the container and typing backup-now</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/db-backup.xml</templatePath>
|
||||
</Container>
|
23
templates/A75GsRepository/templates/ddns-route53.xml
Normal file
23
templates/A75GsRepository/templates/ddns-route53.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>ddns-route53</Name>
|
||||
<Repository>crazymax/ddns-route53:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/crazymax/ddns-route53/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/crazy-max/ddns-route53</Project>
|
||||
<Overview>Dynamic DNS for Amazon Route 53 on a time-based schedule [br] Create ddns-route53.yml file in /mnt/user/appdata/ddns-route53/ before hand https://github.com/crazy-max/ddns-route53/blob/master/doc/configuration.md[/br]</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/ddns-route53.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/ddns-route53.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Config Path" Target="/ddns-route53.yml" Default="/mnt/user/appdata/ddns-route53/ddns-route53.yml" Mode="ro" Description="Config Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/ddns-route53/ddns-route53.yml</Config>
|
||||
<Config Name="SCHEDULE" Target="SCHEDULE" Default="*/30 * * * *" Mode="" Description="CRON expression to schedule ddns-route53 - http://www.cronmaker.com" Type="Variable" Display="always" Required="false" Mask="false">*/30 * * * *</Config>
|
||||
<Config Name="MAX_RETRIES" Target="MAX_RETRIES" Default="3" Mode="" Description="Number of retries in case of WAN IP retrieval failure" Type="Variable" Display="always" Required="false" Mask="false">3</Config>
|
||||
<Config Name="LOG_LEVEL" Target="LOG_LEVEL" Default="info" Mode="" Description="Log level output" Type="Variable" Display="always" Required="false" Mask="false">info</Config>
|
||||
<Config Name="LOG_JSON" Target="LOG_JSON" Default="false" Mode="" Description="Enable JSON logging output" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Category>Network:DNS</Category>
|
||||
<Description>Dynamic DNS for Amazon Route 53 on a time-based schedule Create ddns-route53.yml file in /mnt/user/appdata/ddns-route53/ before hand https://github.com/crazy-max/ddns-route53/blob/master/doc/configuration.md</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/ddns-route53.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/dispatch.xml
Normal file
22
templates/A75GsRepository/templates/dispatch.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>dispatch</Name>
|
||||
<Repository>khlieng/dispatch</Repository>
|
||||
<Registry>https://hub.docker.com/r/khlieng/dispatch/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/khlieng/dispatch</Project>
|
||||
<Overview>Web-based IRC client in Go. </Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/dispatch.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/dispatch.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="80" Default="8000" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="HTTPs" Target="443" Default="8443" Mode="tcp" Description="HTTPs (Not Required if you use reverse proxy)" Type="Port" Display="always" Required="false" Mask="false">4596</Config>
|
||||
<Config Name="Data" Target="/data" Default="/mnt/user/appdata/dispatch/" Mode="rw" Description="Data" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/dispatch/</Config>
|
||||
<Category>Network:Messenger</Category>
|
||||
<Description>Web-based IRC client in Go.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/dispatch.xml</templatePath>
|
||||
</Container>
|
25
templates/A75GsRepository/templates/docpht.xml
Normal file
25
templates/A75GsRepository/templates/docpht.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>docpht</Name>
|
||||
<Repository>docpht/docpht:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/docpht/docpht/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://docpht.org/</Project>
|
||||
<Overview>DocPHT you can take notes and quickly document anything and without the use of any database.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/docpht.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/docpht.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="80" Default="8000" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="HTTPS" Target="443" Default="8443" Mode="" Description="HTTPS - NOT REQUIRE IF YOU ARE USING REVERSE PROXY" Type="Variable" Display="always" Required="false" Mask="false">8443</Config>
|
||||
<Config Name="Config" Target="/var/www/app/src/config" Default="/mnt/user/appdata/docpht/config/" Mode="rw" Description="Config" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/docpht/config/</Config>
|
||||
<Config Name="Data" Target="/var/www/app/data" Default="/mnt/user/appdata/docpht/data/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/docpht/data/</Config>
|
||||
<Config Name="Pages" Target="/var/www/app/pages" Default="/mnt/user/appdata/docpht/pages/" Mode="rw" Description="Pages" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/docpht/pages/</Config>
|
||||
<Config Name="SSL" Target="/etc/nginx/ssl" Default="/mnt/user/appdata/docpht/ssl/" Mode="rw" Description="SSL - NOT REQUIRE IF YOU ARE USING REVERSE PROXY" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/docpht/ssl/</Config>
|
||||
<Category>Productivity: Tools:Utilities</Category>
|
||||
<Description>DocPHT you can take notes and quickly document anything and without the use of any database.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/docpht.xml</templatePath>
|
||||
</Container>
|
24
templates/A75GsRepository/templates/droppy.xml
Normal file
24
templates/A75GsRepository/templates/droppy.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>droppy</Name>
|
||||
<Repository>silverwind/droppy:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/silverwind/droppy/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/silverwind/droppy/</Project>
|
||||
<Overview>Self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. </Overview>
|
||||
<WebUI>http://[IP]:[PORT:8989]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/droppy.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/droppy.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8989" Default="8686" Mode="tcp" Description="Container Port: 8989" Type="Port" Display="always" Required="false" Mask="false">8686</Config>
|
||||
<Config Name="Appdata" Target="/config" Default="" Mode="rw" Description="Container Path: /config" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/doppy/</Config>
|
||||
<Config Name="Files" Target="/files" Default="" Mode="rw" Description="Container Path: /files" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/droppy/</Config>
|
||||
<Config Name="UID" Target="UID" Default="" Mode="" Description="Container Variable: UID" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="GID" Target="GID" Default="" Mode="" Description="Container Path: GID" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Category>Cloud:</Category>
|
||||
<Description>Self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/droppy.xml</templatePath>
|
||||
</Container>
|
45
templates/A75GsRepository/templates/ecoDMS.xml
Normal file
45
templates/A75GsRepository/templates/ecoDMS.xml
Normal file
@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>ecoDMS</Name>
|
||||
<Repository>ecodms/allinone-18.09</Repository>
|
||||
<Registry>https://hub.docker.com/r/ecodms/allinone-18.09/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.ecodms.de/index.php/en/</Project>
|
||||
<Overview>ecoDMS 18.09 (apu) Full Installation - Document Management System (DMS) - Audit-compliant archive for scanning, archiving, managing and retrieving all data and documents.
|
||||
|
||||
To use ecoDMS you need to do the following steps after installing the container:
|
||||
- Download and install the ecoDMS client for your platform (https://www.ecodms.de/index.php/en/download/ecodms-archive/ecodms-version-18-09-apu)
|
||||
- Add a new profile to the client with your UnRaid IP, 17001 as port and login with ecodms as user and password. !Change the password later!
|
||||
- If the profile is created successfully connect to the new ecoDMS connection
|
||||
- If you want to use the web interface of ecoDMS navigate to Settings -&gt; Web/Mobile/API, enable remote access and start the service. Once the service started you should be able to access the web interface via your UnRaid-IP on Port 17004 (or whatever port you chose during setup of the Docker Container
|
||||
|
||||
Reference:
|
||||
https://forums.unraid.net/topic/77838-anyone-ecodms-got-running/?tab=comments#comment-842793&amp;searchlight=1
|
||||
@laest - Thank you</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]</WebUI>
|
||||
<Icon>https://secure.gravatar.com/avatar/b52fd0ed66fae9aa9a4d71a1f5dae83c.jpg</Icon>
|
||||
<Config Name="Scaninput path" Target="/srv/scaninput" Default="" Mode="rw" Description="Container Path: /srv/scaninput" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Restore path" Target="/srv/restore" Default="" Mode="rw" Description="Container Path: /srv/restore" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Backup path" Target="/srv/backup" Default="" Mode="rw" Description="Container Path: /srv/backup" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Data path" Target="/srv/data" Default="" Mode="rw" Description="Container Path: /srv/data" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="ecoDMS Connection Manager" Target="17001" Default="" Mode="tcp" Description="Container Port: 17001" Type="Port" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="ecoDMS Database" Target="17002" Default="" Mode="tcp" Description="Container Port: 17002" Type="Port" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="ecoDMS Weboberfläche" Target="8080" Default="" Mode="tcp" Description="Container Port: 8080" Type="Port" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="ecoDMS API" Target="8180" Default="" Mode="tcp" Description="Container Port: 8180" Type="Port" Display="always" Required="true" Mask="false"></Config>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/ecoDMS.xml</TemplateURL>
|
||||
<Category>Cloud: Productivity:</Category>
|
||||
<Description>ecoDMS 18.09 (apu) Full Installation - Document Management System (DMS) - Audit-compliant archive for scanning, archiving, managing and retrieving all data and documents.
|
||||
|
||||
To use ecoDMS you need to do the following steps after installing the container:
|
||||
- Download and install the ecoDMS client for your platform (https://www.ecodms.de/index.php/en/download/ecodms-archive/ecodms-version-18-09-apu)
|
||||
- Add a new profile to the client with your UnRaid IP, 17001 as port and login with ecodms as user and password. !Change the password later!
|
||||
- If the profile is created successfully connect to the new ecoDMS connection
|
||||
- If you want to use the web interface of ecoDMS navigate to Settings -> Web/Mobile/API, enable remote access and start the service. Once the service started you should be able to access the web interface via your UnRaid-IP on Port 17004 (or whatever port you chose during setup of the Docker Container
|
||||
|
||||
Reference:
|
||||
https://forums.unraid.net/topic/77838-anyone-ecodms-got-running/?tab=comments#comment-842793&amp;searchlight=1
|
||||
@laest - Thank you</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/ecoDMS.xml</templatePath>
|
||||
</Container>
|
19
templates/A75GsRepository/templates/element-web.xml
Normal file
19
templates/A75GsRepository/templates/element-web.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>element-web</Name>
|
||||
<Repository>vectorim/element-web:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/vectorim/element-web/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Overview>Open, secure and interoperable communication for work and home. Used to call Riot-web. before the running the docker run [br]mkdir -p /mnt/user/appdata/element-web/config [/br]wget -O /mnt/user/appdata/element-web/config/config.json https://raw.githubusercontent.com/vector-im/element-web/develop/element.io/app/config.json </Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/element-web.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/element-web.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8075</Config>
|
||||
<Config Name="Appdata" Target="/app/config.json" Default="" Mode="rw" Description="Container Path: /app/config.json" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/element-web/config/config.json</Config>
|
||||
<Category>Cloud: Productivity: Network:Messenger</Category>
|
||||
<Description>Open, secure and interoperable communication for work and home. Used to call Riot-web. before the running the docker run mkdir -p /mnt/user/appdata/element-web/config wget -O /mnt/user/appdata/element-web/config/config.json https://raw.githubusercontent.com/vector-im/element-web/develop/element.io/app/config.json</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/element-web.xml</templatePath>
|
||||
</Container>
|
31
templates/A75GsRepository/templates/filerun.xml
Normal file
31
templates/A75GsRepository/templates/filerun.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>filerun</Name>
|
||||
<Repository>afian/filerun</Repository>
|
||||
<Registry>https://hub.docker.com/r/afian/filerun/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://filerun.com/</Project>
|
||||
<Overview>FileRun is a self-hosted Google Drive alternative. [br]Default username and password is superuser.[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/filerun.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/filerun.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Database Hostname" Target="FR_DB_HOST" Default="Hostname" Mode="" Description="Database Hostname" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_HOSTNAME></Config>
|
||||
<Config Name="Database Port" Target="FR_DB_PORT" Default="3306" Mode="" Description="Database Port" Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="Database Name" Target="FR_DB_NAME" Default="" Mode="" Description="Database Name" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_NAME></Config>
|
||||
<Config Name="Database User" Target="FR_DB_USER" Default="" Mode="" Description="Database User" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_USER></Config>
|
||||
<Config Name="Database Password" Target="FR_DB_PASS" Default="" Mode="" Description="Database Password" Type="Variable" Display="always" Required="false" Mask="false"><DATABASE_PASSWORD></Config>
|
||||
<Config Name="Filerun Files Folder" Target="/user-files" Default="" Mode="rw" Description="Filerun Files Folder" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/filerun/</Config>
|
||||
<Config Name="Appdata" Target="/var/www/html" Default="" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/filerun/</Config>
|
||||
<Config Name="Host Key 6" Target="APACHE_RUN_USER" Default="" Mode="" Description="Container Variable: APACHE_RUN_USER" Type="Variable" Display="advanced-hide" Required="false" Mask="false">99</Config>
|
||||
<Config Name="Host Key 7" Target="APACHE_RUN_USER_ID" Default="" Mode="" Description="Container Variable: APACHE_RUN_USER_ID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">99</Config>
|
||||
<Config Name="Host Key 8" Target="APACHE_RUN_GROUP" Default="" Mode="" Description="Container Variable: APACHE_RUN_GROUP" Type="Variable" Display="advanced-hide" Required="false" Mask="false">100</Config>
|
||||
<Config Name="Host Key 9" Target="APACHE_RUN_GROUP_ID" Default="" Mode="" Description="Container Variable: APACHE_RUN_GROUP_ID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">100</Config>
|
||||
<Category>Cloud:</Category>
|
||||
<Description>FileRun is a self-hosted Google Drive alternative. Default username and password is superuser.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/filerun.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/filestash.xml
Normal file
21
templates/A75GsRepository/templates/filestash.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>filestash</Name>
|
||||
<Repository>machines/filestash:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/machines/filestash/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.filestash.app/</Project>
|
||||
<Overview>A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8334]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/filestash.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/filestash.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8334" Default="8334" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8334</Config>
|
||||
<Config Name="Appdata" Target="/app/data/state/" Default="/mnt/user/appdata/filestash/" Mode="rw" Description="Container Path: /app/data/state/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/filestash/</Config>
|
||||
<Category>Cloud: Productivity: Network:Web</Category>
|
||||
<Description>A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/filestash.xml</templatePath>
|
||||
</Container>
|
31
templates/A75GsRepository/templates/firefox-syncserver.xml
Normal file
31
templates/A75GsRepository/templates/firefox-syncserver.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>firefox-syncserver</Name>
|
||||
<Repository>crazymax/firefox-syncserver:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/crazymax/firefox-syncserver/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/crazy-max/docker-firefox-syncserver</Project>
|
||||
<Overview>Firefox Sync Server image based on Python Slim</Overview>
|
||||
<WebUI>http://[IP]:[PORT:5000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/firefox-syncserver.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/firefox-syncserver.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/firefox-syncserver/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/firefox-syncserver/</Config>
|
||||
<Config Name="Gunicorn port" Target="5000" Default="5000" Mode="tcp" Description="Container Port: 5000" Type="Port" Display="always" Required="false" Mask="false">5000</Config>
|
||||
<Config Name="FF_SYNCSERVER_ACCESSLOG" Target="FF_SYNCSERVER_ACCESSLOG" Default="false" Mode="" Description="Display access log" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Config Name="FF_SYNCSERVER_LOGLEVEL" Target="FF_SYNCSERVER_LOGLEVEL" Default="info" Mode="" Description="Log level output" Type="Variable" Display="always" Required="false" Mask="false">info</Config>
|
||||
<Config Name="FF_SYNCSERVER_PUBLIC_URL" Target="FF_SYNCSERVER_PUBLIC_URL" Default="http://localhost:5000" Mode="" Description="Must be edited to point to the public URL of your server" Type="Variable" Display="always" Required="false" Mask="false">http://[IP]:5000</Config>
|
||||
<Config Name="FF_SYNCSERVER_SECRET" Target="FF_SYNCSERVER_SECRET" Default="" Mode="" Description="This is a secret key used for signing authentication tokens. It should be long and randomly-generated." Type="Variable" Display="always" Required="false" Mask="false">longgeneratedsecret</Config>
|
||||
<Config Name="FF_SYNCSERVER_ALLOW_NEW_USERS" Target="FF_SYNCSERVER_ALLOW_NEW_USERS" Default="true" Mode="" Description="Set this to false to disable new-user signups on the server. Only request by existing accounts will be honored " Type="Variable" Display="always" Required="false" Mask="false">true</Config>
|
||||
<Config Name="FF_SYNCSERVER_FORCE_WSGI_ENVIRON" Target="FF_SYNCSERVER_FORCE_WSGI_ENVIRON" Default="false" Mode="" Description="Set this to true to work around a mismatch between public_url and the application URL as seen by python, which can happen in certain reverse-proxy hosting setups" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Config Name="FF_SYNCSERVER_SQLURI" Target="FF_SYNCSERVER_SQLURI" Default="sqlite:///data/syncserver.db" Mode="" Description="Defines the database in which to store all server data" Type="Variable" Display="always" Required="false" Mask="false">sqlite:///data/syncserver.db</Config>
|
||||
<Config Name="FF_SYNCSERVER_FORWARDED_ALLOW_IPS" Target="FF_SYNCSERVER_FORWARDED_ALLOW_IPS" Default="*" Mode="" Description="Set this to * or an IP range if you use an Nginx reverse proxy (optional)." Type="Variable" Display="always" Required="false" Mask="false">*</Config>
|
||||
<Config Name="PUID" Target="PUID" Default="99" Mode="" Description="PUID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">99</Config>
|
||||
<Config Name="PGID" Target="PGID" Default="100" Mode="" Description="PGID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">100</Config>
|
||||
<Category>Productivity: Other:</Category>
|
||||
<Description>Firefox Sync Server image based on Python Slim</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/firefox-syncserver.xml</templatePath>
|
||||
</Container>
|
33
templates/A75GsRepository/templates/flarum.xml
Normal file
33
templates/A75GsRepository/templates/flarum.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>flarum</Name>
|
||||
<Repository>crazymax/flarum:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/crazymax/flarum/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://flarum.org/</Project>
|
||||
<Overview>Flarum is the next-generation forum software that makes online discussion fun. It's simple, fast, and free. [br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]flarum[/B][/u][br]Password: [B][u]flarum[/B][/u][/b]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/flarum.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/flarum.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/flarum/" Mode="rw" Description="Contains assets, extensions and storage" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/flarum/</Config>
|
||||
<Config Name="FLARUM_BASE_URL" Target="FLARUM_BASE_URL" Default="http://&lt;IP&gt;:8000" Mode="" Description="Make Sure the base url is right if it local use only use http://ip:8000 and if you are hosting it on your domain it should be http://example.com or https://example.com." Type="Variable" Display="always" Required="false" Mask="false">http://<IP>:8000</Config>
|
||||
<Config Name="FLARUM_FORUM_TITLE" Target="FLARUM_FORUM_TITLE" Default="Flarum Dockerized" Mode="" Description="Flarum forum title, only used during first installation" Type="Variable" Display="always" Required="false" Mask="false">Flarum Dockerized</Config>
|
||||
<Config Name="DB_HOST" Target="DB_HOST" Default="" Mode="" Description="MySQL database hostname / IP address required" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="DB_PORT" Target="DB_PORT" Default="3306" Mode="" Description="MySQL database port" Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="DB_NAME" Target="DB_NAME" Default="flarum" Mode="" Description="MySQL database name" Type="Variable" Display="always" Required="false" Mask="false">flarum</Config>
|
||||
<Config Name="DB_USER" Target="DB_USER" Default="flarum" Mode="" Description="MySQL user" Type="Variable" Display="always" Required="false" Mask="false">flarum</Config>
|
||||
<Config Name="DB_PASSWORD" Target="DB_PASSWORD" Default="" Mode="" Description="MySQL password" Type="Variable" Display="always" Required="false" Mask="false">password</Config>
|
||||
<Config Name="MEMORY_LIMIT" Target="MEMORY_LIMIT" Default="256M" Mode="" Description="PHP memory limit" Type="Variable" Display="always" Required="false" Mask="false">256M</Config>
|
||||
<Config Name="UPLOAD_MAX_SIZE" Target="UPLOAD_MAX_SIZE" Default="16M" Mode="" Description="Upload max size" Type="Variable" Display="always" Required="false" Mask="false">16M</Config>
|
||||
<Config Name="OPCACHE_MEM_SIZE" Target="OPCACHE_MEM_SIZE" Default="128" Mode="" Description="PHP OpCache memory consumption" Type="Variable" Display="always" Required="false" Mask="false">128</Config>
|
||||
<Config Name="PUID" Target="PUID" Default="99" Mode="" Description="PUID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">99</Config>
|
||||
<Config Name="PGID" Target="PGID" Default="100" Mode="" Description="PGID" Type="Variable" Display="advanced-hide" Required="false" Mask="false">100</Config>
|
||||
<Category>Network:Web</Category>
|
||||
<Description>Flarum is the next-generation forum software that makes online discussion fun. It's simple, fast, and free.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/flarum.xml</templatePath>
|
||||
</Container>
|
41
templates/A75GsRepository/templates/freepbx.xml
Normal file
41
templates/A75GsRepository/templates/freepbx.xml
Normal file
@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>freepbx</Name>
|
||||
<Repository>tiredofit/freepbx:15-latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/tiredofit/freepbx/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/tiredofit/docker-freepbx/</Project>
|
||||
<Overview>FreePBX is a web-based open-source graphical user interface that manages Asterisk, a voice over IP and telephony server.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/admin/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/freepbx.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/freepbx.png</Icon>
|
||||
<Config Name="HTTP" Target="80" Default="8150" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="false" Mask="false">8150</Config>
|
||||
<Config Name="HTTPs" Target="443" Default="4150" Mode="tcp" Description="HTTPs" Type="Port" Display="always" Required="false" Mask="false">4150</Config>
|
||||
<Config Name="PJSIP" Target="5060" Default="5060" Mode="udp" Description="PJSIP" Type="Port" Display="always" Required="false" Mask="false">5060</Config>
|
||||
<Config Name="SIP" Target="5160" Default="5160" Mode="udp" Description="SIP" Type="Port" Display="always" Required="false" Mask="false">5160</Config>
|
||||
<Config Name="TLS SIP" Target="5161" Default="5161" Mode="tcp" Description="TLS SIP" Type="Port" Display="always" Required="false" Mask="false">5161</Config>
|
||||
<Config Name="RTP Ports" Target="18000-20000" Default="18000-20000" Mode="udp" Description="RTP Ports" Type="Port" Display="always" Required="false" Mask="false">18000-20000</Config>
|
||||
<Config Name="FOP" Target="4445" Default="4445" Mode="tcp" Description="FOP" Type="Port" Display="always" Required="false" Mask="false">4445</Config>
|
||||
<Config Name="Data" Target="/data" Default="/mnt/user/appdata/freepbx/data/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freepbx/data/</Config>
|
||||
<Config Name="DB_EMBEDDED" Target="DB_EMBEDDED" Default="TRUE|FALSE" Mode="" Description="Allows you to use an internally provided MariaDB Server e.g. TRUE or FALSE" Type="Variable" Display="always" Required="false" Mask="false">TRUE</Config>
|
||||
<Config Name="Log" Target="/var/log" Default="" Mode="rw" Description="Log" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freepbx/logs/</Config>
|
||||
<Config Name="WWW" Target="/var/www/html" Default="" Mode="rw" Description="WWW" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freepbx/www/</Config>
|
||||
<Config Name="Certs" Target="/certs" Default="/mnt/user/appdata/freepbx/certs/" Mode="rw" Description="Certs" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freepbx/certs/</Config>
|
||||
<Config Name="DB Path" Target="/var/lib/mysql" Default="" Mode="rw" Description="DB Path" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freepbx/db/</Config>
|
||||
<Config Name="ENABLE_FAIL2BAN" Target="ENABLE_FAIL2BAN" Default="TRUE|FALSE" Mode="" Description="ENABLE_FAIL2BAN" Type="Variable" Display="always" Required="false" Mask="false">FALSE</Config>
|
||||
<Config Name="Flash Operator Panel" Target="ENABLE_FOP" Default="TRUE|FALSE" Mode="" Description="Enable Flash Operator Panel" Type="Variable" Display="always" Required="false" Mask="false">TRUE</Config>
|
||||
<Config Name="ENABLE_SSL" Target="ENABLE_SSL" Default="FALSE|TRUE" Mode="" Description="Enable HTTPs to serve SSL requests - Default FALSE" Type="Variable" Display="always" Required="false" Mask="false">FALSE</Config>
|
||||
<Config Name="ENABLE_XMPP" Target="ENABLE_XMPP" Default="FALSE|TRUE" Mode="" Description="Enable XMPP Module with MongoDB - Default FALSE" Type="Variable" Display="always" Required="false" Mask="false">FALSE</Config>
|
||||
<Config Name="INSTALL_ADDITIONAL_MODULES" Target="INSTALL_ADDITIONAL_MODULES" Default="" Mode="" Description="Comma seperated list of modules to additionally install on first container startup" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="RTP_START" Target="RTP_START" Default="18000" Mode="" Description="What port to start RTP Transmissions" Type="Variable" Display="always" Required="false" Mask="false">18000</Config>
|
||||
<Config Name="RTP_FINISH" Target="RTP_FINISH" Default="20000" Mode="" Description="What port to end RTP Transmissions" Type="Variable" Display="always" Required="false" Mask="false">20000</Config>
|
||||
<Config Name="TLS_CERT" Target="TLS_CERT" Default="cert.pem" Mode="" Description="TLS Certificate to drop in /certs for HTTPS if no reverse proxy" Type="Variable" Display="always" Required="false" Mask="false">cert.pem</Config>
|
||||
<Config Name="TLS_KEY" Target="TLS_KEY" Default="key.pem" Mode="" Description="TLS Key to drop in /certs for HTTPS if no reverse proxy" Type="Variable" Display="always" Required="false" Mask="false">key.pem</Config>
|
||||
<Config Name="DB_EMBEDDED" Target="DB_EMBEDDED" Default="TRUE|FALSE" Mode="" Description="Allows you to use an internally provided MariaDB Server e.g. TRUE or FALSE" Type="Variable" Display="always" Required="false" Mask="false">TRUE</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>FreePBX is a web-based open-source graphical user interface that manages Asterisk, a voice over IP and telephony server.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/freepbx.xml</templatePath>
|
||||
</Container>
|
33
templates/A75GsRepository/templates/freescout.xml
Normal file
33
templates/A75GsRepository/templates/freescout.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>freescout</Name>
|
||||
<Repository>tiredofit/freescout:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/tiredofit/freescout/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://freescout.net/</Project>
|
||||
<Overview>Open Source Helpscout/Zendesk Alternative based on Alpine linux.[br]Creating account CLI "cd /www/html" then "php artisan freescout:create-user"</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/freescout.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/freescout.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Data" Target="/data" Default="/mnt/user/appdata/freescout/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/freescout/</Config>
|
||||
<Config Name="APPLICATION_NAME" Target="APPLICATION_NAME" Default="Freescout" Mode="" Description="Change default application name" Type="Variable" Display="always" Required="false" Mask="false">Freescout</Config>
|
||||
<Config Name="DB_HOST" Target="DB_HOST" Default="" Mode="" Description="Host or container name of MariaDB Server e.g" Type="Variable" Display="always" Required="false" Mask="false">DB HOST</Config>
|
||||
<Config Name="DB_PORT" Target="DB_PORT" Default="3306" Mode="" Description="MariaDB Port" Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="DB_NAME" Target="DB_NAME" Default="freescout" Mode="" Description="MariaDB Database name e.g." Type="Variable" Display="always" Required="false" Mask="false">freescout</Config>
|
||||
<Config Name="DB_USER" Target="DB_USER" Default="root" Mode="" Description="MariaDB Username for above Database e.g." Type="Variable" Display="always" Required="false" Mask="false">root</Config>
|
||||
<Config Name="DB_PASS" Target="DB_PASS" Default="password" Mode="" Description="MariaDB Password for above Database e.g." Type="Variable" Display="always" Required="false" Mask="false">password</Config>
|
||||
<Config Name="SITE_URL" Target="SITE_URL" Default="http://&lt;IP&gt;:8000" Mode="" Description="The url your site listens " Type="Variable" Display="always" Required="false" Mask="false">http://<IP>:8000</Config>
|
||||
<Config Name="DISPLAY_ERRORS" Target="DISPLAY_ERRORS" Default="FALSE" Mode="" Description="Display Errors on Website" Type="Variable" Display="always" Required="false" Mask="false">FALSE</Config>
|
||||
<Config Name="ADMIN_EMAIL" Target="ADMIN_EMAIL" Default="admin@example.com" Mode="" Description="This wont work dont know why. see overview." Type="Variable" Display="always-hide" Required="false" Mask="false">admin@admin.com</Config>
|
||||
<Config Name="ADMIN_FIRST_NAME" Target="ADMIN_FIRST_NAME" Default="Admin" Mode="" Description="This wont work dont know why. see overview." Type="Variable" Display="always-hide" Required="false" Mask="false">Admin</Config>
|
||||
<Config Name="ADMIN_LAST_NAME" Target="ADMIN_LAST_NAME" Default="User" Mode="" Description="This wont work dont know why. see overview." Type="Variable" Display="always-hide" Required="false" Mask="false">User</Config>
|
||||
<Config Name="ADMIN_PASS" Target="ADMIN_PASS" Default="Passw0rd" Mode="" Description="This wont work dont know why. see overview." Type="Variable" Display="always-hide" Required="false" Mask="false">Passw0rd</Config>
|
||||
<Category>Productivity: Network:Messenger</Category>
|
||||
<Description>Open Source Helpscout/Zendesk Alternative based on Alpine linux.Creating account CLI "cd /www/html" then "php artisan freescout:create-user"</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/freescout.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/golinks.xml
Normal file
20
templates/A75GsRepository/templates/golinks.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>golinks</Name>
|
||||
<Repository>prologic/golinks:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/prologic/golinks/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/prologic/golinks</Project>
|
||||
<Overview>Self-hosted smart bookmark search engine.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/golinks.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/golinks.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Category>Productivity: Tools:Utilities</Category>
|
||||
<Description>Self-hosted smart bookmark search engine.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/golinks.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/gossa.xml
Normal file
26
templates/A75GsRepository/templates/gossa.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>gossa</Name>
|
||||
<Repository>pldubouilh/gossa:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/pldubouilh/gossa/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/pldubouilh/gossa</Project>
|
||||
<Overview>🎶 a fast and simple multimedia fileserver</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8001]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/gossa.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/gossa.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8001" Default="8001" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8001</Config>
|
||||
<Config Name="Data" Target="/shared" Default="/mnt/user/appdata/gossa/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/gossa/</Config>
|
||||
<Config Name="READONLY" Target="READONLY" Default="false|true" Mode="" Description="READONLY" Type="Variable" Display="always" Required="true" Mask="false">false</Config>
|
||||
<Config Name="FOLLOW_SYMLINKS" Target="FOLLOW_SYMLINKS" Default="false|true" Mode="" Description="FOLLOW_SYMLINKS" Type="Variable" Display="advanced" Required="false" Mask="false">false</Config>
|
||||
<Config Name="PREFIX" Target="PREFIX" Default="/" Mode="" Description="PREFIX" Type="Variable" Display="advanced" Required="false" Mask="false">/</Config>
|
||||
<Config Name="UID" Target="UID" Default="99" Mode="" Description="UID" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="GID" Target="GID" Default="100" Mode="" Description="GID" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Category>Cloud:</Category>
|
||||
<Description>🎶 a fast and simple multimedia fileserver</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/gossa.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/gotify.xml
Normal file
22
templates/A75GsRepository/templates/gotify.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>gotify</Name>
|
||||
<Repository>gotify/server:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/gotify/server/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://gotify.net/</Project>
|
||||
<Overview>A simple server for sending and receiving messages.[br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]admin[/B][/u][br]Password: [B][u]admin[/B][/u][/b][br][br]Download config.yml[/br]mkdir -p /mnt/user/appdata/gotify/config/[/br]wget -O /mnt/user/appdata/gotify/config/config.yml https://raw.githubusercontent.com/gotify/server/master/config.example.yml</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/gotify.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/gotify.png</Icon>
|
||||
<Config Name="Host Port 1" Target="80" Default="8070" Mode="tcp" Description="Container Port: 80" Type="Port" Display="always" Required="true" Mask="false">8070</Config>
|
||||
<Config Name="Path 1" Target="/app/data" Default="/mnt/user/appdata/gotify/" Mode="rw" Description="/app/data" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/gotify/</Config>
|
||||
<Config Name="Path 2" Target="/etc/gotify" Default="" Mode="rw" Description="/etc/gotify" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/gotify/config/</Config>
|
||||
<Config Name="Default User Password" Target="GOTIFY_DEFAULTUSER_PASS" Default="admin" Mode="" Description="Default User Password" Type="Variable" Display="always" Required="false" Mask="false">admin</Config>
|
||||
<Category>Productivity: Tools:Utilities Network:Messenger</Category>
|
||||
<Description>A simple server for sending and receiving messages.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/gotify.xml</templatePath>
|
||||
</Container>
|
30
templates/A75GsRepository/templates/healthchecks.xml
Normal file
30
templates/A75GsRepository/templates/healthchecks.xml
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>healthchecks</Name>
|
||||
<Repository>galexrt/healthchecks:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/galexrt/healthchecks/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://hub.docker.com/r/galexrt/healthchecks/</Support>
|
||||
<Project>https://healthchecks.io/</Project>
|
||||
<Overview>Simple and Effective Cron Job Monitoring</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/healthchecks.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/healthchecks.png</Icon>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/healthchecks/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/healthchecks/</Config>
|
||||
<Config Name="DB_NAME" Target="DB_NAME" Default="/data/hc.sqlite" Mode="" Description="DB_NAME" Type="Variable" Display="always" Required="true" Mask="false">/data/hc.sqlite</Config>
|
||||
<Config Name="SECRET_KEY" Target="SECRET_KEY" Default="ChangeMe" Mode="" Description="SECRET_KEY" Type="Variable" Display="always" Required="true" Mask="false">ChangeMe</Config>
|
||||
<Config Name="PING_EMAIL_DOMAIN" Target="PING_EMAIL_DOMAIN" Default="example.com" Mode="" Description="PING_EMAIL_DOMAIN" Type="Variable" Display="always" Required="true" Mask="false">example.com</Config>
|
||||
<Config Name="SITE_ROOT" Target="SITE_ROOT" Default="http://example.com" Mode="" Description="SITE_ROOT" Type="Variable" Display="always" Required="true" Mask="false">http://example.com</Config>
|
||||
<Config Name="EMAIL_HOST" Target="EMAIL_HOST" Default="smtp.example.com" Mode="" Description="EMAIL_HOST" Type="Variable" Display="always" Required="true" Mask="false">smtp.example.com</Config>
|
||||
<Config Name="EMAIL_PORT" Target="EMAIL_PORT" Default="25" Mode="" Description="EMAIL_PORT" Type="Variable" Display="always" Required="true" Mask="false">25</Config>
|
||||
<Config Name="EMAIL_USE_TLS" Target="EMAIL_USE_TLS" Default="True|False" Mode="" Description="EMAIL_USE_TLS" Type="Variable" Display="always" Required="true" Mask="false">True</Config>
|
||||
<Config Name="EMAIL_HOST_USER" Target="EMAIL_HOST_USER" Default="user@example.com" Mode="" Description="EMAIL_HOST_USER" Type="Variable" Display="always" Required="true" Mask="false">user@example.com</Config>
|
||||
<Config Name="EMAIL_HOST_PASSWORD" Target="EMAIL_HOST_PASSWORD" Default="YOUR_PASSWORD" Mode="" Description="EMAIL_HOST_PASSWORD" Type="Variable" Display="always" Required="true" Mask="false">YOUR_PASSWORD</Config>
|
||||
<Config Name="ALLOWED_HOSTS" Target="ALLOWED_HOSTS" Default="*" Mode="" Description="ALLOWED_HOSTS" Type="Variable" Display="always" Required="true" Mask="false">*</Config>
|
||||
<Category>Tools:Utilities Network:Web Network:Management</Category>
|
||||
<Description>Simple and Effective Cron Job Monitoring</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/healthchecks.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/homer.xml
Normal file
21
templates/A75GsRepository/templates/homer.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>homer</Name>
|
||||
<Repository>b4bz/homer:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/b4bz/homer/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/bastienwirtz/homer</Project>
|
||||
<Overview>A dead simple static HOMe for your servER to keep your services on hand from a simple yaml config.[br][br]Download config.yml[/br][/br]wget -O /mnt/user/appdata/homer/assets/config.yml https://raw.githubusercontent.com/bastienwirtz/homer/master/config.yml</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/homer.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/homer.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8080" Default="" Mode="tcp" Description="Container Port: 8080" Type="Port" Display="always" Required="false" Mask="false">8080</Config>
|
||||
<Config Name="Assets Path" Target="/www/assets" Default="" Mode="rw" Description="Container Path: /www/assets" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/homer/assets/</Config>
|
||||
<Category>Network:Web</Category>
|
||||
<Description>A dead simple static HOMe for your servER to keep your services on hand from a simple yaml config.Download config.ymlwget -O /mnt/user/appdata/homer/assets/config.yml https://raw.githubusercontent.com/bastienwirtz/homer/master/config.yml</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/homer.xml</templatePath>
|
||||
</Container>
|
34
templates/A75GsRepository/templates/jitsi-jicofo.xml
Normal file
34
templates/A75GsRepository/templates/jitsi-jicofo.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>jitsi-jicofo</Name>
|
||||
<Repository>jitsi/jicofo:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/jitsi/jicofo/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://jitsi.org/</Project>
|
||||
<Overview>Jicofo image for Jitsi Meet</Overview>
|
||||
<WebUI></WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/jitsi-jicofo.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/jitsi.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="AppData Config Path" Target="/config" Default="/mnt/user/appdata/jitsi/jicofo/" Mode="rw" Description="IMPORTENT Change to /mnt/user/appdata/jitsi/jicofo/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/jitsi/jicofo/</Config>
|
||||
<Config Name="ENABLE_AUTH" Target="ENABLE_AUTH" Default="1" Mode="" Description="Enable authentication" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="XMPP_DOMAIN" Target="XMPP_DOMAIN" Default="meet.jitsi" Mode="" Description="Internal XMPP domain" Type="Variable" Display="always" Required="false" Mask="false">meet.jitsi</Config>
|
||||
<Config Name="XMPP_AUTH_DOMAIN" Target="XMPP_AUTH_DOMAIN" Default="auth.meet.jitsi" Mode="" Description="Internal XMPP domain for authenticated services" Type="Variable" Display="always" Required="false" Mask="false">auth.meet.jitsi</Config>
|
||||
<Config Name="XMPP_INTERNAL_MUC_DOMAIN" Target="XMPP_INTERNAL_MUC_DOMAIN" Default="internal-muc.meet.jitsi" Mode="" Description="XMPP domain for the internal MUC" Type="Variable" Display="always" Required="false" Mask="false">internal-muc.meet.jitsi</Config>
|
||||
<Config Name="XMPP_SERVER" Target="XMPP_SERVER" Default="xmpp.meet.jitsi" Mode="" Description="Internal XMPP server name xmpp.meet.jitsi" Type="Variable" Display="always" Required="false" Mask="false">xmpp.meet.jitsi</Config>
|
||||
<Config Name="JICOFO_COMPONENT_SECRET" Target="JICOFO_COMPONENT_SECRET" Default="s3cr37" Mode="" Description="XMPP component password for Jicofo" Type="Variable" Display="always" Required="false" Mask="false">s3cr37</Config>
|
||||
<Config Name="JICOFO_AUTH_USER" Target="JICOFO_AUTH_USER" Default="focus" Mode="" Description="XMPP user for Jicofo client connections" Type="Variable" Display="always" Required="false" Mask="false">focus</Config>
|
||||
<Config Name="JICOFO_AUTH_PASSWORD" Target="JICOFO_AUTH_PASSWORD" Default="passw0rd" Mode="" Description="XMPP password for Jicofo client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JICOFO_RESERVATION_REST_BASE_URL" Target="JICOFO_RESERVATION_REST_BASE_URL" Default="http://reservation.example.com" Mode="" Description="Base URL of Jicofo’s reservation REST API" Type="Variable" Display="always" Required="false" Mask="false">http://reservation.example.com</Config>
|
||||
<Config Name="JVB_BREWERY_MUC" Target="JVB_BREWERY_MUC" Default="jvbbrewery" Mode="" Description="MUC name for the JVB pool" Type="Variable" Display="always" Required="false" Mask="false">jvbbrewery</Config>
|
||||
<Config Name="JIGASI_BREWERY_MUC" Target="JIGASI_BREWERY_MUC" Default="jigasibrewery" Mode="" Description="MUC name for the Jigasi pool" Type="Variable" Display="always" Required="false" Mask="false">jigasibrewery</Config>
|
||||
<Config Name="JIGASI_SIP_URI" Target="JIGASI_SIP_URI" Default="test@sip2sip.info" Mode="" Description="SIP URI for incoming / outgoing calls" Type="Variable" Display="always" Required="false" Mask="false">test@sip2sip.info</Config>
|
||||
<Config Name="JIBRI_BREWERY_MUC" Target="JIBRI_BREWERY_MUC" Default="jibribrewery" Mode="" Description="MUC name for the Jibri pool" Type="Variable" Display="always" Required="false" Mask="false">jibribrewery</Config>
|
||||
<Config Name="JIBRI_PENDING_TIMEOUT" Target="JIBRI_PENDING_TIMEOUT" Default="90" Mode="" Description="MUC connection timeout" Type="Variable" Display="always" Required="false" Mask="false">90</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Jicofo image for Jitsi Meet</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/jitsi-jicofo.xml</templatePath>
|
||||
</Container>
|
32
templates/A75GsRepository/templates/jitsi-jvb.xml
Normal file
32
templates/A75GsRepository/templates/jitsi-jvb.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>jitsi-jvb</Name>
|
||||
<Repository>jitsi/jvb:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/jitsi/jvb/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://jitsi.org/</Project>
|
||||
<Overview>Jitsi Videobridge image for Jitsi Meet</Overview>
|
||||
<WebUI></WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/jitsi-jvb.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/jitsi.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="JVB_PORT" Target="10000" Default="10000" Mode="udp" Description="Media port for the Jitsi Videobridge" Type="Port" Display="always" Required="false" Mask="false">10000</Config>
|
||||
<Config Name="JVB_TCP_PORT" Target="4443" Default="4443" Mode="tcp" Description="TCP Fallback for Jitsi Videobridge for when UDP isn’t available" Type="Port" Display="always" Required="false" Mask="false">4443</Config>
|
||||
<Config Name="AppData Config Path" Target="/config" Default="/mnt/user/appdata/jitsi/jvb/" Mode="rw" Description="IMPORTENT Change to /mnt/user/appdata/jitsi/jvb/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/jitsi/jvb/</Config>
|
||||
<Config Name="DOCKER_HOST_ADDRESS" Target="DOCKER_HOST_ADDRESS" Default="192.168.1.1" Mode="" Description="IP address of the Docker host, needed for LAN environments" Type="Variable" Display="always" Required="false" Mask="false">192.168.1.1</Config>
|
||||
<Config Name="XMPP_AUTH_DOMAIN" Target="XMPP_AUTH_DOMAIN" Default="auth.meet.jitsi" Mode="" Description="Internal XMPP domain for authenticated services" Type="Variable" Display="always" Required="false" Mask="false">auth.meet.jitsi</Config>
|
||||
<Config Name="XMPP_INTERNAL_MUC_DOMAIN" Target="XMPP_INTERNAL_MUC_DOMAIN" Default="internal-muc.meet.jitsi" Mode="" Description="XMPP domain for the internal MUC" Type="Variable" Display="always" Required="false" Mask="false">internal-muc.meet.jitsi</Config>
|
||||
<Config Name="XMPP_SERVER" Target="XMPP_SERVER" Default="xmpp.meet.jitsi" Mode="" Description="Internal XMPP server name xmpp.meet.jitsi" Type="Variable" Display="always" Required="false" Mask="false">xmpp.meet.jitsi</Config>
|
||||
<Config Name="JVB_AUTH_USER" Target="JVB_AUTH_USER" Default="jvb" Mode="" Description="XMPP user for JVB MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">jvb</Config>
|
||||
<Config Name="JVB_AUTH_PASSWORD" Target="JVB_AUTH_PASSWORD" Default="passw0rd" Mode="" Description="XMPP password for JVB MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JVB_BREWERY_MUC" Target="JVB_BREWERY_MUC" Default="jvbbrewery" Mode="" Description="MUC name for the JVB pool" Type="Variable" Display="always" Required="false" Mask="false">jvbbrewery</Config>
|
||||
<Config Name="JVB_TCP_HARVESTER_DISABLED" Target="JVB_TCP_HARVESTER_DISABLED" Default="true" Mode="" Description="Disable the additional harvester which allows video over TCP (rather than just UDP)" Type="Variable" Display="always" Required="false" Mask="false">true</Config>
|
||||
<Config Name="JVB_STUN_SERVERS" Target="JVB_STUN_SERVERS" Default="stun.l.google.com:19302, stun1.l.google.com:19302, stun2.l.google.com:19302" Mode="" Description="STUN servers used to discover the server's public IP" Type="Variable" Display="always" Required="false" Mask="false">stun.l.google.com:19302, stun1.l.google.com:19302, stun2.l.google.com:19302</Config>
|
||||
<Config Name="JVB_ENABLE_APIS" Target="JVB_ENABLE_APIS" Default="none" Mode="" Description="Comma separated list of JVB APIs to enable" Type="Variable" Display="always" Required="false" Mask="false">none</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Jitsi Videobridge image for Jitsi Meet</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/jitsi-jvb.xml</templatePath>
|
||||
</Container>
|
70
templates/A75GsRepository/templates/jitsi-prosody.xml
Normal file
70
templates/A75GsRepository/templates/jitsi-prosody.xml
Normal file
@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>jitsi-prosody</Name>
|
||||
<Repository>jitsi/prosody:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/jitsi/prosody/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://jitsi.org/</Project>
|
||||
<Overview>Prosody image for Jitsi Meet </Overview>
|
||||
<WebUI></WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/jitsi-prosody.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/jitsi.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port 1" Target="5222" Default="5222" Mode="tcp" Description="Container Port: 5222" Type="Port" Display="always" Required="false" Mask="false">5222</Config>
|
||||
<Config Name="Port 2" Target="5347" Default="5347" Mode="tcp" Description="Container Port: 5347" Type="Port" Display="always" Required="false" Mask="false">5347</Config>
|
||||
<Config Name="Port 3" Target="5280" Default="5280" Mode="tcp" Description="Container Port: 5280" Type="Port" Display="always" Required="false" Mask="false">5280</Config>
|
||||
<Config Name="AppData Config Path" Target="/config" Default="/mnt/user/appdata/jitsi/prosody/" Mode="rw" Description="IMPORTENT Change to /mnt/user/appdata/jitsi/prosody/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/jitsi/prosody/</Config>
|
||||
<Config Name="AUTH_TYPE" Target="AUTH_TYPE" Default="internal" Mode="" Description="Select authentication type (internal, jwt or ldap)" Type="Variable" Display="always" Required="false" Mask="false">internal</Config>
|
||||
<Config Name="ENABLE_AUTH" Target="ENABLE_AUTH" Default="1" Mode="" Description="Enable authentication" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="ENABLE_GUESTS" Target="ENABLE_GUESTS" Default="1" Mode="" Description="Enable guest access" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="GLOBAL_MODULES" Target="GLOBAL_MODULES" Default="statistics,alert" Mode="" Description="Custom prosody modules to load in global configuration (comma separated)" Type="Variable" Display="always" Required="false" Mask="false">statistics,alert</Config>
|
||||
<Config Name="GLOBAL_CONFIG" Target="GLOBAL_CONFIG" Default="foo = bar;\nkey = val;" Mode="" Description="Custom configuration string with escaped newlines" Type="Variable" Display="always" Required="false" Mask="false">foo = bar;\nkey = val;</Config>
|
||||
<Config Name="XMPP_DOMAIN" Target="XMPP_DOMAIN" Default="meet.jitsi" Mode="" Description="Internal XMPP domain" Type="Variable" Display="always" Required="false" Mask="false">meet.jitsi</Config>
|
||||
<Config Name="XMPP_AUTH_DOMAIN" Target="XMPP_AUTH_DOMAIN" Default="auth.meet.jitsi" Mode="" Description="Internal XMPP domain for authenticated services" Type="Variable" Display="always" Required="false" Mask="false">auth.meet.jitsi</Config>
|
||||
<Config Name="XMPP_GUEST_DOMAIN" Target="XMPP_GUEST_DOMAIN" Default="guest.meet.jitsi" Mode="" Description="XMPP domain for unauthenticated users" Type="Variable" Display="always" Required="false" Mask="false">guest.meet.jitsi</Config>
|
||||
<Config Name="XMPP_MUC_DOMAIN" Target="XMPP_MUC_DOMAIN" Default="muc.meet.jitsi" Mode="" Description="XMPP domain for the MUC" Type="Variable" Display="always" Required="false" Mask="false">muc.meet.jitsi</Config>
|
||||
<Config Name="XMPP_INTERNAL_MUC_DOMAIN" Target="XMPP_INTERNAL_MUC_DOMAIN" Default="internal-muc.meet.jitsi" Mode="" Description="XMPP domain for the internal MUC" Type="Variable" Display="always" Required="false" Mask="false">internal-muc.meet.jitsi</Config>
|
||||
<Config Name="XMPP_MODULES" Target="XMPP_MODULES" Default="info,alert" Mode="" Description="Custom Prosody modules for XMPP_DOMAIN (comma separated)" Type="Variable" Display="always" Required="false" Mask="false">info,alert</Config>
|
||||
<Config Name="XMPP_MUC_MODULES" Target="XMPP_MUC_MODULES" Default="info,alert" Mode="" Description="Custom Prosody modules for MUC component (comma separated)" Type="Variable" Display="always" Required="false" Mask="false">info,alert</Config>
|
||||
<Config Name="XMPP_INTERNAL_MUC_MODULES" Target="XMPP_INTERNAL_MUC_MODULES" Default="info,alert" Mode="" Description="Custom Prosody modules for internal MUC component (comma separated)" Type="Variable" Display="always" Required="false" Mask="false">info,alert</Config>
|
||||
<Config Name="XMPP_RECORDER_DOMAIN" Target="XMPP_RECORDER_DOMAIN" Default="recorder.meet.jitsi" Mode="" Description="Domain for the jibri recorder" Type="Variable" Display="always" Required="false" Mask="false">recorder.meet.jitsi</Config>
|
||||
<Config Name="JICOFO_COMPONENT_SECRET" Target="JICOFO_COMPONENT_SECRET" Default="s3cr37" Mode="" Description="XMPP component password for Jicofo" Type="Variable" Display="always" Required="false" Mask="false">s3cr37</Config>
|
||||
<Config Name="JICOFO_AUTH_USER" Target="JICOFO_AUTH_USER" Default="focus" Mode="" Description="XMPP user for Jicofo client connections" Type="Variable" Display="always" Required="false" Mask="false">focus</Config>
|
||||
<Config Name="JICOFO_AUTH_PASSWORD" Target="JICOFO_AUTH_PASSWORD" Default="passw0rd" Mode="" Description="XMPP password for Jicofo client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JVB_AUTH_USER" Target="JVB_AUTH_USER" Default="jvb" Mode="" Description="XMPP user for JVB MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">jvb</Config>
|
||||
<Config Name="JVB_AUTH_PASSWORD" Target="JVB_AUTH_PASSWORD" Default="passw0rd" Mode="" Description="XMPP password for JVB MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JIGASI_XMPP_USER" Target="JIGASI_XMPP_USER" Default="jigasi" Mode="" Description="XMPP user for Jigasi MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">jigasi</Config>
|
||||
<Config Name="JIGASI_XMPP_PASSWORD" Target="JIGASI_XMPP_PASSWORD" Default="passw0rd" Mode="" Description="XMPP password for Jigasi MUC client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JIBRI_XMPP_USER" Target="JIBRI_XMPP_USER" Default="jibri" Mode="" Description="Internal user for Jibri client connections." Type="Variable" Display="always" Required="false" Mask="false">jibri</Config>
|
||||
<Config Name="JIBRI_XMPP_PASSWORD" Target="JIBRI_XMPP_PASSWORD" Default="passw0rd" Mode="" Description="Internal password for Jibri client connections." Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JIBRI_RECORDER_USER" Target="JIBRI_RECORDER_USER" Default="recorder" Mode="" Description="Internal recorder user for Jibri client connections" Type="Variable" Display="always" Required="false" Mask="false">recorder</Config>
|
||||
<Config Name="JIBRI_RECORDER_PASSWORD" Target="JIBRI_RECORDER_PASSWORD" Default="passw0rd" Mode="" Description="Internal recorder password for Jibri client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JWT_APP_ID" Target="JWT_APP_ID" Default="my_jitsi_app_id" Mode="" Description="Application identifier" Type="Variable" Display="always" Required="false" Mask="false">my_jitsi_app_id</Config>
|
||||
<Config Name="JWT_APP_SECRET" Target="JWT_APP_SECRET" Default="my_jitsi_app_secret" Mode="" Description="Application secret known only to your token" Type="Variable" Display="always" Required="false" Mask="false">my_jitsi_app_secret</Config>
|
||||
<Config Name="JWT_ACCEPTED_ISSUERS" Target="JWT_ACCEPTED_ISSUERS" Default="my_web_client,my_app_client" Mode="" Description="(Optional) Set asap_accepted_issuers as a comma separated list" Type="Variable" Display="always" Required="false" Mask="false">my_web_client,my_app_client</Config>
|
||||
<Config Name="JWT_ACCEPTED_AUDIENCES" Target="JWT_ACCEPTED_AUDIENCES" Default="my_server1,my_server2" Mode="" Description="(Optional) Set asap_accepted_audiences as a comma separated list" Type="Variable" Display="always" Required="false" Mask="false">my_server1,my_server2</Config>
|
||||
<Config Name="JWT_ASAP_KEYSERVER" Target="JWT_ASAP_KEYSERVER" Default="https://example.com/asap" Mode="" Description="(Optional) Set asap_keyserver to a url where public keys can be found" Type="Variable" Display="always" Required="false" Mask="false">https://example.com/asap</Config>
|
||||
<Config Name="JWT_ALLOW_EMPTY" Target="JWT_ALLOW_EMPTY" Default="0" Mode="" Description="(Optional) Allow anonymous users with no JWT while validating JWTs when provided" Type="Variable" Display="always" Required="false" Mask="false">0</Config>
|
||||
<Config Name="JWT_AUTH_TYPE" Target="JWT_AUTH_TYPE" Default="token" Mode="" Description="(Optional) Controls which module is used for processing incoming JWTs" Type="Variable" Display="always" Required="false" Mask="false">token</Config>
|
||||
<Config Name="JWT_TOKEN_AUTH_MODULE" Target="JWT_TOKEN_AUTH_MODULE" Default="token_verification" Mode="" Description="(Optional) Controls which module is used for validating JWTs" Type="Variable" Display="always" Required="false" Mask="false">token_verification</Config>
|
||||
<Config Name="LOG_LEVEL" Target="LOG_LEVEL" Default="info" Mode="" Description="Controls which logs are output from prosody and associated modules" Type="Variable" Display="always" Required="false" Mask="false">info</Config>
|
||||
<Config Name="LDAP_URL" Target="LDAP_URL" Default="ldaps://ldap.domain.com/" Mode="" Description="URL for ldap connection" Type="Variable" Display="always" Required="false" Mask="false">ldaps://ldap.domain.com/</Config>
|
||||
<Config Name="LDAP_BASE" Target="LDAP_BASE" Default="DC=example,DC=domain,DC=com" Mode="" Description="LDAP base DN. Can be empty." Type="Variable" Display="always" Required="false" Mask="false">DC=example,DC=domain,DC=com</Config>
|
||||
<Config Name="LDAP_BINDDN" Target="LDAP_BINDDN" Default="CN=binduser,OU=users,DC=example,DC=domain,DC=com" Mode="" Description="LDAP user DN. Do not specify this parameter for the anonymous bind." Type="Variable" Display="always" Required="false" Mask="false">CN=binduser,OU=users,DC=example,DC=domain,DC=com</Config>
|
||||
<Config Name="LDAP_BINDPW" Target="LDAP_BINDPW" Default="LdapUserPassw0rd" Mode="" Description="LDAP user password. Do not specify this parameter for the anonymous bind." Type="Variable" Display="always" Required="false" Mask="false">LdapUserPassw0rd</Config>
|
||||
<Config Name="LDAP_FILTER" Target="LDAP_FILTER" Default="(sAMAccountName=%u)" Mode="" Description="LDAP filter." Type="Variable" Display="always" Required="false" Mask="false">(sAMAccountName=%u)</Config>
|
||||
<Config Name="LDAP_AUTH_METHOD" Target="LDAP_AUTH_METHOD" Default="bind" Mode="" Description="LDAP authentication method." Type="Variable" Display="always" Required="false" Mask="false">bind</Config>
|
||||
<Config Name="LDAP_VERSION" Target="LDAP_VERSION" Default="3" Mode="" Description="LDAP protocol version" Type="Variable" Display="always" Required="false" Mask="false">3</Config>
|
||||
<Config Name="LDAP_USE_TLS" Target="LDAP_USE_TLS" Default="1" Mode="" Description="Enable LDAP TLS" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="LDAP_TLS_CIPHERS" Target="LDAP_TLS_CIPHERS" Default="SECURE256:SECURE128" Mode="" Description="Set TLS ciphers list to allow" Type="Variable" Display="always" Required="false" Mask="false">SECURE256:SECURE128</Config>
|
||||
<Config Name="LDAP_TLS_CHECK_PEER" Target="LDAP_TLS_CHECK_PEER" Default="1" Mode="" Description="Require and verify LDAP server certificate" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="LDAP_TLS_CACERT_FILE" Target="LDAP_TLS_CACERT_FILE" Default="/etc/ssl/certs/ca-certificates.crt" Mode="" Description="Path to CA cert file. Used when server certificate verification is enabled" Type="Variable" Display="always" Required="false" Mask="false">/etc/ssl/certs/ca-certificates.crt</Config>
|
||||
<Config Name="LDAP_TLS_CACERT_DIR" Target="LDAP_TLS_CACERT_DIR" Default="/etc/ssl/certs" Mode="" Description="Path to CA certs directory. Used when server certificate verification is enabled." Type="Variable" Display="always" Required="false" Mask="false">/etc/ssl/certs</Config>
|
||||
<Config Name="LDAP_START_TLS" Target="LDAP_START_TLS" Default="0" Mode="" Description="Enable START_TLS, requires LDAPv3, URL must be ldap:// not ldaps://" Type="Variable" Display="always" Required="false" Mask="false">0</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Prosody image for Jitsi Meet</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/jitsi-prosody.xml</templatePath>
|
||||
</Container>
|
47
templates/A75GsRepository/templates/jitsi-web.xml
Normal file
47
templates/A75GsRepository/templates/jitsi-web.xml
Normal file
@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>jitsi-web</Name>
|
||||
<Repository>jitsi/web:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/jitsi/web/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://jitsi.org/</Project>
|
||||
<Overview>Jitsi Meet's web interface image </Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/jitsi-web.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/jitsi.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="80" Default="80" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="HTTPS" Target="443" Default="443" Mode="tcp" Description="HTTPS" Type="Port" Display="always" Required="false" Mask="false">4443</Config>
|
||||
<Config Name="AppData Config Path" Target="/config" Default="/mnt/user/appdata/jitsi/web/" Mode="rw" Description="IMPORTENT Change to /mnt/user/appdata/jitsi/web/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/jitsi/web/</Config>
|
||||
<Config Name="LetsEncrypt" Target="/etc/letsencrypt" Default="/mnt/user/appdata/jitsi/web/letsencrypt/" Mode="rw" Description="Container Path: /etc/letsencrypt" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/jitsi/web/letsencrypt/</Config>
|
||||
<Config Name="Transcripts" Target="/usr/share/jitsi-meet/transcripts" Default="/mnt/user/appdata/jitsi/transcripts/" Mode="rw" Description="Container Path: /usr/share/jitsi-meet/transcripts" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/jitsi/transcripts/</Config>
|
||||
<Config Name="ENABLE_AUTH" Target="ENABLE_AUTH" Default="1" Mode="" Description="Enable authentication: 0 OR 1" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="ENABLE_GUESTS" Target="ENABLE_GUESTS" Default="1" Mode="" Description="Enable guest access: 0 OR 1" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="ENABLE_LETSENCRYPT" Target="ENABLE_LETSENCRYPT" Default="0" Mode="" Description="Enable Let's Encrypt certificate generation: 0 OR 1" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="ENABLE_HTTP_REDIRECT" Target="ENABLE_HTTP_REDIRECT" Default="0" Mode="" Description="Redirect HTTP traffic to HTTPS (necessary for Let's Encrypt): 0 OR 1" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="ENABLE_TRANSCRIPTIONS" Target="ENABLE_TRANSCRIPTIONS" Default="1" Mode="" Description="Enable Jigasi transcription in a conference" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="DISABLE_HTTPS" Target="DISABLE_HTTPS" Default="1" Mode="" Description="Handle TLS connections outside of this setup" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Config Name="JICOFO_AUTH_USER" Target="JICOFO_AUTH_USER" Default="focus" Mode="" Description="XMPP user for Jicofo client connections" Type="Variable" Display="always" Required="false" Mask="false">focus</Config>
|
||||
<Config Name="LETSENCRYPT_DOMAIN" Target="LETSENCRYPT_DOMAIN" Default="meet.example.com" Mode="" Description="Domain for which to generate the certificate" Type="Variable" Display="always" Required="false" Mask="false">meet.example.com</Config>
|
||||
<Config Name="LETSENCRYPT_EMAIL" Target="LETSENCRYPT_EMAIL" Default="alice@atlanta.net" Mode="" Description="E-Mail for receiving important account notifications (mandatory) 	" Type="Variable" Display="always" Required="false" Mask="false">user@example.com</Config>
|
||||
<Config Name="PUBLIC_URL" Target="PUBLIC_URL" Default="https://meet.example.com" Mode="" Description="Public URL for the web service" Type="Variable" Display="always" Required="false" Mask="false">https://meet.example.com</Config>
|
||||
<Config Name="XMPP_DOMAIN" Target="XMPP_DOMAIN" Default="meet.jitsi" Mode="" Description="Internal XMPP domain" Type="Variable" Display="always" Required="false" Mask="false">meet.jitsi</Config>
|
||||
<Config Name="XMPP_BOSH_URL_BASE" Target="XMPP_BOSH_URL_BASE" Default="http://xmpp.meet.jitsi:5280" Mode="" Description="Internal XMPP server URL for BOSH module" Type="Variable" Display="always" Required="false" Mask="false">http://xmpp.meet.jitsi:5280</Config>
|
||||
<Config Name="XMPP_GUEST_DOMAIN" Target="XMPP_GUEST_DOMAIN" Default="guest.meet.jitsi" Mode="" Description="XMPP domain for unauthenticated users" Type="Variable" Display="always" Required="false" Mask="false">guest.meet.jitsi</Config>
|
||||
<Config Name="XMPP_MUC_DOMAIN" Target="XMPP_MUC_DOMAIN" Default="muc.meet.jitsi" Mode="" Description="XMPP domain for the MUC" Type="Variable" Display="always" Required="false" Mask="false">muc.meet.jitsi</Config>
|
||||
<Config Name="XMPP_RECORDER_DOMAIN" Target="XMPP_RECORDER_DOMAIN" Default="recorder.meet.jitsi" Mode="" Description="Domain for the jibri recorder" Type="Variable" Display="always" Required="false" Mask="false">recorder.meet.jitsi</Config>
|
||||
<Config Name="ETHERPAD_URL_BASE" Target="ETHERPAD_URL_BASE" Default="http://etherpad.meet.jitsi:9001" Mode="" Description="Set etherpad-lite URL" Type="Variable" Display="always" Required="false" Mask="false">http://etherpad.meet.jitsi:9001</Config>
|
||||
<Config Name="JIBRI_BREWERY_MUC" Target="JIBRI_BREWERY_MUC" Default="jibribrewery" Mode="" Description="MUC name for the Jibri pool" Type="Variable" Display="always" Required="false" Mask="false">jibribrewery</Config>
|
||||
<Config Name="JIBRI_PENDING_TIMEOUT" Target="JIBRI_PENDING_TIMEOUT" Default="90" Mode="" Description="MUC connection timeout" Type="Variable" Display="always" Required="false" Mask="false">90</Config>
|
||||
<Config Name="JIBRI_XMPP_USER" Target="JIBRI_XMPP_USER" Default="jibri" Mode="" Description="Internal user for Jibri client connections." Type="Variable" Display="always" Required="false" Mask="false">jibri</Config>
|
||||
<Config Name="JIBRI_XMPP_PASSWORD" Target="JIBRI_XMPP_PASSWORD" Default="passw0rd" Mode="" Description="Internal password for Jibri client connections." Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="JIBRI_RECORDER_USER" Target="JIBRI_RECORDER_USER" Default="recorder" Mode="" Description="Internal recorder user for Jibri client connections" Type="Variable" Display="always" Required="false" Mask="false">recorder</Config>
|
||||
<Config Name="JIBRI_RECORDER_PASSWORD" Target="JIBRI_RECORDER_PASSWORD" Default="passw0rd" Mode="" Description="Internal recorder password for Jibri client connections" Type="Variable" Display="always" Required="false" Mask="false">passw0rd</Config>
|
||||
<Config Name="ENABLE_RECORDING" Target="ENABLE_RECORDING" Default="1" Mode="" Description="Enable recording conference to local disk" Type="Variable" Display="always" Required="false" Mask="false">1</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Jitsi Meet's web interface image</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/jitsi-web.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/keycloak.xml
Normal file
26
templates/A75GsRepository/templates/keycloak.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>keycloak</Name>
|
||||
<Repository>quay.io/keycloak/keycloak:latest</Repository>
|
||||
<Registry>https://quay.io/repository/keycloak/keycloak</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.keycloak.org/</Project>
|
||||
<Overview>Open Source Identity and Access Management.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/keycloak.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/keycloak.png</Icon>
|
||||
<Config Name="Port" Target="8080" Default="8080" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8080</Config>
|
||||
<Config Name="Keycloak User" Target="KEYCLOAK_USER" Default="Admin" Mode="" Description="Keycloak User" Type="Variable" Display="always" Required="true" Mask="false">admin</Config>
|
||||
<Config Name="Keycloak Password" Target="KEYCLOAK_PASSWORD" Default="admin" Mode="" Description="Keycloak Password" Type="Variable" Display="always" Required="true" Mask="false">admin</Config>
|
||||
<Config Name="Database Hostname or IP" Target="DB_ADDR" Default="192.168.0.100" Mode="" Description="Database Hostname or IP" Type="Variable" Display="always" Required="true" Mask="false">192.168.0.100</Config>
|
||||
<Config Name="Database User" Target="DB_USER" Default="keyclock" Mode="" Description="Database User" Type="Variable" Display="always" Required="true" Mask="false">keyclock</Config>
|
||||
<Config Name="Database Password" Target="DB_PASSWORD" Default="password" Mode="" Description="Database Password" Type="Variable" Display="always" Required="true" Mask="false">password</Config>
|
||||
<Config Name="Database Name" Target="DB_DATABASE" Default="keyclock" Mode="" Description="Database Name" Type="Variable" Display="always" Required="true" Mask="false">keyclock</Config>
|
||||
<Config Name="DB_VENDOR" Target="DB_VENDOR" Default="mssql" Mode="" Description="DB_VENDOR" Type="Variable" Display="advanced" Required="true" Mask="false">MYSQL</Config>
|
||||
<Category>Security: Tools:Utilities</Category>
|
||||
<Description>Open Source Identity and Access Management.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/keycloak.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/kiwix-serve.xml
Normal file
22
templates/A75GsRepository/templates/kiwix-serve.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>kiwix-serve</Name>
|
||||
<Repository>kiwix/kiwix-serve:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/kiwix/kiwix-serve/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.kiwix.org/</Project>
|
||||
<Overview>Kiwix enables you to have the whole Wikipedia at hand wherever you go! [br]Remove download link after download complete.[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/kiwix-serve.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/kiwix.png</Icon>
|
||||
<PostArgs>*.zim</PostArgs>
|
||||
<Config Name="Port" Target="80" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8040</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="" Mode="rw" Description="Container Path: /data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/kiwix-serve/</Config>
|
||||
<Config Name="Download" Target="DOWNLOAD" Default="" Mode="" Description="Add download link here to download contents https://wiki.kiwix.org/wiki/Content" Type="Variable" Display="always" Required="false" Mask="false">http://download.kiwix.org/zim/wikipedia_en_chemistry_nopic.zim</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>Kiwix enables you to have the whole Wikipedia at hand wherever you go! Remove download link after download complete.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/kiwix-serve.xml</templatePath>
|
||||
</Container>
|
24
templates/A75GsRepository/templates/leantime.xml
Normal file
24
templates/A75GsRepository/templates/leantime.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>leantime</Name>
|
||||
<Repository>leantime/leantime:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/leantime/leantime/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://leantime.io/</Project>
|
||||
<Overview>Leantime is an open source project management system for small teams and startups.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/leantime.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/leantime.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="LEAN_DB_HOST" Target="LEAN_DB_HOST" Default="Hostname or IP" Mode="" Description="Database Hostname or IP (Add :port if you are not using 3306 default mysql mariadb port)" Type="Variable" Display="always" Required="true" Mask="false">Hostname or IP</Config>
|
||||
<Config Name="LEAN_DB_USER" Target="LEAN_DB_USER" Default="root" Mode="" Description="LEAN_DB_USER" Type="Variable" Display="always" Required="true" Mask="false">root</Config>
|
||||
<Config Name="LEAN_DB_PASSWORD" Target="LEAN_DB_PASSWORD" Default="password" Mode="" Description="LEAN_DB_PASSWORD" Type="Variable" Display="always" Required="true" Mask="false">password</Config>
|
||||
<Config Name="LEAN_DB_DATABASE" Target="LEAN_DB_DATABASE" Default="leantime" Mode="" Description="LEAN_DB_DATABASE" Type="Variable" Display="always" Required="true" Mask="false">leantime</Config>
|
||||
<Config Name="LEAN_APP_URL" Target="LEAN_APP_URL" Default="http://192.168.0.100:8000" Mode="" Description="Define the url can be http://192.168.0.100:8000 or https://leantime.example.com" Type="Variable" Display="always" Required="true" Mask="false">http://192.168.0.100:8000</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>Leantime is an open source project management system for small teams and startups.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/leantime.xml</templatePath>
|
||||
</Container>
|
42
templates/A75GsRepository/templates/librenms.xml
Normal file
42
templates/A75GsRepository/templates/librenms.xml
Normal file
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>librenms</Name>
|
||||
<Repository>librenms/librenms:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/librenms/librenms/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.librenms.org/</Project>
|
||||
<Overview>a fully featured network monitoring system that provides a wealth of features and device support.
|
||||
|
||||
Database must be CHARACTER SET utf8 COLLATE utf8_unicode_ci</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/librenms.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/librenms.png</Icon>
|
||||
<Config Name="HTTP Port" Target="8000" Default="8000" Mode="tcp" Description="HTTP Port" Type="Port" Display="always" Required="false" Mask="false">6980</Config>
|
||||
<Config Name="Syslog Port" Target="514" Default="514" Mode="udp" Description="Syslog Port" Type="Port" Display="always" Required="false" Mask="false">514</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/librenms/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/librenms/</Config>
|
||||
<Config Name="MEMORY_LIMIT" Target="MEMORY_LIMIT" Default="256M" Mode="" Description="PHP memory limit" Type="Variable" Display="always" Required="false" Mask="false">256M</Config>
|
||||
<Config Name="UPLOAD_MAX_SIZE" Target="UPLOAD_MAX_SIZE" Default="16M" Mode="" Description=" Upload max size " Type="Variable" Display="always" Required="false" Mask="false">16M</Config>
|
||||
<Config Name="OPCACHE_MEM_SIZE" Target="OPCACHE_MEM_SIZE" Default="128" Mode="" Description="PHP OpCache memory consumption" Type="Variable" Display="always" Required="false" Mask="false">128</Config>
|
||||
<Config Name="LISTEN_IPV6" Target="LISTEN_IPV6" Default="true" Mode="" Description="Enable IPv6 for Nginx" Type="Variable" Display="always" Required="false" Mask="false">true</Config>
|
||||
<Config Name="REAL_IP_FROM" Target="REAL_IP_FROM" Default="0.0.0.0/32" Mode="" Description="Trusted addresses that are known to send correct replacement addresses" Type="Variable" Display="always" Required="false" Mask="false">0.0.0.0/32</Config>
|
||||
<Config Name="REAL_IP_HEADER" Target="REAL_IP_HEADER" Default="X-Forwarded-For" Mode="" Description="Request header field whose value will be used to replace the client address" Type="Variable" Display="always" Required="false" Mask="false">X-Forwarded-For</Config>
|
||||
<Config Name="LOG_IP_VAR" Target="LOG_IP_VAR" Default="remote_addr" Mode="" Description="Use another variable to retrieve the remote IP address for access log_format on Nginx. " Type="Variable" Display="always" Required="false" Mask="false">remote_addr</Config>
|
||||
<Config Name="DB_HOST" Target="DB_HOST" Default="" Mode="" Description="MySQL database hostname / IP address" Type="Variable" Display="always" Required="false" Mask="false">192.168.0.100</Config>
|
||||
<Config Name="DB_PORT" Target="DB_PORT" Default="3306" Mode="" Description="MySQL database port " Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="DB_NAME" Target="DB_NAME" Default="test" Mode="" Description="MySQL database name" Type="Variable" Display="always" Required="false" Mask="false">librenms</Config>
|
||||
<Config Name="DB_USER" Target="DB_USER" Default="" Mode="" Description="MySQL user " Type="Variable" Display="always" Required="false" Mask="false">librenms</Config>
|
||||
<Config Name="DB_PASSWORD" Target="DB_PASSWORD" Default="" Mode="" Description="MySQL password" Type="Variable" Display="always" Required="false" Mask="false">librenms</Config>
|
||||
<Config Name="DB_TIMEOUT" Target="DB_TIMEOUT" Default="60" Mode="" Description="Time in seconds after which we stop trying to reach the MySQL server" Type="Variable" Display="always" Required="false" Mask="false">60</Config>
|
||||
<Config Name="LIBRENMS_BASE_URL" Target="LIBRENMS_BASE_URL" Default="/" Mode="" Description=" URL of your LibreNMS instance" Type="Variable" Display="always" Required="false" Mask="false">/</Config>
|
||||
<Config Name="LIBRENMS_SNMP_COMMUNITY" Target="LIBRENMS_SNMP_COMMUNITY" Default="public" Mode="" Description="This container's SNMP v2c community string " Type="Variable" Display="always" Required="false" Mask="false">public</Config>
|
||||
<Config Name="PUID" Target="PUID" Default="99" Mode="" Description="PUID" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="PGID" Target="PGID" Default="100" Mode="" Description="PGID" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>a fully featured network monitoring system that provides a wealth of features and device support.
|
||||
|
||||
Database must be CHARACTER SET utf8 COLLATE utf8_unicode_ci</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/librenms.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/linkding.xml
Normal file
21
templates/A75GsRepository/templates/linkding.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>linkding</Name>
|
||||
<Repository>sissbruecker/linkding</Repository>
|
||||
<Registry>https://hub.docker.com/r/sissbruecker/linkding/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/sissbruecker/linkding</Project>
|
||||
<Overview>linkding is a simple bookmark service that you can host yourself. [br]Creating user by using console "python manage.py createsuperuser --username=joe --email=joe@example.com"[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:9090]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/linkding.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/linkding.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="9090" Default="9090" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">9090</Config>
|
||||
<Config Name="Appdata" Target="/etc/linkding/data" Default="/mnt/user/appdata/linkding/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/linkding/</Config>
|
||||
<Category>Productivity: Network:Web</Category>
|
||||
<Description>linkding is a simple bookmark service that you can host yourself. Creating user by using console "python manage.py createsuperuser --username=joe --email=joe@example.com"</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/linkding.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/mailpile.xml
Normal file
22
templates/A75GsRepository/templates/mailpile.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>mailpile</Name>
|
||||
<Repository>rroemhild/mailpile:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/rroemhild/mailpile/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.mailpile.is/</Project>
|
||||
<Overview>Mailpile is software, an e-mail client. It runs on your desktop or laptop computer and you interact with it by using your web browser. The goal of Mailpile is to allow people to send e-mail in a more secure and private manner than before.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:33411]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/mailpile.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/mailpile.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="33411" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">33411</Config>
|
||||
<Config Name="Path 1" Target="/root/.local/share/Mailpile" Default="" Mode="rw" Description="Container Path: /root/.local/share/Mailpile" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/Mailpile/</Config>
|
||||
<Config Name="Path 2" Target="/root/.gnupg" Default="" Mode="rw" Description="Container Path: /root/.gnupg" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/Mailpile/gnupg/</Config>
|
||||
<Category>Productivity: Network:Web Network:Messenger</Category>
|
||||
<Description>Mailpile is software, an e-mail client. It runs on your desktop or laptop computer and you interact with it by using your web browser. The goal of Mailpile is to allow people to send e-mail in a more secure and private manner than before.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/mailpile.xml</templatePath>
|
||||
</Container>
|
32
templates/A75GsRepository/templates/matomo.xml
Normal file
32
templates/A75GsRepository/templates/matomo.xml
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>matomo</Name>
|
||||
<Repository>bitnami/matomo:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/matomo/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://matomo.org/</Project>
|
||||
<Overview>Matomo is a free and open source web analytics application written by a team of international developers that runs on a PHP/MySQL webserver.</Overview>
|
||||
<WebUI>https://[IP]:[PORT:443]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/matomo.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/matomo.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="80" Default="8000" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="HTTPs" Target="443" Default="8443" Mode="tcp" Description="HTTPs" Type="Port" Display="always" Required="true" Mask="false">8443</Config>
|
||||
<Config Name="Appdata" Target="/bitnami" Default="/mnt/user/appdata/matomo/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/matomo/</Config>
|
||||
<Config Name="MARIADB_HOST" Target="MARIADB_HOST" Default="mariadb" Mode="" Description="Hostname or IP for MariaDB server." Type="Variable" Display="always" Required="true" Mask="false">mariadb</Config>
|
||||
<Config Name="MARIADB_PORT_NUMBER" Target="MARIADB_PORT_NUMBER" Default="3306" Mode="" Description="Port used by MariaDB server. " Type="Variable" Display="always" Required="true" Mask="false">3306</Config>
|
||||
<Config Name="MATOMO_DATABASE_NAME" Target="MATOMO_DATABASE_NAME" Default="bitnami_matomo" Mode="" Description="Database name that Matomo will use to connect with the database." Type="Variable" Display="always" Required="true" Mask="false">bitnami_matomo</Config>
|
||||
<Config Name="MATOMO_DATABASE_USER" Target="MATOMO_DATABASE_USER" Default="bn_matomo" Mode="" Description="Database user that Matomo will use to connect with the database. " Type="Variable" Display="always" Required="true" Mask="false">bn_matomo</Config>
|
||||
<Config Name="MATOMO_DATABASE_PASSWORD" Target="MATOMO_DATABASE_PASSWORD" Default="password" Mode="" Description="Database password that Matomo will use to connect with the database. " Type="Variable" Display="always" Required="true" Mask="false">password</Config>
|
||||
<Config Name="MATOMO_USERNAME" Target="MATOMO_USERNAME" Default="User" Mode="" Description="Matomo application username." Type="Variable" Display="always" Required="false" Mask="false">User</Config>
|
||||
<Config Name="MATOMO_HOST" Target="MATOMO_HOST" Default="192.168.0.100" Mode="" Description="Matomo application host. Change it to your IP" Type="Variable" Display="always" Required="true" Mask="false">192.168.0.100</Config>
|
||||
<Config Name="MATOMO_PASSWORD" Target="MATOMO_PASSWORD" Default="bitnami" Mode="" Description="Matomo application password" Type="Variable" Display="always" Required="false" Mask="false">bitnami</Config>
|
||||
<Config Name="ALLOW_EMPTY_PASSWORD" Target="ALLOW_EMPTY_PASSWORD" Default="no|yes" Mode="" Description="It can be used to allow blank passwords." Type="Variable" Display="advanced" Required="true" Mask="false">no</Config>
|
||||
<Config Name="PHP_MEMORY_LIMIT" Target="PHP_MEMORY_LIMIT" Default="128M" Mode="" Description="Memory limit for PHP." Type="Variable" Display="advanced" Required="true" Mask="false">128M</Config>
|
||||
<Category>Productivity: Tools:Utilities Network:Management</Category>
|
||||
<Description>Matomo is a free and open source web analytics application written by a team of international developers that runs on a PHP/MySQL webserver.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/matomo.xml</templatePath>
|
||||
</Container>
|
29
templates/A75GsRepository/templates/matrix.xml
Normal file
29
templates/A75GsRepository/templates/matrix.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>matrix</Name>
|
||||
<Repository>avhost/docker-matrix:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/avhost/docker-matrix/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/avhost/docker-matrix</Project>
|
||||
<Overview>Docker Image for the matrix chat server.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8008]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/matrix.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/matrix.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="8008" Default="8008" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="false" Mask="false">8008</Config>
|
||||
<Config Name="HTTPS" Target="8448" Default="8448" Mode="tcp" Description="HTTPS" Type="Port" Display="always" Required="false" Mask="false">8448</Config>
|
||||
<Config Name="STUN TCP" Target="3478" Default="3478" Mode="tcp" Description="STUN TCP" Type="Port" Display="always" Required="false" Mask="false">3478</Config>
|
||||
<Config Name="STUN UDP" Target="3478" Default="3478" Mode="udp" Description="STUN UDP" Type="Port" Display="always" Required="false" Mask="false">3478</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/matrix/</Config>
|
||||
<Config Name="Server Name" Target="SERVER_NAME" Default="" Mode="" Description="Server and domain name, mandatory, needed only for generate" Type="Variable" Display="always" Required="false" Mask="false">matrix</Config>
|
||||
<Config Name="Report Stats" Target="REPORT_STATS" Default="" Mode="" Description="statistic report, mandatory, values: yes or no, needed only for generate" Type="Variable" Display="always" Required="false" Mask="false">no</Config>
|
||||
<Config Name="CACHE_FACTOR" Target="SYNAPSE_CACHE_FACTOR" Default="0.5" Mode="" Description="https://github.com/matrix-org/synapse#id19" Type="Variable" Display="always" Required="false" Mask="false">0.5</Config>
|
||||
<Config Name="UID" Target="MATRIX_UID" Default="" Mode="" Description="UID" Type="Variable" Display="always-hide" Required="false" Mask="false">99</Config>
|
||||
<Config Name="GID" Target="MATRIX_GID" Default="" Mode="" Description="GID" Type="Variable" Display="always-hide" Required="false" Mask="false">100</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Docker Image for the matrix chat server.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/matrix.xml</templatePath>
|
||||
</Container>
|
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>mattermost-push-proxy</Name>
|
||||
<Repository>mattermost/mattermost-push-proxy:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/mattermost/mattermost-push-proxy/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/mattermost/mattermost-push-proxy</Project>
|
||||
<Overview>Mattermost Push Notification Service.
|
||||
|
||||
after starting
|
||||
mkdir /mnt/user/appdata/mattermost-push-proxy/config
|
||||
cd /mnt/user/appdata/mattermost-push-proxy/config
|
||||
wget https://raw.githubusercontent.com/mattermost/mattermost-push-proxy/master/config/mattermost-push-proxy.json
|
||||
|
||||
https://developers.mattermost.com/contribute/mobile/push-notifications/service/</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/mattermost-push-proxy.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/mattermost-push-proxy.png</Icon>
|
||||
<Config Name="Port" Target="8066" Default="8066" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8066</Config>
|
||||
<Config Name="Mattermost Push Proxy Path" Target="/mattermost-push-proxy" Default="/mnt/user/appdata/mattermost-push-proxy/proxy/" Mode="rw" Description="Mattermost Push Proxy Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost-push-proxy/</Config>
|
||||
<Config Name="Config Path" Target="/config" Default="/mnt/user/appdata/mattermost-push-proxy/config/" Mode="rw" Description="Config Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost-push-proxy/config/</Config>
|
||||
<Config Name="Certs Path" Target="/certs" Default="" Mode="rw" Description="Certs Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost-push-proxy/certs/</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>Mattermost Push Notification Service.
|
||||
|
||||
after starting
|
||||
mkdir /mnt/user/appdata/mattermost-push-proxy/config
|
||||
cd /mnt/user/appdata/mattermost-push-proxy/config
|
||||
wget https://raw.githubusercontent.com/mattermost/mattermost-push-proxy/master/config/mattermost-push-proxy.json
|
||||
|
||||
https://developers.mattermost.com/contribute/mobile/push-notifications/service/</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/mattermost-push-proxy.xml</templatePath>
|
||||
</Container>
|
34
templates/A75GsRepository/templates/mattermost.xml
Normal file
34
templates/A75GsRepository/templates/mattermost.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>mattermost</Name>
|
||||
<Repository>mattermost/mattermost-team-edition:master</Repository>
|
||||
<Registry>https://hub.docker.com/r/mattermost/mattermost-team-edition/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://mattermost.com/</Project>
|
||||
<Overview>Mattermost a flexible, open source messaging platform that enables secure team collaboration.
|
||||
The official Docker image for Mattermost Team Edition.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8065]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/mattermost.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/mattermost.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Listen Address" Target="8065" Default="8065" Mode="tcp" Description="The address and port to which to bind and listen." Type="Port" Display="always" Required="true" Mask="false">8065</Config>
|
||||
<Config Name="Listen Address" Target="8067" Default="8067" Mode="tcp" Description="The address the Mattermost server will listen on to expose performance metrics." Type="Port" Display="always" Required="false" Mask="false">8067</Config>
|
||||
<Config Name="Gossip Port TCP" Target="8074" Default="8074" Mode="tcp" Description="The port used for the gossip protocol." Type="Port" Display="always" Required="false" Mask="false">8074</Config>
|
||||
<Config Name="Streaming Port" Target="8075" Default="8075" Mode="" Description="The port used for streaming data between servers." Type="Variable" Display="always" Required="false" Mask="false">8075</Config>
|
||||
<Config Name="Gossip Port UDP" Target="8074" Default="8074" Mode="udp" Description="The port used for the gossip protocol." Type="Port" Display="always" Required="false" Mask="false">8074</Config>
|
||||
<Config Name="Data" Target="/mattermost/data" Default="/mnt/user/appdata/mattermost/data/" Mode="rw" Description="Data Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost/data/</Config>
|
||||
<Config Name="Logs" Target="/mattermost/logs" Default="/mnt/user/appdata/mattermost/logs/" Mode="rw" Description="Logs Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost/logs/</Config>
|
||||
<Config Name="Config" Target="/mattermost/config" Default="/mnt/user/appdata/mattermost/config/" Mode="rw" Description="Config Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost/config/</Config>
|
||||
<Config Name="Plugins" Target="/mattermost/plugins" Default="/mnt/user/appdata/mattermost/plugins/" Mode="rw" Description="Plugins Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost/plugins/</Config>
|
||||
<Config Name="Client Plugins" Target="/mattermost/client/plugins" Default="/mnt/user/appdata/mattermost/client/plugins/" Mode="rw" Description="Client Plugins Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mattermost/client/plugins/</Config>
|
||||
<Config Name="DATASOURCE" Target="MM_SQLSETTINGS_DATASOURCE" Default="MM_USERNAME:MM_PASSWORD@tcp(DB_HOST:DB_PORT_NUMBER)/MM_DBNAME?charset=utf8mb4,utf8&amp;readTimeout=30s&amp;writeTimeout=30s" Mode="" Description="Edit This Change MM_USERNAME, MM_PASSWORD, DB_HOST, DB_PORT_NUMBER To your database configuration " Type="Variable" Display="always" Required="true" Mask="false">MM_USERNAME:MM_PASSWORD@tcp(DB_HOST:DB_PORT_NUMBER)/MM_DBNAME?charset=utf8mb4,utf8&readTimeout=30s&writeTimeout=30s</Config>
|
||||
<Config Name="APP_HOST" Target="APP_HOST" Default="IP OR HOSTNAME" Mode="" Description="Application host address" Type="Variable" Display="always" Required="true" Mask="false">IP OR HOSTNAME</Config>
|
||||
<Config Name="MM_SQLSETTINGS_DRIVERNAME" Target="MM_SQLSETTINGS_DRIVERNAME" Default="mysql" Mode="" Description="Container Variable: MM_SQLSETTINGS_DRIVERNAME" Type="Variable" Display="advanced" Required="true" Mask="false">mysql</Config>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Mattermost a flexible, open source messaging platform that enables secure team collaboration.
|
||||
The official Docker image for Mattermost Team Edition.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/mattermost.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/mediagoblin.xml
Normal file
22
templates/A75GsRepository/templates/mediagoblin.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>mediagoblin</Name>
|
||||
<Repository>mtlynch/mediagoblin:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/mtlynch/mediagoblin/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://mediagoblin.org/</Project>
|
||||
<Overview>MediaGoblin is a free software media publishing platform that anyone can run. You can think of it as a decentralized alternative to Flickr, YouTube, SoundCloud, etc. [br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]admin[/B][/u][br]Password: [B][u]admin[/B][/u][/b]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:6543]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/mediagoblin.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/mediagoblin.png</Icon>
|
||||
<ExtraParams>--tty --detach</ExtraParams>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="6543" Default="6543" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">6543</Config>
|
||||
<Config Name="Appdata" Target="/var/lib/mediagoblin" Default="/mnt/user/appdata/mediagoblin/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mediagoblin/</Config>
|
||||
<Category>MediaApp:Photos</Category>
|
||||
<Description>MediaGoblin is a free software media publishing platform that anyone can run. You can think of it as a decentralized alternative to Flickr, YouTube, SoundCloud, etc.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/mediagoblin.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/memcached.xml
Normal file
20
templates/A75GsRepository/templates/memcached.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>memcached</Name>
|
||||
<Repository>bitnami/memcached:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/memcached/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://memcached.org/</Project>
|
||||
<Overview>Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/memcached.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/memcached.png</Icon>
|
||||
<Config Name="Port" Target="11211" Default="11211" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">11211</Config>
|
||||
<Config Name="Memcached Username" Target="MEMCACHED_USERNAME" Default="" Mode="" Description="Memcached Username if you want authentication " Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="Memcache Password" Target="MEMCACHED_PASSWORD" Default="" Mode="" Description="Memcache Password if you want authentication " Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/memcached.xml</templatePath>
|
||||
</Container>
|
31
templates/A75GsRepository/templates/miniflux.xml
Normal file
31
templates/A75GsRepository/templates/miniflux.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>miniflux</Name>
|
||||
<Repository>miniflux/miniflux:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/miniflux/miniflux/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/miniflux/miniflux/</Project>
|
||||
<Overview>Miniflux is a minimalist and opinionated feed reader.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/miniflux.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/miniflux.png</Icon>
|
||||
<Config Name="Port" Target="8080" Default="5600" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">5600</Config>
|
||||
<Config Name="PostgresDB" Target="DATABASE_URL" Default="postgres://miniflux:secret@Hostname/miniflux2?sslmode=disable" Mode="" Description="PostgresDB Change this with correct database configuration you have." Type="Variable" Display="always" Required="true" Mask="false">postgres://miniflux:secret@Hostname/miniflux2?sslmode=disable</Config>
|
||||
<Config Name="Admin Username" Target="ADMIN_USERNAME" Default="admin" Mode="" Description="Admin Username" Type="Variable" Display="always" Required="false" Mask="false">admin</Config>
|
||||
<Config Name="Admin Password" Target="ADMIN_PASSWORD" Default="password" Mode="" Description="Admin Password" Type="Variable" Display="always" Required="false" Mask="false">password</Config>
|
||||
<Config Name="Base URL" Target="BASE_URL" Default="http://192.168.1.100:5600" Mode="" Description="Base URL to generate HTML links and base path for cookies for example http://192.168.1.100:5600 or https://rss.example.com" Type="Variable" Display="always" Required="true" Mask="false">http://192.168.1.100:5600</Config>
|
||||
<Config Name="Feed Refresh Interval " Target="POLLING_FREQUENCY" Default="60" Mode="" Description="Refresh interval in minutes for feeds by minutes" Type="Variable" Display="always" Required="false" Mask="false">60</Config>
|
||||
<Config Name="Cleanup Job Frequency" Target="CLEANUP_FREQUENCY_HOURS" Default="24" Mode="" Description="Cleanup job frequency, remove old sessions and archive read entries by hours" Type="Variable" Display="always" Required="false" Mask="false">24</Config>
|
||||
<Config Name="Cleanup Read Items" Target="CLEANUP_ARCHIVE_READ_DAYS" Default="60" Mode="" Description="Number of days after which marking read items as removed" Type="Variable" Display="always" Required="false" Mask="false">60</Config>
|
||||
<Config Name="Cleanup Old Sessions " Target="CLEANUP_REMOVE_SESSIONS_DAYS" Default="30" Mode="" Description="Number of days after removing old sessions from the database" Type="Variable" Display="always" Required="false" Mask="false">30</Config>
|
||||
<Config Name="Create Admin" Target="CREATE_ADMIN" Default="" Mode="" Description="CREATE_ADMIN" Type="Variable" Display="advanced" Required="true" Mask="false">1</Config>
|
||||
<Config Name="Migrate" Target="RUN_MIGRATIONS" Default="" Mode="" Description="Migrate" Type="Variable" Display="advanced" Required="true" Mask="false">1</Config>
|
||||
<Config Name="Log Time" Target="LOG_DATE_TIME" Default="0|1" Mode="" Description="Set the value to 1 to show date/time in log messages" Type="Variable" Display="advanced" Required="false" Mask="false">0</Config>
|
||||
<Config Name="DEBUG" Target="DEBUG" Default="0|1" Mode="" Description="DEBUG" Type="Variable" Display="advanced" Required="false" Mask="false">0</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>Miniflux is a minimalist and opinionated feed reader.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/miniflux.xml</templatePath>
|
||||
</Container>
|
34
templates/A75GsRepository/templates/moodle.xml
Normal file
34
templates/A75GsRepository/templates/moodle.xml
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>moodle</Name>
|
||||
<Repository>bitnami/moodle:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/moodle/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://moodle.org</Project>
|
||||
<Overview>Moodle is a very popular open source learning management solution (LMS) for the delivery of elearning courses and programs.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/moodle.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/moodle.png</Icon>
|
||||
<Config Name="HTTP" Target="8080" Default="8080" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="true" Mask="false">8080</Config>
|
||||
<Config Name="HTTPs" Target="8443" Default="8443" Mode="tcp" Description="HTTPs (Not needed if you use reverse proxy)" Type="Port" Display="always" Required="false" Mask="false">8443</Config>
|
||||
<Config Name="Appdata" Target="/bitnami/moodle" Default="/mnt/user/appdata/moodle/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/moodle/</Config>
|
||||
<Config Name="ALLOW_EMPTY_PASSWORD" Target="ALLOW_EMPTY_PASSWORD" Default="no|yes" Mode="" Description="It can be used to allow blank passwords." Type="Variable" Display="advanced" Required="true" Mask="false">no</Config>
|
||||
<Config Name="MariaDB Hostname or IP" Target="MARIADB_HOST" Default="mariadb" Mode="" Description="MariaDB Hostname or IP" Type="Variable" Display="always" Required="true" Mask="false">mariadb</Config>
|
||||
<Config Name="MariaDB Database Port" Target="MARIADB_PORT_NUMBER" Default="3306" Mode="" Description="MariaDB Database Port" Type="Variable" Display="always" Required="true" Mask="false">3306</Config>
|
||||
<Config Name="Database Name" Target="MOODLE_DATABASE_NAME" Default="bitnami_moodle" Mode="" Description="Database Name" Type="Variable" Display="always" Required="true" Mask="false">bitnami_moodle</Config>
|
||||
<Config Name="Database User" Target="MOODLE_DATABASE_USER" Default="bn_moodle" Mode="" Description="Database User" Type="Variable" Display="always" Required="true" Mask="false">bn_moodle</Config>
|
||||
<Config Name="Database Password" Target="MOODLE_DATABASE_PASSWORD" Default="" Mode="" Description="Database Password" Type="Variable" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Moodle Username" Target="MOODLE_USERNAME" Default="user" Mode="" Description="Default Moodle Username" Type="Variable" Display="always" Required="false" Mask="false">user</Config>
|
||||
<Config Name="Moodle Password" Target="MOODLE_PASSWORD" Default="bitnami" Mode="" Description="Default Moodle Password" Type="Variable" Display="always" Required="false" Mask="false">bitnami</Config>
|
||||
<Config Name="PHP_MEMORY_LIMIT" Target="PHP_MEMORY_LIMIT" Default="256M" Mode="" Description="PHP_MEMORY_LIMIT" Type="Variable" Display="always" Required="false" Mask="false">256M</Config>
|
||||
<Config Name="SMTP_HOST" Target="SMTP_HOST" Default="" Mode="" Description="SMTP host" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="SMTP_PORT" Target="SMTP_PORT" Default="" Mode="" Description="SMTP port" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="SMTP_USER" Target="SMTP_USER" Default="" Mode="" Description="SMTP account user" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="SMTP_PASSWORD" Target="SMTP_PASSWORD" Default="" Mode="" Description="SMTP account password" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="SMTP_PROTOCOL" Target="SMTP_PROTOCOL" Default="" Mode="" Description="SMTP protocol" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Category>Productivity: Network:Web</Category>
|
||||
<Description>Moodle is a very popular open source learning management solution (LMS) for the delivery of elearning courses and programs.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/moodle.xml</templatePath>
|
||||
</Container>
|
54
templates/A75GsRepository/templates/mumble.xml
Normal file
54
templates/A75GsRepository/templates/mumble.xml
Normal file
@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>mumble</Name>
|
||||
<Repository>phlak/mumble:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/phlak/mumble/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.mumble.info/</Project>
|
||||
<Overview>Mumble is an open source voice communication application[br]Download config.ini[/br]wget -O /mnt/user/appdata/mumble/config.ini https://raw.githubusercontent.com/PHLAK/docker-mumble/master/files/config.ini</Overview>
|
||||
<WebUI></WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/mumble.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/mumble.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<CPUset></CPUset>
|
||||
<Networking>
|
||||
<Mode>bridge</Mode>
|
||||
<Publish>
|
||||
<Port>
|
||||
<HostPort>64738</HostPort>
|
||||
<ContainerPort>64738</ContainerPort>
|
||||
<Protocol>tcp</Protocol>
|
||||
</Port>
|
||||
<Port>
|
||||
<HostPort>64738</HostPort>
|
||||
<ContainerPort>64738</ContainerPort>
|
||||
<Protocol>udp</Protocol>
|
||||
</Port>
|
||||
</Publish>
|
||||
</Networking>
|
||||
<Data>
|
||||
<Volume>
|
||||
<HostDir>/mnt/user/appdata/mumble/</HostDir>
|
||||
<ContainerDir>/etc/mumble</ContainerDir>
|
||||
<Mode>rw</Mode>
|
||||
</Volume>
|
||||
</Data>
|
||||
<Environment>
|
||||
<Variable>
|
||||
<Value>Password</Value>
|
||||
<Name>SUPERUSER_PASSWORD</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
</Environment>
|
||||
<Config Name="Port TCP" Target="64738" Default="64738" Mode="tcp" Description="64738 TCP" Type="Port" Display="always" Required="true" Mask="false">64738</Config>
|
||||
<Config Name="Port UDP" Target="64738" Default="64738" Mode="udp" Description="64738 UDP" Type="Port" Display="always" Required="true" Mask="false">64738</Config>
|
||||
<Config Name="Appdata" Target="/etc/mumble" Default="/mnt/user/appdata/mumble/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/mumble/</Config>
|
||||
<Config Name="SUPERUSER_PASSWORD" Target="SUPERUSER_PASSWORD" Default="Password" Mode="" Description="SUPERUSER_PASSWORD" Type="Variable" Display="always" Required="false" Mask="false">Password</Config>
|
||||
<Date>1588610732</Date>
|
||||
<Category>Productivity: Network:Voip Network:Messenger</Category>
|
||||
<Description>Mumble is an open source voice communication applicationDownload config.iniwget -O /mnt/user/appdata/mumble/config.ini https://raw.githubusercontent.com/PHLAK/docker-mumble/master/files/config.ini</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/mumble.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/netbox.xml
Normal file
26
templates/A75GsRepository/templates/netbox.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>netbox</Name>
|
||||
<Repository>pitkley/netbox:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/pitkley/netbox</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/netbox-community/netbox</Project>
|
||||
<Overview>IP address management (IPAM) and data center infrastructure management (DCIM) tool. [br] To create User cli to the docker then "./manage.py createsuperuser" [br] Postgres required </Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/netbox.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/netbox.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="DB_HOST" Target="DB_HOST" Default="netbox" Mode="" Description="DB Hostname or IP Postgres" Type="Variable" Display="always" Required="true" Mask="false">postgres</Config>
|
||||
<Config Name="DB_NAME" Target="DB_NAME" Default="netbox" Mode="" Description="DB NAME Postgres" Type="Variable" Display="always" Required="true" Mask="false">netbox</Config>
|
||||
<Config Name="DB_USER" Target="DB_USER" Default="netbox" Mode="" Description="DB USER Postgres" Type="Variable" Display="always" Required="true" Mask="false">netbox</Config>
|
||||
<Config Name="DB_PASS" Target="DB_PASS" Default="netbox" Mode="" Description="DB PASS Postgres" Type="Variable" Display="always" Required="true" Mask="false">netbox</Config>
|
||||
<Config Name="SECRET_KEY" Target="SECRET_KEY" Default="ChangeMe" Mode="" Description="SECRET_KEY" Type="Variable" Display="always" Required="true" Mask="false">ChangeMe</Config>
|
||||
<Config Name="ALLOWED_HOSTS" Target="ALLOWED_HOSTS" Default="0.0.0.0" Mode="" Description="ALLOWED_HOSTS" Type="Variable" Display="advanced" Required="true" Mask="false">*</Config>
|
||||
<Category>Tools:Utilities Network:Management</Category>
|
||||
<Description>IP address management (IPAM) and data center infrastructure management (DCIM) tool. To create User cli to the docker then "./manage.py createsuperuser" Postgres required</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/netbox.xml</templatePath>
|
||||
</Container>
|
33
templates/A75GsRepository/templates/phpbb.xml
Normal file
33
templates/A75GsRepository/templates/phpbb.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>phpbb</Name>
|
||||
<Repository>bitnami/phpbb:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/phpbb/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.phpbb.com/</Project>
|
||||
<Overview>phpBB is a bulletin board solution that allows you to create forums and subforums.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/phpbb.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/phpbb.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Appdata" Target="/bitnami" Default="/mnt/user/appdata/phpbb/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/phpbb/</Config>
|
||||
<Config Name="ALLOW_EMPTY_PASSWORD" Target="ALLOW_EMPTY_PASSWORD" Default="no|yes" Mode="" Description="ALLOW_EMPTY_PASSWORD" Type="Variable" Display="always" Required="true" Mask="false">no</Config>
|
||||
<Config Name="MARIADB_HOST" Target="MARIADB_HOST" Default="mariadb" Mode="" Description="Hostname or IP for MariaDB server." Type="Variable" Display="always" Required="false" Mask="false">mariadb</Config>
|
||||
<Config Name="MARIADB_PORT_NUMBER" Target="MARIADB_PORT_NUMBER" Default="3306" Mode="" Description="Port used by MariaDB server." Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Config Name="PHPBB_DATABASE_USER" Target="PHPBB_DATABASE_USER" Default="bn_phpbb" Mode="" Description="Database user that phpBB will use to connect with the database." Type="Variable" Display="always" Required="true" Mask="false">bn_phpbb</Config>
|
||||
<Config Name="PHPBB_DATABASE_PASSWORD" Target="PHPBB_DATABASE_PASSWORD" Default="password" Mode="" Description="Database password that Phpbb will use to connect with the database" Type="Variable" Display="always" Required="true" Mask="false">password</Config>
|
||||
<Config Name="PHPBB_DATABASE_NAME" Target="PHPBB_DATABASE_NAME" Default="bitnami_phpbb" Mode="" Description="Database name that phpBB will use to connect with the database" Type="Variable" Display="always" Required="true" Mask="false">bitnami_phpbb</Config>
|
||||
<Config Name="PHPBB_USERNAME" Target="PHPBB_USERNAME" Default="user" Mode="" Description="phpBB application username." Type="Variable" Display="always" Required="false" Mask="false">user</Config>
|
||||
<Config Name="PHPBB_PASSWORD" Target="PHPBB_PASSWORD" Default="bitnami" Mode="" Description="phpBB application password." Type="Variable" Display="always" Required="false" Mask="false">bitnami</Config>
|
||||
<Config Name="PHPBB_EMAIL" Target="PHPBB_EMAIL" Default="user@example.com" Mode="" Description="phpBB application email." Type="Variable" Display="always" Required="false" Mask="false">user@example.com</Config>
|
||||
<Config Name="PHPBB_FORUM_NAME" Target="PHPBB_FORUM_NAME" Default="Phpbb" Mode="" Description="Forum Name" Type="Variable" Display="always" Required="false" Mask="false">Phpbb</Config>
|
||||
<Config Name="PHPBB_FORUM_DESCRIPTION" Target="PHPBB_FORUM_DESCRIPTION" Default="A little text to describe your forum" Mode="" Description="Forum Description" Type="Variable" Display="always" Required="false" Mask="false">A little text to describe your forum</Config>
|
||||
<Config Name="PHP_MEMORY_LIMIT" Target="PHP_MEMORY_LIMIT" Default="256M" Mode="" Description="Memory limit for PHP." Type="Variable" Display="advanced" Required="false" Mask="false">256M</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>phpBB is a bulletin board solution that allows you to create forums and subforums.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/phpbb.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/psitransfer.xml
Normal file
22
templates/A75GsRepository/templates/psitransfer.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>psitransfer</Name>
|
||||
<Repository>psitrax/psitransfer:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/psitrax/psitransfer/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/psi-4ward/psitransfer</Project>
|
||||
<Overview>Simple open source self-hosted file sharing solution.[br] To access Admin Page add /admin at the end of the URL[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:3000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/psitransfer.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/psitransfer.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="3000" Default="3000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">3000</Config>
|
||||
<Config Name="Admin Password" Target="PSITRANSFER_ADMIN_PASS" Default="secret" Mode="" Description="Admin Password" Type="Variable" Display="always" Required="false" Mask="false">secret</Config>
|
||||
<Config Name="Data" Target="/data" Default="/mnt/user/appdata/psitransfer/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/psitransfer/</Config>
|
||||
<Category>Cloud:</Category>
|
||||
<Description>Simple open source self-hosted file sharing solution. To access Admin Page add /admin at the end of the URL</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/psitransfer.xml</templatePath>
|
||||
</Container>
|
27
templates/A75GsRepository/templates/pterodactyl-daemon.xml
Normal file
27
templates/A75GsRepository/templates/pterodactyl-daemon.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>pterodactyl-daemon</Name>
|
||||
<Repository>ccarney16/pterodactyl-daemon:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/ccarney16/pterodactyl-daemon/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>true</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://pterodactyl.io/</Project>
|
||||
<Overview>The server control and management daemon built specifically for Pterodactyl Panel.
|
||||
Guide: https://pterodactyl.io/wings/1.0/migrating.html
|
||||
[h2]This Template is not maintained by ccarney16, any issue you get Please put it on https://github.com/A75G/docker-templates/issues. [/h2]</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/pterodactyl-daemon.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/pterodactyl-daemon.png</Icon>
|
||||
<Config Name="Port 1" Target="2022" Default="2022" Mode="tcp" Description="Port 1" Type="Port" Display="always" Required="true" Mask="false">2022</Config>
|
||||
<Config Name="Port 2" Target="8080" Default="8080" Mode="tcp" Description="Port 2" Type="Port" Display="always" Required="false" Mask="false">8080</Config>
|
||||
<Config Name="Data Path" Target="/var/lib/pterodactyl" Default="/mnt/user/appdata/pterodactyl/daemon/" Mode="" Description="Data Path" Type="Variable" Display="always" Required="true" Mask="false">/mnt/user/appdata/pterodactyl/daemon/</Config>
|
||||
<Config Name="Temp Path" Target="/tmp/pterodactyl/" Default="/mnt/user/appdata/pterodactyl/daemon/tmp/" Mode="rw" Description="Temp Path" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/pterodactyl/daemon/tmp/</Config>
|
||||
<Config Name="Docker Root" Target="/var/lib/docker" Default="/var/lib/docker" Mode="rw" Description="Docker Root" Type="Path" Display="always" Required="true" Mask="false">/var/lib/docker</Config>
|
||||
<Config Name="Docker Sock" Target="/var/run/docker.sock" Default="/var/run/docker.sock" Mode="rw" Description="Docker Sock" Type="Path" Display="always" Required="true" Mask="false">/var/run/docker.sock</Config>
|
||||
<Category>GameServers: Network:Management</Category>
|
||||
<Description>The server control and management daemon built specifically for Pterodactyl Panel.
|
||||
Guide: https://pterodactyl.io/wings/1.0/migrating.html
|
||||
This Template is not maintained by ccarney16, any issue you get Please put it on https://github.com/A75G/docker-templates/issues.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/pterodactyl-daemon.xml</templatePath>
|
||||
</Container>
|
29
templates/A75GsRepository/templates/pterodactyl-panel.xml
Normal file
29
templates/A75GsRepository/templates/pterodactyl-panel.xml
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>pterodactyl-panel</Name>
|
||||
<Repository>ccarney16/pterodactyl-panel:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/ccarney16/pterodactyl-panel/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://pterodactyl.io/</Project>
|
||||
<Overview>Pterodactyl, a free an open source agnostic game panel... In a Container!
|
||||
Creating account CLI "php artisan p:user:make"</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/pterodactyl-panel.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/pterodactyl-panel.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/pterodactyl/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/pterodactyl/</Config>
|
||||
<Config Name="Timezone" Target="APP_TIMEZONE" Default="UTC" Mode="" Description="Timezone" Type="Variable" Display="always" Required="true" Mask="false">UTC</Config>
|
||||
<Config Name="Database Hostname or IP" Target="DB_HOST" Default="mariadb" Mode="" Description="Database Hostname or IP." Type="Variable" Display="always" Required="true" Mask="false">mariadb</Config>
|
||||
<Config Name="Database Port" Target="DB_PORT" Default="3306" Mode="" Description="Database Port" Type="Variable" Display="always" Required="true" Mask="false">3306</Config>
|
||||
<Config Name="Database Name" Target="DB_DATABASE" Default="pterodactyl" Mode="" Description="Database Name" Type="Variable" Display="always" Required="true" Mask="false">pterodactyl</Config>
|
||||
<Config Name="Database Username" Target="DB_USERNAME" Default="pterodactyl" Mode="" Description="Database Username" Type="Variable" Display="always" Required="true" Mask="false">pterodactyl</Config>
|
||||
<Config Name="Database Password" Target="DB_PASSWORD" Default="password" Mode="" Description="Database Password" Type="Variable" Display="always" Required="true" Mask="false">password</Config>
|
||||
<Config Name="DEBUG" Target="APP_DEBUG" Default="false|true" Mode="" Description="APP_DEBUG" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Category>GameServers: Network:Management</Category>
|
||||
<Description>Pterodactyl, a free an open source agnostic game panel... In a Container!
|
||||
Creating account CLI "php artisan p:user:make"</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/pterodactyl-panel.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/pure-ftpd.xml
Normal file
26
templates/A75GsRepository/templates/pure-ftpd.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>pure-ftpd</Name>
|
||||
<Repository>crazymax/pure-ftpd:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/crazymax/pure-ftpd/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.pureftpd.org/project/pure-ftpd/</Project>
|
||||
<Overview>Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant FTP server. [br]Creating user by using console "pure-pw useradd admin -u 99 -g 100 -d /home/admin -m"[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:2100]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/pure-ftpd.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/pure-ftpd.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="FTP port" Target="2100" Default="2100" Mode="tcp" Description="FTP port" Type="Port" Display="always" Required="false" Mask="false">2100</Config>
|
||||
<Config Name="PASV port range" Target="30000-30009" Default="30000-30009" Mode="tcp" Description="PASV port range" Type="Port" Display="always" Required="false" Mask="false">30000-30009</Config>
|
||||
<Config Name="Appdata" Target="/data" Default="/mnt/user/appdata/pure-ftpd/" Mode="rw" Description="Contains config files and PureDB file" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/pure-ftpd/</Config>
|
||||
<Config Name="FTP Folder" Target="/home" Default="" Mode="rw" Description="Contains FTP Files" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/pure-ftpd/</Config>
|
||||
<Config Name="AUTH_METHOD" Target="AUTH_METHOD" Default="puredb" Mode="" Description="Authentication method to use. Can be puredb, mysql, pgsql or ldap " Type="Variable" Display="always" Required="false" Mask="false">puredb</Config>
|
||||
<Config Name="SECURE_MODE" Target="SECURE_MODE" Default="true" Mode="" Description="Enable secure mode - https://github.com/crazy-max/docker-pure-ftpd#secure-mode" Type="Variable" Display="always" Required="false" Mask="false">true</Config>
|
||||
<Config Name="PASSIVE_PORT_RANGE" Target="PASSIVE_PORT_RANGE" Default="30000:30009" Mode="" Description="Port range for passive connections" Type="Variable" Display="always" Required="false" Mask="false">30000:30009</Config>
|
||||
<Category>Tools:Utilities Network:FTP</Category>
|
||||
<Description>Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant FTP server. Creating user by using console "pure-pw useradd admin -u 99 -g 100 -d /home/admin -m"</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/pure-ftpd.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/pwndrop.xml
Normal file
21
templates/A75GsRepository/templates/pwndrop.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>pwndrop</Name>
|
||||
<Repository>harshavardhanj/pwndrop:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/harshavardhanj/pwndrop/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/kgretzky/pwndrop</Project>
|
||||
<Overview>Self-hosted file hosting service allowing easy uploads and sharing of payloads over HTTP and WebDAV.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/pwndrop</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/pwndrop.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/pwndrop.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Data" Target="/pwndrop/data" Default="/mnt/user/appdata/pwndrop/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/pwndrop/</Config>
|
||||
<Category>Cloud:</Category>
|
||||
<Description>Self-hosted file hosting service allowing easy uploads and sharing of payloads over HTTP and WebDAV.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/pwndrop.xml</templatePath>
|
||||
</Container>
|
24
templates/A75GsRepository/templates/quakejs.xml
Normal file
24
templates/A75GsRepository/templates/quakejs.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>quakejs</Name>
|
||||
<Repository>treyyoder/quakejs:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/treyyoder/quakejs/</Registry>
|
||||
<Network>br0</Network>
|
||||
<MyIP>192.168.0.266</MyIP>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/treyyoder/quakejs-docker</Project>
|
||||
<Overview>QuakeJS is a port of ioquake3 to JavaScript with the help of Emscripten.[br]IMPORTANT Use Custom:br0 https://youtu.be/2VnQxxn00jU?t=121 put Fixed IP address, then copy the ip and access it using you broswer [BR][span style='color: #ff9900;'][B]DON'T USE BRIDGE I'M NOT RESPONSABLE FOR UNRAID CONFLICTING WITH PORT 80 FOR THIS DOCKER[/B]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/quakejs.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/quakejs.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="80" Default="80" Mode="" Description="HTTP" Type="Variable" Display="always" Required="true" Mask="false">80</Config>
|
||||
<Config Name="Game Port" Target="27960" Default="27960" Mode="tcp" Description="Game Port" Type="Port" Display="always" Required="true" Mask="false">27960</Config>
|
||||
<Config Name="SERVER" Target="SERVER" Default="192.168.0.266" Mode="" Description="Put your Fixed IP address Here" Type="Variable" Display="always" Required="true" Mask="false">192.168.0.266</Config>
|
||||
<Config Name="HTTP_PORT" Target="HTTP_PORT" Default="80" Mode="" Description="HTTP_PORT" Type="Variable" Display="always" Required="true" Mask="false">80</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>QuakeJS is a port of ioquake3 to JavaScript with the help of Emscripten.IMPORTANT Use Custom:br0 https://youtu.be/2VnQxxn00jU?t=121 put Fixed IP address, then copy the ip and access it using you broswer</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/quakejs.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/reactive-resume.xml
Normal file
20
templates/A75GsRepository/templates/reactive-resume.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>reactive-resume</Name>
|
||||
<Repository>amruthpillai/reactive-resume:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/amruthpillai/reactive-resume/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://rxresu.me/</Project>
|
||||
<Overview>A one-of-a-kind resume builder that keeps your privacy in mind.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/reactive-resume.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/reactive-resume.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Container Port: 80" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>A one-of-a-kind resume builder that keeps your privacy in mind.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/reactive-resume.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/redis.xml
Normal file
20
templates/A75GsRepository/templates/redis.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>redis</Name>
|
||||
<Repository>bitnami/redis:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/redis/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://redis.io/</Project>
|
||||
<Overview>Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/redis.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/redis.png</Icon>
|
||||
<Config Name="Redis Port" Target="6379" Default="6379" Mode="tcp" Description="Redis Port" Type="Port" Display="always" Required="true" Mask="false">6379</Config>
|
||||
<Config Name="ALLOW_EMPTY_PASSWORD" Target="ALLOW_EMPTY_PASSWORD" Default="yes|no" Mode="" Description="ALLOW_EMPTY_PASSWORD" Type="Variable" Display="always" Required="true" Mask="false">yes</Config>
|
||||
<Config Name="Password" Target="REDIS_PASSWORD" Default="" Mode="" Description="If you want password put ALLOW_EMPTY_PASSWORD to no, then put the password here." Type="Variable" Display="always" Required="false" Mask="false">941378</Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/redis.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/riot-web.xml
Normal file
20
templates/A75GsRepository/templates/riot-web.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>riot-web</Name>
|
||||
<Repository>vectorim/riot-web:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/vectorim/riot-web/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Overview>Open, secure and interoperable communication for work and home. before the running the docker run [br]mkdir -p /mnt/user/appdata/riot-web/config [/br]wget -O /mnt/user/appdata/riot-web/config/config.json https://riot.im/develop/config.json </Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/riot-web.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/riot-web.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8075</Config>
|
||||
<Config Name="Appdata" Target="/app/config.json" Default="" Mode="rw" Description="Container Path: /app/config.json" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/riot-web/config/config.json</Config>
|
||||
<Category>Cloud: Productivity: Network:Messenger</Category>
|
||||
<Description>Open, secure and interoperable communication for work and home. before the running the docker run mkdir -p /mnt/user/appdata/riot-web/config wget -O /mnt/user/appdata/riot-web/config/config.json https://riot.im/develop/config.json</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/riot-web.xml</templatePath>
|
||||
</Container>
|
20
templates/A75GsRepository/templates/searx.xml
Normal file
20
templates/A75GsRepository/templates/searx.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>searx</Name>
|
||||
<Repository>searx/searx:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/searx/searx/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/asciimoo/searx</Project>
|
||||
<Overview>Searx is a free internet metasearch engine which aggregates results from more than 70 search services. Users are neither tracked nor profiled. Additionally, searx can be used over Tor for online anonymity.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/searx.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/searx.png</Icon>
|
||||
<Config Name="Port" Target="8080" Default="8080" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8080</Config>
|
||||
<Config Name="Config" Target="/etc/searx" Default="/mnt/user/appdata/searx/" Mode="rw" Description="Contain config files" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/searx/</Config>
|
||||
<Category>Productivity: Other:</Category>
|
||||
<Description>Searx is a free internet metasearch engine which aggregates results from more than 70 search services. Users are neither tracked nor profiled. Additionally, searx can be used over Tor for online anonymity.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/searx.xml</templatePath>
|
||||
</Container>
|
27
templates/A75GsRepository/templates/selfoss.xml
Normal file
27
templates/A75GsRepository/templates/selfoss.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>selfoss</Name>
|
||||
<Repository>hardware/selfoss</Repository>
|
||||
<Registry>https://hub.docker.com/r/hardware/selfoss/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://selfoss.aditu.de/</Project>
|
||||
<Overview>Selfoss, the new multipurpose rss reader, live stream, mashup, aggregation web application.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8888]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/selfoss.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/selfoss.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8888" Default="8888" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8888</Config>
|
||||
<Config Name="Appdata" Target="/selfoss/data" Default="/mnt/user/appdata/selfoss/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/selfoss/</Config>
|
||||
<Config Name="CRON_PERIOD" Target="CRON_PERIOD" Default="15m" Mode="" Description="Cronjob period for updating feeds" Type="Variable" Display="always" Required="false" Mask="false">15m</Config>
|
||||
<Config Name="UPLOAD_MAX_SIZE" Target="UPLOAD_MAX_SIZE" Default="25M" Mode="" Description="Attachment size limit" Type="Variable" Display="always" Required="false" Mask="false">25M</Config>
|
||||
<Config Name="LOG_TO_STDOUT" Target="LOG_TO_STDOUT" Default="false|true" Mode="" Description="Enable nginx and php error logs to stdout" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Config Name="MEMORY_LIMIT" Target="MEMORY_LIMIT" Default="128M" Mode="" Description="PHP memory limit" Type="Variable" Display="always" Required="false" Mask="false">128M</Config>
|
||||
<Config Name="UID" Target="UID" Default="99" Mode="" Description="UID" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="GID" Target="GID" Default="100" Mode="" Description="GID" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>Selfoss, the new multipurpose rss reader, live stream, mashup, aggregation web application.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/selfoss.xml</templatePath>
|
||||
</Container>
|
22
templates/A75GsRepository/templates/shaarli.xml
Normal file
22
templates/A75GsRepository/templates/shaarli.xml
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>shaarli</Name>
|
||||
<Repository>shaarli/shaarli:master</Repository>
|
||||
<Registry>https://hub.docker.com/r/shaarli/shaarli/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/shaarli/Shaarli</Project>
|
||||
<Overview>The personal, minimalist, super-fast, database free, bookmarking service.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/shaarli.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/shaarli.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Cache" Target="/var/www/shaarli/cache" Default="/mnt/user/appdata/shaarli/cache/" Mode="rw" Description="Cache" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/shaarli/cache/</Config>
|
||||
<Config Name="Data" Target="/var/www/shaarli/data" Default="/mnt/user/appdata/shaarli/data/" Mode="rw" Description="Data" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/shaarli/data/</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>The personal, minimalist, super-fast, database free, bookmarking service.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/shaarli.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/shiori.xml
Normal file
21
templates/A75GsRepository/templates/shiori.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>shiori</Name>
|
||||
<Repository>radhifadlillah/shiori:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/radhifadlillah/shiori/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/go-shiori/shiori</Project>
|
||||
<Overview>Simple bookmark manager built with Go.[br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]shiori[/B][/u][br]Password: [B][u]gopher[/B][/u][/b][br]Create new account inside the web gui so the default one will be removed.[/br]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/shiori.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/shiori.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8080" Default="8080" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8080</Config>
|
||||
<Config Name="Appdata" Target="/srv/shiori/" Default="/mnt/user/appdata/shiori/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/shiori/</Config>
|
||||
<Category>Productivity: Network:Web</Category>
|
||||
<Description>Simple bookmark manager built with Go.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/shiori.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/shlink-web-client.xml
Normal file
26
templates/A75GsRepository/templates/shlink-web-client.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>shlink-web-client</Name>
|
||||
<Repository>shlinkio/shlink-web-client:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/shlinkio/shlink-web-client/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.github.com/shlinkio/shlink-web-client</Project>
|
||||
<Overview>A ReactJS-based progressive web application for shlink.
|
||||
1. Install shlink
|
||||
2. CLI to it and enter "shlink api-key:generate"
|
||||
3. Copy the api and add and edit to servers.json</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/shlink-web-client.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/shlink-web-client.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="Server Config File" Target="/usr/share/nginx/html/servers.json" Default="/mnt/user/appdata/shlink-web/servers.json" Mode="rw" Description="Server Config File (Must be created first before applying the docker template) https://hub.docker.com/r/shlinkio/shlink-web-client/" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/shlink-web/servers.json</Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>A ReactJS-based progressive web application for shlink.
|
||||
1. Install shlink
|
||||
2. CLI to it and enter "shlink api-key:generate"
|
||||
3. Copy the api and add and edit to servers.json</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/shlink-web-client.xml</templatePath>
|
||||
</Container>
|
30
templates/A75GsRepository/templates/shlink.xml
Normal file
30
templates/A75GsRepository/templates/shlink.xml
Normal file
@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>shlink</Name>
|
||||
<Repository>shlinkio/shlink:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/shlinkio/shlink/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://shlink.io/</Project>
|
||||
<Overview>A self-hosted and PHP-based URL shortener application with CLI and REST interfaces.
|
||||
More Variables: https://shlink.io/documentation/install-docker-image/#supported-env-vars</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/shlink.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/shlink.png</Icon>
|
||||
<Config Name="Port" Target="8080" Default="8080" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8080</Config>
|
||||
<Config Name="Short Domain Host" Target="SHORT_DOMAIN_HOST" Default="doma.in" Mode="" Description="The custom short domain used for this shlink instance. For example doma.in." Type="Variable" Display="always" Required="false" Mask="false">doma.in</Config>
|
||||
<Config Name="Short Domain Schema" Target="SHORT_DOMAIN_SCHEMA" Default="https|http" Mode="" Description="Either http or https." Type="Variable" Display="always" Required="false" Mask="false">https</Config>
|
||||
<Config Name="Geolite License Key" Target="GEOLITE_LICENSE_KEY" Default="" Mode="" Description="https://dev.maxmind.com/geoip/geoip2/geolite2/" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="Database Driver" Target="DB_DRIVER" Default="maria|mysql|postgres|mssql" Mode="" Description="Database Driver" Type="Variable" Display="always" Required="false" Mask="false">maria</Config>
|
||||
<Config Name="Database Name" Target="DB_NAME" Default="shlink" Mode="" Description="The database name to be used. Defaults to shlink." Type="Variable" Display="always" Required="false" Mask="false">shlink</Config>
|
||||
<Config Name="Database User" Target="DB_USER" Default="root" Mode="" Description="The username credential for the database server." Type="Variable" Display="always" Required="false" Mask="false">root</Config>
|
||||
<Config Name="Database Password" Target="DB_PASSWORD" Default="password" Mode="" Description="The password credential for the database server." Type="Variable" Display="always" Required="false" Mask="false">password</Config>
|
||||
<Config Name="Database Host" Target="DB_HOST" Default="192.168.0.100" Mode="" Description="The host name of the server running the database engine." Type="Variable" Display="always" Required="false" Mask="false">192.168.0.100</Config>
|
||||
<Config Name="Database Port" Target="DB_PORT" Default="3306|5432|1433" Mode="" Description="mysql or maria -&gt; 3306 - postgres -&gt; 5432 - mssql -&gt; 1433" Type="Variable" Display="always" Required="false" Mask="false">3306</Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>A self-hosted and PHP-based URL shortener application with CLI and REST interfaces.
|
||||
More Variables: https://shlink.io/documentation/install-docker-image/#supported-env-vars</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/shlink.xml</templatePath>
|
||||
</Container>
|
23
templates/A75GsRepository/templates/solr.xml
Normal file
23
templates/A75GsRepository/templates/solr.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>solr</Name>
|
||||
<Repository>bitnami/solr:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bitnami/solr/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://lucene.apache.org/solr/</Project>
|
||||
<Overview>Solr is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8983]</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/solr.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/solr.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8983" Default="8983" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8983</Config>
|
||||
<Config Name="Appdata" Target="/bitnami" Default="/mnt/user/appdata/solr/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/solr/</Config>
|
||||
<Config Name="SOLR_PORT_NUMBER" Target="SOLR_PORT_NUMBER" Default="8983" Mode="" Description="Port used by Solr server. Default: 8983" Type="Variable" Display="always" Required="true" Mask="false">8983</Config>
|
||||
<Config Name="SOLR_CORE" Target="SOLR_CORE" Default="my_core" Mode="" Description="Core name to create at first run." Type="Variable" Display="always" Required="true" Mask="false">my_core</Config>
|
||||
<Category>Tools:Utilities</Category>
|
||||
<Description>Solr is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/solr.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/stackedit.xml
Normal file
21
templates/A75GsRepository/templates/stackedit.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>stackedit</Name>
|
||||
<Repository>qmcgaw/stackedit:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/qmcgaw/stackedit/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://stackedit.io/</Project>
|
||||
<Overview>StackEdit’s Markdown syntax highlighting is unique. The refined text formatting of the editor helps you visualize the final rendering of your files.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:8000]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/stackedit.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/stackedit.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="8000" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="ROOT_URL" Target="ROOT_URL" Default="/" Mode="" Description="Sets production behavior for stackedit" Type="Variable" Display="always" Required="false" Mask="false">/</Config>
|
||||
<Category>Productivity: Tools:Utilities</Category>
|
||||
<Description>StackEdit’s Markdown syntax highlighting is unique. The refined text formatting of the editor helps you visualize the final rendering of your files.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/stackedit.xml</templatePath>
|
||||
</Container>
|
23
templates/A75GsRepository/templates/synapse-admin.xml
Normal file
23
templates/A75GsRepository/templates/synapse-admin.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>synapse-admin</Name>
|
||||
<Repository>awesometechnologies/synapse-admin:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/awesometechnologies/synapse-admin/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/Awesome-Technologies/synapse-admin</Project>
|
||||
<Overview>Admin UI for Matrix Synapse homeserver.
|
||||
|
||||
User must be admin user - how to make admin user "register_new_matrix_user -c /data/homeserver.yaml http://0.0.0.0:8008" </Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/synapse-admin.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/synapse-admin.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8010" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8010</Config>
|
||||
<Category>Tools:Utilities Network:Messenger</Category>
|
||||
<Description>Admin UI for Matrix Synapse homeserver.
|
||||
|
||||
User must be admin user - how to make admin user "register_new_matrix_user -c /data/homeserver.yaml http://0.0.0.0:8008"</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/synapse-admin.xml</templatePath>
|
||||
</Container>
|
23
templates/A75GsRepository/templates/tar1090.xml
Normal file
23
templates/A75GsRepository/templates/tar1090.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>tar1090</Name>
|
||||
<Repository>mikenye/tar1090:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/mikenye/tar1090/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://hub.docker.com/r/mikenye/tar1090</Project>
|
||||
<Overview>Multi-arch tar1090 container for visualising ADSB data.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/tar1090.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/tar1090.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8078" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8078</Config>
|
||||
<Config Name="BEASTHOST" Target="BEASTHOST" Default="&lt;BEASTHOST&gt;" Mode="" Description="You will need a source of Beast data. This could be an RPi running PiAware, the mikenye/piaware image or mikenye/readsb." Type="Variable" Display="always" Required="true" Mask="false"><BEASTHOST></Config>
|
||||
<Config Name="MLATHOST" Target="MLATHOST" Default="&lt;MLATHOST&gt;" Mode="" Description="IP address of a host that can provide MLAT data." Type="Variable" Display="always" Required="true" Mask="false"><MLATHOST></Config>
|
||||
<Config Name="LAT" Target="LAT" Default="xx.xxxxx" Mode="" Description="Latitude" Type="Variable" Display="always" Required="true" Mask="false">xx.xxxxx</Config>
|
||||
<Config Name="LONG" Target="LONG" Default="xx.xxxxx" Mode="" Description="Longitude" Type="Variable" Display="always" Required="true" Mask="false">xx.xxxxx</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>Multi-arch tar1090 container for visualising ADSB data.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/tar1090.xml</templatePath>
|
||||
</Container>
|
19
templates/A75GsRepository/templates/torprivoxy.xml
Normal file
19
templates/A75GsRepository/templates/torprivoxy.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>torprivoxy</Name>
|
||||
<Repository>avpnusr/torprivoxy:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/avpnusr/torprivoxy/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/avpnusr/torprivoxy</Project>
|
||||
<Overview>Small TOR and Privoxy container with just 8 MB</Overview>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/torprivoxy.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/torprivoxy.png</Icon>
|
||||
<Config Name="HTTP Proxy" Target="8118" Default="8118" Mode="tcp" Description="HTTP Proxy" Type="Port" Display="always" Required="false" Mask="false">8118</Config>
|
||||
<Config Name="SOCKS5 proxy" Target="9050" Default="9050" Mode="tcp" Description="SOCKS5 proxy" Type="Port" Display="always" Required="false" Mask="false">9050</Config>
|
||||
<Category>Network:Proxy</Category>
|
||||
<Description>Small TOR and Privoxy container with just 8 MB</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/torprivoxy.xml</templatePath>
|
||||
</Container>
|
24
templates/A75GsRepository/templates/tt-rss.xml
Normal file
24
templates/A75GsRepository/templates/tt-rss.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>tt-rss</Name>
|
||||
<Repository>lunik1/tt-rss:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/lunik1/tt-rss/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://github.com/lunik1/docker-tt-rss</Project>
|
||||
<Overview>A fork of the deprecated linuxserver.io tt-rss container.
|
||||
The default username and password after initial configuration is admin/password</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/tt-rss.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/tt-rss.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="false" Mask="false">8000</Config>
|
||||
<Config Name="AppData" Target="/config" Default="/mnt/user/appdata/tt-rss/" Mode="rw" Description="AppData" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/tt-rss/</Config>
|
||||
<Config Name="PUID" Target="PUID" Default="99" Mode="" Description="PUID" Type="Variable" Display="advanced" Required="false" Mask="false">99</Config>
|
||||
<Config Name="PGID" Target="PGID" Default="100" Mode="" Description="PGID" Type="Variable" Display="advanced" Required="false" Mask="false">100</Config>
|
||||
<Category>Productivity: Other:</Category>
|
||||
<Description>A fork of the deprecated linuxserver.io tt-rss container.
|
||||
The default username and password after initial configuration is admin/password</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/tt-rss.xml</templatePath>
|
||||
</Container>
|
25
templates/A75GsRepository/templates/wallabag.xml
Normal file
25
templates/A75GsRepository/templates/wallabag.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>wallabag</Name>
|
||||
<Repository>wallabag/wallabag:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/wallabag/wallabag/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://www.wallabag.org</Project>
|
||||
<Overview>Wallabag is a self hostable application for saving web pages. Unlike other services, wallabag is free (as in freedom) and open source. [br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]wallabag[/B][/u][br]Password: [B][u]wallabag[/B][/u][/b]</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/wallabag.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/wallabag.png</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="Port" Target="80" Default="6500" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">6500</Config>
|
||||
<Config Name="Appdata" Target="/var/www/wallabag/data" Default="/mnt/user/appdata/wallabag/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/wallabag/</Config>
|
||||
<Config Name="Images" Target="/var/www/wallabag/web/assets/images" Default="/mnt/user/appdata/wallabag/images/" Mode="rw" Description="Images" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/wallabag/images/</Config>
|
||||
<Config Name="Domain" Target="SYMFONY__ENV__DOMAIN_NAME" Default="" Mode="" Description="Domain" Type="Variable" Display="always" Required="true" Mask="false">http://<IP>:6500</Config>
|
||||
<Config Name="Secret" Target="SYMFONY__ENV__SECRET" Default="LongRandomSecretHere" Mode="" Description="Randomly generated secret here" Type="Variable" Display="always" Required="false" Mask="false">LongRandomSecretHere</Config>
|
||||
<Config Name="Public User Registration" Target="SYMFONY__ENV__FOSUSER_REGISTRATION" Default="false" Mode="" Description="Public User Registration" Type="Variable" Display="always" Required="false" Mask="false">false</Config>
|
||||
<Category>Productivity:</Category>
|
||||
<Description>Wallabag is a self hostable application for saving web pages. Unlike other services, wallabag is free (as in freedom) and open source.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/wallabag.xml</templatePath>
|
||||
</Container>
|
21
templates/A75GsRepository/templates/weechat.xml
Normal file
21
templates/A75GsRepository/templates/weechat.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>weechat</Name>
|
||||
<Repository>jkaberg/weechat:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/jkaberg/weechat/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://weechat.org/</Project>
|
||||
<Overview>WeeChat is a free and open-source Internet Relay Chat client, which is designed to be light and fast. </Overview>
|
||||
<ExtraParams>-it</ExtraParams>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/weechat.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/weechat.png</Icon>
|
||||
<Config Name="AppData" Target="/weechat" Default="/mnt/user/appdata/weechat/" Mode="rw" Description="AppData" Type="Path" Display="always" Required="false" Mask="false">/mnt/user/appdata/weechat/</Config>
|
||||
<Config Name="UID" Target="UID" Default="99" Mode="" Description="UID" Type="Variable" Display="always" Required="false" Mask="false">99</Config>
|
||||
<Config Name="GID" Target="GID" Default="100" Mode="" Description="GID" Type="Variable" Display="always" Required="false" Mask="false">100</Config>
|
||||
<Category>Network:Messenger</Category>
|
||||
<Description>WeeChat is a free and open-source Internet Relay Chat client, which is designed to be light and fast.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/weechat.xml</templatePath>
|
||||
</Container>
|
19
templates/A75GsRepository/templates/wifi-card.xml
Normal file
19
templates/A75GsRepository/templates/wifi-card.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>wifi-card</Name>
|
||||
<Repository>bndw/wifi-card:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/bndw/wifi-card/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://wifi.dev.bdw.to/</Project>
|
||||
<Overview>Print a neat little card with your WiFi info and stick it on the fridge.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:80]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/wifi-card.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/wifi-card.png</Icon>
|
||||
<Config Name="Port" Target="80" Default="8000" Mode="tcp" Description="Port" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Category>Other:</Category>
|
||||
<Description>Print a neat little card with your WiFi info and stick it on the fridge.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/wifi-card.xml</templatePath>
|
||||
</Container>
|
26
templates/A75GsRepository/templates/yacy.xml
Normal file
26
templates/A75GsRepository/templates/yacy.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>yacy</Name>
|
||||
<Repository>yacy/yacy_search_server:latest</Repository>
|
||||
<Registry>https://hub.docker.com/r/yacy/yacy_search_server/</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/89502-support-a75g-repo/</Support>
|
||||
<Project>https://yacy.net/</Project>
|
||||
<Overview>YaCy decentralized search engine (https://yacy.net)[br][br][b][u][span style='color: #ff9900;']Default user/password[/span][/u][/b][br]User: [B][u]admin[/B][/u][br]Password: [B][u]docker[/B][/u][/b]
|
||||
|
||||
Set an admin account immediately after the first start-up. Open:
|
||||
http://ServerIP:8090/ConfigAccounts_p.html </Overview>
|
||||
<WebUI>http://[IP]:[PORT:8090]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/yacy.xml</TemplateURL>
|
||||
<Icon>https://raw.githubusercontent.com/A75G/docker-templates/master/templates/icons/yacy.png</Icon>
|
||||
<ExtraParams>--log-opt max-size=200m --log-opt max-file=2</ExtraParams>
|
||||
<PostArgs></PostArgs>
|
||||
<Config Name="HTTP" Target="8090" Default="8090" Mode="tcp" Description="HTTP" Type="Port" Display="always" Required="true" Mask="false">8090</Config>
|
||||
<Config Name="HTTPs" Target="8443" Default="8443" Mode="tcp" Description="HTTPs (Not Required if you using reverse proxy)" Type="Port" Display="always" Required="false" Mask="false">8443</Config>
|
||||
<Config Name="Appdata" Target="/opt/yacy_search_server/DATA" Default="/mnt/user/appdata/yacy/" Mode="rw" Description="Appdata" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/yacy/</Config>
|
||||
<Category>Tools:Utilities Network:Web</Category>
|
||||
<Description>YaCy decentralized search engine (https://yacy.net)</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/A75GsRepository/templates/yacy.xml</templatePath>
|
||||
</Container>
|
53
templates/Aggie1999sRepository/wbynum/QEMUBackup.xml
Normal file
53
templates/Aggie1999sRepository/wbynum/QEMUBackup.xml
Normal file
@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>QEMUBackup</Name>
|
||||
<Repository>wbynum/qemubackup</Repository>
|
||||
<Registry>https://hub.docker.com/r/wbynum/qemubackup</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/85802-support-wbynum-qemubackup/</Support>
|
||||
<Project>https://github.com/wbynum/QEMUBackup</Project>
|
||||
<Overview>QEMUBackup is a ASP.NET Core app that facilitates manual backups of QEMU virtual machines. Allows user to add a title and description to a virtual machine. Then user can create a backup which will contain the title and description in the VM's XML. Useful for describing the state of a VM when taking a backup.</Overview>
|
||||
<WebUI>http://[IP]:[PORT:43080]/</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/wbynum/docker-templates/master/wbynum/QEMUBackup.xml</TemplateURL>
|
||||
<Icon></Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<CPUset></CPUset>
|
||||
<Networking>
|
||||
<Mode>bridge</Mode>
|
||||
<Publish>
|
||||
<Port>
|
||||
<HostPort>43080</HostPort>
|
||||
<ContainerPort>80</ContainerPort>
|
||||
<Protocol>tcp</Protocol>
|
||||
</Port>
|
||||
</Publish>
|
||||
</Networking>
|
||||
<Data></Data>
|
||||
<Environment>
|
||||
<Variable>
|
||||
<Value></Value>
|
||||
<Name>QEMUBackupHost</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
<Variable>
|
||||
<Value></Value>
|
||||
<Name>QEMUBackupUsername</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
<Variable>
|
||||
<Value></Value>
|
||||
<Name>QEMUBackupBackupPath</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
</Environment>
|
||||
<Config Name="Host Port" Target="80" Default="" Mode="tcp" Description="Container Port: 80" Type="Port" Display="always" Required="false" Mask="false">43080</Config>
|
||||
<Config Name="Host" Target="QEMUBackupHost" Default="" Mode="" Description="Container Variable: QEMUBackupHost" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="Username" Target="QEMUBackupUsername" Default="" Mode="" Description="Container Variable: QEMUBackupUsername" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Config Name="Backup Path" Target="QEMUBackupBackupPath" Default="" Mode="" Description="Container Variable: QEMUBackupBackupPath" Type="Variable" Display="always" Required="false" Mask="false"></Config>
|
||||
<Date>1575590660</Date>
|
||||
<Category>Backup: Tools:Utilities</Category>
|
||||
<Description>QEMUBackup is a ASP.NET Core app that facilitates manual backups of QEMU virtual machines. Allows user to add a title and description to a virtual machine. Then user can create a backup which will contain the title and description in the VM's XML. Useful for describing the state of a VM when taking a backup.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/Aggie1999sRepository/wbynum/QEMUBackup.xml</templatePath>
|
||||
</Container>
|
92
templates/Andrew207sRepository/splunkunraid.xml
Normal file
92
templates/Andrew207sRepository/splunkunraid.xml
Normal file
@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Container version="2">
|
||||
<Name>splunk</Name>
|
||||
<Repository>atunnecliffe/splunk</Repository>
|
||||
<Registry>https://hub.docker.com/r/atunnecliffe/splunk</Registry>
|
||||
<Network>bridge</Network>
|
||||
<Shell>sh</Shell>
|
||||
<Privileged>false</Privileged>
|
||||
<Support>https://forums.unraid.net/topic/80995-support-atunnecliffe-splunk/</Support>
|
||||
<Project>https://www.splunk.com/</Project>
|
||||
<Overview>This is a Dockerfile for Splunk designed for OpenShift and unRAID based on Alpine Linux - https://www.splunk.com
|
||||
|
||||
If you run the Dockerfile with no arguments you will get a single instance of Splunk 8.1.0 with the user admin:changeme2019.
|
||||
|
||||
The web interface is exposed on port HTTP/8000, data ingest on TCP/9997, and API on HTTPS/8089.
|
||||
|
||||
Compatible with Splunk 7.1.0 and newer. </Overview>
|
||||
<WebUI>http://[IP]:8000</WebUI>
|
||||
<TemplateURL>https://raw.githubusercontent.com/andrew207/splunk/master/splunkunraid.xml</TemplateURL>
|
||||
<Icon>https://secure.gravatar.com/avatar/c4cadc82a16e67018f57f1fc2547caa4.jpg</Icon>
|
||||
<PostArgs></PostArgs>
|
||||
<CPUset></CPUset>
|
||||
<DonateText>Donate to Dockerfile author via PayPal</DonateText>
|
||||
<DonateLink>https://paypal.me/atunnecliffe</DonateLink>
|
||||
<Networking>
|
||||
<Mode>bridge</Mode>
|
||||
<Publish>
|
||||
<Port>
|
||||
<HostPort>8000</HostPort>
|
||||
<ContainerPort>8000</ContainerPort>
|
||||
<Protocol>tcp</Protocol>
|
||||
</Port>
|
||||
<Port>
|
||||
<HostPort>8089</HostPort>
|
||||
<ContainerPort>8089</ContainerPort>
|
||||
<Protocol>tcp</Protocol>
|
||||
</Port>
|
||||
<Port>
|
||||
<HostPort>9997</HostPort>
|
||||
<ContainerPort>9997</ContainerPort>
|
||||
<Protocol>tcp</Protocol>
|
||||
</Port>
|
||||
</Publish>
|
||||
</Networking>
|
||||
<Data>
|
||||
<Volume>
|
||||
<HostDir>/mnt/user/appdata/splunkenterprise/splunkdata</HostDir>
|
||||
<ContainerDir>/splunkdata</ContainerDir>
|
||||
<Mode>rw</Mode>
|
||||
</Volume>
|
||||
<Volume>
|
||||
<HostDir>/mnt/user/appdata/splunkenterprise/etc/apps</HostDir>
|
||||
<ContainerDir>/opt/splunk/etc/apps</ContainerDir>
|
||||
<Mode>rw</Mode>
|
||||
</Volume>
|
||||
<Volume>
|
||||
<HostDir>/mnt/user/appdata/splunkenterprise/etc/auth</HostDir>
|
||||
<ContainerDir>/opt/splunk/etc/auth</ContainerDir>
|
||||
<Mode>rw</Mode>
|
||||
</Volume>
|
||||
</Data>
|
||||
<Environment>
|
||||
<Variable>
|
||||
<Value>--accept-license --no-prompt</Value>
|
||||
<Name>SPLUNK_CLI_ARGS</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
<Variable>
|
||||
<Value>changeme2019</Value>
|
||||
<Name>ADMIN_PASSWORD</Name>
|
||||
<Mode></Mode>
|
||||
</Variable>
|
||||
</Environment>
|
||||
<Config Name="Web" Target="8000" Default="8000" Mode="tcp" Description="HTTP Web UI" Type="Port" Display="always" Required="true" Mask="false">8000</Config>
|
||||
<Config Name="DataPersist" Target="/splunkdata" Default="/mnt/user/appdata/splunkenterprise/splunkdata" Mode="rw" Description="For indexed data persistence" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="ConfigPersist" Target="/opt/splunk/etc/apps" Default="/mnt/user/appdata/splunkenterprise/etc/apps" Mode="rw" Description="For config and app data persistence" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="AppCredsPersist" Target="/opt/splunk/etc/auth" Default="/mnt/user/appdata/splunkenterprise/etc/auth" Mode="rw" Description="For password/encryption persistence" Type="Path" Display="always" Required="true" Mask="false"></Config>
|
||||
<Config Name="Splunk start args" Target="SPLUNK_CLI_ARGS" Default="--accept-license --no-prompt" Mode="" Description="Arguments to start Splunk with. " Type="Variable" Display="advanced" Required="true" Mask="false">--accept-license --no-prompt</Config>
|
||||
<Config Name="Admin Password" Target="ADMIN_PASSWORD" Default="changeme2019" Mode="" Description="Splunk Web UI admin password." Type="Variable" Display="advanced" Required="true" Mask="true">changeme2019</Config>
|
||||
<Config Name="Management" Target="8089" Default="8089" Mode="tcp" Description="HTTPS API" Type="Port" Display="advanced" Required="false" Mask="false">8089</Config>
|
||||
<Config Name="Data Ingest" Target="9997" Default="9997" Mode="tcp" Description="SplunkTCP input" Type="Port" Display="advanced" Required="false" Mask="false">9997</Config>
|
||||
<Date>1568943898</Date>
|
||||
<Category>Tools:Utilities Network:Management</Category>
|
||||
<Description>This is a Dockerfile for Splunk designed for OpenShift and unRAID based on Alpine Linux - https://www.splunk.com
|
||||
|
||||
If you run the Dockerfile with no arguments you will get a single instance of Splunk 8.1.0 with the user admin:changeme2019.
|
||||
|
||||
The web interface is exposed on port HTTP/8000, data ingest on TCP/9997, and API on HTTPS/8089.
|
||||
|
||||
Compatible with Splunk 7.1.0 and newer.</Description>
|
||||
<templatePath>/tmp/GitHub/AppFeed/templates/Andrew207sRepository/splunkunraid.xml</templatePath>
|
||||
</Container>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user