diff options
93 files changed, 889 insertions, 507 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 287dedc23f2..4a8bd5bb30f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -152,16 +152,20 @@ table th .columntitle.name { padding-right: 80px; margin-left: 50px; } -/* hover effect on sortable column */ -table th a.columntitle:hover { - color: #000; -} + +.sort-indicator.hidden { visibility: hidden; } table th .sort-indicator { width: 10px; height: 8px; margin-left: 10px; display: inline-block; } +table th:hover .sort-indicator.hidden { + width: 10px; + height: 8px; + margin-left: 10px; + visibility: visible; +} table th, table td { border-bottom:1px solid #ddd; text-align:left; font-weight:normal; } table td { padding: 0 15px; @@ -367,7 +371,6 @@ table td.filename .uploadtext { left: 18px; } - #fileList tr td.filename { position: relative; width: 100%; @@ -432,7 +435,6 @@ a.action>img { margin-bottom: -1px; } - #fileList a.action { display: inline; padding: 18px 8px; diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 61e73b7bebc..4ff7d0c3fa0 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -18,8 +18,8 @@ this.initialize($el, options); }; FileList.prototype = { - SORT_INDICATOR_ASC_CLASS: 'icon-triangle-s', - SORT_INDICATOR_DESC_CLASS: 'icon-triangle-n', + SORT_INDICATOR_ASC_CLASS: 'icon-triangle-n', + SORT_INDICATOR_DESC_CLASS: 'icon-triangle-s', id: 'files', appName: t('files', 'Files'), @@ -371,7 +371,12 @@ this.setSort(sort, (this._sortDirection === 'desc')?'asc':'desc'); } else { - this.setSort(sort, 'asc'); + if ( sort === 'name' ) { //default sorting of name is opposite to size and mtime + this.setSort(sort, 'asc'); + } + else { + this.setSort(sort, 'desc'); + } } this.reload(); } @@ -914,16 +919,25 @@ this._sort = sort; this._sortDirection = (direction === 'desc')?'desc':'asc'; this._sortComparator = comparator; + if (direction === 'desc') { this._sortComparator = function(fileInfo1, fileInfo2) { return -comparator(fileInfo1, fileInfo2); }; } this.$el.find('thead th .sort-indicator') - .removeClass(this.SORT_INDICATOR_ASC_CLASS + ' ' + this.SORT_INDICATOR_DESC_CLASS); + .removeClass(this.SORT_INDICATOR_ASC_CLASS) + .removeClass(this.SORT_INDICATOR_DESC_CLASS) + .toggleClass('hidden', true) + .addClass(this.SORT_INDICATOR_DESC_CLASS); + this.$el.find('thead th.column-' + sort + ' .sort-indicator') + .removeClass(this.SORT_INDICATOR_ASC_CLASS) + .removeClass(this.SORT_INDICATOR_DESC_CLASS) + .toggleClass('hidden', false) .addClass(direction === 'desc' ? this.SORT_INDICATOR_DESC_CLASS : this.SORT_INDICATOR_ASC_CLASS); }, + /** * Reloads the file list using ajax call * diff --git a/apps/files/l10n/bn_IN.php b/apps/files/l10n/bn_IN.php index 9fc02669d89..ae53a11b8ec 100644 --- a/apps/files/l10n/bn_IN.php +++ b/apps/files/l10n/bn_IN.php @@ -1,14 +1,32 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%s সরানো যায়নি-এই নামে আগে থেকেই ফাইল আছে", +"Could not move %s" => "%s সরানো যায়নি", +"No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি।অজানা ত্রুটি", +"There is no error, the file uploaded with success" => "কোন ত্রুটি নেই,ফাইল সাফল্যের সঙ্গে আপলোড করা হয়েছে", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইল-php.ini মধ্যে upload_max_filesize নির্দেশ অতিক্রম করে:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "আপলোড করা ফাইল HTML ফর্মের জন্য MAX_FILE_SIZE নির্দেশ অতিক্রম করে", +"The uploaded file was only partially uploaded" => "আপলোড করা ফাইল শুধুমাত্র আংশিকভাবে আপলোড করা হয়েছে", +"No file was uploaded" => "কোন ফাইল আপলোড করা হয় নি", +"Missing a temporary folder" => "একটি অস্থায়ী ফোল্ডার পাওয়া যাচ্ছেনা", +"Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", +"Not enough storage available" => "যথেষ্ট স্টোরেজ পাওয়া যায় না", +"Invalid directory." => "অবৈধ ডিরেক্টরি।", "Files" => "ফাইলস", "Share" => "শেয়ার", "Delete" => "মুছে ফেলা", +"Delete permanently" => "স্থায়ীভাবে মুছে দিন", +"Rename" => "পুনঃনামকরণ", +"Pending" => "মুলতুবি", "Error" => "ভুল", "Name" => "নাম", "Size" => "আকার", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Save" => "সেভ" +"Save" => "সেভ", +"New folder" => "নতুন ফোল্ডার", +"Folder" => "ফোল্ডার", +"Download" => "ডাউনলোড করুন" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index c18a01f533c..17de1bf90c4 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error fetching URL" => "Fout bij ophalen URL", "Share" => "Delen", "Delete" => "Verwijder", +"Disconnect storage" => "Verbreken verbinding opslag", "Unshare" => "Stop met delen", "Delete permanently" => "Verwijder definitief", "Rename" => "Hernoem", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 6a082ea7323..5174982db3e 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error fetching URL" => "Ошибка получения URL", "Share" => "Открыть доступ", "Delete" => "Удалить", +"Disconnect storage" => "Отсоединиться от хранилища", "Unshare" => "Закрыть доступ", "Delete permanently" => "Удалить окончательно", "Rename" => "Переименовать", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 264cc275951..b9c99af3010 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -45,7 +45,8 @@ $TRANSLATIONS = array( "Error fetching URL" => "Napaka pridobivanja naslova URL", "Share" => "Souporaba", "Delete" => "Izbriši", -"Unshare" => "Prekliči souporabo", +"Disconnect storage" => "Odklopi shrambo", +"Unshare" => "Prekini souporabo", "Delete permanently" => "Izbriši dokončno", "Rename" => "Preimenuj", "Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika.", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index f7cbdd15538..e0c14b28701 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error fetching URL" => "Adres getirilirken hata", "Share" => "Paylaş", "Delete" => "Sil", +"Disconnect storage" => "Depolama bağlantısını kes", "Unshare" => "Paylaşmayı Kaldır", "Delete permanently" => "Kalıcı olarak sil", "Rename" => "Yeniden adlandır", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 1d96403dbd1..8b832fad873 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error fetching URL" => "获取URL出错", "Share" => "分享", "Delete" => "删除", +"Disconnect storage" => "断开储存连接", "Unshare" => "取消共享", "Delete permanently" => "永久删除", "Rename" => "重命名", diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index ae22ae0123e..0580177c5ff 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -1696,7 +1696,7 @@ describe('OCA.Files.FileList tests', function() { var url = fakeServer.requests[0].url; var query = OC.parseQueryString(url.substr(url.indexOf('?') + 1)); expect(query.sort).toEqual('size'); - expect(query.sortdirection).toEqual('asc'); + expect(query.sortdirection).toEqual('desc'); }); it('Toggles sort direction when clicking on already sorted column', function() { fileList.$el.find('.column-name .columntitle').click(); @@ -1710,37 +1710,51 @@ describe('OCA.Files.FileList tests', function() { var ASC_CLASS = fileList.SORT_INDICATOR_ASC_CLASS; var DESC_CLASS = fileList.SORT_INDICATOR_DESC_CLASS; fileList.$el.find('.column-size .columntitle').click(); - // moves triangle to size column + // moves triangle to size column, check indicator on name is hidden expect( - fileList.$el.find('.column-name .sort-indicator').hasClass(ASC_CLASS + ' ' + DESC_CLASS) + fileList.$el.find('.column-name .sort-indicator').hasClass('hidden') + ).toEqual(true); + // check indicator on size is visible and defaults to descending + expect( + fileList.$el.find('.column-size .sort-indicator').hasClass('hidden') ).toEqual(false); expect( - fileList.$el.find('.column-size .sort-indicator').hasClass(ASC_CLASS) + fileList.$el.find('.column-size .sort-indicator').hasClass(DESC_CLASS) ).toEqual(true); // click again on size column, reverses direction fileList.$el.find('.column-size .columntitle').click(); expect( - fileList.$el.find('.column-size .sort-indicator').hasClass(DESC_CLASS) + fileList.$el.find('.column-size .sort-indicator').hasClass('hidden') + ).toEqual(false); + expect( + fileList.$el.find('.column-size .sort-indicator').hasClass(ASC_CLASS) ).toEqual(true); // click again on size column, reverses direction fileList.$el.find('.column-size .columntitle').click(); expect( - fileList.$el.find('.column-size .sort-indicator').hasClass(ASC_CLASS) + fileList.$el.find('.column-size .sort-indicator').hasClass('hidden') + ).toEqual(false); + expect( + fileList.$el.find('.column-size .sort-indicator').hasClass(DESC_CLASS) ).toEqual(true); // click on mtime column, moves indicator there fileList.$el.find('.column-mtime .columntitle').click(); expect( - fileList.$el.find('.column-size .sort-indicator').hasClass(ASC_CLASS + ' ' + DESC_CLASS) + fileList.$el.find('.column-size .sort-indicator').hasClass('hidden') + ).toEqual(true); + expect( + fileList.$el.find('.column-mtime .sort-indicator').hasClass('hidden') ).toEqual(false); expect( - fileList.$el.find('.column-mtime .sort-indicator').hasClass(ASC_CLASS) + fileList.$el.find('.column-mtime .sort-indicator').hasClass(DESC_CLASS) ).toEqual(true); }); it('Uses correct sort comparator when inserting files', function() { testFiles.sort(OCA.Files.FileList.Comparators.size); + testFiles.reverse(); //default is descending // this will make it reload the testFiles with the correct sorting fileList.$el.find('.column-size .columntitle').click(); expect(fakeServer.requests.length).toEqual(1); @@ -1764,17 +1778,16 @@ describe('OCA.Files.FileList tests', function() { etag: '999' }; fileList.add(newFileData); + expect(fileList.findFileEl('Three.pdf').index()).toEqual(0); + expect(fileList.findFileEl('new file.txt').index()).toEqual(1); + expect(fileList.findFileEl('Two.jpg').index()).toEqual(2); + expect(fileList.findFileEl('somedir').index()).toEqual(3); + expect(fileList.findFileEl('One.txt').index()).toEqual(4); expect(fileList.files.length).toEqual(5); expect(fileList.$fileList.find('tr').length).toEqual(5); - expect(fileList.findFileEl('One.txt').index()).toEqual(0); - expect(fileList.findFileEl('somedir').index()).toEqual(1); - expect(fileList.findFileEl('Two.jpg').index()).toEqual(2); - expect(fileList.findFileEl('new file.txt').index()).toEqual(3); - expect(fileList.findFileEl('Three.pdf').index()).toEqual(4); }); it('Uses correct reversed sort comparator when inserting files', function() { testFiles.sort(OCA.Files.FileList.Comparators.size); - testFiles.reverse(); // this will make it reload the testFiles with the correct sorting fileList.$el.find('.column-size .columntitle').click(); expect(fakeServer.requests.length).toEqual(1); @@ -1811,13 +1824,13 @@ describe('OCA.Files.FileList tests', function() { etag: '999' }; fileList.add(newFileData); + expect(fileList.findFileEl('One.txt').index()).toEqual(0); + expect(fileList.findFileEl('somedir').index()).toEqual(1); + expect(fileList.findFileEl('Two.jpg').index()).toEqual(2); + expect(fileList.findFileEl('new file.txt').index()).toEqual(3); + expect(fileList.findFileEl('Three.pdf').index()).toEqual(4); expect(fileList.files.length).toEqual(5); expect(fileList.$fileList.find('tr').length).toEqual(5); - expect(fileList.findFileEl('One.txt').index()).toEqual(4); - expect(fileList.findFileEl('somedir').index()).toEqual(3); - expect(fileList.findFileEl('Two.jpg').index()).toEqual(2); - expect(fileList.findFileEl('new file.txt').index()).toEqual(1); - expect(fileList.findFileEl('Three.pdf').index()).toEqual(0); }); }); /** diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php index 89e396565d0..b44601aec2e 100644 --- a/apps/files_encryption/l10n/bg_BG.php +++ b/apps/files_encryption/l10n/bg_BG.php @@ -1,12 +1,43 @@ <?php $TRANSLATIONS = array( -"Password successfully changed." => "Паролата е сменена успешно.", -"Could not change the password. Maybe the old password was not correct." => "Грешка при смяна на паролата. Може би старата ви парола е сгрешена.", +"Recovery key successfully enabled" => "Успешно включване на опцията ключ за възстановяване.", +"Could not enable recovery key. Please check your recovery key password!" => "Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване.", +"Recovery key successfully disabled" => "Успешно изключване на ключа за възстановяване.", +"Could not disable recovery key. Please check your recovery key password!" => "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!", +"Password successfully changed." => "Паролата е успешно променена.", +"Could not change the password. Maybe the old password was not correct." => "Грешка при промяна на паролата. Може би старата ти парола е сгрешена.", +"Private key password successfully updated." => "Успешно променена тайната парола за ключа.", +"Could not update the private key password. Maybe the old password was not correct." => "Неуспешна промяна на тайната парола за ключа. Може би старата парола е грешно въведена.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.", +"Unknown error. Please check your system settings or contact your administrator" => "Непозната грешка. Моля, провери системните настройки или се свържи с администратора.", +"Missing requirements." => "Липсва задължителна информация.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Моля, увери се, че PHP 5.3.3 или по-нова версия е инсталирана, и че OpenSSL заедно съответната PHP добавка са включени и правилно настроени. За сега, криптиращото приложение ще бъде изключено.", +"Following users are not set up for encryption:" => "Следните потребители не са настроени за криптиране:", +"Initial encryption started... This can take some time. Please wait." => "Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай.", +"Initial encryption running... Please try again later." => "Тече първоначално криптиране... Моля опитай по-късно.", +"Go directly to your %spersonal settings%s." => "Отиде направо към твоите %sлични настройки%s.", "Encryption" => "Криптиране", +"Enable recovery key (allow to recover users files in case of password loss):" => "Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):", +"Recovery key password" => "Парола за възстановяане на ключа", +"Repeat Recovery key password" => "Повтори паролата за възстановяване на ключа", "Enabled" => "Включено", "Disabled" => "Изключено", -"Change Password" => "Промяна на парола", -"Old log-in password" => "Стара парола", -"Current log-in password" => "Текуща парола" +"Change recovery key password:" => "Промени паролата за въстановяване на ключа:", +"Old Recovery key password" => "Старата парола за въстановяване на ключа", +"New Recovery key password" => "Новата парола за възстановяване на ключа", +"Repeat New Recovery key password" => "Повтори новата паролза за възстановяване на ключа", +"Change Password" => "Промени Паролата", +"Your private key password no longer match your log-in password:" => "Тайната ти парола за ключа вече несъвпада с паролата ти за вписване:", +"Set your old private key password to your current log-in password." => "Промени тайната парола за ключа да съвпада с паролата ти за вписване.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ако не помниш старата парола помоли администратора да възстанови файловете ти.", +"Old log-in password" => "Стара парола за вписване", +"Current log-in password" => "Текуща парола за вписване", +"Update Private Key Password" => "Промени Тайната Парола за Ключа", +"Enable password recovery:" => "Включи опцията възстановяване на паролата:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола.", +"File recovery settings updated" => "Настройките за възстановяване на файлове са променени.", +"Could not update file recovery" => "Неуспешна промяна на настройките за възстановяване на файлове." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index 5ead5176349..7621b6fa4fd 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -15,6 +15,7 @@ $TRANSLATIONS = array( "Following users are not set up for encryption:" => "以下用户还没有设置加密:", "Initial encryption started... This can take some time. Please wait." => "初始加密启动中....这可能会花一些时间,请稍后再试。", "Initial encryption running... Please try again later." => "初始加密运行中....请稍后再试。", +"Go directly to your %spersonal settings%s." => "直接访问您的%s个人设置%s。", "Encryption" => "加密", "Enable recovery key (allow to recover users files in case of password loss):" => "启用恢复密钥(允许你在密码丢失后恢复文件):", "Recovery key password" => "恢复密钥密码", diff --git a/apps/files_external/l10n/bn_IN.php b/apps/files_external/l10n/bn_IN.php index f403d887ae9..1e8dfdf0866 100644 --- a/apps/files_external/l10n/bn_IN.php +++ b/apps/files_external/l10n/bn_IN.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "Share" => "শেয়ার", "URL" => "URL", "Name" => "নাম", +"Folder name" => "ফোল্ডারের নাম", "Delete" => "মুছে ফেলা" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 50000715651..75b3dcd100a 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -19,6 +19,7 @@ $TRANSLATIONS = array( "Port (optional)" => "Порт (опц.)", "Region (optional)" => "Регион (опц.)", "Enable SSL" => "Включить SSL", +"Enable Path Style" => "Включить стиль пути", "App key" => "Ключ приложения", "App secret" => "Секретный ключ ", "Host" => "Сервер", @@ -30,8 +31,16 @@ $TRANSLATIONS = array( "Client secret" => "Клиентский ключ ", "OpenStack Object Storage" => "Хранилище объектов OpenStack", "Username (required)" => "Имя пользователя (обяз.)", +"Bucket (required)" => "Bucket (обяз.)", +"Region (optional for OpenStack Object Storage)" => "Регион (необяз. для Хранилища объектов OpenStack)", +"API Key (required for Rackspace Cloud Files)" => "Ключ API (обяз. для Rackspace Cloud Files)", +"Tenantname (required for OpenStack Object Storage)" => "Имя арендатора (обяз. для Хранилища объектов OpenStack)", +"Password (required for OpenStack Object Storage)" => "Пароль (обяз. для Хранилища объектов OpenStack)", +"Service Name (required for OpenStack Object Storage)" => "Имя Службы (обяз. для Хранилища объектов OpenStack)", +"URL of identity endpoint (required for OpenStack Object Storage)" => "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)", "Timeout of HTTP requests in seconds (optional)" => "Тайм-аут HTTP запросов в секундах (опционально)", "Share" => "Открыть доступ", +"SMB / CIFS using OC login" => "SMB / CIFS с ипользованием логина OC", "Username as share" => "Имя для открытого доступа", "URL" => "Ссылка", "Secure https://" => "Безопасный https://", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index cef995b7d64..031ffd9cb92 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -1,20 +1,29 @@ <?php $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "请提供有效的Dropbox应用key和secret", +"Step 1 failed. Exception: %s" => "步骤 1 失败。异常:%s", +"Step 2 failed. Exception: %s" => "步骤 2 失败。异常:%s", "External storage" => "外部存储", "Local" => "本地", "Location" => "地点", "Amazon S3" => "Amazon S3", +"Amazon S3 and compliant" => "Amazon S3 和兼容协议", "Access Key" => "访问密钥", +"Secret Key" => "秘钥", "Hostname (optional)" => "域名 (可选)", "Port (optional)" => "端口 (可选)", "Region (optional)" => "区域 (optional)", "Enable SSL" => "启用 SSL", +"Enable Path Style" => "启用 Path Style", "Host" => "主机", "Username" => "用户名", "Password" => "密码", "Root" => "根路径", "Secure ftps://" => "安全 ftps://", +"OpenStack Object Storage" => "OpenStack 对象存储", +"Username (required)" => "用户名 (必须)", +"Bucket (required)" => "Bucket (必须)", +"Timeout of HTTP requests in seconds (optional)" => "HTTP 请求超时(秒) (可选)", "Share" => "共享", "SMB / CIFS using OC login" => "SMB / CIFS 使用 OC 登录信息", "URL" => "URL", @@ -25,10 +34,14 @@ $TRANSLATIONS = array( "Grant access" => "授权", "Error configuring Google Drive storage" => "配置Google Drive存储时出错", "Personal" => "个人", +"System" => "系统", "Saved" => "已保存", "<b>Note:</b> " => "<b>注意:</b>", " and " => "和", +"You don't have any external storages" => "您没有外部存储", "Name" => "名称", +"Storage type" => "存储类型", +"Scope" => "适用范围", "External Storage" => "外部存储", "Folder name" => "目录名称", "Configuration" => "配置", diff --git a/apps/files_sharing/l10n/bn_IN.php b/apps/files_sharing/l10n/bn_IN.php index 2e724393768..99daa51da79 100644 --- a/apps/files_sharing/l10n/bn_IN.php +++ b/apps/files_sharing/l10n/bn_IN.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Cancel" => "বাতিল করা", -"Name" => "নাম" +"Name" => "নাম", +"Download" => "ডাউনলোড করুন" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index b06a1a0cc14..fa93013183a 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -8,7 +8,11 @@ $TRANSLATIONS = array( "No files have been shared with you yet." => "Er zijn nog geen bestanden met u gedeeld.", "You haven't shared any files yet." => "U hebt nog geen bestanden gedeeld.", "You haven't shared any files by link yet." => "U hebt nog geen bestanden via een link gedeeld.", +"Do you want to add the remote share {name} from {owner}@{remote}?" => "Wilt u de externe share {name} van {owner}@{remote} toevoegen?", +"Remote share" => "Externe share", +"Remote share password" => "Wachtwoord externe share", "Cancel" => "Annuleer", +"Add remote share" => "Toevoegen externe share", "No ownCloud installation found at {remote}" => "Geen ownCloud installatie gevonden op {remote}", "Invalid ownCloud url" => "Ongeldige ownCloud url", "Shared by" => "Gedeeld door", diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 9ea5ce1dc58..ec4c546e7bb 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -25,6 +25,7 @@ $TRANSLATIONS = array( "the link expired" => "povezava je pretekla,", "sharing is disabled" => "souporaba je onemogočena.", "For more info, please ask the person who sent this link." => "Za več podrobnosti stopite v stik s pošiljateljem te povezave.", +"Add to your ownCloud" => "Dodaj v svoj oblak ownCloud", "Download" => "Prejmi", "Download %s" => "Prejmi %s", "Direct link" => "Neposredna povezava", diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index 1a04b21e6f1..a873793446a 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -8,7 +8,11 @@ $TRANSLATIONS = array( "No files have been shared with you yet." => "目前没有文件向您分享。", "You haven't shared any files yet." => "您还未分享过文件。", "You haven't shared any files by link yet." => "您还没通过链接分享文件。", +"Do you want to add the remote share {name} from {owner}@{remote}?" => "您要添加 {name} 来自 {owner}@{remote} 的远程分享吗?", +"Remote share" => "远程分享", +"Remote share password" => "远程分享密码", "Cancel" => "取消", +"Add remote share" => "添加远程分享", "No ownCloud installation found at {remote}" => "未能在 {remote} 找到 ownCloud 服务", "Invalid ownCloud url" => "无效的 ownCloud 网址", "Shared by" => "共享人", diff --git a/apps/files_versions/l10n/bg_BG.php b/apps/files_versions/l10n/bg_BG.php index fec4a223426..9dea358d31f 100644 --- a/apps/files_versions/l10n/bg_BG.php +++ b/apps/files_versions/l10n/bg_BG.php @@ -5,6 +5,6 @@ $TRANSLATIONS = array( "Failed to revert {file} to revision {timestamp}." => "Грешка при връщане на {file} към версия {timestamp}.", "More versions..." => "Още версии...", "No other versions available" => "Няма други налични версии", -"Restore" => "Възтановяване" +"Restore" => "Възтановяви" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/bg_BG.php b/apps/user_ldap/l10n/bg_BG.php index a24d53cf138..dfd9db5438b 100644 --- a/apps/user_ldap/l10n/bg_BG.php +++ b/apps/user_ldap/l10n/bg_BG.php @@ -1,14 +1,127 @@ <?php $TRANSLATIONS = array( +"Failed to clear the mappings." => "Неуспешно изчистване на mapping-ите.", +"Failed to delete the server configuration" => "Неуспешен опит за изтриване на сървърната конфигурация.", +"The configuration is valid and the connection could be established!" => "Валидна конфигурация, връзката установена!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Конфигурацията е валидна, но Bind-а неуспя. Моля, провери сървърните настройки, потребителското име и паролата.", +"The configuration is invalid. Please have a look at the logs for further details." => "Невалидна конфигурация. Моля, разгледай докладите за допълнителна информация.", +"No action specified" => "Не е посочено действие", +"No configuration specified" => "Не е посочена конфигурация", +"No data specified" => "Не са посочени данни", +" Could not set configuration %s" => "Неуспешно задаване на конфигруацията %s", +"Deletion failed" => "Неуспешно изтриване", +"Take over settings from recent server configuration?" => "Използвай настройките от скорошна сървърна конфигурация?", +"Keep settings?" => "Запази настройките?", +"{nthServer}. Server" => "{nthServer}. Сървър", +"Cannot add server configuration" => "Неуспешно добавяне на сървърна конфигурация.", +"mappings cleared" => "mapping-и създадени.", +"Success" => "Успех", "Error" => "Грешка", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), -"Save" => "Запис", +"Please specify a Base DN" => "Моля, посочи Base DN", +"Could not determine Base DN" => "Неуспешно установяване на Base DN", +"Please specify the port" => "Mоля, посочи портът", +"Configuration OK" => "Конфигурацията е ОК", +"Configuration incorrect" => "Конфигурацията е грешна", +"Configuration incomplete" => "Конфигурацията не е завършена", +"Select groups" => "Избери Групи", +"Select object classes" => "Избери типове обекти", +"Select attributes" => "Избери атрибути", +"Connection test succeeded" => "Успешен тест на връзката.", +"Connection test failed" => "Неуспешен тест на връзката.", +"Do you really want to delete the current Server Configuration?" => "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?", +"Confirm Deletion" => "Потвърди Изтриването", +"_%s group found_::_%s groups found_" => array("%s открита група","%s открити групи"), +"_%s user found_::_%s users found_" => array("%s октрит потребител","%s октрити потребители"), +"Could not find the desired feature" => "Не е открита желанта функция", +"Invalid Host" => "Невалиден Сървър", +"Server" => "Сървър", +"User Filter" => "User Filter", +"Login Filter" => "Login Filter", +"Group Filter" => "Group Filter", +"Save" => "Запиши", +"Test Configuration" => "Тествай Конфигурацията", "Help" => "Помощ", -"Host" => "Сървър", +"Groups meeting these criteria are available in %s:" => "Групи спазващи тези критерии са разположени в %s:", +"only those object classes:" => "само следните типове обекти:", +"only from those groups:" => "само от следните групи:", +"Edit raw filter instead" => "Промени raw филтъра", +"Raw LDAP filter" => "Raw LDAP филтър", +"The filter specifies which LDAP groups shall have access to the %s instance." => "Филтърът посочва кои LDAP групи ще имат достъп до %s инсталацията.", +"groups found" => "открити групи", +"Users login with this attribute:" => "Потребителски профили с този атрибут:", +"LDAP Username:" => "LDAP Потребителско Име:", +"LDAP Email Address:" => "LDAP Имел Адрес:", +"Other Attributes:" => "Други Атрибути:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Заявява филтърът, който да бъде приложен при опит за вписване. %%uid замества потребителското име в полето login action. Пример: \"uid=%%uid\".", +"1. Server" => "1. Сървър", +"%s. Server:" => "%s. Сървър:", +"Add Server Configuration" => "Добави Сървърна Конфигурация", +"Delete Configuration" => "Изтрий Конфигурацията", +"Host" => "Host", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Протоколът не задължителен освен ако не изискваш SLL. В такъв случай започни с ldaps://", "Port" => "Порт", +"User DN" => "User DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни.", "Password" => "Парола", +"For anonymous access, leave DN and Password empty." => "За анонимен достъп, остави DN и Парола празни.", +"One Base DN per line" => "По един Base DN на ред", +"You can specify Base DN for users and groups in the Advanced tab" => "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни.", +"Limit %s access to users meeting these criteria:" => "Ограничи достъпа на %s до потребители покриващи следните критерии:", +"The filter specifies which LDAP users shall have access to the %s instance." => "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията.", +"users found" => "открити потребители", +"Back" => "Назад", "Continue" => "Продължи", -"Advanced" => "Разширено" +"Expert" => "Експерт", +"Advanced" => "Допълнителни", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "<b>Предупреждение:</b> Приложенията user_ldap и user_webdavauth са несъвместими. Може да изпитате неочквано поведение. Моля, поискайте системния администратор да изключи едното приложение.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Предупреждение:</b> PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира.", +"Connection Settings" => "Настройки на Връзката", +"Configuration Active" => "Конфигурацията е Активна", +"When unchecked, this configuration will be skipped." => "Когато не е отметнато, тази конфигурация ще бъде прескочена.", +"Backup (Replica) Host" => "Backup (Replica) Host", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Задай незадължителен резервен сървър. Трябва да бъде реплика на главния LDAP/AD сървър.", +"Backup (Replica) Port" => "Backup (Replica) Port", +"Disable Main Server" => "Изключи Главиния Сървър", +"Only connect to the replica server." => "Свържи се само с репликирания сървър.", +"Case insensitive LDAP server (Windows)" => "Нечувствителен към главни/малки букви LDAP сървър (Windows)", +"Turn off SSL certificate validation." => "Изключи валидацията на SSL сертификата.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Не е пропоръчително, ползвай само за тестване. Ако връзката работи само с тази опция, вмъкни LDAP сървърния SSL сертификат в твоя %s сървър.", +"Cache Time-To-Live" => "Кеширай Time-To-Live", +"in seconds. A change empties the cache." => "в секунди. Всяка промяна изтрива кеша.", +"Directory Settings" => "Настройки на Директорията", +"User Display Name Field" => "Поле User Display Name", +"The LDAP attribute to use to generate the user's display name." => "LDAP атрибутът, който да бъде използван за генериране на видимото име на потребителя.", +"Base User Tree" => "Base User Tree", +"One User Base DN per line" => "По един User Base DN на ред", +"User Search Attributes" => "Атрибути на Потребителско Търсене", +"Optional; one attribute per line" => "По желание; един атрибут на ред", +"Group Display Name Field" => "Поле Group Display Name", +"The LDAP attribute to use to generate the groups's display name." => "LDAP атрибутът, който да бъде използван за генерирането на видмото име на групата.", +"Base Group Tree" => "Base Group Tree", +"One Group Base DN per line" => "По един Group Base DN на ред", +"Group Search Attributes" => "Атрибути на Групово Търсене", +"Group-Member association" => "Group-Member асоциация", +"Nested Groups" => "Nested Групи", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Когато е включени, се подържат групи в групи. (Работи единствено ако членът на групата притежава атрибута DNs).", +"Paging chunksize" => "Размер на paging-а", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Размерът използван за връщането на големи резултати от LDAP търсения като изброяване на потребители или групи. (Стойност 0 изключва paged LDAP търсения в тези ситуации).", +"Special Attributes" => "Специални Атрибути", +"Quota Field" => "Поле за Квота", +"Quota Default" => "Детайли на Квотата", +"in bytes" => "в байтове", +"Email Field" => "Поле за Имейл", +"User Home Folder Naming Rule" => "Правило за Кръщаване на Потребителската Папка", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Остави празно за потребителско име (по подразбиране). Иначе, посочи LDAP/AD атрибут.", +"Internal Username" => "Вътрешно Потребителско Име", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "По подразбиране вътрешното потребителско име ще бъде създадено от UUID атрибутът. Това гарантира, че потребителското име ще бъде уникално, и че няма да се наложи да се конвертират символи. Вътрешното потребителско име ще бъде ограничено да използва само следните символи: [ a-zA-Z0-9_.@- ]. Другите символи ще бъдат заменени със техните ASCII еквиваленти или ще бъдат просто пренебрегнати. Ако има сблъсъци ще бъде добавено/увеличено число. Вътрешното потребителско име се използва, за да се идентифицира вътрешно потребителя. То е и директорията по подразбиране на потребителя. Също така е част от отдалечените URL-и, на пример за всички *DAV услуги. С тази настройка може да бъде променено всичко това. За да постигнеш подобно държание на това, което беше в ownCloud 5 въведи съдържанието на user display name атрибутът тук. Остави го празно да се държи, както по подразбиране. Промените ще се отразят само на новодобавени(map-нати) LDAP потребители.", +"Internal Username Attribute:" => "Атрибут на Вътрешното Потребителско Име:", +"Override UUID detection" => "Промени UUID откриването", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По подразбиране, UUID атрибутът ще бъде автоматично намерен. UUID се използва, за да се идентифицират еднозначно LDAP потребители и групи. Също така, вътрешното име ще бъде генерирано базирано на UUID, ако такова не е посочено по-горе. Можеш да промениш тази настройка и да използваш атрибут по свой избор. Трябва да се увериш, че атрибутът, който си избрал може да бъде проверен, както за потребителите така и за групите, и да е уникален. Промените ще се отразят само на новодобавени(map-нати) LDAP потребители.", +"UUID Attribute for Users:" => "UUID Атрибут за Потребителите:", +"UUID Attribute for Groups:" => "UUID Атрибут за Групите:", +"Username-LDAP User Mapping" => "Username-LDAP User Mapping", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Потребителските имена се използват, за да се запази и зададат (мета)данни. За да може да се идентифицира и разпознае потребител, всеки LDAP потребител ще има вътрешно потребителско име. Налага се map-ване от вътрешен потребител към LDAP потребител. Създаденото потребителско име се map-ва към UUID-то на LDAP потребител. В допълнение DN се кешира, за да се намали LDAP комункацията, но не се използва за идентифициране. Ако DN се промени, промяната ще бъде открита. Вътрешното име се използва навсякъде. Изтриването на map-ванията ще се отрази на всички LDAP конфигурации! Никога не изчиствай map-ванията на производствена инсталация, а само докато тестваш и експериментираш.", +"Clear Username-LDAP User Mapping" => "Изчисти Username-LDAP User Mapping", +"Clear Groupname-LDAP Group Mapping" => "Изчисти Groupname-LDAP Group Mapping" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 3a8ee2980da..3be197a1b26 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -17,6 +17,8 @@ $TRANSLATIONS = array( "mappings cleared" => "mapování zrušeno", "Success" => "Úspěch", "Error" => "Chyba", +"Please specify a Base DN" => "Uveď prosím základní DN", +"Could not determine Base DN" => "Nelze určit základní DN", "Please specify the port" => "Prosím zadej port", "Configuration OK" => "Konfigurace v pořádku", "Configuration incorrect" => "Nesprávná konfigurace", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index fc9c6ec3f92..93d5636aad6 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -18,10 +18,12 @@ $TRANSLATIONS = array( "Confirm Deletion" => "确认删除", "_%s group found_::_%s groups found_" => array(""), "_%s user found_::_%s users found_" => array(""), +"Invalid Host" => "无效的主机", "Group Filter" => "组过滤", "Save" => "保存", "Test Configuration" => "测试配置", "Help" => "帮助", +"groups found" => "找到组", "Add Server Configuration" => "增加服务器配置", "Host" => "主机", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "可以忽略协议,但如要使用SSL,则需以ldaps://开头", @@ -32,6 +34,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "启用匿名访问,将DN和密码保留为空", "One Base DN per line" => "每行一个基本判别名", "You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡里为用户和组指定Base DN", +"users found" => "找到用户", "Back" => "返回", "Continue" => "继续", "Advanced" => "高级", diff --git a/core/js/config.php b/core/js/config.php index 2f423111bda..0ab74d2949e 100644 --- a/core/js/config.php +++ b/core/js/config.php @@ -70,7 +70,7 @@ $array = array( "firstDay" => json_encode($l->l('firstday', 'firstday')) , "oc_config" => json_encode( array( - 'session_lifetime' => \OCP\Config::getSystemValue('session_lifetime', ini_get('session.gc_maxlifetime')), + 'session_lifetime' => min(\OCP\Config::getSystemValue('session_lifetime', ini_get('session.gc_maxlifetime')), ini_get('session.gc_maxlifetime')), 'session_keepalive' => \OCP\Config::getSystemValue('session_keepalive', true), 'version' => implode('.', OC_Util::getVersion()), 'versionstring' => OC_Util::getVersionString(), diff --git a/core/l10n/bn_IN.php b/core/l10n/bn_IN.php index 38bd029ce4a..6158da85a30 100644 --- a/core/l10n/bn_IN.php +++ b/core/l10n/bn_IN.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Settings" => "সেটিংস", +"Folder" => "ফোল্ডার", "Saving..." => "সংরক্ষণ করা হচ্ছে ...", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index cfacf14a662..a2f5c77f8de 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", "Updated database" => "Zaktualizována databáze", +"Checked database schema update" => "Aktualizace schéma databáze ověřeno", "Disabled incompatible apps: %s" => "Zakázané nekompatibilní aplikace: %s", "No image or file provided" => "Soubor nebo obrázek nebyl zadán", "Unknown filetype" => "Neznámý typ souboru", @@ -172,6 +173,7 @@ $TRANSLATIONS = array( "Database name" => "Název databáze", "Database tablespace" => "Tabulkový prostor databáze", "Database host" => "Hostitel databáze", +"SQLite will be used as database. For larger installations we recommend to change this." => "Bude použita databáze SQLite. Pro větší instalace doporučujeme toto změnit.", "Finish setup" => "Dokončit nastavení", "Finishing …" => "Dokončuji...", "This application requires JavaScript to be enabled for correct operation. Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable JavaScript</a> and re-load this interface." => "Tato aplikace vyžaduje pro svou správnou funkčnost povolený JavaScript. Prosím <a href=\"http://enable-javascript.com/\" target=\"_blank\">povolte JavaScript</a> a znovu načtěte toto rozhraní.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 253dc6b9973..1cf40ea2c2b 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -120,6 +120,7 @@ $TRANSLATIONS = array( "Please reload the page." => "Stran je treba ponovno naložiti", "The update was unsuccessful." => "Posodobitev je spodletela", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", +"Couldn't send reset email. Please make sure your username is correct." => "Ni mogoče poslati elektronskega sporočila. Prepričajte se, da je uporabniško ime pravilno.", "%s password reset" => "Ponastavitev gesla %s", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", "You will receive a link to reset your password via Email." => "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla.", @@ -176,6 +177,7 @@ $TRANSLATIONS = array( "Please change your password to secure your account again." => "Spremenite geslo za izboljšanje zaščite računa.", "Server side authentication failed!" => "Overitev s strežnika je spodletela!", "Please contact your administrator." => "Stopite v stik s skrbnikom sistema.", +"Forgot your password? Reset it!" => "Ali ste pozabili geslo? Ponastavite ga!", "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 646f00cc1d9..e1cd68732b4 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:31+0000\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 07:30+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index b620fc8b98a..801462821f4 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:31+0000\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 17:30+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 46c3e44eb47..e73d4d9406f 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Ivo, 2014 # Yasen Pramatarov <yasen@lindeas.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 11:01+0000\n" -"Last-Translator: Yasen Pramatarov <yasen@lindeas.com>\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 19:30+0000\n" +"Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,46 +21,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Успешно включване на опцията ключ за възстановяване." #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Успешно изключване на ключа за възстановяване." #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "Паролата е сменена успешно." +msgstr "Паролата е успешно променена." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Грешка при смяна на паролата. Може би старата ви парола е сгрешена." +msgstr "Грешка при промяна на паролата. Може би старата ти парола е сгрешена." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Успешно променена тайната парола за ключа." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Неуспешна промяна на тайната парола за ключа. Може би старата парола е грешно въведена." #: files/error.php:13 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение." #: files/error.php:17 #, php-format @@ -67,47 +68,47 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове." #: files/error.php:20 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб." #: files/error.php:23 files/error.php:28 msgid "" "Unknown error. Please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Непозната грешка. Моля, провери системните настройки или се свържи с администратора." #: hooks/hooks.php:66 msgid "Missing requirements." -msgstr "" +msgstr "Липсва задължителна информация." #: hooks/hooks.php:67 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Моля, увери се, че PHP 5.3.3 или по-нова версия е инсталирана, и че OpenSSL заедно съответната PHP добавка са включени и правилно настроени. За сега, криптиращото приложение ще бъде изключено." #: hooks/hooks.php:286 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Следните потребители не са настроени за криптиране:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай." #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Тече първоначално криптиране... Моля опитай по-късно." #: templates/invalid_private_key.php:8 #, php-format msgid "Go directly to your %spersonal settings%s." -msgstr "" +msgstr "Отиде направо към твоите %sлични настройки%s." #: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" @@ -116,15 +117,15 @@ msgstr "Криптиране" #: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):" #: templates/settings-admin.php:9 msgid "Recovery key password" -msgstr "" +msgstr "Парола за възстановяане на ключа" #: templates/settings-admin.php:12 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Повтори паролата за възстановяване на ключа" #: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" @@ -136,64 +137,64 @@ msgstr "Изключено" #: templates/settings-admin.php:32 msgid "Change recovery key password:" -msgstr "" +msgstr "Промени паролата за въстановяване на ключа:" #: templates/settings-admin.php:38 msgid "Old Recovery key password" -msgstr "" +msgstr "Старата парола за въстановяване на ключа" #: templates/settings-admin.php:45 msgid "New Recovery key password" -msgstr "" +msgstr "Новата парола за възстановяване на ключа" #: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Повтори новата паролза за възстановяване на ключа" #: templates/settings-admin.php:56 msgid "Change Password" -msgstr "Промяна на парола" +msgstr "Промени Паролата" #: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Тайната ти парола за ключа вече несъвпада с паролата ти за вписване:" #: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Промени тайната парола за ключа да съвпада с паролата ти за вписване." #: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Ако не помниш старата парола помоли администратора да възстанови файловете ти." #: templates/settings-personal.php:21 msgid "Old log-in password" -msgstr "Стара парола" +msgstr "Стара парола за вписване" #: templates/settings-personal.php:27 msgid "Current log-in password" -msgstr "Текуща парола" +msgstr "Текуща парола за вписване" #: templates/settings-personal.php:32 msgid "Update Private Key Password" -msgstr "" +msgstr "Промени Тайната Парола за Ключа" #: templates/settings-personal.php:41 msgid "Enable password recovery:" -msgstr "" +msgstr "Включи опцията възстановяване на паролата:" #: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола." #: templates/settings-personal.php:59 msgid "File recovery settings updated" -msgstr "" +msgstr "Настройките за възстановяване на файлове са променени." #: templates/settings-personal.php:60 msgid "Could not update file recovery" -msgstr "" +msgstr "Неуспешна промяна на настройките за възстановяване на файлове." diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 5769e80d324..e5a4cd9a985 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:31+0000\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 14:41+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 745db8c3a08..bea1e5421a4 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 21:21+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 10:50+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 3a7043c4343..c35eb610b84 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:31+0000\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 18:42+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index b0f8e7ca475..b8762be4300 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Ivo, 2014 # Yasen Pramatarov <yasen@lindeas.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:11+0000\n" -"Last-Translator: Yasen Pramatarov <yasen@lindeas.com>\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 10:40+0000\n" +"Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,4 +42,4 @@ msgstr "Няма други налични версии" #: js/versions.js:165 msgid "Restore" -msgstr "Възтановяване" +msgstr "Възтановяви" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index b70c30ae73a..ea1dcc8cfb4 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:00+0000\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 23:50+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 317ceb8f5ac..496bd439a90 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:31+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 11:40+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index e501604c1fe..cedccbadcec 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Ivo, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 17:31+0000\n" +"Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,72 +20,72 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Неуспешно изчистване на mapping-ите." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Неуспешен опит за изтриване на сървърната конфигурация." #: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Валидна конфигурация, връзката установена!" #: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Конфигурацията е валидна, но Bind-а неуспя. Моля, провери сървърните настройки, потребителското име и паролата." #: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "Невалидна конфигурация. Моля, разгледай докладите за допълнителна информация." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Не е посочено действие" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Не е посочена конфигурация" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Не са посочени данни" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Неуспешно задаване на конфигруацията %s" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Неуспешно изтриване" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Използвай настройките от скорошна сървърна конфигурация?" #: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "Запази настройките?" #: js/settings.js:93 msgid "{nthServer}. Server" -msgstr "" +msgstr "{nthServer}. Сървър" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "Неуспешно добавяне на сървърна конфигурация." #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "mapping-и създадени." #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "Успех" #: js/settings.js:133 msgid "Error" @@ -92,101 +93,101 @@ msgstr "Грешка" #: js/settings.js:244 msgid "Please specify a Base DN" -msgstr "" +msgstr "Моля, посочи Base DN" #: js/settings.js:245 msgid "Could not determine Base DN" -msgstr "" +msgstr "Неуспешно установяване на Base DN" #: js/settings.js:276 msgid "Please specify the port" -msgstr "" +msgstr "Mоля, посочи портът" #: js/settings.js:780 msgid "Configuration OK" -msgstr "" +msgstr "Конфигурацията е ОК" #: js/settings.js:789 msgid "Configuration incorrect" -msgstr "" +msgstr "Конфигурацията е грешна" #: js/settings.js:798 msgid "Configuration incomplete" -msgstr "" +msgstr "Конфигурацията не е завършена" #: js/settings.js:815 js/settings.js:824 msgid "Select groups" -msgstr "" +msgstr "Избери Групи" #: js/settings.js:818 js/settings.js:827 msgid "Select object classes" -msgstr "" +msgstr "Избери типове обекти" #: js/settings.js:821 msgid "Select attributes" -msgstr "" +msgstr "Избери атрибути" #: js/settings.js:848 msgid "Connection test succeeded" -msgstr "" +msgstr "Успешен тест на връзката." #: js/settings.js:855 msgid "Connection test failed" -msgstr "" +msgstr "Неуспешен тест на връзката." #: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?" #: js/settings.js:865 msgid "Confirm Deletion" -msgstr "" +msgstr "Потвърди Изтриването" #: lib/wizard.php:97 lib/wizard.php:112 #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s открита група" +msgstr[1] "%s открити групи" #: lib/wizard.php:126 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s октрит потребител" +msgstr[1] "%s октрити потребители" #: lib/wizard.php:317 lib/wizard.php:1051 msgid "Could not find the desired feature" -msgstr "" +msgstr "Не е открита желанта функция" #: lib/wizard.php:858 lib/wizard.php:870 msgid "Invalid Host" -msgstr "" +msgstr "Невалиден Сървър" #: settings.php:52 msgid "Server" -msgstr "" +msgstr "Сървър" #: settings.php:53 msgid "User Filter" -msgstr "" +msgstr "User Filter" #: settings.php:54 msgid "Login Filter" -msgstr "" +msgstr "Login Filter" #: settings.php:55 msgid "Group Filter" -msgstr "" +msgstr "Group Filter" #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "Запис" +msgstr "Запиши" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" -msgstr "" +msgstr "Тествай Конфигурацията" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" @@ -195,88 +196,88 @@ msgstr "Помощ" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Групи спазващи тези критерии са разположени в %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "само следните типове обекти:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "само от следните групи:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Промени raw филтъра" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Raw LDAP филтър" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "Филтърът посочва кои LDAP групи ще имат достъп до %s инсталацията." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "открити групи" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Потребителски профили с този атрибут:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "LDAP Потребителско Име:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "LDAP Имел Адрес:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Други Атрибути:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Заявява филтърът, който да бъде приложен при опит за вписване. %%uid замества потребителското име в полето login action. Пример: \"uid=%%uid\"." #: templates/part.wizard-server.php:6 msgid "1. Server" -msgstr "" +msgstr "1. Сървър" #: templates/part.wizard-server.php:13 #, php-format msgid "%s. Server:" -msgstr "" +msgstr "%s. Сървър:" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "Добави Сървърна Конфигурация" #: templates/part.wizard-server.php:21 msgid "Delete Configuration" -msgstr "" +msgstr "Изтрий Конфигурацията" #: templates/part.wizard-server.php:30 msgid "Host" -msgstr "Сървър" +msgstr "Host" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "Протоколът не задължителен освен ако не изискваш SLL. В такъв случай започни с ldaps://" #: templates/part.wizard-server.php:36 msgid "Port" @@ -284,14 +285,14 @@ msgstr "Порт" #: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "" +msgstr "User DN" #: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни." #: templates/part.wizard-server.php:52 msgid "Password" @@ -299,34 +300,34 @@ msgstr "Парола" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "За анонимен достъп, остави DN и Парола празни." #: templates/part.wizard-server.php:60 msgid "One Base DN per line" -msgstr "" +msgstr "По един Base DN на ред" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни." #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Ограничи достъпа на %s до потребители покриващи следните критерии:" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "открити потребители" #: templates/part.wizardcontrols.php:5 msgid "Back" -msgstr "" +msgstr "Назад" #: templates/part.wizardcontrols.php:8 msgid "Continue" @@ -334,188 +335,188 @@ msgstr "Продължи" #: templates/settings.php:7 msgid "Expert" -msgstr "" +msgstr "Експерт" #: templates/settings.php:8 msgid "Advanced" -msgstr "Разширено" +msgstr "Допълнителни" #: templates/settings.php:11 msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>Предупреждение:</b> Приложенията user_ldap и user_webdavauth са несъвместими. Може да изпитате неочквано поведение. Моля, поискайте системния администратор да изключи едното приложение." #: templates/settings.php:14 msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Предупреждение:</b> PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира." #: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Настройки на Връзката" #: templates/settings.php:22 msgid "Configuration Active" -msgstr "" +msgstr "Конфигурацията е Активна" #: templates/settings.php:22 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Когато не е отметнато, тази конфигурация ще бъде прескочена." #: templates/settings.php:23 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Backup (Replica) Host" #: templates/settings.php:23 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Задай незадължителен резервен сървър. Трябва да бъде реплика на главния LDAP/AD сървър." #: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Backup (Replica) Port" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Изключи Главиния Сървър" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Свържи се само с репликирания сървър." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Нечувствителен към главни/малки букви LDAP сървър (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "Изключи валидацията на SSL сертификата." #: templates/settings.php:27 #, php-format msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Не е пропоръчително, ползвай само за тестване. Ако връзката работи само с тази опция, вмъкни LDAP сървърния SSL сертификат в твоя %s сървър." #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Кеширай Time-To-Live" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "в секунди. Всяка промяна изтрива кеша." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Настройки на Директорията" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "" +msgstr "Поле User Display Name" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP атрибутът, който да бъде използван за генериране на видимото име на потребителя." #: templates/settings.php:33 msgid "Base User Tree" -msgstr "" +msgstr "Base User Tree" #: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "" +msgstr "По един User Base DN на ред" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Атрибути на Потребителско Търсене" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "По желание; един атрибут на ред" #: templates/settings.php:35 msgid "Group Display Name Field" -msgstr "" +msgstr "Поле Group Display Name" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP атрибутът, който да бъде използван за генерирането на видмото име на групата." #: templates/settings.php:36 msgid "Base Group Tree" -msgstr "" +msgstr "Base Group Tree" #: templates/settings.php:36 msgid "One Group Base DN per line" -msgstr "" +msgstr "По един Group Base DN на ред" #: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Атрибути на Групово Търсене" #: templates/settings.php:38 msgid "Group-Member association" -msgstr "" +msgstr "Group-Member асоциация" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Nested Групи" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Когато е включени, се подържат групи в групи. (Работи единствено ако членът на групата притежава атрибута DNs)." #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Размер на paging-а" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Размерът използван за връщането на големи резултати от LDAP търсения като изброяване на потребители или групи. (Стойност 0 изключва paged LDAP търсения в тези ситуации)." #: templates/settings.php:42 msgid "Special Attributes" -msgstr "" +msgstr "Специални Атрибути" #: templates/settings.php:44 msgid "Quota Field" -msgstr "" +msgstr "Поле за Квота" #: templates/settings.php:45 msgid "Quota Default" -msgstr "" +msgstr "Детайли на Квотата" #: templates/settings.php:45 msgid "in bytes" -msgstr "" +msgstr "в байтове" #: templates/settings.php:46 msgid "Email Field" -msgstr "" +msgstr "Поле за Имейл" #: templates/settings.php:47 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Правило за Кръщаване на Потребителската Папка" #: templates/settings.php:47 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "Остави празно за потребителско име (по подразбиране). Иначе, посочи LDAP/AD атрибут." #: templates/settings.php:53 msgid "Internal Username" -msgstr "" +msgstr "Вътрешно Потребителско Име" #: templates/settings.php:54 msgid "" @@ -531,15 +532,15 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "По подразбиране вътрешното потребителско име ще бъде създадено от UUID атрибутът. Това гарантира, че потребителското име ще бъде уникално, и че няма да се наложи да се конвертират символи. Вътрешното потребителско име ще бъде ограничено да използва само следните символи: [ a-zA-Z0-9_.@- ]. Другите символи ще бъдат заменени със техните ASCII еквиваленти или ще бъдат просто пренебрегнати. Ако има сблъсъци ще бъде добавено/увеличено число. Вътрешното потребителско име се използва, за да се идентифицира вътрешно потребителя. То е и директорията по подразбиране на потребителя. Също така е част от отдалечените URL-и, на пример за всички *DAV услуги. С тази настройка може да бъде променено всичко това. За да постигнеш подобно държание на това, което беше в ownCloud 5 въведи съдържанието на user display name атрибутът тук. Остави го празно да се държи, както по подразбиране. Промените ще се отразят само на новодобавени(map-нати) LDAP потребители." #: templates/settings.php:55 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Атрибут на Вътрешното Потребителско Име:" #: templates/settings.php:56 msgid "Override UUID detection" -msgstr "" +msgstr "Промени UUID откриването" #: templates/settings.php:57 msgid "" @@ -550,19 +551,19 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "По подразбиране, UUID атрибутът ще бъде автоматично намерен. UUID се използва, за да се идентифицират еднозначно LDAP потребители и групи. Също така, вътрешното име ще бъде генерирано базирано на UUID, ако такова не е посочено по-горе. Можеш да промениш тази настройка и да използваш атрибут по свой избор. Трябва да се увериш, че атрибутът, който си избрал може да бъде проверен, както за потребителите така и за групите, и да е уникален. Промените ще се отразят само на новодобавени(map-нати) LDAP потребители." #: templates/settings.php:58 msgid "UUID Attribute for Users:" -msgstr "" +msgstr "UUID Атрибут за Потребителите:" #: templates/settings.php:59 msgid "UUID Attribute for Groups:" -msgstr "" +msgstr "UUID Атрибут за Групите:" #: templates/settings.php:60 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Username-LDAP User Mapping" #: templates/settings.php:61 msgid "" @@ -576,12 +577,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Потребителските имена се използват, за да се запази и зададат (мета)данни. За да може да се идентифицира и разпознае потребител, всеки LDAP потребител ще има вътрешно потребителско име. Налага се map-ване от вътрешен потребител към LDAP потребител. Създаденото потребителско име се map-ва към UUID-то на LDAP потребител. В допълнение DN се кешира, за да се намали LDAP комункацията, но не се използва за идентифициране. Ако DN се промени, промяната ще бъде открита. Вътрешното име се използва навсякъде. Изтриването на map-ванията ще се отрази на всички LDAP конфигурации! Никога не изчиствай map-ванията на производствена инсталация, а само докато тестваш и експериментираш." #: templates/settings.php:62 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Изчисти Username-LDAP User Mapping" #: templates/settings.php:62 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Изчисти Groupname-LDAP Group Mapping" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index a6a6b66ff34..e653ec57f29 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 23:11+0000\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 17:30+0000\n" "Last-Translator: Ivo\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_IN/core.po b/l10n/bn_IN/core.po index f249cde843b..47f850e3842 100644 --- a/l10n/bn_IN/core.po +++ b/l10n/bn_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 03:19+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 20:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -153,7 +153,7 @@ msgstr "" #: js/js.js:591 msgid "Folder" -msgstr "" +msgstr "ফোল্ডার" #: js/js.js:592 msgid "Image" diff --git a/l10n/bn_IN/files.po b/l10n/bn_IN/files.po index d9de4aff110..77689810462 100644 --- a/l10n/bn_IN/files.po +++ b/l10n/bn_IN/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ishita mukherjee <ishitamukh91@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 03:19+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 21:20+0000\n" +"Last-Translator: ishita mukherjee <ishitamukh91@gmail.com>\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,12 +33,12 @@ msgstr "" #: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s সরানো যায়নি-এই নামে আগে থেকেই ফাইল আছে" #: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s সরানো যায়নি" #: ajax/newfile.php:58 js/files.js:103 msgid "File name cannot be empty." @@ -102,42 +103,42 @@ msgstr "" #: ajax/upload.php:77 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "কোন ফাইল আপলোড করা হয় নি।অজানা ত্রুটি" #: ajax/upload.php:84 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "কোন ত্রুটি নেই,ফাইল সাফল্যের সঙ্গে আপলোড করা হয়েছে" #: ajax/upload.php:85 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "আপলোড করা ফাইল-php.ini মধ্যে upload_max_filesize নির্দেশ অতিক্রম করে:" #: ajax/upload.php:87 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "আপলোড করা ফাইল HTML ফর্মের জন্য MAX_FILE_SIZE নির্দেশ অতিক্রম করে" #: ajax/upload.php:88 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "আপলোড করা ফাইল শুধুমাত্র আংশিকভাবে আপলোড করা হয়েছে" #: ajax/upload.php:89 msgid "No file was uploaded" -msgstr "" +msgstr "কোন ফাইল আপলোড করা হয় নি" #: ajax/upload.php:90 msgid "Missing a temporary folder" -msgstr "" +msgstr "একটি অস্থায়ী ফোল্ডার পাওয়া যাচ্ছেনা" #: ajax/upload.php:91 msgid "Failed to write to disk" -msgstr "" +msgstr "ডিস্কে লিখতে ব্যর্থ" #: ajax/upload.php:111 msgid "Not enough storage available" -msgstr "" +msgstr "যথেষ্ট স্টোরেজ পাওয়া যায় না" #: ajax/upload.php:173 msgid "Upload failed. Could not find uploaded file" @@ -149,7 +150,7 @@ msgstr "" #: ajax/upload.php:198 msgid "Invalid directory." -msgstr "" +msgstr "অবৈধ ডিরেক্টরি।" #: appinfo/app.php:11 js/filelist.js:25 msgid "Files" @@ -223,11 +224,11 @@ msgstr "" #: js/fileactions.js:301 msgid "Delete permanently" -msgstr "" +msgstr "স্থায়ীভাবে মুছে দিন" #: js/fileactions.js:342 msgid "Rename" -msgstr "" +msgstr "পুনঃনামকরণ" #: js/filelist.js:341 msgid "" @@ -237,7 +238,7 @@ msgstr "" #: js/filelist.js:675 js/filelist.js:1783 msgid "Pending" -msgstr "" +msgstr "মুলতুবি" #: js/filelist.js:1210 msgid "Error moving file." @@ -375,11 +376,11 @@ msgstr "" #: templates/list.php:12 msgid "New folder" -msgstr "" +msgstr "নতুন ফোল্ডার" #: templates/list.php:13 msgid "Folder" -msgstr "" +msgstr "ফোল্ডার" #: templates/list.php:16 msgid "From link" @@ -395,7 +396,7 @@ msgstr "" #: templates/list.php:66 msgid "Download" -msgstr "" +msgstr "ডাউনলোড করুন" #: templates/list.php:91 msgid "Upload too large" diff --git a/l10n/bn_IN/files_external.po b/l10n/bn_IN/files_external.po index 53e28bb672e..2462e56b7b8 100644 --- a/l10n/bn_IN/files_external.po +++ b/l10n/bn_IN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 20:30+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -286,7 +286,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "ফোল্ডারের নাম" #: templates/settings.php:10 msgid "Configuration" diff --git a/l10n/bn_IN/files_sharing.po b/l10n/bn_IN/files_sharing.po index b96e6a07a09..476fbbd7ad8 100644 --- a/l10n/bn_IN/files_sharing.po +++ b/l10n/bn_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 14:42+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 20:50+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/owncloud/language/bn_IN/)\n" "MIME-Version: 1.0\n" @@ -131,7 +131,7 @@ msgstr "" #: templates/public.php:30 msgid "Download" -msgstr "" +msgstr "ডাউনলোড করুন" #: templates/public.php:61 #, php-format diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 4e29715681e..b8a0b7538a0 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 09:41+0000\n" +"Last-Translator: Jaroslav Lichtblau <jaroslav@lichtblau.cz>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +50,7 @@ msgstr "Zaktualizována databáze" #: ajax/update.php:19 msgid "Checked database schema update" -msgstr "" +msgstr "Aktualizace schéma databáze ověřeno" #: ajax/update.php:27 #, php-format @@ -628,7 +628,7 @@ msgstr "Osobní" msgid "Users" msgstr "Uživatelé" -#: strings.php:7 templates/layout.user.php:53 templates/layout.user.php:118 +#: strings.php:7 templates/layout.user.php:57 templates/layout.user.php:122 msgid "Apps" msgstr "Aplikace" @@ -784,7 +784,7 @@ msgstr "Hostitel databáze" msgid "" "SQLite will be used as database. For larger installations we recommend to " "change this." -msgstr "" +msgstr "Bude použita databáze SQLite. Pro větší instalace doporučujeme toto změnit." #: templates/installation.php:159 msgid "Finish setup" @@ -794,19 +794,19 @@ msgstr "Dokončit nastavení" msgid "Finishing …" msgstr "Dokončuji..." -#: templates/layout.user.php:40 +#: templates/layout.user.php:44 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." msgstr "Tato aplikace vyžaduje pro svou správnou funkčnost povolený JavaScript. Prosím <a href=\"http://enable-javascript.com/\" target=\"_blank\">povolte JavaScript</a> a znovu načtěte toto rozhraní." -#: templates/layout.user.php:44 +#: templates/layout.user.php:48 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:80 templates/singleuser.user.php:8 +#: templates/layout.user.php:84 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odhlásit se" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 66bdd700453..1ffd5960455 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-15 01:54-0400\n" -"PO-Revision-Date: 2014-07-14 17:00+0000\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 09:41+0000\n" "Last-Translator: Jaroslav Lichtblau <jaroslav@lichtblau.cz>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -628,4 +628,4 @@ msgstr "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocd #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "" +msgstr "Nelze zjistit typ zámku %d na \"%s\"." diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 74bdbe2e08b..c4238a09b99 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 09:41+0000\n" "Last-Translator: Jaroslav Lichtblau <jaroslav@lichtblau.cz>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -100,11 +100,11 @@ msgstr "Chyba" #: js/settings.js:244 msgid "Please specify a Base DN" -msgstr "" +msgstr "Uveď prosím základní DN" #: js/settings.js:245 msgid "Could not determine Base DN" -msgstr "" +msgstr "Nelze určit základní DN" #: js/settings.js:276 msgid "Please specify the port" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index b7d47b55ac9..a6ac9e3ce1e 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 09:11+0000\n" -"Last-Translator: Johannes Hessellund <osos@openeyes.dk>\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 16:04+0000\n" +"Last-Translator: Anders J. Sørensen\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "Kan ikke skrive til mappen \"config\"!" msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen" #: base.php:198 #, php-format diff --git a/l10n/nl/files.po b/l10n/nl/files.po index dc50e543f87..916b38c8708 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-15 06:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 19:41+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,7 +217,7 @@ msgstr "Verwijder" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "Verbreken verbinding opslag" #: js/fileactions.js:299 msgid "Unshare" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 7b7d2a1fcb6..cec7a3c7f36 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 19:30+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,15 +53,15 @@ msgstr "U hebt nog geen bestanden via een link gedeeld." #: js/external.js:48 js/external.js:59 msgid "Do you want to add the remote share {name} from {owner}@{remote}?" -msgstr "" +msgstr "Wilt u de externe share {name} van {owner}@{remote} toevoegen?" #: js/external.js:51 js/external.js:62 msgid "Remote share" -msgstr "" +msgstr "Externe share" #: js/external.js:65 msgid "Remote share password" -msgstr "" +msgstr "Wachtwoord externe share" #: js/external.js:76 msgid "Cancel" @@ -69,7 +69,7 @@ msgstr "Annuleer" #: js/external.js:77 msgid "Add remote share" -msgstr "" +msgstr "Toevoegen externe share" #: js/public.js:203 msgid "No ownCloud installation found at {remote}" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index f08ac33a7c0..3682d115110 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-10 04:58-0400\n" -"PO-Revision-Date: 2014-07-10 07:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 19:41+0000\n" +"Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -309,19 +309,19 @@ msgstr "Herstel de encryptiesleutels" msgid "Unable to delete {objName}" msgstr "Kan {objName} niet verwijderen" -#: js/users/groups.js:73 js/users/groups.js:178 +#: js/users/groups.js:92 js/users/groups.js:200 msgid "Error creating group" msgstr "Fout bij aanmaken groep" -#: js/users/groups.js:177 +#: js/users/groups.js:199 msgid "A valid group name must be provided" msgstr "Er moet een geldige groepsnaam worden opgegeven" -#: js/users/groups.js:205 +#: js/users/groups.js:227 msgid "deleted {groupName}" msgstr "verwijderd {groupName}" -#: js/users/groups.js:206 js/users/users.js:265 +#: js/users/groups.js:228 js/users/users.js:296 msgid "undo" msgstr "ongedaan maken" @@ -341,31 +341,31 @@ msgstr "Groep beheerder" msgid "Delete" msgstr "Verwijder" -#: js/users/users.js:85 templates/users/part.userlist.php:98 +#: js/users/users.js:84 templates/users/part.userlist.php:98 msgid "never" msgstr "geen" -#: js/users/users.js:264 +#: js/users/users.js:295 msgid "deleted {userName}" msgstr "verwijderd {userName}" -#: js/users/users.js:381 +#: js/users/users.js:431 msgid "add group" msgstr "toevoegen groep" -#: js/users/users.js:578 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users/users.js:579 js/users/users.js:585 js/users/users.js:600 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users/users.js:584 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: js/users/users.js:608 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" @@ -562,7 +562,7 @@ msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron #: templates/admin.php:229 msgid "Use system's cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." #: templates/admin.php:234 msgid "Sharing" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 021e2f361bd..cfcff8a0327 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -15,6 +15,7 @@ # Victor Bravo <>, 2013 # Vladimir Sapronov <vladimir.sapronov@gmail.com>, 2013 # Void Ayanami <hex.void@gmail.com>, 2013-2014 +# wiracle, 2014 # Yuriy Malyovaniy <yuriy.malyovaniy@gmail.com>, 2013 # Алексей <hackproof.ai@gmail.com>, 2013 # Антон <antonshramko@yandex.ru>, 2013 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-15 06:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 11:21+0000\n" +"Last-Translator: wiracle\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +232,7 @@ msgstr "Удалить" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "Отсоединиться от хранилища" #: js/fileactions.js:299 msgid "Unshare" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 5d0d6dbf09b..45a345ef9bb 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -10,14 +10,15 @@ # Swab <swab@i.ua>, 2014 # viskubov <viskubov@gmail.com>, 2014 # Void Ayanami <hex.void@gmail.com>, 2014 +# wiracle, 2014 # Михаил Маслиёв <misha.masliev@yandex.ru>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 03:19+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 11:41+0000\n" +"Last-Translator: wiracle\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -109,7 +110,7 @@ msgstr "Включить SSL" #: appinfo/app.php:69 msgid "Enable Path Style" -msgstr "" +msgstr "Включить стиль пути" #: appinfo/app.php:77 msgid "App key" @@ -161,31 +162,31 @@ msgstr "Имя пользователя (обяз.)" #: appinfo/app.php:112 msgid "Bucket (required)" -msgstr "" +msgstr "Bucket (обяз.)" #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" -msgstr "" +msgstr "Регион (необяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:114 msgid "API Key (required for Rackspace Cloud Files)" -msgstr "" +msgstr "Ключ API (обяз. для Rackspace Cloud Files)" #: appinfo/app.php:115 msgid "Tenantname (required for OpenStack Object Storage)" -msgstr "" +msgstr "Имя арендатора (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:116 msgid "Password (required for OpenStack Object Storage)" -msgstr "" +msgstr "Пароль (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:117 msgid "Service Name (required for OpenStack Object Storage)" -msgstr "" +msgstr "Имя Службы (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:118 msgid "URL of identity endpoint (required for OpenStack Object Storage)" -msgstr "" +msgstr "URL для удостоверения конечной точки (обяз. для Хранилища объектов OpenStack)" #: appinfo/app.php:119 msgid "Timeout of HTTP requests in seconds (optional)" @@ -197,7 +198,7 @@ msgstr "Открыть доступ" #: appinfo/app.php:137 msgid "SMB / CIFS using OC login" -msgstr "" +msgstr "SMB / CIFS с ипользованием логина OC" #: appinfo/app.php:141 msgid "Username as share" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index dcff8f00989..dd828a211db 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -10,6 +10,7 @@ # Serge Shpikin <rkfg@rkfg.me>, 2013 # Sk.Avenger <sk.avenger@adygnet.ru>, 2013 # Victor Ashirov <victor.ashirov@gmail.com>, 2013 +# wiracle, 2014 # Yuriy Malyovaniy <yuriy.malyovaniy@gmail.com>, 2013 # Антон <antonshramko@yandex.ru>, 2013 # Михаил Маслиёв <misha.masliev@yandex.ru>, 2014 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" -"PO-Revision-Date: 2014-07-18 03:19+0000\n" -"Last-Translator: rodionc <rodionc@gmail.com>\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 14:20+0000\n" +"Last-Translator: wiracle\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,19 +36,19 @@ msgstr "Запись в каталог \"config\" невозможна" msgid "" "This can usually be fixed by giving the webserver write access to the config" " directory" -msgstr "" +msgstr "Обычно это можно исправить, предоставив веб-серверу права на запись в папке конфигурации" #: base.php:198 #, php-format msgid "See %s" -msgstr "" +msgstr "Просмотр %s" #: base.php:203 private/util.php:413 #, php-format msgid "" "This can usually be fixed by %sgiving the webserver write access to the " "config directory%s." -msgstr "" +msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s." #: base.php:683 msgid "You are accessing the server from an untrusted domain." @@ -318,7 +319,7 @@ msgstr "Не удалось установить общий доступ для msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Не удалось опубликовать %s, т.к. пользователь %s не является членом какой-либо группы в которую входит %s" #: private/share/share.php:559 private/share/share.php:587 #, php-format @@ -366,7 +367,7 @@ msgstr "Не удалось произвести настройку прав д #: private/share/share.php:1043 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend" #: private/share/share.php:1050 #, php-format @@ -387,7 +388,7 @@ msgstr "Публикация %s неудачна, т.к. пользовател #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Не удалось опубликовать %s, т.к. права %s превышают предоставленные права доступа " #: private/share/share.php:1498 #, php-format @@ -399,13 +400,13 @@ msgstr "Публикация %s неудачна, т.к републикация msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Не удалось опубликовать %s, т.к. опубликованный бэкенд для %s не смог найти свой источник" #: private/share/share.php:1524 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Не удалось опубликовать %s, т.к. файл не был обнаружен в файловом кеше." #: private/tags.php:183 #, php-format @@ -484,14 +485,14 @@ msgstr "Имя пользователя уже используется" #: private/util.php:398 msgid "No database drivers (sqlite, mysql, or postgresql) installed." -msgstr "" +msgstr "Не установлены драйвера баз данных (sqlite, mysql или postgresql)" #: private/util.php:405 #, php-format msgid "" "Permissions can usually be fixed by %sgiving the webserver write access to " "the root directory%s." -msgstr "" +msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в корневой папке%s." #: private/util.php:412 msgid "Cannot write into \"config\" directory" @@ -506,7 +507,7 @@ msgstr "Запись в каталог \"app\" невозможна" msgid "" "This can usually be fixed by %sgiving the webserver write access to the apps" " directory%s or disabling the appstore in the config file." -msgstr "" +msgstr "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папку приложений%s или отключив appstore в файле конфигурации." #: private/util.php:440 #, php-format @@ -518,22 +519,22 @@ msgstr "Невозможно создать каталог \"data\" (%s)" msgid "" "This can usually be fixed by <a href=\"%s\" target=\"_blank\">giving the " "webserver write access to the root directory</a>." -msgstr "" +msgstr "Обычно это можно исправить, <a href=\"%s\" target=\"_blank\">предоставив веб-серверу права на запись в корневой папке." #: private/util.php:457 #, php-format msgid "Setting locale to %s failed" -msgstr "" +msgstr "Установка локали в %s не удалась" #: private/util.php:460 msgid "" "Please install one of theses locales on your system and restart your " "webserver." -msgstr "" +msgstr "Пожалуйста, установите одну из следующих локалей в вашей системе и перезапустите веб-сервер." #: private/util.php:464 msgid "Please ask your server administrator to install the module." -msgstr "" +msgstr "Пожалуйста, попростите администратора сервера установить модуль." #: private/util.php:468 private/util.php:475 private/util.php:482 #: private/util.php:496 private/util.php:503 private/util.php:510 @@ -541,94 +542,94 @@ msgstr "" #: private/util.php:546 #, php-format msgid "PHP module %s not installed." -msgstr "" +msgstr "Не установлен PHP-модуль %s." #: private/util.php:538 #, php-format msgid "PHP %s or higher is required." -msgstr "" +msgstr "Требуется PHP %s или выше" #: private/util.php:539 msgid "" "Please ask your server administrator to update PHP to the latest version. " "Your PHP version is no longer supported by ownCloud and the PHP community." -msgstr "" +msgstr "Пожалуйста, обратитесь к администратору сервера, чтобы обновить PHP до последней версии. Ваша версия PHP больше не поддерживается ownCloud и сообществом PHP." #: private/util.php:556 msgid "" "PHP Safe Mode is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Включен безопасный режим PHP. ownCloud требует, чтобы он был выключен для корректной работы." #: private/util.php:557 msgid "" "PHP Safe Mode is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "Безопасный режим PHP не поддерживается и его следует выключить как практически бесполезную настройку. Пожалуйста, попросите администратора сервера выключить его в php.ini либо в вашей конфигурации веб-сервера." #: private/util.php:564 msgid "" "Magic Quotes is enabled. ownCloud requires that it is disabled to work " "properly." -msgstr "" +msgstr "Включен режим Magic Quotes. ownCloud требует, чтобы он был выключен для корректной работы." #: private/util.php:565 msgid "" "Magic Quotes is a deprecated and mostly useless setting that should be " "disabled. Please ask your server administrator to disable it in php.ini or " "in your webserver config." -msgstr "" +msgstr "Magic Quotes не поддерживается и его следует выключить как практически бесполезную настройку. Пожалуйста, попросите администратора сервера выключить его в php.ini либо в вашей конфигурации веб-сервера." #: private/util.php:579 msgid "PHP modules have been installed, but they are still listed as missing?" -msgstr "" +msgstr "Модули PHP был установлены, но все еще в списке как недостающие?" #: private/util.php:580 msgid "Please ask your server administrator to restart the web server." -msgstr "" +msgstr "Пожалуйста, попросите администратора вашего сервера перезапустить веб-сервер." #: private/util.php:609 msgid "PostgreSQL >= 9 required" -msgstr "" +msgstr "Требуется PostgreSQL >= 9" #: private/util.php:610 msgid "Please upgrade your database version" -msgstr "" +msgstr "Пожалуйста, обновите вашу версию базы данных" #: private/util.php:617 msgid "Error occurred while checking PostgreSQL version" -msgstr "" +msgstr "Произошла ошибка при проверке версии PostgreSQL" #: private/util.php:618 msgid "" "Please make sure you have PostgreSQL >= 9 or check the logs for more " "information about the error" -msgstr "" +msgstr "Пожалуйста, обедитесь что версия PostgreSQL >= 9 или проверьте логи за дополнительной информацией об ошибке" #: private/util.php:680 msgid "" "Please change the permissions to 0770 so that the directory cannot be listed" " by other users." -msgstr "" +msgstr "Пожалуйста, измениите флаги разрешений на 0770 чтобы другие пользователи не могли получить списка файлов этой папки." #: private/util.php:689 #, php-format msgid "Data directory (%s) is readable by other users" -msgstr "" +msgstr "Папка данных (%s) доступна для чтения другим пользователям" #: private/util.php:710 #, php-format msgid "Data directory (%s) is invalid" -msgstr "" +msgstr "Папка данных (%s) не верна" #: private/util.php:711 msgid "" "Please check that the data directory contains a file \".ocdata\" in its " "root." -msgstr "" +msgstr "Пожалуйста, убедитесь, что папка данных содержит в корне файл \".ocdata\"." #: public/files/locknotacquiredexception.php:39 #, php-format msgid "Could not obtain lock type %d on \"%s\"." -msgstr "" +msgstr "Не удалось получить блокировку типа %d на \"%s\"" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 7d5796e4629..6a9573bff8e 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -21,6 +21,7 @@ # Victor Ashirov <victor.ashirov@gmail.com>, 2013 # Vladimir Sapronov <vladimir.sapronov@gmail.com>, 2013 # Void Ayanami <hex.void@gmail.com>, 2013 +# wiracle, 2014 # Yuriy Malyovaniy <yuriy.malyovaniy@gmail.com>, 2013 # Алексей <hackproof.ai@gmail.com>, 2013 # Антон <antonshramko@yandex.ru>, 2013 @@ -30,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-14 01:54-0400\n" -"PO-Revision-Date: 2014-07-13 12:50+0000\n" -"Last-Translator: Almaz Mannanov <AlmazWorks@gmail.com>\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 14:31+0000\n" +"Last-Translator: wiracle\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,19 +329,19 @@ msgstr "Восстановить ключи шифрования." msgid "Unable to delete {objName}" msgstr "Невозможно удалить {objName}" -#: js/users/groups.js:92 js/users/groups.js:197 +#: js/users/groups.js:92 js/users/groups.js:200 msgid "Error creating group" msgstr "Ошибка создания группы" -#: js/users/groups.js:196 +#: js/users/groups.js:199 msgid "A valid group name must be provided" msgstr "Введите правильное имя группы" -#: js/users/groups.js:224 +#: js/users/groups.js:227 msgid "deleted {groupName}" msgstr "удалено {groupName}" -#: js/users/groups.js:225 js/users/users.js:296 +#: js/users/groups.js:228 js/users/users.js:296 msgid "undo" msgstr "отмена" @@ -368,23 +369,23 @@ msgstr "никогда" msgid "deleted {userName}" msgstr "удалён {userName}" -#: js/users/users.js:426 +#: js/users/users.js:431 msgid "add group" msgstr "добавить группу" -#: js/users/users.js:621 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users/users.js:622 js/users/users.js:628 js/users/users.js:643 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users/users.js:627 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users/users.js:657 +#: js/users/users.js:667 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" @@ -426,7 +427,7 @@ msgstr "Простой" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Мендеджер NT LAN" #: templates/admin.php:24 msgid "SSL" @@ -475,7 +476,7 @@ msgstr "Пожалуйста, дважды просмотрите <a href='%s'> msgid "" "PHP is apparently setup to strip inline doc blocks. This will make several " "core apps inaccessible." -msgstr "" +msgstr "Очевидно, PHP настроен на вычищение блоков встроенной документации. Это сделает несколько центральных приложений недоступными." #: templates/admin.php:94 msgid "" @@ -581,7 +582,7 @@ msgstr "cron.php зарегестрирован в webcron и будет выз #: templates/admin.php:229 msgid "Use system's cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." #: templates/admin.php:234 msgid "Sharing" @@ -605,7 +606,7 @@ msgstr "Разрешить открытые загрузки" #: templates/admin.php:256 msgid "Set default expiration date" -msgstr "Установите дату окончания по-умолчанию" +msgstr "Установите срок действия по-умолчанию" #: templates/admin.php:260 msgid "Expire after " @@ -617,7 +618,7 @@ msgstr "дней" #: templates/admin.php:266 msgid "Enforce expiration date" -msgstr "" +msgstr "Обеспечить соблюдение сроков действия" #: templates/admin.php:271 msgid "Allow resharing" @@ -806,7 +807,7 @@ msgid "" "\t\tor\n" "\t\t<a href=\"https://owncloud.org/promote\"\n" "\t\t\ttarget=\"_blank\">spread the word</a>!" -msgstr "" +msgstr "Если вы хотите поддержать проект,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tиди\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">содействуйте распространению</a>!" #: templates/personal.php:31 msgid "Show First Run Wizard again" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index a4462fb4891..4ea9cc5833f 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 18:11+0000\n" +"Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -554,7 +554,7 @@ msgstr "" #: lostpassword/controller/lostcontroller.php:136 msgid "Couldn't send reset email. Please make sure your username is correct." -msgstr "" +msgstr "Ni mogoče poslati elektronskega sporočila. Prepričajte se, da je uporabniško ime pravilno." #: lostpassword/controller/lostcontroller.php:151 msgid "" @@ -625,7 +625,7 @@ msgstr "Osebno" msgid "Users" msgstr "Uporabniki" -#: strings.php:7 templates/layout.user.php:53 templates/layout.user.php:118 +#: strings.php:7 templates/layout.user.php:57 templates/layout.user.php:122 msgid "Apps" msgstr "Programi" @@ -791,19 +791,19 @@ msgstr "Končaj nastavitev" msgid "Finishing …" msgstr "Poteka zaključevanje opravila ..." -#: templates/layout.user.php:40 +#: templates/layout.user.php:44 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please <a href=\"http://enable-javascript.com/\" target=\"_blank\">enable " "JavaScript</a> and re-load this interface." msgstr "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je treba omogočiti <a href=\"http://enable-javascript.com/\" target=\"_blank\">JavaScript</a> in nato ponovno osvežiti vmesnik." -#: templates/layout.user.php:44 +#: templates/layout.user.php:48 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:80 templates/singleuser.user.php:8 +#: templates/layout.user.php:84 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -831,7 +831,7 @@ msgstr "Stopite v stik s skrbnikom sistema." #: templates/login.php:50 msgid "Forgot your password? Reset it!" -msgstr "" +msgstr "Ali ste pozabili geslo? Ponastavite ga!" #: templates/login.php:55 msgid "remember" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 873a5f24c9a..34797675ed3 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-15 06:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 18:11+0000\n" +"Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -218,11 +218,11 @@ msgstr "Izbriši" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "Odklopi shrambo" #: js/fileactions.js:299 msgid "Unshare" -msgstr "Prekliči souporabo" +msgstr "Prekini souporabo" #: js/fileactions.js:301 msgid "Delete permanently" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index f38a51914df..0717166a974 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 18:51+0000\n" +"Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,7 +129,7 @@ msgstr "Za več podrobnosti stopite v stik s pošiljateljem te povezave." #: templates/public.php:22 msgid "Add to your ownCloud" -msgstr "" +msgstr "Dodaj v svoj oblak ownCloud" #: templates/public.php:30 msgid "Download" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 1504f607152..5fc19bbab05 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-10 04:58-0400\n" -"PO-Revision-Date: 2014-07-10 07:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-20 18:51+0000\n" +"Last-Translator: Matej Urbančič <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,7 +112,7 @@ msgstr "" #: ajax/installapp.php:18 ajax/uninstallapp.php:18 msgid "Couldn't remove app." -msgstr "" +msgstr "Ni mogoče odstraniti programa." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -297,29 +297,29 @@ msgstr "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno." #: js/personal.js:324 msgid "Delete encryption keys permanently." -msgstr "" +msgstr "Trajno izbriše šifrirne ključe" #: js/personal.js:338 msgid "Restore encryption keys." -msgstr "" +msgstr "Obnovi šifrirne ključe." #: js/users/deleteHandler.js:166 msgid "Unable to delete {objName}" msgstr "" -#: js/users/groups.js:73 js/users/groups.js:178 +#: js/users/groups.js:92 js/users/groups.js:200 msgid "Error creating group" -msgstr "" +msgstr "Napaka ustvarjanja skupine" -#: js/users/groups.js:177 +#: js/users/groups.js:199 msgid "A valid group name must be provided" msgstr "" -#: js/users/groups.js:205 +#: js/users/groups.js:227 msgid "deleted {groupName}" msgstr "" -#: js/users/groups.js:206 js/users/users.js:265 +#: js/users/groups.js:228 js/users/users.js:296 msgid "undo" msgstr "razveljavi" @@ -339,31 +339,31 @@ msgstr "Skrbnik skupine" msgid "Delete" msgstr "Izbriši" -#: js/users/users.js:85 templates/users/part.userlist.php:98 +#: js/users/users.js:84 templates/users/part.userlist.php:98 msgid "never" msgstr "nikoli" -#: js/users/users.js:264 +#: js/users/users.js:295 msgid "deleted {userName}" msgstr "" -#: js/users/users.js:381 +#: js/users/users.js:431 msgid "add group" msgstr "dodaj skupino" -#: js/users/users.js:578 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users/users.js:579 js/users/users.js:585 js/users/users.js:600 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users/users.js:584 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: js/users/users.js:608 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" @@ -900,11 +900,11 @@ msgstr "" #: templates/personal.php:190 msgid "Restore Encryption Keys" -msgstr "" +msgstr "Obnovi šifrirne ključe" #: templates/personal.php:194 msgid "Delete Encryption Keys" -msgstr "" +msgstr "Izbriši šifrirne ključe" #: templates/users/part.createuser.php:4 msgid "Login Name" @@ -975,7 +975,7 @@ msgstr "" #: templates/users/part.userlist.php:16 msgid "Last Login" -msgstr "" +msgstr "Zadnja prijava" #: templates/users/part.userlist.php:30 msgid "change full name" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6f5cb441841..fb0303eabb8 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 52a79f59ae9..6a925bbc9be 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0c99c197cac..936efa2da5b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 83938b2515b..27b678b58ba 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 75553cc8511..a9645861445 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index d3a9ba582b5..e1825623f09 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 40176ff561e..2225f9bf883 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 544ade32952..ac75d6035fa 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 03b723e8d96..ece63e90944 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ceecfb81305..c9509d46a81 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -360,7 +360,7 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: js/users/users.js:667 +#: js/users/users.js:669 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 110ce28bd5b..18b290c8f47 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ae815614366..91cb13cd4c7 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-18 01:54-0400\n" +"POT-Creation-Date: 2014-07-22 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index fa18d49a5a2..dd458999ab5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-15 06:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-21 01:54-0400\n" +"PO-Revision-Date: 2014-07-21 01:18+0000\n" +"Last-Translator: Volkan Gezer <volkangezer@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -220,7 +220,7 @@ msgstr "Sil" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "Depolama bağlantısını kes" #: js/fileactions.js:299 msgid "Unshare" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 386e3cf3f1d..90becb65341 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-15 06:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 16:04+0000\n" +"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -222,7 +222,7 @@ msgstr "删除" #: js/fileactions.js:297 msgid "Disconnect storage" -msgstr "" +msgstr "断开储存连接" #: js/fileactions.js:299 msgid "Unshare" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index e4e72a609fe..bcf8c883f93 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-05 03:00+0000\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 07:40+0000\n" "Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -58,14 +58,14 @@ msgid "" "correct." msgstr "无法更新私钥密码。可能旧密码不正确。" -#: files/error.php:12 +#: files/error.php:13 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." msgstr "加密应用还没有初始化!可能加密应用在你会话期间已被重新启用。请注销并重新登录,以初始化加密应用。" -#: files/error.php:16 +#: files/error.php:17 #, php-format msgid "" "Your private key is not valid! Likely your password was changed outside of " @@ -73,13 +73,13 @@ msgid "" " in your personal settings to recover access to your encrypted files." msgstr "" -#: files/error.php:19 +#: files/error.php:20 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." msgstr "" -#: files/error.php:22 files/error.php:27 +#: files/error.php:23 files/error.php:28 msgid "" "Unknown error. Please check your system settings or contact your " "administrator" @@ -96,7 +96,7 @@ msgid "" " the encryption app has been disabled." msgstr "请确认安装了 PHP 5.3.3 或更新版本,且 OpenSSL 及其 PHP 扩展已经启用并正确配置。加密应用现在已被禁用。" -#: hooks/hooks.php:300 +#: hooks/hooks.php:286 msgid "Following users are not set up for encryption:" msgstr "以下用户还没有设置加密:" @@ -111,7 +111,7 @@ msgstr "初始加密运行中....请稍后再试。" #: templates/invalid_private_key.php:8 #, php-format msgid "Go directly to your %spersonal settings%s." -msgstr "" +msgstr "直接访问您的%s个人设置%s。" #: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index ae686869a95..08c21ff2b98 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Kaijia Feng <fengkaijia@gmail.com>, 2014 # phy <transifex@phy25.com>, 2014 # csslayer <wengxt@gmail.com>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-17 01:54-0400\n" -"PO-Revision-Date: 2014-07-17 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 08:10+0000\n" +"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,12 +39,12 @@ msgstr "请提供有效的Dropbox应用key和secret" #: ajax/google.php:27 #, php-format msgid "Step 1 failed. Exception: %s" -msgstr "" +msgstr "步骤 1 失败。异常:%s" #: ajax/google.php:38 #, php-format msgid "Step 2 failed. Exception: %s" -msgstr "" +msgstr "步骤 2 失败。异常:%s" #: appinfo/app.php:35 js/app.js:32 templates/settings.php:9 msgid "External storage" @@ -75,7 +76,7 @@ msgstr "" #: appinfo/app.php:59 msgid "Amazon S3 and compliant" -msgstr "" +msgstr "Amazon S3 和兼容协议" #: appinfo/app.php:62 msgid "Access Key" @@ -83,7 +84,7 @@ msgstr "访问密钥" #: appinfo/app.php:63 msgid "Secret Key" -msgstr "" +msgstr "秘钥" #: appinfo/app.php:65 msgid "Hostname (optional)" @@ -103,7 +104,7 @@ msgstr "启用 SSL" #: appinfo/app.php:69 msgid "Enable Path Style" -msgstr "" +msgstr "启用 Path Style" #: appinfo/app.php:77 msgid "App key" @@ -147,15 +148,15 @@ msgstr "" #: appinfo/app.php:108 msgid "OpenStack Object Storage" -msgstr "" +msgstr "OpenStack 对象存储" #: appinfo/app.php:111 msgid "Username (required)" -msgstr "" +msgstr "用户名 (必须)" #: appinfo/app.php:112 msgid "Bucket (required)" -msgstr "" +msgstr "Bucket (必须)" #: appinfo/app.php:113 msgid "Region (optional for OpenStack Object Storage)" @@ -183,7 +184,7 @@ msgstr "" #: appinfo/app.php:119 msgid "Timeout of HTTP requests in seconds (optional)" -msgstr "" +msgstr "HTTP 请求超时(秒) (可选)" #: appinfo/app.php:132 appinfo/app.php:142 msgid "Share" @@ -231,7 +232,7 @@ msgstr "个人" #: js/mountsfilelist.js:36 msgid "System" -msgstr "" +msgstr "系统" #: js/settings.js:325 js/settings.js:332 msgid "Saved" @@ -268,7 +269,7 @@ msgstr "" #: templates/list.php:7 msgid "You don't have any external storages" -msgstr "" +msgstr "您没有外部存储" #: templates/list.php:16 msgid "Name" @@ -276,11 +277,11 @@ msgstr "名称" #: templates/list.php:20 msgid "Storage type" -msgstr "" +msgstr "存储类型" #: templates/list.php:23 msgid "Scope" -msgstr "" +msgstr "适用范围" #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 08fb2f46b47..beb61d414ac 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-16 01:54-0400\n" -"PO-Revision-Date: 2014-07-16 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-19 01:54-0400\n" +"PO-Revision-Date: 2014-07-18 16:04+0000\n" +"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,15 +55,15 @@ msgstr "您还没通过链接分享文件。" #: js/external.js:48 js/external.js:59 msgid "Do you want to add the remote share {name} from {owner}@{remote}?" -msgstr "" +msgstr "您要添加 {name} 来自 {owner}@{remote} 的远程分享吗?" #: js/external.js:51 js/external.js:62 msgid "Remote share" -msgstr "" +msgstr "远程分享" #: js/external.js:65 msgid "Remote share password" -msgstr "" +msgstr "远程分享密码" #: js/external.js:76 msgid "Cancel" @@ -71,7 +71,7 @@ msgstr "取消" #: js/external.js:77 msgid "Add remote share" -msgstr "" +msgstr "添加远程分享" #: js/public.js:203 msgid "No ownCloud installation found at {remote}" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9221936d1cc..8e6b1f2090a 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-10 04:58-0400\n" -"PO-Revision-Date: 2014-07-10 07:11+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 07:40+0000\n" +"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -314,19 +314,19 @@ msgstr "恢复加密密钥。" msgid "Unable to delete {objName}" msgstr "无法删除 {objName}" -#: js/users/groups.js:73 js/users/groups.js:178 +#: js/users/groups.js:92 js/users/groups.js:200 msgid "Error creating group" msgstr "创建组时出错" -#: js/users/groups.js:177 +#: js/users/groups.js:199 msgid "A valid group name must be provided" msgstr "请提供一个有效的组名称" -#: js/users/groups.js:205 +#: js/users/groups.js:227 msgid "deleted {groupName}" msgstr "已删除 {groupName}" -#: js/users/groups.js:206 js/users/users.js:265 +#: js/users/groups.js:228 js/users/users.js:296 msgid "undo" msgstr "撤销" @@ -346,31 +346,31 @@ msgstr "组管理员" msgid "Delete" msgstr "删除" -#: js/users/users.js:85 templates/users/part.userlist.php:98 +#: js/users/users.js:84 templates/users/part.userlist.php:98 msgid "never" msgstr "从不" -#: js/users/users.js:264 +#: js/users/users.js:295 msgid "deleted {userName}" msgstr "已删除 {userName}" -#: js/users/users.js:381 +#: js/users/users.js:431 msgid "add group" msgstr "增加组" -#: js/users/users.js:578 +#: js/users/users.js:631 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users/users.js:579 js/users/users.js:585 js/users/users.js:600 +#: js/users/users.js:632 js/users/users.js:638 js/users/users.js:653 msgid "Error creating user" msgstr "创建用户出错" -#: js/users/users.js:584 +#: js/users/users.js:637 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: js/users/users.js:608 +#: js/users/users.js:667 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:用户 \"{user}\" 的家目录已存在" @@ -567,7 +567,7 @@ msgstr "cron.php 已注册于一个 webcron 服务来通过 http 每 15 分钟 #: templates/admin.php:229 msgid "Use system's cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "使用系统 CRON 服务每 15 分钟执行一次 cron.php 文件。" #: templates/admin.php:234 msgid "Sharing" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index f129efe958e..427ebb9958c 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Kaijia Feng <fengkaijia@gmail.com>, 2014 # Martin Liu <liuzh66@gmail.com>, 2014 # phy <transifex@phy25.com>, 2014 # wang <modokwang@gmail.com>, 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-07-05 01:54-0400\n" -"PO-Revision-Date: 2014-07-04 15:13+0000\n" -"Last-Translator: phy <transifex@phy25.com>\n" +"POT-Creation-Date: 2014-07-20 01:54-0400\n" +"PO-Revision-Date: 2014-07-19 07:40+0000\n" +"Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -163,7 +164,7 @@ msgstr "" #: lib/wizard.php:858 lib/wizard.php:870 msgid "Invalid Host" -msgstr "" +msgstr "无效的主机" #: settings.php:52 msgid "Server" @@ -228,7 +229,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "找到组" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" @@ -323,7 +324,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "找到用户" #: templates/part.wizardcontrols.php:5 msgid "Back" diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 42b4ebba233..336579588ab 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -116,6 +116,7 @@ $TRANSLATIONS = array( "Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Změntě prosím práva na 0770, aby adresář nemohl být otevřen ostatními uživateli.", "Data directory (%s) is readable by other users" => "Data adresář (%s) je čitelný i ostatními uživateli", "Data directory (%s) is invalid" => "Data adresář (%s) je neplatný", -"Please check that the data directory contains a file \".ocdata\" in its root." => "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocdata\"." +"Please check that the data directory contains a file \".ocdata\" in its root." => "Ověřte prosím, že kořenový adresář s daty obsahuje soubor \".ocdata\".", +"Could not obtain lock type %d on \"%s\"." => "Nelze zjistit typ zámku %d na \"%s\"." ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index debc0c141f4..96e20b2acf5 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Cannot write into \"config\" directory!" => "Kan ikke skrive til mappen \"config\"!", +"This can usually be fixed by giving the webserver write access to the config directory" => "Dette kan normalvis ordnes ved at give webserveren skrive adgang til config mappen", "See %s" => "Se %s", "You are accessing the server from an untrusted domain." => "Du tilgår serveren fra et utroværdigt domæne", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Kontakt venligst din administrator. Hvis du er administrator, konfigurer \"trusted_domain\" indstillingen i config/config.php. Et eksempel kan ses i config/config.sample.php.", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index b0b7d8566a6..64ce78990a1 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -1,6 +1,9 @@ <?php $TRANSLATIONS = array( "Cannot write into \"config\" directory!" => "Запись в каталог \"config\" невозможна", +"This can usually be fixed by giving the webserver write access to the config directory" => "Обычно это можно исправить, предоставив веб-серверу права на запись в папке конфигурации", +"See %s" => "Просмотр %s", +"This can usually be fixed by %sgiving the webserver write access to the config directory%s." => "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папке конфигурации%s.", "You are accessing the server from an untrusted domain." => "Вы пытаетесь получить доступ к серверу с неподтверждённого домена.", "Please contact your administrator. If you are an administrator of this instance, configure the \"trusted_domain\" setting in config/config.php. An example configuration is provided in config/config.sample.php." => "Пожалуйста, свяжитесь с администратором. Если вы администратор этого хранилища, сконфигурируйте \"trusted_domain\" в config/config.php. Пример настройки можно найти в /config/config.sample.php.", "Help" => "Помощь", @@ -55,6 +58,7 @@ $TRANSLATIONS = array( "You are not allowed to share %s" => "Вам запрещено публиковать %s", "Sharing %s failed, because the user %s is the item owner" => "Не удалось установить общий доступ для %s, пользователь %s уже является владельцем", "Sharing %s failed, because the user %s does not exist" => "Не удалось установить общий доступ для %s, пользователь %s не существует.", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Не удалось опубликовать %s, т.к. пользователь %s не является членом какой-либо группы в которую входит %s", "Sharing %s failed, because this item is already shared with %s" => "Не удалось установить общий доступ для %s ,в виду того что, объект уже находиться в общем доступе с %s", "Sharing %s failed, because the group %s does not exist" => "Не удалось установить общий доступ для %s, группа %s не существует.", "Sharing %s failed, because %s is not a member of the group %s" => "Не удалось установить общий доступ для %s, %s не является членом группы %s", @@ -63,10 +67,14 @@ $TRANSLATIONS = array( "Share type %s is not valid for %s" => "Такой втд общего доступа как %s не допустим для %s", "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Настройка прав доступа для %s невозможна, поскольку права доступа превышают предоставленные права доступа %s", "Setting permissions for %s failed, because the item was not found" => "Не удалось произвести настройку прав доступа для %s , элемент не был найден.", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Бэкенд для опубликования %s должен реализовывать интерфейс OCP\\Share_Backend", "Sharing backend %s not found" => "Бэкэнд для общего доступа %s не найден", "Sharing backend for %s not found" => "Бэкэнд для общего доступа к %s не найден", "Sharing %s failed, because the user %s is the original sharer" => "Публикация %s неудачна, т.к. пользователь %s - публикатор оригинала файла", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Не удалось опубликовать %s, т.к. права %s превышают предоставленные права доступа ", "Sharing %s failed, because resharing is not allowed" => "Публикация %s неудачна, т.к републикация запрещена", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Не удалось опубликовать %s, т.к. опубликованный бэкенд для %s не смог найти свой источник", +"Sharing %s failed, because the file could not be found in the file cache" => "Не удалось опубликовать %s, т.к. файл не был обнаружен в файловом кеше.", "Could not find category \"%s\"" => "Категория \"%s\" не найдена", "seconds ago" => "несколько секунд назад", "_%n minute ago_::_%n minutes ago_" => array("%n минута назад","%n минуты назад","%n минут назад"), @@ -82,8 +90,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Укажите правильное имя пользователя", "A valid password must be provided" => "Укажите валидный пароль", "The username is already being used" => "Имя пользователя уже используется", +"No database drivers (sqlite, mysql, or postgresql) installed." => "Не установлены драйвера баз данных (sqlite, mysql или postgresql)", +"Permissions can usually be fixed by %sgiving the webserver write access to the root directory%s." => "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в корневой папке%s.", "Cannot write into \"config\" directory" => "Запись в каталог \"config\" невозможна", "Cannot write into \"apps\" directory" => "Запись в каталог \"app\" невозможна", -"Cannot create \"data\" directory (%s)" => "Невозможно создать каталог \"data\" (%s)" +"This can usually be fixed by %sgiving the webserver write access to the apps directory%s or disabling the appstore in the config file." => "Обычно это можно исправить, %sпредоставив веб-серверу права на запись в папку приложений%s или отключив appstore в файле конфигурации.", +"Cannot create \"data\" directory (%s)" => "Невозможно создать каталог \"data\" (%s)", +"This can usually be fixed by <a href=\"%s\" target=\"_blank\">giving the webserver write access to the root directory</a>." => "Обычно это можно исправить, <a href=\"%s\" target=\"_blank\">предоставив веб-серверу права на запись в корневой папке.", +"Setting locale to %s failed" => "Установка локали в %s не удалась", +"Please install one of theses locales on your system and restart your webserver." => "Пожалуйста, установите одну из следующих локалей в вашей системе и перезапустите веб-сервер.", +"Please ask your server administrator to install the module." => "Пожалуйста, попростите администратора сервера установить модуль.", +"PHP module %s not installed." => "Не установлен PHP-модуль %s.", +"PHP %s or higher is required." => "Требуется PHP %s или выше", +"Please ask your server administrator to update PHP to the latest version. Your PHP version is no longer supported by ownCloud and the PHP community." => "Пожалуйста, обратитесь к администратору сервера, чтобы обновить PHP до последней версии. Ваша версия PHP больше не поддерживается ownCloud и сообществом PHP.", +"PHP Safe Mode is enabled. ownCloud requires that it is disabled to work properly." => "Включен безопасный режим PHP. ownCloud требует, чтобы он был выключен для корректной работы.", +"PHP Safe Mode is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Безопасный режим PHP не поддерживается и его следует выключить как практически бесполезную настройку. Пожалуйста, попросите администратора сервера выключить его в php.ini либо в вашей конфигурации веб-сервера.", +"Magic Quotes is enabled. ownCloud requires that it is disabled to work properly." => "Включен режим Magic Quotes. ownCloud требует, чтобы он был выключен для корректной работы.", +"Magic Quotes is a deprecated and mostly useless setting that should be disabled. Please ask your server administrator to disable it in php.ini or in your webserver config." => "Magic Quotes не поддерживается и его следует выключить как практически бесполезную настройку. Пожалуйста, попросите администратора сервера выключить его в php.ini либо в вашей конфигурации веб-сервера.", +"PHP modules have been installed, but they are still listed as missing?" => "Модули PHP был установлены, но все еще в списке как недостающие?", +"Please ask your server administrator to restart the web server." => "Пожалуйста, попросите администратора вашего сервера перезапустить веб-сервер.", +"PostgreSQL >= 9 required" => "Требуется PostgreSQL >= 9", +"Please upgrade your database version" => "Пожалуйста, обновите вашу версию базы данных", +"Error occurred while checking PostgreSQL version" => "Произошла ошибка при проверке версии PostgreSQL", +"Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error" => "Пожалуйста, обедитесь что версия PostgreSQL >= 9 или проверьте логи за дополнительной информацией об ошибке", +"Please change the permissions to 0770 so that the directory cannot be listed by other users." => "Пожалуйста, измениите флаги разрешений на 0770 чтобы другие пользователи не могли получить списка файлов этой папки.", +"Data directory (%s) is readable by other users" => "Папка данных (%s) доступна для чтения другим пользователям", +"Data directory (%s) is invalid" => "Папка данных (%s) не верна", +"Please check that the data directory contains a file \".ocdata\" in its root." => "Пожалуйста, убедитесь, что папка данных содержит в корне файл \".ocdata\".", +"Could not obtain lock type %d on \"%s\"." => "Не удалось получить блокировку типа %d на \"%s\"" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/private/connector/sabre/filesplugin.php b/lib/private/connector/sabre/filesplugin.php index 871fac88e68..5f83aa0fb55 100644 --- a/lib/private/connector/sabre/filesplugin.php +++ b/lib/private/connector/sabre/filesplugin.php @@ -37,7 +37,7 @@ class OC_Connector_Sabre_FilesPlugin extends \Sabre\DAV\ServerPlugin $server->xmlNamespaces[self::NS_OWNCLOUD] = 'oc'; $server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}id'; - $server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}perm'; + $server->protectedProperties[] = '{' . self::NS_OWNCLOUD . '}permissions'; $this->server = $server; $this->server->subscribeEvent('beforeGetProperties', array($this, 'beforeGetProperties')); diff --git a/lib/private/db/connectionfactory.php b/lib/private/db/connectionfactory.php index 8f852cf7127..033065bcb77 100644 --- a/lib/private/db/connectionfactory.php +++ b/lib/private/db/connectionfactory.php @@ -60,7 +60,15 @@ class ConnectionFactory { if (!isset($this->defaultConnectionParams[$normalizedType])) { throw new \InvalidArgumentException("Unsupported type: $type"); } - return $this->defaultConnectionParams[$normalizedType]; + $result = $this->defaultConnectionParams[$normalizedType]; + // \PDO::MYSQL_ATTR_FOUND_ROWS may not be defined, e.g. when the MySQL + // driver is missing. In this case, we won't be able to connect anyway. + if ($normalizedType === 'mysql' && defined('\PDO::MYSQL_ATTR_FOUND_ROWS')) { + $result['driverOptions'] = array( + \PDO::MYSQL_ATTR_FOUND_ROWS => true, + ); + } + return $result; } /** diff --git a/lib/private/files/storage/dav.php b/lib/private/files/storage/dav.php index 726688fe444..02c3ebd0202 100644 --- a/lib/private/files/storage/dav.php +++ b/lib/private/files/storage/dav.php @@ -281,6 +281,7 @@ class DAV extends \OC\Files\Storage\Common { curl_setopt($curl, CURLOPT_INFILE, $source); // file pointer curl_setopt($curl, CURLOPT_INFILESIZE, filesize($path)); curl_setopt($curl, CURLOPT_PUT, true); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); if ($this->secure === true) { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); diff --git a/lib/public/util.php b/lib/public/util.php index 8f4691eeade..ff8c743c0df 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -128,10 +128,11 @@ class Util { /** * get l10n object * @param string $application + * @param string|null $language * @return \OC_L10N */ - public static function getL10N( $application ) { - return \OC_L10N::get( $application ); + public static function getL10N($application, $language = null) { + return \OC_L10N::get($application, $language); } /** diff --git a/lib/repair/innodb.php b/lib/repair/innodb.php index 4d58bf64a9e..6f7fcfcd4c9 100644 --- a/lib/repair/innodb.php +++ b/lib/repair/innodb.php @@ -28,9 +28,11 @@ class InnoDB extends BasicEmitter implements \OC\RepairStep { } $tables = $this->getAllMyIsamTables($connection); - foreach ($tables as $table) { - $connection->exec("ALTER TABLE $table ENGINE=InnoDB;"); - $this->emit('\OC\Repair', 'info', array("Fixed $table")); + if (is_array($tables)) { + foreach ($tables as $table) { + $connection->exec("ALTER TABLE $table ENGINE=InnoDB;"); + $this->emit('\OC\Repair', 'info', array("Fixed $table")); + } } } diff --git a/settings/ajax/createuser.php b/settings/ajax/createuser.php index ae1d8856f43..463c15d59e8 100644 --- a/settings/ajax/createuser.php +++ b/settings/ajax/createuser.php @@ -5,21 +5,23 @@ OC_JSON::checkSubAdminUser(); if(OC_User::isAdminUser(OC_User::getUser())) { $groups = array(); - if( isset( $_POST["groups"] )) { + if (!empty($_POST["groups"])) { $groups = $_POST["groups"]; } }else{ - if(isset( $_POST["groups"] )) { + if (isset($_POST["groups"])) { $groups = array(); - foreach($_POST["groups"] as $group) { - if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) { - $groups[] = $group; + if (!empty($_POST["groups"])) { + foreach ($_POST["groups"] as $group) { + if (OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) { + $groups[] = $group; + } } } - if(count($groups) === 0) { + if (empty($groups)) { $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); } - }else{ + } else { $groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser()); } } diff --git a/settings/ajax/grouplist.php b/settings/ajax/grouplist.php index 52df98c4e5e..93bb510773d 100644 --- a/settings/ajax/grouplist.php +++ b/settings/ajax/grouplist.php @@ -38,9 +38,7 @@ $adminGroups = array(); $groupManager = \OC_Group::getManager(); $isAdmin = OC_User::isAdminUser(OC_User::getUser()); -//we pass isAdmin as true, because OC_SubAdmin has no search feature, -//groups will be filtered out later -$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), true, $groupManager); +$groupsInfo = new \OC\Group\MetaData(OC_User::getUser(), $isAdmin, $groupManager); $groupsInfo->setSorting($groupsInfo::SORT_USERCOUNT); list($adminGroups, $groups) = $groupsInfo->get($groupPattern, $pattern); diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php index 2bf40686b87..a99c221beb8 100644 --- a/settings/ajax/userlist.php +++ b/settings/ajax/userlist.php @@ -76,10 +76,13 @@ if (OC_User::isAdminUser(OC_User::getUser())) { $batch = OC_Group::usersInGroups($groups, $pattern, $limit, $offset); foreach ($batch as $uid) { $user = $userManager->get($uid); + + // Only add the groups, this user is a subadmin of + $userGroups = array_intersect(OC_Group::getUserGroups($uid), OC_SubAdmin::getSubAdminsGroups(OC_User::getUser())); $users[] = array( - 'name' => $user, + 'name' => $uid, 'displayname' => $user->getDisplayName(), - 'groups' => join(', ', OC_Group::getUserGroups($uid)), + 'groups' => join(', ', $userGroups), 'quota' => OC_Preferences::getValue($uid, 'files', 'quota', 'default'), 'storageLocation' => $user->getHome(), 'lastLogin' => $user->getLastLogin(), diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 9eb8f91ac7c..883851e2a2f 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -654,9 +654,11 @@ $(document).ready(function () { } else { if (result.data.groups) { var addedGroups = result.data.groups; - UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); for (var i in result.data.groups) { var gid = result.data.groups[i]; + if(UserList.availableGroups.indexOf(gid) === -1) { + UserList.availableGroups.push(gid); + } $li = GroupList.getGroupLI(gid); userCount = GroupList.getUserCount($li); GroupList.setUserCount($li, userCount + 1); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 549071fcc11..d7fefb8cfd7 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -120,6 +120,7 @@ $TRANSLATIONS = array( "Cron was not executed yet!" => "Cron is nog niet uitgevoerd!", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", +"Use system's cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", "Sharing" => "Delen", "Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken", "Allow users to share via link" => "Sta gebruikers toe om te delen via een link", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 2d783e21d32..68ee6923d7f 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -91,6 +91,7 @@ $TRANSLATIONS = array( "None" => "Нет новостей", "Login" => "Логин", "Plain" => "Простой", +"NT LAN Manager" => "Мендеджер NT LAN", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Предупреждение безопасности", @@ -99,6 +100,7 @@ $TRANSLATIONS = array( "Setup Warning" => "Предупреждение установки", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the <a href=\"%s\">installation guides</a>." => "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Очевидно, PHP настроен на вычищение блоков встроенной документации. Это сделает несколько центральных приложений недоступными.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Возможно это вызвано кешем/ускорителем вроде Zend OPcache или eAccelerator.", "Database Performance Info" => "Информация о производительности Базы Данных", "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "В качестве Базы Данных используется SQLite. Для больших установок рекомендуется использовать другие типы Баз Данных. Чтобы переехать на другую Базу Данных используйте инструмент командной строки: 'ooc: db:conver-type'", @@ -118,14 +120,16 @@ $TRANSLATIONS = array( "Cron was not executed yet!" => "Cron-задачи ещё не запускались!", "Execute one task with each page loaded" => "Выполнять одно задание с каждой загруженной страницей", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http.", +"Use system's cron service to call the cron.php file every 15 minutes." => "Использовать системный cron для вызова cron.php каждые 15 минут.", "Sharing" => "Общий доступ", "Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа", "Allow users to share via link" => "Разрешить пользователям публикации через ссылки", "Enforce password protection" => "Обязательная защита паролем", "Allow public uploads" => "Разрешить открытые загрузки", -"Set default expiration date" => "Установите дату окончания по-умолчанию", +"Set default expiration date" => "Установите срок действия по-умолчанию", "Expire after " => "Заканчивается после", "days" => "дней", +"Enforce expiration date" => "Обеспечить соблюдение сроков действия", "Allow resharing" => "Разрешить переоткрытие общего доступа", "Restrict users to only share with users in their groups" => "Разрешить пользователям публикации только внутри их групп", "Allow users to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", @@ -168,6 +172,7 @@ $TRANSLATIONS = array( "Bugtracker" => "Багтрекер", "Commercial Support" => "Коммерческая поддержка", "Get the apps to sync your files" => "Получить приложения для синхронизации ваших файлов", +"If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">spread the word</a>!" => "Если вы хотите поддержать проект,\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\">присоединяйтесь к разработке</a>\n\t\tиди\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\">содействуйте распространению</a>!", "Show First Run Wizard again" => "Показать помощник настройки", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Вы использовали <strong>%s</strong> из доступных <strong>%s</strong>", "Password" => "Пароль", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index ee11371ffff..dd6b27a3af9 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -18,6 +18,7 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Datoteke so uspešno odšifrirane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", "Couldn't decrypt your files, check your password and try again" => "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", +"Couldn't remove app." => "Ni mogoče odstraniti programa.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Skupine ni mogoče izbrisati", @@ -56,6 +57,9 @@ $TRANSLATIONS = array( "Good password" => "Dobro geslo", "Strong password" => "Odlično geslo", "Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.", +"Delete encryption keys permanently." => "Trajno izbriše šifrirne ključe", +"Restore encryption keys." => "Obnovi šifrirne ključe.", +"Error creating group" => "Napaka ustvarjanja skupine", "undo" => "razveljavi", "Groups" => "Skupine", "Group Admin" => "Skrbnik skupine", @@ -162,6 +166,8 @@ $TRANSLATIONS = array( "The encryption app is no longer enabled, please decrypt all your files" => "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke.", "Log-in password" => "Prijavno geslo", "Decrypt all Files" => "Odšifriraj vse datoteke", +"Restore Encryption Keys" => "Obnovi šifrirne ključe", +"Delete Encryption Keys" => "Izbriši šifrirne ključe", "Login Name" => "Prijavno ime", "Create" => "Ustvari", "Admin Recovery Password" => "Obnovitev skrbniškega gesla", @@ -176,6 +182,7 @@ $TRANSLATIONS = array( "Other" => "Drugo", "Username" => "Uporabniško ime", "Quota" => "Količinska omejitev", +"Last Login" => "Zadnja prijava", "change full name" => "Spremeni polno ime", "set new password" => "nastavi novo geslo", "Default" => "Privzeto" diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 403f65533de..da33b075b34 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -120,6 +120,7 @@ $TRANSLATIONS = array( "Cron was not executed yet!" => "定时任务还未被执行!", "Execute one task with each page loaded" => "每个页面加载后执行一个任务", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php 已注册于一个 webcron 服务来通过 http 每 15 分钟执行 cron.php。", +"Use system's cron service to call the cron.php file every 15 minutes." => "使用系统 CRON 服务每 15 分钟执行一次 cron.php 文件。", "Sharing" => "共享", "Allow apps to use the Share API" => "允许应用软件使用共享API", "Allow users to share via link" => "允许用户通过链接分享文件", diff --git a/tests/lib/db.php b/tests/lib/db.php index 2fca67b5638..4b1a474c4ef 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -200,4 +200,45 @@ class Test_DB extends PHPUnit_Framework_TestCase { } } + public function testUpdateAffectedRowsNoMatch() { + $this->insertCardData('fullname1', 'uri1'); + // The WHERE clause does not match any rows + $this->assertSame(0, $this->updateCardData('fullname3', 'uri2')); + } + + public function testUpdateAffectedRowsDifferent() { + $this->insertCardData('fullname1', 'uri1'); + // The WHERE clause matches a single row and the value we are updating + // is different from the one already present. + $this->assertSame(1, $this->updateCardData('fullname1', 'uri2')); + } + + public function testUpdateAffectedRowsSame() { + $this->insertCardData('fullname1', 'uri1'); + // The WHERE clause matches a single row and the value we are updating + // to is the same as the one already present. MySQL reports 0 here when + // the PDO::MYSQL_ATTR_FOUND_ROWS flag is not specified. + $this->assertSame(1, $this->updateCardData('fullname1', 'uri1')); + } + + public function testUpdateAffectedRowsMultiple() { + $this->insertCardData('fullname1', 'uri1'); + $this->insertCardData('fullname2', 'uri2'); + // The WHERE clause matches two rows. One row contains a value that + // needs to be updated, the other one already contains the value we are + // updating to. MySQL reports 1 here when the PDO::MYSQL_ATTR_FOUND_ROWS + // flag is not specified. + $query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ?"); + $this->assertSame(2, $query->execute(array('uri1'))); + } + + protected function insertCardData($fullname, $uri) { + $query = OC_DB::prepare("INSERT INTO `*PREFIX*{$this->table2}` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)"); + $this->assertSame(1, $query->execute(array($fullname, $uri, uniqid()))); + } + + protected function updateCardData($fullname, $uri) { + $query = OC_DB::prepare("UPDATE `*PREFIX*{$this->table2}` SET `uri` = ? WHERE `fullname` = ?"); + return $query->execute(array($uri, $fullname)); + } } diff --git a/tests/lib/ocs/privatedata.php b/tests/lib/ocs/privatedata.php index 498ab718621..530750fabea 100644 --- a/tests/lib/ocs/privatedata.php +++ b/tests/lib/ocs/privatedata.php @@ -79,6 +79,31 @@ class Test_OC_OCS_Privatedata extends PHPUnit_Framework_TestCase $this->assertEquals('updated', $data['value']); } + public function testSetSameValue() { + $_POST = array('value' => 123456789); + $params = array('app' => $this->appKey, 'key' => 'k-10'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(1, $result); + $data = $result->getData(); + $data = $data[0]; + $this->assertEquals('123456789', $data['value']); + + // set the same value again + $_POST = array('value' => 123456789); + $params = array('app' => $this->appKey, 'key' => 'k-10'); + $result = OC_OCS_Privatedata::set($params); + $this->assertEquals(100, $result->getStatusCode()); + + $result = OC_OCS_Privatedata::get($params); + $this->assertOcsResult(1, $result); + $data = $result->getData(); + $data = $data[0]; + $this->assertEquals('123456789', $data['value']); + } + public function testSetMany() { $_POST = array('value' => 123456789); |