diff options
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 2 | ||||
-rw-r--r-- | settings/js/apps.js | 34 | ||||
-rw-r--r-- | settings/l10n/de.php | 4 | ||||
-rw-r--r-- | settings/l10n/es_AR.php | 6 | ||||
-rw-r--r-- | settings/l10n/et_EE.php | 6 | ||||
-rw-r--r-- | settings/l10n/fi_FI.php | 3 | ||||
-rw-r--r-- | settings/l10n/id.php | 5 | ||||
-rw-r--r-- | settings/l10n/ja_JP.php | 16 | ||||
-rw-r--r-- | settings/l10n/ka_GE.php | 70 | ||||
-rw-r--r-- | settings/l10n/lt_LT.php | 6 | ||||
-rw-r--r-- | settings/l10n/ru.php | 10 | ||||
-rw-r--r-- | settings/l10n/ru_RU.php | 3 | ||||
-rw-r--r-- | settings/l10n/si_LK.php | 36 | ||||
-rw-r--r-- | settings/l10n/sk_SK.php | 17 | ||||
-rw-r--r-- | settings/l10n/sl.php | 61 | ||||
-rw-r--r-- | settings/l10n/zh_CN.php | 9 |
16 files changed, 228 insertions, 60 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index 60a42784661..f5ee2124f0f 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -38,7 +38,7 @@ div.quota { float:right; display:block; position:absolute; right:25em; top:0; } div.quota-select-wrapper { position: relative; } select.quota { position:absolute; left:0; top:0; width:10em; } select.quota-user { position:relative; left:0; top:0; width:10em; } -input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; -webkit-box-shadow: none; -moz-box-shadow:none ; box-shadow:none; } +input.quota-other { display:none; position:absolute; left:0.1em; top:0.1em; width:7em; border:none; box-shadow:none; } div.quota>span { position:absolute; right:0em; white-space:nowrap; top: 0.7em } select.quota.active { background: #fff; } diff --git a/settings/js/apps.js b/settings/js/apps.js index 8de95100c4c..e45abf9b3dd 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -51,6 +51,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { element.data('active',false); + OC.Settings.Apps.removeNavigation(appid); element.val(t('settings','Enable')); } },'json'); @@ -61,6 +62,7 @@ OC.Settings.Apps = OC.Settings.Apps || { OC.dialogs.alert('Error while enabling app','Error'); } else { + OC.Settings.Apps.addNavigation(appid); element.data('active',true); element.val(t('settings','Disable')); } @@ -87,6 +89,38 @@ OC.Settings.Apps = OC.Settings.Apps || { applist.last().after(app); } return app; + }, + removeNavigation: function(appid){ + $.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){ + if(response.status === 'success'){ + var navIds=response.nav_ids; + for(var i=0; i< navIds.length; i++){ + $('#apps').children('li[data-id="'+navIds[i]+'"]').remove(); + } + } + }); + }, + addNavigation: function(appid){ + $.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){ + if(response.status === 'success'){ + var navEntries=response.nav_entries; + for(var i=0; i< navEntries.length; i++){ + var entry = navEntries[i]; + var container = $('#apps'); + + if(container.children('li[data-id="'+entry.id+'"]').length === 0){ + var li=$('<li></li>'); + li.attr('data-id', entry.id); + var a=$('<a></a>'); + a.attr('style', 'background-image: url('+entry.icon+')'); + a.text(entry.name); + a.attr('href', entry.href); + li.append(a); + container.append(li); + } + } + } + }); } }; diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 13ada5d35e5..f010739d2c3 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -30,8 +30,8 @@ "Allow users to share items to the public with links" => "Erlaube Nutzern, Dateien mithilfe von Links öffentlich zu teilen", "Allow resharing" => "Erneutes Teilen erlauben", "Allow users to share items shared with them again" => "Erlaubt Nutzern, Dateien die mit ihnen geteilt wurden, erneut zu teilen", -"Allow users to share with anyone" => "Erlaubet Nutzern mit jedem zu Teilen", -"Allow users to only share with users in their groups" => "Erlaubet Nutzern nur das Teilen in ihrer Gruppe", +"Allow users to share with anyone" => "Erlaubt Nutzern mit jedem zu Teilen", +"Allow users to only share with users in their groups" => "Erlaubt Nutzern nur das Teilen in ihrer Gruppe", "Log" => "Log", "More" => "Mehr", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> lizenziert.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 0b103406fab..ee6ecceb139 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", -"Authentication error" => "Error al autenticar", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", "Could not enable app. " => "No se puede habilitar la aplicación.", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID cambiado", "Invalid request" => "Solicitud no válida", "Unable to delete group" => "No fue posible eliminar el grupo", +"Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", "Unable to add user to group %s" => "No fue posible añadir el usuario al grupo %s", @@ -21,8 +21,8 @@ "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos -data- y los archivos que contiene, probablemente son accesibles desde internet. El archivo .htaccess que provee ownCloud no está funcionando. Recomendamos fuertemente que configures su servidor web de forma que el directorio de datos ya no sea accesible o que muevas el directorio de datos fuera de la raíz de documentos del servidor web.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Llamá a la página de cron.php en la raíz de ownCloud cada minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sistema. Llamá al archivo cron.php en la carpeta de ownCloud via servidor cronjob cada minuto.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio del webcron. Esto carga la página de cron.php en la raíz de ownCloud cada minuto sobre http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de cron del sistema. Esto carga el archivo cron.php en la carpeta de ownCloud via servidor cronjob cada minuto.", "Sharing" => "Compartir", "Enable Share API" => "Activar API de compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la API de compartición", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 42cb42bce97..8c36f08fbb7 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,13 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "App Sotre'i nimekirja laadimine ebaõnnestus", -"Authentication error" => "Autentimise viga", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", +"Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "OpenID Changed" => "OpenID on muudetud", "Invalid request" => "Vigane päring", "Unable to delete group" => "Keela grupi kustutamine", +"Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "Unable to add user to group %s" => "Kasutajat ei saa lisada gruppi %s", @@ -18,6 +19,7 @@ "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", "Cron" => "Ajastatud töö", +"Sharing" => "Jagamine", "Enable Share API" => "Luba jagamise API", "Allow apps to use the Share API" => "Luba rakendustel kasutada jagamise API-t", "Allow links" => "Luba linke", @@ -29,6 +31,7 @@ "Log" => "Logi", "More" => "Veel", "Add your App" => "Lisa oma rakendus", +"More Apps" => "Veel rakendusi", "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-litsenseeritud <span class=\"author\"></span>", @@ -40,6 +43,7 @@ "Answer" => "Vasta", "Desktop and Mobile Syncing Clients" => "Töölaua ja mobiiliga sünkroniseerimise rakendused", "Download" => "Lae alla", +"Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", "Current password" => "Praegune parool", "New password" => "Uus parool", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 0969b6e3654..dcd1bef95d7 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", -"Authentication error" => "Todennusvirhe", "Group already exists" => "Ryhmä on jo olemassa", "Unable to add group" => "Ryhmän lisäys epäonnistui", "Could not enable app. " => "Sovelluksen käyttöönotto epäonnistui.", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID on vaihdettu", "Invalid request" => "Virheellinen pyyntö", "Unable to delete group" => "Ryhmän poisto epäonnistui", +"Authentication error" => "Todennusvirhe", "Unable to delete user" => "Käyttäjän poisto epäonnistui", "Language changed" => "Kieli on vaihdettu", "Unable to add user to group %s" => "Käyttäjän tai ryhmän %s lisääminen ei onnistu", @@ -33,6 +33,7 @@ "More" => "Lisää", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> alaisena.", "Add your App" => "Lisää ohjelmasi", +"More Apps" => "Lisää sovelluksia", "Select an App" => "Valitse ohjelma", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisensoija <span class=\"author\"></span>", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 7ab21d7feaf..552c00c1728 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -3,12 +3,15 @@ "Invalid email" => "Email tidak sah", "OpenID Changed" => "OpenID telah dirubah", "Invalid request" => "Permintaan tidak valid", +"Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", "Disable" => "NonAktifkan", "Enable" => "Aktifkan", "Saving..." => "Menyimpan...", "__language_name__" => "__language_name__", "Security Warning" => "Peringatan Keamanan", +"Allow apps to use the Share API" => "perbolehkan aplikasi untuk menggunakan berbagi API", +"Allow links" => "perbolehkan link", "Log" => "Log", "More" => "Lebih", "Add your App" => "Tambahkan App anda", @@ -24,7 +27,7 @@ "Download" => "Unduh", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", -"New password" => "Password baru", +"New password" => "kata kunci baru", "show" => "perlihatkan", "Change password" => "Rubah password", "Email" => "Email", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 81b7861a3be..96bb4ba785e 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -24,14 +24,14 @@ "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスとして登録されています。HTTP経由で1分間に1回の頻度で owncloud のルートページ内の cron.php ページを呼び出します。", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムのcronサービスを利用する。1分に1回の頻度でシステムのcronジョブによりowncloudフォルダ内のcron.phpファイルを呼び出してください。", "Sharing" => "共有中", -"Enable Share API" => "Share APIを有効", -"Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可", -"Allow links" => "リンクを許可", -"Allow users to share items to the public with links" => "ユーザーがリンクによる公開でアイテムを共有することが出来るようにする", -"Allow resharing" => "再共有を許可", -"Allow users to share items shared with them again" => "ユーザーが共有されているアイテムをさらに共有することが出来るようにする", -"Allow users to share with anyone" => "ユーザーが誰にでも共有出来るようにする", -"Allow users to only share with users in their groups" => "ユーザーがグループの人にしか共有出来ないようにする", +"Enable Share API" => "Share APIを有効にする", +"Allow apps to use the Share API" => "Share APIの使用をアプリケーションに許可する", +"Allow links" => "URLリンクによる共有を許可する", +"Allow users to share items to the public with links" => "ユーザーにURLリンクによるアイテム共有を許可する", +"Allow resharing" => "再共有を許可する", +"Allow users to share items shared with them again" => "ユーザーに共有しているアイテムをさらに共有することを許可する", +"Allow users to share with anyone" => "ユーザーが誰とでも共有できるようにする", +"Allow users to only share with users in their groups" => "ユーザーがグループ内の人とのみ共有できるようにする", "Log" => "ログ", "More" => "もっと", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>により開発されています、<a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ライセンスは、<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスにより提供されています。", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php new file mode 100644 index 00000000000..d1d9c767069 --- /dev/null +++ b/settings/l10n/ka_GE.php @@ -0,0 +1,70 @@ +<?php $TRANSLATIONS = array( +"Unable to load list from App Store" => "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", +"Group already exists" => "ჯგუფი უკვე არსებობს", +"Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", +"Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", +"Email saved" => "იმეილი შენახულია", +"Invalid email" => "არასწორი იმეილი", +"OpenID Changed" => "OpenID შეცვლილია", +"Invalid request" => "არასწორი მოთხოვნა", +"Unable to delete group" => "ჯგუფის წაშლა ვერ მოხერხდა", +"Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", +"Language changed" => "ენა შეცვლილია", +"Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", +"Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", +"Disable" => "გამორთვა", +"Enable" => "ჩართვა", +"Saving..." => "შენახვა...", +"__language_name__" => "__language_name__", +"Security Warning" => "უსაფრთხოების გაფრთხილება", +"Cron" => "Cron", +"Execute one task with each page loaded" => "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php რეგისტრირებულია webcron servisad. Call the cron.php page in the owncloud root once a minute over http.", +"Sharing" => "გაზიარება", +"Enable Share API" => "Share API–ის ჩართვა", +"Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share API –ზე", +"Allow links" => "ლინკების დაშვება", +"Allow users to share items to the public with links" => "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით", +"Allow resharing" => "გადაზიარების დაშვება", +"Allow users to share items shared with them again" => "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის დაზიარებული", +"Allow users to share with anyone" => "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის", +"Allow users to only share with users in their groups" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", +"Log" => "ლოგი", +"More" => "უფრო მეტი", +"Add your App" => "დაამატე შენი აპლიკაცია", +"More Apps" => "უფრო მეტი აპლიკაციები", +"Select an App" => "აირჩიეთ აპლიკაცია", +"See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ლიცენსირებულია <span class=\"author\"></span>", +"Documentation" => "დოკუმენტაცია", +"Managing Big Files" => "დიდი ფაილების მენეჯმენტი", +"Ask a question" => "დასვით შეკითხვა", +"Problems connecting to help database." => "დახმარების ბაზასთან წვდომის პრობლემა", +"Go there manually." => "წადი იქ შენით.", +"Answer" => "პასუხი", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "თქვენ გამოყენებული გაქვთ <strong>%s</strong> –ი –<strong>%s<strong>–დან", +"Desktop and Mobile Syncing Clients" => "დესკტოპ და მობილური კლიენტების სინქრონიზაცია", +"Download" => "ჩამოტვირთვა", +"Your password was changed" => "თქვენი პაროლი შეიცვალა", +"Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", +"Current password" => "მიმდინარე პაროლი", +"New password" => "ახალი პაროლი", +"show" => "გამოაჩინე", +"Change password" => "პაროლის შეცვლა", +"Email" => "იმეილი", +"Your email address" => "თქვენი იმეილ მისამართი", +"Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", +"Language" => "ენა", +"Help translate" => "თარგმნის დახმარება", +"use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", +"Name" => "სახელი", +"Password" => "პაროლი", +"Groups" => "ჯგუფი", +"Create" => "შექმნა", +"Default Quota" => "საწყისი ქვოტა", +"Other" => "სხვა", +"Group Admin" => "ჯგუფის ადმინისტრატორი", +"Quota" => "ქვოტა", +"Delete" => "წაშლა" +); diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 09cb02d147d..95b999e29ee 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo", +"Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", "OpenID Changed" => "OpenID pakeistas", @@ -11,15 +12,20 @@ "__language_name__" => "Kalba", "Security Warning" => "Saugumo įspėjimas", "Cron" => "Cron", +"Sharing" => "Dalijimasis", "Log" => "Žurnalas", "More" => "Daugiau", "Add your App" => "Pridėti programėlę", +"More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>- autorius<span class=\"author\"></span>", "Documentation" => "Dokumentacija", "Ask a question" => "Užduoti klausimą", "Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", "Answer" => "Atsakyti", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Jūs panaudojote <strong>%s</strong> iš galimų <strong>%s<strong>", "Download" => "Atsisiųsti", +"Your password was changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", "Current password" => "Dabartinis slaptažodis", "New password" => "Naujas slaptažodis", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index b658a4bbafb..33d378cdf38 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,13 +1,14 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Загрузка из App Store запрещена", -"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Could not enable app. " => "Не удалось включить приложение.", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", "OpenID Changed" => "OpenID изменён", "Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", +"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменён", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", @@ -19,6 +20,10 @@ "Security Warning" => "Предупреждение безопасности", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Похоже, что каталог data и ваши файлы в нем доступны из интернета. Предоставляемый ownCloud файл htaccess не работает. Настоятельно рекомендуем настроить сервер таким образом, чтобы закрыть доступ к каталогу data или вынести каталог data за пределы корневого каталога веб-сервера.", "Cron" => "Задание", +"Execute one task with each page loaded" => "Выполнять одну задачу на каждой загружаемой странице", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зарегистрирован в службе webcron. Обращайтесь к странице cron.php в корне owncloud раз в минуту по http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Используйте системный сервис cron. Исполняйте файл cron.php в папке owncloud с помощью системы cronjob раз в минуту.", +"Sharing" => "Общий доступ", "Enable Share API" => "Включить API публикации", "Allow apps to use the Share API" => "Разрешить API публикации для приложений", "Allow links" => "Разрешить ссылки", @@ -31,6 +36,7 @@ "More" => "Ещё", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Разрабатывается <a href=\"http://ownCloud.org/contact\" target=\"_blank\">сообществом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">исходный код</a> доступен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Добавить приложение", +"More Apps" => "Больше приложений", "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> лицензия. Автор <span class=\"author\"></span>", @@ -40,8 +46,10 @@ "Problems connecting to help database." => "Проблема соединения с базой данных помощи.", "Go there manually." => "Войти самостоятельно.", "Answer" => "Ответ", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s<strong>", "Desktop and Mobile Syncing Clients" => "Клиенты синхронизации для рабочих станций и мобильных устройств", "Download" => "Загрузка", +"Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", "Current password" => "Текущий пароль", "New password" => "Новый пароль", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index e94c371fe4c..48190a68455 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Невозможно загрузить список из App Store", -"Authentication error" => "Ошибка авторизации", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", "Could not enable app. " => "Не удалось запустить приложение", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID изменен", "Invalid request" => "Неверный запрос", "Unable to delete group" => "Невозможно удалить группу", +"Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", @@ -29,6 +29,7 @@ "Allow links" => "Предоставить ссылки", "Allow users to share items to the public with links" => "Позволяет пользователям добавлять объекты в общий доступ по ссылке", "Allow resharing" => "Разрешить повторное совместное использование", +"Allow users to share items shared with them again" => "Позволить пользователям публиковать доступные им объекты других пользователей.", "Allow users to share with anyone" => "Разрешить пользователям разделение с кем-либо", "Allow users to only share with users in their groups" => "Разрешить пользователям разделение только с пользователями в их группах", "Log" => "Вход", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 451fb8a9858..ecd2403c293 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,15 +1,51 @@ <?php $TRANSLATIONS = array( +"Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", +"Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", +"Could not enable app. " => "යෙදුම සක්රීය කළ නොහැකි විය.", "Invalid request" => "අවලංගු අයදුම", +"Unable to delete group" => "කණ්ඩායම මැකීමට නොහැක", +"Unable to delete user" => "පරිශීලකයා මැකීමට නොහැක", "Language changed" => "භාෂාව ාවනස් කිරීම", +"Unable to add user to group %s" => "පරිශීලකයා %s කණ්ඩායමට එකතු කළ නොහැක", +"Unable to remove user from group %s" => "පරිශීලකයා %s කණ්ඩායමින් ඉවත් කළ නොහැක", +"Disable" => "අක්රිය කරන්න", +"Enable" => "ක්රියත්මක කරන්න", +"Saving..." => "සුරැකෙමින් පවතී...", +"Sharing" => "හුවමාරු කිරීම", +"Allow links" => "යොමු සලසන්න", +"Allow resharing" => "යළි යළිත් හුවමාරුවට අවසර දෙමි", +"Allow users to share items shared with them again" => "හුවමාරු කළ හුවමාරුවට අවසර දෙමි", +"Allow users to share with anyone" => "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි", +"Allow users to only share with users in their groups" => "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි", +"Log" => "ලඝුව", +"More" => "තවත්", +"Add your App" => "යෙදුමක් එක් කිරීම", +"More Apps" => "තවත් යෙදුම්", +"Select an App" => "යෙදුමක් තොරන්න", +"Documentation" => "ලේඛන", +"Managing Big Files" => "විශාල ගොනු කළමණාකරනය", +"Ask a question" => "ප්රශ්ණයක් අසන්න", +"Problems connecting to help database." => "උදව් දත්ත ගබඩාව හා සම්බන්ධවීමේදී ගැටළු ඇතිවිය.", "Answer" => "පිළිතුර", +"You have used <strong>%s</strong> of the available <strong>%s<strong>" => "ඔබ <strong>%s</strong>ක් භාවිතා කර ඇත. මුළු ප්රමාණය <strong>%s</strong>කි", +"Download" => "භාගත කරන්න", +"Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", +"Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", "Current password" => "නූතන මුරපදය", "New password" => "නව මුරපදය", "show" => "ප්රදර්ශනය කිරීම", "Change password" => "මුරපදය වෙනස් කිරීම", +"Email" => "විද්යුත් තැපෑල", +"Your email address" => "ඔබගේ විද්යුත් තැපෑල", +"Fill in an email address to enable password recovery" => "මුරපද ප්රතිස්ථාපනය සඳහා විද්යුත් තැපැල් විස්තර ලබා දෙන්න", "Language" => "භාෂාව", +"Help translate" => "පරිවර්ථන සහය", "Name" => "නාමය", "Password" => "මුරපදය", "Groups" => "සමූහය", "Create" => "තනනවා", +"Other" => "වෙනත්", +"Group Admin" => "කාණ්ඩ පරිපාලක", +"Quota" => "සලාකය", "Delete" => "මකා දමනවා" ); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index cbbc04e0095..8309c0f12c7 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -7,31 +7,34 @@ "Invalid email" => "Neplatný email", "OpenID Changed" => "OpenID zmenené", "Invalid request" => "Neplatná požiadavka", -"Unable to delete group" => "Nie je možné zmazať skupinu", +"Unable to delete group" => "Nie je možné odstrániť skupinu", "Authentication error" => "Chyba pri autentifikácii", -"Unable to delete user" => "Nie je možné zmazať užívateľa", +"Unable to delete user" => "Nie je možné odstrániť používateľa", "Language changed" => "Jazyk zmenený", "Unable to add user to group %s" => "Nie je možné pridať užívateľa do skupiny %s", -"Unable to remove user from group %s" => "Nie je možné zmazať užívateľa zo skupiny %s", +"Unable to remove user from group %s" => "Nie je možné odstrániť používateľa zo skupiny %s", "Disable" => "Zakázať", "Enable" => "Povoliť", "Saving..." => "Ukladám...", "__language_name__" => "Slovensky", "Security Warning" => "Bezpečnostné varovanie", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš priečinok s dátami a vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera.", +"Cron" => "Cron", "Execute one task with each page loaded" => "Vykonať jednu úlohu každým nahraním stránky", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je zaregistrovaný v službe webcron. Tá zavolá stránku cron.php v koreňovom adresári owncloud každú minútu cez http.", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Používať systémovú službu cron. Každú minútu bude spustený súbor cron.php v priečinku owncloud pomocou systémového programu cronjob.", "Sharing" => "Zdieľanie", "Enable Share API" => "Zapnúť API zdieľania", "Allow apps to use the Share API" => "Povoliť aplikáciam používať API pre zdieľanie", "Allow links" => "Povoliť odkazy", -"Allow users to share items to the public with links" => "Povoliť užívateľom zdieľať obsah pomocou verejných odkazov", +"Allow users to share items to the public with links" => "Povoliť používateľom zdieľať obsah pomocou verejných odkazov", "Allow resharing" => "Povoliť opakované zdieľanie", "Allow users to share items shared with them again" => "Povoliť zdieľanie zdielaného obsahu iného užívateľa", -"Allow users to share with anyone" => "Povoliť užívateľom zdieľať s každým", -"Allow users to only share with users in their groups" => "Povoliť užívateľom zdieľanie iba s užívateľmi ich vlastnej skupiny", +"Allow users to share with anyone" => "Povoliť používateľom zdieľať s každým", +"Allow users to only share with users in their groups" => "Povoliť používateľom zdieľanie iba s používateľmi ich vlastnej skupiny", "Log" => "Záznam", "More" => "Viac", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Pridať vašu aplikáciu", "More Apps" => "Viac aplikácií", "Select an App" => "Vyberte aplikáciu", @@ -39,7 +42,7 @@ "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencované <span class=\"author\"></span>", "Documentation" => "Dokumentácia", "Managing Big Files" => "Správa veľkých súborov", -"Ask a question" => "Opýtajte sa otázku", +"Ask a question" => "Opýtať sa otázku", "Problems connecting to help database." => "Problémy s pripojením na databázu pomocníka.", "Go there manually." => "Prejsť tam ručne.", "Answer" => "Odpoveď", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 7f23d9dbc91..1aa5de80596 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,31 +1,31 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Ne morem naložiti seznama iz App Store", -"Authentication error" => "Napaka overitve", +"Unable to load list from App Store" => "Ni mogoče naložiti seznama iz App Store", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", -"Could not enable app. " => "Aplikacije ni bilo mogoče omogočiti.", -"Email saved" => "E-poštni naslov je bil shranjen", -"Invalid email" => "Neveljaven e-poštni naslov", +"Could not enable app. " => "Programa ni mogoče omogočiti.", +"Email saved" => "Elektronski naslov je shranjen", +"Invalid email" => "Neveljaven elektronski naslov", "OpenID Changed" => "OpenID je bil spremenjen", -"Invalid request" => "Neveljaven zahtevek", +"Invalid request" => "Neveljavna zahteva", "Unable to delete group" => "Ni mogoče izbrisati skupine", +"Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Unable to add user to group %s" => "Uporabnika ni mogoče dodati k skupini %s", "Unable to remove user from group %s" => "Uporabnika ni mogoče odstraniti iz skupine %s", "Disable" => "Onemogoči", "Enable" => "Omogoči", -"Saving..." => "Shranjevanje...", +"Saving..." => "Poteka shranjevanje ...", "__language_name__" => "__ime_jezika__", "Security Warning" => "Varnostno opozorilo", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Vaša mapa data in vaše datoteke so verjetno vsem dostopne preko interneta. Datoteka .htaccess vključena v ownCloud ni omogočena. Močno vam priporočamo, da nastavite vaš spletni strežnik tako, da mapa data ne bo več na voljo vsem, ali pa jo preselite izven korenske mape spletnega strežnika.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika.", "Cron" => "Periodično opravilo", "Execute one task with each page loaded" => "Izvede eno opravilo z vsako naloženo stranjo.", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem od spletnih servisov za periodična opravila. Preko protokola http pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemski servis za periodična opravila. Preko sistemskega servisa pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je prijavljena pri enem izmed ponudnikov spletnih storitev za periodična opravila. Preko protokola HTTP pokličite datoteko cron.php, ki se nahaja v ownCloud korenski mapi, enkrat na minuto.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporabi sistemske storitve za periodična opravila. Preko sistema povežite datoteko cron.php, ki se nahaja v korenski mapi ownCloud , enkrat na minuto.", "Sharing" => "Souporaba", -"Enable Share API" => "Omogoči API souporabe", -"Allow apps to use the Share API" => "Aplikacijam dovoli uporabo API-ja souporabe", +"Enable Share API" => "Omogoči vmesnik souporabe", +"Allow apps to use the Share API" => "Programom dovoli uporabo vmesnika souporabe", "Allow links" => "Dovoli povezave", "Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo z javnimi povezavami", "Allow resharing" => "Dovoli nadaljnjo souporabo", @@ -34,39 +34,40 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo le znotraj njihove skupine", "Log" => "Dnevnik", "More" => "Več", -"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Razvija ga <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud skupnost</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je izdana pod licenco <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", -"Add your App" => "Dodajte vašo aplikacijo", -"Select an App" => "Izberite aplikacijo", -"See application page at apps.owncloud.com" => "Obiščite spletno stran aplikacije na apps.owncloud.com", -"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencirana s strani <span class=\"author\"></span>", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Programski paket razvija <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnost ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je objavljena pod pogoji dovoljenja <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Splošno javno dovoljenje Affero\">AGPL</abbr></a>.", +"Add your App" => "Dodaj program", +"More Apps" => "Več programov", +"Select an App" => "Izberite program", +"See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-z dovoljenjem s strani <span class=\"author\"></span>", "Documentation" => "Dokumentacija", "Managing Big Files" => "Upravljanje velikih datotek", -"Ask a question" => "Postavi vprašanje", -"Problems connecting to help database." => "Težave pri povezovanju s podatkovno zbirko pomoči.", -"Go there manually." => "Pojdi tja ročno.", +"Ask a question" => "Zastavi vprašanje", +"Problems connecting to help database." => "Težave med povezovanjem s podatkovno zbirko pomoči.", +"Go there manually." => "Ustvari povezavo ročno.", "Answer" => "Odgovor", "You have used <strong>%s</strong> of the available <strong>%s<strong>" => "Uporabili ste <strong>%s</strong> od razpoložljivih <strong>%s<strong>", -"Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za sinhronizacijo", -"Download" => "Prenesi", -"Your password was changed" => "Vaše geslo je bilo spremenjeno", -"Unable to change your password" => "Vašega gesla ni bilo mogoče spremeniti.", +"Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za usklajevanje", +"Download" => "Prejmi", +"Your password was changed" => "Vaše geslo je spremenjeno", +"Unable to change your password" => "Gesla ni mogoče spremeniti.", "Current password" => "Trenutno geslo", "New password" => "Novo geslo", -"show" => "prikaži", +"show" => "pokaži", "Change password" => "Spremeni geslo", -"Email" => "E-pošta", -"Your email address" => "Vaš e-poštni naslov", -"Fill in an email address to enable password recovery" => "Vpišite vaš e-poštni naslov in s tem omogočite obnovitev gesla", +"Email" => "Elektronska pošta", +"Your email address" => "Vaš elektronski poštni naslov", +"Fill in an email address to enable password recovery" => "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", -"use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v vašem upravljalniku datotek.", +"use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v upravljalniku datotek.", "Name" => "Ime", "Password" => "Geslo", "Groups" => "Skupine", "Create" => "Ustvari", "Default Quota" => "Privzeta količinska omejitev", "Other" => "Drugo", -"Group Admin" => "Administrator skupine", +"Group Admin" => "Skrbnik skupine", "Quota" => "Količinska omejitev", "Delete" => "Izbriši" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 31063d3a01b..3425beec8b6 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,6 +1,5 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "无法从应用商店载入列表", -"Authentication error" => "认证错误", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", "Could not enable app. " => "无法开启App", @@ -9,6 +8,7 @@ "OpenID Changed" => "OpenID 已修改", "Invalid request" => "非法请求", "Unable to delete group" => "无法删除组", +"Authentication error" => "认证错误", "Unable to delete user" => "无法删除用户", "Language changed" => "语言已修改", "Unable to add user to group %s" => "无法把用户添加到组 %s", @@ -36,6 +36,7 @@ "More" => "更多", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud社区</a>开发, <a href=\"https://github.com/owncloud\" target=\"_blank\">源代码</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>许可证下发布。", "Add your App" => "添加应用", +"More Apps" => "更多应用", "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", @@ -46,7 +47,7 @@ "Go there manually." => "手动访问", "Answer" => "回答", "You have used <strong>%s</strong> of the available <strong>%s<strong>" => "您已使用空间: <strong>%s</strong>,总空间: <strong>%s</strong>", -"Desktop and Mobile Syncing Clients" => "桌面和移动设备同步程序", +"Desktop and Mobile Syncing Clients" => "桌面和移动设备同步客户端", "Download" => "下载", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", @@ -56,7 +57,7 @@ "Change password" => "修改密码", "Email" => "电子邮件", "Your email address" => "您的电子邮件", -"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复", +"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", "use this address to connect to your ownCloud in your file manager" => "您可在文件管理器中使用该地址连接到ownCloud", @@ -66,7 +67,7 @@ "Create" => "创建", "Default Quota" => "默认配额", "Other" => "其它", -"Group Admin" => "组管理", +"Group Admin" => "组管理员", "Quota" => "配额", "Delete" => "删除" ); |